
/* ============================================================
   WEALTH OS — Make · Preserve · Grow
   Editorial luxury: near-black + antique gold.
   Cormorant Garamond display / Inter body. Sharp corners.
   ============================================================ */

:root {
  --bg:         #060504;
  --bg-2:       #0C0A07;
  --panel:      #100D09;
  --panel-2:    #17130D;
  --line:       rgba(198, 162, 83, 0.20);
  --line-soft:  rgba(233, 220, 190, 0.09);
  --gold:       #C6A253;
  --gold-soft:  #E8CE8B;
  --text:       #F3EFE6;
  --text-dim:   #B7AE9C;
  --text-mute:  #7C7263;
  --danger:     #D98A6A;
  --radius:     2px;
  --radius-sm:  2px;
  --maxw:       1180px;
  --serif:      "Cormorant Garamond", "Georgia", serif;
  --shadow:     0 30px 70px -28px rgba(0, 0, 0, 0.85);
  --glow:       0 14px 50px -12px rgba(198, 162, 83, 0.45);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
}

/* Italic-gold accent for emphasis words in headings */
.accent { font-style: italic; font-weight: 600; color: var(--gold-soft); }

p { margin: 0 0 1.1em; color: var(--text-dim); }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
.narrow { width: min(100% - 44px, 760px); margin-inline: auto; }

section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 17px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, #A07E36 100%);
  color: #1A1305;
  box-shadow: var(--glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 60px -14px rgba(198, 162, 83, 0.6); }
.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 19px 40px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 5, 4, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); background: rgba(6, 5, 4, 0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 20px;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a.link:hover, .nav-links a.link.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: saturate(0.6) sepia(0.3); }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 50% 8%, rgba(198,162,83,0.16), transparent 62%),
    linear-gradient(180deg, rgba(6,5,4,0.62) 0%, rgba(6,5,4,0.86) 55%, var(--bg) 100%);
}
/* faint grid texture over section bands */
.grid-tex::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(198,162,83,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,162,83,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 80%);
}
.grid-tex > * { position: relative; z-index: 1; }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(58px, 10vw, 118px);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero .tagline {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 600;
  margin-bottom: 30px;
}
.hero h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  max-width: 16ch;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text);
}
.hero .sub { font-size: clamp(17px, 2vw, 21px); color: var(--text-dim); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 26px; }
.hero-proof { display: flex; align-items: center; gap: 12px; color: var(--text-mute); font-size: 15px; }
.hero-proof strong { color: var(--text); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Generic section heading ---------- */
.head { max-width: 680px; margin-bottom: 58px; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(34px, 5vw, 58px); }
.head p { font-size: 18px; }

/* ---------- Problem grid ---------- */
.problem { background: var(--bg-2); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain {
  background: linear-gradient(180deg, rgba(224,106,106,0.05), transparent);
  border: 1px solid var(--line-soft);
  border-left: 3px solid rgba(224,106,106,0.5);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  font-weight: 500;
  color: var(--text);
}
.pain span { color: var(--danger); font-weight: 700; margin-right: 8px; }

/* ---------- Framework / phases ---------- */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.phase {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.phase:hover { transform: translateY(-6px); border-color: var(--gold); }
.phase .num {
  font-family: "Montserrat", sans-serif;
  font-size: 13px; letter-spacing: 0.2em; color: var(--gold); font-weight: 700;
}
.phase h3 { font-size: 30px; margin: 14px 0 6px; }
.phase .lead { color: var(--text-dim); margin-bottom: 20px; }
.phase ul { list-style: none; padding: 0; margin: 0; }
.phase ul li {
  padding: 9px 0 9px 26px; position: relative;
  color: var(--text); font-size: 15px; border-top: 1px solid var(--line-soft);
}
.phase ul li:first-child { border-top: 0; }
.phase ul li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 11px;
}

/* ---------- Quote band ---------- */
.quote-band { background: linear-gradient(180deg, var(--panel-2), var(--bg-2)); text-align: center; }
.quote-band blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.24;
  max-width: 20ch;
  margin: 0 auto 22px;
  color: var(--text);
}
.quote-band .cite { color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 24px 12px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-2); }
.stat .n { font-family: var(--serif); font-size: clamp(42px, 6vw, 66px); font-weight: 600; color: var(--gold-soft); line-height: 1; }
.stat .l { color: var(--text-dim); font-size: 14px; margin-top: 10px; }

