/* ============================================================
   WAM AGENTICS — SITE DESIGN SYSTEM
   Matches the Market Pulse product brand:
   navy/gold · Playfair Display · DM Sans · DM Mono
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --night:       #060a12;
  --navy-deep:   #0a1020;
  --navy:        #0d1628;
  --navy-mid:    #111e35;
  --gold:        #C9A84C;
  --gold-bright: #e0bb62;
  --gold-dim:    rgba(201,168,76,0.18);
  --gold-ghost:  rgba(201,168,76,0.07);

  --paper:       #f4f3f0;
  --card:        #ffffff;
  --ink:         #1a1a1a;
  --ink-soft:    #3a3a3a;
  --muted:       #6b6b66;
  --line:        #e6e2d8;

  --up:          #16a34a;
  --down:        #dc2626;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius:     10px;
  --radius-lg:  16px;
  --max-w:      1120px;
  --nav-h:      66px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }

h1, h2 { font-family: var(--font-display); color: var(--ink); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--ink-soft); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--night);
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-inner {
  max-width: var(--max-w); width: 100%;
  margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo svg { width: 30px; height: 30px; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
}
.nav-logo-sub {
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,237,232,0.35);
}
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(240,237,232,0.7);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.45rem 0.95rem; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--gold-bright); background: var(--gold-ghost); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--night) !important;
  font-weight: 700 !important;
  margin-left: 0.6rem;
}
.nav-cta:hover { background: var(--gold-bright) !important; }

/* ============================================================
   TICKER STRIP (under nav)
   ============================================================ */
