/* Private Appraisal Group — Marketing Site */
:root {
  --navy: #1a2744;
  --navy-deep: #0f1a2e;
  --navy-mid: #243556;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6f4a;
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --text: #2c3340;
  --text-muted: #5a6577;
  --border: #d9d3c8;
  --success: #2d6a4f;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --max: 1120px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--cream); }

.nav-cta {
  display: none;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0; }
.nav-mobile li { margin: 0; }
.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
}
.nav-mobile a:hover { background: var(--cream); }
.nav-mobile .nav-cta-m {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy-deep); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-lg { padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ——— Hero ——— */
.hero {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184,149,106,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 38rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.hero-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  max-width: 36rem;
}

.page-hero {
  background: var(--cream);
  padding: 2.75rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 40rem;
}

/* ——— Sections ——— */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p, .section-navy li { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

/* ——— Cards & grids ——— */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 650;
}
.card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Contrast panels */
.contrast {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .contrast { grid-template-columns: 1fr 1fr; }
}
.panel {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.panel h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 650;
}
.panel ul { list-style: none; padding: 0; }
.panel li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.panel li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.panel-panel {
  background: #f0ece4;
  border: 1px solid var(--border);
}
.panel-panel h3 { color: var(--text-muted); }
.panel-panel li { color: var(--text-muted); }
.panel-panel li::before { content: "–"; color: #a08060; }
.panel-private {
  background: var(--navy);
  color: var(--white);
}
.panel-private h3 { color: var(--gold-light); }
.panel-private li { color: rgba(255,255,255,0.9); }
.panel-private li::before { content: "+"; color: var(--gold); }

/* Story callout */
.story {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.story-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.story p { color: var(--text); margin-bottom: 0.75rem; }
.story p:last-child { margin-bottom: 0; }
.story cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.story cite span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Benefits list */
.benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .benefit-list { grid-template-columns: 1fr 1fr; }
}
.benefit-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  margin: 0;
  font-size: 0.95rem;
}
.benefit-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 2rem 3.5rem;
  margin: 0;
  border-left: 2px solid var(--border);
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: -1.15rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.steps p { color: var(--text-muted); font-size: 0.95rem; }

/* Urgency / callout box */
.callout {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.callout-warn {
  background: #faf6f0;
  border-color: var(--gold);
  border-left: 4px solid var(--gold);
}
.callout h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.callout p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.callout p:last-child { margin-bottom: 0; }

/* FAQ */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.faq-item summary {
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.faq-item .faq-a p { margin-bottom: 0.75rem; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,106,0.2);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }
.form-wrap.hide { display: none; }

/* Tables */
.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25rem 0;
}
.simple-table th,
.simple-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.simple-table th {
  background: var(--cream);
  color: var(--navy);
  font-weight: 650;
}
.simple-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }

/* Prose for legal / long content */
.prose { max-width: 40rem; }
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  font-weight: 400;
}
.prose h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose ul, .prose ol { margin-bottom: 1rem; color: var(--text); }
.prose li { margin-bottom: 0.4rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}
.cta-band .btn-row { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 22rem;
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.footer-bottom {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Date chip */
.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,149,106,0.15);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* Join page two-column */
.join-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 800px) {
  .join-layout { grid-template-columns: 1fr 1fr; }
}

/* ——— Pricing cards ——— */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .pricing-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.price-card.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.price-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
  min-height: 2.6em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.price-amount .dollars {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-was {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.35rem;
}
.founding-badge {
  display: inline-block;
  background: rgba(184,149,106,0.18);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}
.price-founding-note,
.price-alt-note {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.price-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}
.price-features li.muted {
  color: var(--text-muted);
}
.price-features li.muted::before {
  content: "–";
  color: var(--border);
}
.price-card .btn { margin-top: auto; width: 100%; }

.founding-banner {
  background: linear-gradient(90deg, rgba(184,149,106,0.15), rgba(184,149,106,0.08));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.founding-banner strong { color: var(--navy); }
.founding-banner p { margin: 0; font-size: 0.95rem; color: var(--text); }

/* Compare table */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  min-width: 160px;
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 650;
  font-size: 0.85rem;
}
.compare-table thead th .tier-price {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 0.25rem;
}
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: #b0a89c; }

/* Sticky bottom CTA */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 90;
  background: rgba(15,26,46,0.96);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(184,149,106,0.35);
}
.sticky-cta .inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sticky-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.sticky-cta .btn { padding: 0.65rem 1.2rem; font-size: 0.9rem; }
@media (max-width: 600px) {
  .sticky-cta .inner { flex-direction: column; text-align: center; }
  .sticky-cta .btn-row { justify-content: center; margin-top: 0; }
}

/* Tag line under hero */
.tagline-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* FAQ teaser on home */
.faq-teaser .faq-item summary { font-size: 1rem; }

/* Disabled / fallback stripe button style */
.btn-coming {
  background: var(--cream-dark) !important;
  color: var(--text-muted) !important;
  border-color: var(--border) !important;
  cursor: pointer;
}
.btn-coming:hover { transform: none; }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.88rem; }

.grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.hero h1.wide { max-width: 22ch; }

.section-center { text-align: center; }
.section-center .lead { margin-inline: auto; }
.section-center .btn-row { justify-content: center; }

.exclusivity-note {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 0.5rem;
}

.checkout-hero-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0.5rem 0;
}
.checkout-hero-price .period { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.checkout-hero-price .was {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 0.5rem;
}