/* ---------- Split (about / guide) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.split .media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.split h2 { font-size: clamp(28px, 4vw, 44px); }

/* ---------- Feature cards (Inside Wealth OS) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), border-color .3s;
}
.feat:hover { transform: translateY(-5px); border-color: var(--gold); }
.feat .ico {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(201,168,76,0.12); color: var(--gold); margin-bottom: 18px; font-size: 22px;
}
.feat h4 { font-size: 19px; margin-bottom: 8px; }
.feat p { margin: 0; font-size: 15px; }

/* ---------- Freedom Number calculator ---------- */
.calc-wrap { background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.calc .inputs { padding: 42px 40px; background: var(--bg-2); }
.calc .result {
  padding: 42px 40px;
  background: radial-gradient(600px 400px at 80% 0%, rgba(201,168,76,0.14), transparent), var(--panel-2);
  display: flex; flex-direction: column; justify-content: center;
}
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.input-money { position: relative; }
.input-money span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-mute); }
.field input[type="number"] {
  width: 100%; padding: 14px 16px 14px 30px;
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  color: var(--text); font-size: 17px; font-family: "Inter", sans-serif;
  transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field input[type="range"] { width: 100%; accent-color: var(--gold); }
.range-val { float: right; color: var(--gold); font-weight: 600; }
.result .r-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.result .r-number {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(54px, 7vw, 78px); color: var(--gold-soft); line-height: 1; margin: 10px 0 6px;
}
.result .r-sub { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }
.result .r-rows { border-top: 1px solid var(--line-soft); margin-top: 6px; }
.result .r-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.result .r-row b { color: var(--gold); font-family: "Montserrat", sans-serif; }
.calc-note { text-align: center; color: var(--text-mute); font-size: 13px; margin-top: 18px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.testi .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testi p { color: var(--text); font-size: 15.5px; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #1A1405;
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 16px;
}
.testi .who .n { font-weight: 600; color: var(--text); font-size: 15px; }
.testi .who .t { color: var(--text-mute); font-size: 13px; }

/* ---------- Email opt-in ---------- */
.optin { background: var(--bg-2); }
.optin-card {
  background: radial-gradient(700px 300px at 50% 0%, rgba(201,168,76,0.12), transparent), var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 52px 46px; text-align: center;
}
.optin-card h2 { font-size: clamp(26px, 3.6vw, 38px); }
.optin-form { display: flex; gap: 12px; max-width: 520px; margin: 26px auto 12px; }
.optin-form input {
  flex: 1; padding: 15px 18px; background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); color: var(--text); font-size: 16px; font-family: "Inter", sans-serif;
}
.optin-form input:focus { outline: none; border-color: var(--gold); }
.optin .fineprint { color: var(--text-mute); font-size: 13px; }
.optin .success { color: var(--gold-soft); font-weight: 600; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; max-width: 980px; margin-inline: auto; }
.price {
  position: relative; background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 34px 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.price:hover { transform: translateY(-6px); }
.price.featured { border-color: var(--gold); background: linear-gradient(180deg, var(--panel-2), var(--bg-2)); box-shadow: var(--shadow); }
.price .tier { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; }
.price h3 { font-size: 26px; margin: 8px 0 4px; }
.price .amt { font-family: var(--serif); font-weight: 600; font-size: 52px; color: var(--gold-soft); line-height: 1; }
.price .amt small { font-size: 15px; color: var(--text-mute); font-weight: 500; }
.price .desc { color: var(--text-dim); font-size: 14.5px; margin: 14px 0 20px; min-height: 42px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price ul li { padding: 8px 0 8px 24px; position: relative; font-size: 14.5px; color: var(--text); border-top: 1px solid var(--line-soft); }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #1A1405;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.1em;
  padding: 5px 16px; border-radius: 100px; text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 24px 44px 24px 0; position: relative; color: var(--text);
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 18px;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 26px; font-weight: 400; transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 24px; margin: 0; }

/* ---------- Program phase rows ---------- */
.prow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 40px; }
.prow:nth-child(even) .prow-media { order: 2; }
.prow .step { font-family: var(--serif); font-style: italic; font-size: 84px; font-weight: 500; color: rgba(198,162,83,0.28); line-height: 1; }
.prow h3 { font-size: clamp(30px, 4vw, 44px); margin: 6px 0 4px; }
.prow .tag { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 16px; }
.prow-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 20px; }
.prow-list div { padding-left: 24px; position: relative; font-size: 15px; color: var(--text); }
.prow-list div::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.prow-media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ---------- Track record (about) ---------- */
.record { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.record-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.record-card .rc-img { background: var(--bg-2); padding: 28px; display: grid; place-items: center; }
.record-card .rc-img img { max-height: 120px; width: auto; }
.record-card .rc-body { padding: 26px 28px; }
.record-card .rc-logo { height: 34px; width: auto; margin-bottom: 16px; }
.record-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.record-card ul li { padding: 7px 0 7px 24px; position: relative; font-size: 15px; color: var(--text); }
.record-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: radial-gradient(800px 400px at 50% 120%, rgba(201,168,76,0.18), transparent), var(--bg-2); text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.6vw, 50px); max-width: 18ch; margin-inline: auto; }
.cta-band p { font-size: 18px; max-width: 52ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: start; }
.cal-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); min-height: 680px; }
.contact-side .cbox { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 18px; }
.contact-side .cbox h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-side .cbox a { color: var(--text); font-size: 17px; }
.contact-side ul { list-style: none; padding: 0; margin: 0; }
.contact-side ul li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; color: var(--text); }
.contact-side ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 64px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .banner-img { max-width: 260px; margin-bottom: 18px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand img { height: 38px; width: auto; }
.footer-brand span { font-family: var(--serif); font-weight: 600; letter-spacing: 0.2em; font-size: 20px; color: var(--text); }
.footer p { font-size: 15px; max-width: 42ch; }
.footer .amp { color: var(--text-mute); font-size: 14px; }
.footer h5 { font-family: "Montserrat", sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--text-dim); font-size: 15px; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--text-mute); font-size: 14px; }
.footer-bottom .mpg { color: var(--gold); letter-spacing: 0.14em; font-family: "Montserrat", sans-serif; font-size: 13px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 130px 0 60px; text-align: center; background: radial-gradient(900px 400px at 50% -10%, rgba(201,168,76,0.12), transparent), var(--bg-2); }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); }
.page-hero p { font-size: 19px; max-width: 60ch; margin-inline: auto; color: var(--text-dim); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Placeholder tag for software link ---------- */
.soon { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .pain-grid, .phase-grid, .feat-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .split, .prow, .calc, .record, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .prow:nth-child(even) .prow-media { order: 0; }
  .prow-media { max-width: 480px; }
  .calc .inputs, .calc .result { padding: 34px 28px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line-soft); padding: 18px 22px;
  }
  .nav-links.open a.link { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .nav .desktop-cta { display: none; }
  .pain-grid, .phase-grid, .feat-grid, .testi-grid, .price-grid, .stats { grid-template-columns: 1fr; }
  .optin-form { flex-direction: column; }
  .hero { min-height: auto; padding: 90px 0 70px; }
  .prow-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- Mechanism rows (the off-ramp: Watch / Flag / Sweep) ---------- */
.mrow { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.mrow:last-child { margin-bottom: 0; }
.mrow .step { font-family: var(--serif); font-style: italic; font-size: 84px; font-weight: 500; color: rgba(198,162,83,0.28); line-height: 1; }
.mrow h3 { font-size: clamp(26px, 3.4vw, 36px); margin: 6px 0 10px; }
.mrow .tag { color: var(--gold); font-weight: 600; margin-bottom: 10px; font-family: "Montserrat", sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; }
.mrow p:last-child { margin-bottom: 0; }
@media (max-width: 940px) {
  .mrow { grid-template-columns: 1fr; gap: 12px; }
  .mrow .step { font-size: 56px; }
}

/* ---------- Trades marquee strip ---------- */
.trades { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); padding: 26px 0; }
.trades ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.trades li { font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Visible keyboard focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .phase, .feat, .price { transition: none; }
}

/* ---------- Fix: keep the hero background behind the copy ----------
   `.grid-tex > *` sets position:relative on every direct child and, at equal
   specificity, lands after `.hero-bg`. That pulls the background image into
   flow and pushes the hero copy sideways. Higher specificity pins it back. */
.hero > .hero-bg { position: absolute; inset: 0; z-index: 0; }