.ticker-strip {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(240,237,232,0.5);
  padding: 0.45rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-strip .container { display: flex; gap: 2.2rem; overflow: hidden; }
.ticker-strip span strong { color: rgba(240,237,232,0.85); font-weight: 500; }
.tick-up { color: var(--up); }
.tick-down { color: #f87171; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 70% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #050912 0%, #0b1425 55%, #0f1c38 100%);
  color: #f0ede8;
  padding: 5.5rem 0 6rem;
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lede {
  color: rgba(240,237,232,0.7);
  font-size: 1.12rem;
  max-width: 32rem;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold { background: var(--gold); color: var(--night); }
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn-ghost {
  background: transparent; color: #f0ede8;
  border: 1.5px solid rgba(240,237,232,0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-navy { background: var(--navy); color: var(--gold); border: 1px solid rgba(201,168,76,0.35); }
.btn-navy:hover { background: var(--navy-mid); }

.hero-note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: rgba(240,237,232,0.4);
}

/* ---------- The brief artifact (signature element) ---------- */
.brief-artifact {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: rotate(1.2deg);
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.8rem;
}
.brief-masthead {
  background: linear-gradient(160deg, #050912, #0f1c38);
  padding: 1.1rem 1.4rem 1rem;
  border-bottom: 2px solid var(--gold);
  text-align: center;
}
.brief-masthead .bm-badge {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
}
.brief-masthead .bm-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.brief-masthead .bm-title span { color: var(--gold); }
.brief-masthead .bm-date {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,237,232,0.35); margin-top: 0.35rem;
}
.brief-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.brief-tile {
  padding: 0.7rem 0.4rem; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.08);
}
.brief-tile:last-child { border-right: none; }
.brief-tile .bt-label {
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.brief-tile .bt-price {
  font-family: var(--font-mono); font-size: 0.82rem; color: #fff;
}
.brief-tile .bt-chg { font-size: 0.62rem; font-weight: 600; }
.brief-tile.up .bt-chg { color: #4ade80; }
.brief-tile.down .bt-chg { color: #f87171; }
.brief-body { padding: 1.1rem 1.4rem 1.3rem; }
.brief-body .bb-label {
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: #b8a060;
  border-bottom: 1px solid rgba(184,160,96,0.25);
  padding-bottom: 0.4rem; margin-bottom: 0.6rem;
}
.brief-body p {
  font-size: 0.78rem; line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.brief-body p:last-of-type { margin-bottom: 0; }
.brief-body .bb-ticker { font-family: var(--font-mono); font-weight: 500; color: var(--ink); }
.brief-footer {
  padding: 0.6rem 1.4rem;
  background: #faf8f3;
  border-top: 1px solid var(--line);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(160deg, #050912 0%, #0b1425 60%, #0f1c38 100%);
  border-bottom: 2px solid var(--gold);
  padding: 4rem 0 3.5rem;
  color: #f0ede8;
}
.page-header h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-header p { color: rgba(240,237,232,0.65); max-width: 36rem; margin-top: 0.9rem; }
.page-header a { color: var(--gold-bright); }

/* ============================================================
   HOW IT WORKS / PRODUCT SECTIONS
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.4rem 2.2rem;
  box-shadow: 0 2px 10px rgba(13,22,40,0.05);
}
.product-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem; margin-bottom: 0.7rem;
}
.product-card > p { font-size: 0.95rem; margin-bottom: 1.4rem; }
.spec-list { list-style: none; }
.spec-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid #f0ece4;
  font-size: 0.9rem; color: var(--ink-soft);
  position: relative;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li::before {
  content: '◆';
  position: absolute; left: 0; top: 0.85rem;
  font-size: 0.5rem; color: var(--gold);
}
.spec-list strong { color: var(--ink); font-weight: 600; }

/* Process rail */
.rail { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rail-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
}
.rail-num {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gold); display: block; margin-bottom: 0.7rem;
}
.rail-step h3 { margin-bottom: 0.45rem; font-size: 1rem; }
.rail-step p { font-size: 0.88rem; }

/* Fit / ICP band */
.fit-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2.6rem 2.8rem;
  color: rgba(240,237,232,0.85);
}
.fit-band h2 { color: #fff; margin-bottom: 1.2rem; }
.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1.5rem; }
.fit-col h3 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 0.9rem;
}
.fit-col.fit-yes h3 { color: #4ade80; }
.fit-col.fit-no h3 { color: #f87171; }
.fit-col ul { list-style: none; }
.fit-col li {
  padding: 0.5rem 0 0.5rem 1.4rem; position: relative;
  font-size: 0.92rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fit-col li:last-child { border-bottom: none; }
.fit-yes li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.fit-no li::before  { content: '—'; position: absolute; left: 0; color: #f87171; font-weight: 700; }

/* ============================================================
   PRICING
   ============================================================ */
.founding-banner {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  display: inline-block;
  margin-bottom: 2.2rem;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, minmax(300px, 420px));
  gap: 1.8rem; justify-content: center; align-items: stretch;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.4rem;
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(201,168,76,0.18);
  background: linear-gradient(180deg, #fffdf7, #fff);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 99px; white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: var(--ink);
}
.pricing-for {
  font-size: 0.82rem; color: var(--muted); margin: 0.3rem 0 1.3rem;
}
.pricing-price {
  font-family: var(--font-mono);
  font-size: 2.7rem; font-weight: 500; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: 1rem; margin-right: 2px; }
.pricing-price sub { font-size: 0.85rem; font-family: var(--font-body); color: var(--muted); }
.pricing-per {
  font-size: 0.78rem; color: var(--muted); margin: 0.4rem 0 1.6rem;
}
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  font-size: 0.9rem; color: var(--ink-soft);
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
  border-bottom: 1px solid #f4f0e8;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.pricing-btn {
  display: block; text-align: center;
  padding: 0.85rem; border-radius: 8px;
  font-weight: 700; font-size: 0.93rem;
  border: 1.5px solid var(--navy); color: var(--navy);
  transition: background 0.15s, color 0.15s;
}
.pricing-btn:hover { background: var(--navy); color: var(--gold); }
.pricing-card.featured .pricing-btn { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.pricing-card.featured .pricing-btn:hover { background: var(--navy-mid); }

.pricing-footnotes {
  max-width: 720px; margin: 2.8rem auto 0;
  font-size: 0.85rem; color: var(--muted);
}
.pricing-footnotes p { margin-bottom: 0.6rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-group-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin: 3rem 0 0.5rem;
}
.faq-group-label:first-of-type { margin-top: 0; }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-question {
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; list-style: none; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--gold); flex-shrink: 0; transition: transform 0.2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding-top: 0.8rem; font-size: 0.94rem;
  color: var(--ink-soft); line-height: 1.7; max-width: 92%;
}

/* ============================================================
   COMPLIANCE BOX
   ============================================================ */
.compliance-box {
  background: #faf8f3;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.6rem;
  margin-top: 3rem;
  font-size: 0.84rem; color: var(--muted); line-height: 1.65;
}
.compliance-box strong { color: var(--ink); }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-band {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(160deg, #050912, #0f1c38);
  border-top: 2px solid var(--gold);
  color: #f0ede8;
  text-align: center;
  padding: 5rem 0;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p {
  color: rgba(240,237,232,0.65);
  max-width: 34rem; margin: 0 auto 2.2rem;
  font-size: 1.05rem;
}
.cta-band .cta-email {
  display: block; margin-top: 1.4rem;
  font-family: var(--font-mono); font-size: 0.85rem;
  color: rgba(240,237,232,0.45);
}
.cta-band .cta-email a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--night);
  color: rgba(240,237,232,0.45);
  padding: 3.2rem 0 2.2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.4rem;
}
.footer-brand p { color: rgba(240,237,232,0.4); margin-top: 0.8rem; max-width: 26rem; font-size: 0.85rem; }
.footer-col h4 {
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(240,237,232,0.5); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.footer-compliance {
  font-size: 0.76rem; color: rgba(240,237,232,0.3);
  max-width: 760px; line-height: 1.65;
}
.footer-compliance strong { color: rgba(201,168,76,0.55); }

/* ============================================================
   QUOTES (homepage social proof)
   ============================================================ */
.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.8rem; margin-top: 2.5rem;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.3rem;
  position: relative;
}
.quote-card::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--gold-dim);
  position: absolute; top: 1rem; left: 1.4rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.08rem; font-style: italic;
  color: var(--ink); line-height: 1.6;
  margin-bottom: 1.3rem; position: relative;
}
.quote-attr { font-size: 0.85rem; color: var(--muted); }
.quote-attr strong { color: var(--ink); font-weight: 600; display: block; }
.quote-placeholder { opacity: 0.55; border-style: dashed; }
.beta-line {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 1.6rem; text-align: center;
}
.beta-line strong { color: var(--gold); font-weight: 500; }

/* ============================================================
   PRICING STRIP (homepage)
   ============================================================ */
.pricing-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.8rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.pricing-strip-text h2 {
  color: #fff; font-size: 1.5rem; margin-bottom: 0.3rem;
}
.pricing-strip-text p { color: rgba(240,237,232,0.6); font-size: 0.9rem; margin: 0; }
.pricing-strip-prices {
  display: flex; gap: 2.5rem; align-items: center;
}
.strip-price { text-align: center; }
.strip-price .sp-num {
  font-family: var(--font-mono);
  font-size: 1.9rem; color: var(--gold-bright); line-height: 1;
}
.strip-price .sp-num sup { font-size: 0.9rem; }
.strip-price .sp-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,237,232,0.5);
  margin-top: 0.45rem;
}

@media (max-width: 960px) {
  .quote-grid { grid-template-columns: 1fr; }
  .pricing-strip { flex-direction: column; text-align: center; }
}


@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brief-artifact { max-width: 480px; margin: 0 auto; transform: none; }
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .rail { grid-template-columns: 1fr; }
  .fit-cols { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links li:not(:last-child) { display: none; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 4rem; }
  .brief-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fit-band { padding: 2rem 1.6rem; }
}

/* ============================================================
   FEATURED QUOTE (hero follow)
   ============================================================ */
.featured-quote {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0 2.8rem;
  text-align: center;
}
.fq-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-style: italic; color: var(--ink);
  line-height: 1.5; max-width: 50rem; margin: 0 auto 1.2rem;
}
.fq-attr { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
.fq-attr strong { color: var(--ink); font-weight: 600; }
.fq-attr::before {
  content: ''; display: block; width: 48px; height: 2px;
  background: var(--gold); margin: 0 auto 0.9rem;
}

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem; margin-top: 2.5rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.86rem; line-height: 1.6; }

/* ============================================================
   DESK GRID (personalization band)
   ============================================================ */
.desk-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-top: 1.8rem;
}
.desk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.desk-card h3 {
  font-size: 0.95rem; color: var(--gold-bright); margin-bottom: 0.45rem;
}
.desk-card p { font-size: 0.88rem; color: rgba(240,237,232,0.7); line-height: 1.6; }

/* ============================================================
   GOLD OUTLINE BUTTON
   ============================================================ */
.btn-outline-gold {
  background: transparent; color: var(--gold-bright);
  border: 1.5px solid rgba(201,168,76,0.55);
}
.btn-outline-gold:hover { border-color: var(--gold); background: var(--gold-ghost); }

/* ============================================================
   CTA FORM (dark band)
   ============================================================ */
.cta-form {
  max-width: 540px; margin: 2.4rem auto 0;
  display: flex; flex-direction: column; gap: 0.8rem;
  text-align: left;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  color: #f0ede8;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(240,237,232,0.35); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.08);
}
.cta-form select { color: rgba(240,237,232,0.85); }
.cta-form select option { color: var(--ink); background: #fff; }
.cta-form textarea { resize: vertical; }
.cta-form button { margin-top: 0.3rem; }

@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .desk-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}
