/* ============================================================
   MavrixOps premium design system (shared across ALL pages)
   LIGHT theme. Warm off-white base, EMERALD accent, charcoal text.
   ZERO navy. ZERO gold. Premium through craft, no generated images.
   ============================================================ */

:root {
  /* DARK base theme (whole site is dark cinematic now) */
  --bg:        #07120D;   /* near-black emerald base */
  --bg-2:      #0A1812;   /* alt section, slightly lighter dark */
  --surface:   #0F1C15;   /* dark cards */
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.16);

  --ink:       #EAF3EE;   /* light text */
  --ink-soft:  #A7BDB1;
  --ink-dim:   #74897E;

  /* Emerald sampled from the brand images (mavrix-logo + liz blazer):
     a DEEP jewel green, truer/less teal than before. Bright only for glow. */
  --em:        #0E7A33;   /* deep jewel emerald, primary accent */
  --em-dark:   #0A5A24;   /* hover / darker */
  --em-deep:   #06220E;   /* near-black emerald, dark sections (matches logo/Liz shadow) */
  --em-bright: #3FCB6A;   /* bright emerald, glows + on-dark accents ONLY */
  --em-grad:   linear-gradient(165deg, #14913F 0%, #0C6A2C 100%); /* button gradient */
  --em-tint:   rgba(14,122,51,0.09);
  --em-tint-2: rgba(14,122,51,0.16);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 24px;

  --maxw: 1140px;

  --shadow:    0 1px 2px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.06);
  --shadow-lg: 0 4px 12px rgba(16,24,40,.06), 0 26px 60px rgba(16,24,40,.10);
  --shadow-em: 0 10px 26px rgba(14,122,51,.22);

  --ease: cubic-bezier(.23,1,.32,1);
  --ease-drawer: cubic-bezier(.32,.72,0,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--em-dark); text-decoration: none; transition: color 160ms var(--ease); }
a:hover { color: var(--em); }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.narrow { max-width: 860px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
h1 { font-size: clamp(38px, 5.6vw, 66px); line-height: 1.03; }
h2 { font-size: clamp(28px, 3.7vw, 45px); line-height: 1.08; letter-spacing: -0.028em; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; font-weight: 600; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.55; }
.body { font-size: 17.5px; color: var(--ink-soft); line-height: 1.65; margin-top: 16px; }
.body.dim { color: var(--ink-dim); }

.eyebrow { font-size: 12px; letter-spacing: 0.17em; text-transform: uppercase; font-weight: 700; color: var(--em-dark); }
.eyebrow.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--em-tint); border: 1px solid var(--em-tint-2);
  letter-spacing: 0.04em; text-transform: none; font-size: 12.5px; color: var(--em-dark);
}
.eyebrow.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--em); box-shadow: 0 0 0 0 rgba(14,122,51,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(14,122,51,.45)} 70%{box-shadow:0 0 0 9px rgba(14,122,51,0)} 100%{box-shadow:0 0 0 0 rgba(14,122,51,0)} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 650; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 1px solid rgba(255,255,255,0.10);
  background: var(--em-grad); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 22px rgba(8,60,24,0.30);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 12px 30px rgba(8,60,24,0.42); color: #fff; }
.btn:active { transform: translateY(0) scale(.98); }
.btn.sm { padding: 9px 17px; font-size: 13.5px; }
.btn.lg { padding: 16px 30px; font-size: 16px; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { background: var(--em-tint); color: var(--em-dark); border-color: var(--em); box-shadow: none; }
.btn .arr { font-weight: 700; opacity: .7; }

/* ---------- Nav ---------- */
nav.bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px clamp(16px, 3vw, 28px);
  background: rgba(250,249,246,0.82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.bar .logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
nav.bar .logo span { color: var(--em); }
nav.bar .navlinks { display: flex; align-items: center; gap: 24px; }
nav.bar .navlinks a { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
nav.bar .navlinks a:hover { color: var(--ink); }
nav.bar .audit-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 999px;
  background: transparent; border: 1px solid var(--em); color: var(--em-dark);
  font-size: 13px; font-weight: 600;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
nav.bar .audit-pill:hover { background: var(--em); color: #fff; transform: translateY(-1px); }

/* Hamburger + mobile drawer (injected by _chrome.js) */
.hamburger { display: none; background: transparent; border: 1px solid var(--line-2); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.hamburger:hover { background: var(--em-tint); }
.hamburger svg { stroke: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-drawer-backdrop { position: fixed; inset: 0; background: rgba(28,28,30,0.35); opacity: 0; pointer-events: none; transition: opacity 250ms var(--ease); z-index: 90; }
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-drawer { position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 360px); background: var(--surface); border-left: 1px solid var(--line); z-index: 100; transform: translateX(100%); transition: transform 280ms var(--ease-drawer); display: flex; flex-direction: column; padding: 22px 22px 28px; overflow-y: auto; box-shadow: -12px 0 40px rgba(16,24,40,.12); }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.mobile-drawer .drawer-close { background: transparent; border: 0; color: var(--ink); cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.mobile-drawer .drawer-close svg { stroke: var(--ink); }
.mobile-drawer .drawer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.mobile-drawer .drawer-logo span { color: var(--em); }
.mobile-drawer .drawer-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer .drawer-links a { color: var(--ink); font-size: 17px; font-weight: 600; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.mobile-drawer .drawer-phone-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); margin: 22px 0 4px; }
.mobile-drawer .drawer-phone { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--em-dark); }
.mobile-drawer .drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.mobile-drawer .drawer-ctas .btn { width: 100%; }
body.drawer-open { overflow: hidden; }
@media (max-width: 880px) {
  nav.bar .navlinks > a:not(.audit-pill) { display: none !important; }
  .hamburger { display: inline-flex !important; }
}

/* ---------- Hero (LIGHT) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(92px, 12vw, 150px) 0 clamp(70px, 9vw, 110px); border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .6; }
.glow-a { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle, rgba(14,122,51,0.20), transparent 60%); animation: drift-a 22s var(--ease) infinite alternate; }
.glow-b { width: 700px; height: 700px; bottom: -280px; right: -180px; background: radial-gradient(circle, rgba(14,122,51,0.12), transparent 60%); animation: drift-b 26s var(--ease) infinite alternate; }
@keyframes drift-a { from { transform: translate(0,0); } to { transform: translate(60px,40px); } }
@keyframes drift-b { from { transform: translate(0,0); } to { transform: translate(-50px,-40px); } }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(28,28,30,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(28,28,30,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 25%, transparent 72%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 25%, transparent 72%);
  opacity: .8;
}
.hero-rings { position: absolute; top: 50%; right: -120px; transform: translateY(-50%); width: 620px; height: 620px; opacity: .5; animation: spin 80s linear infinite; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-inner { position: relative; z-index: 1; }
.hero-cta-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-text { max-width: 600px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; }
.hero .eyebrow.pill { margin-bottom: 24px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust .ht { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .ht-k { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--em-dark); letter-spacing: -0.02em; }
.hero-trust .ht-v { font-size: 13px; color: var(--ink-dim); line-height: 1.45; }

/* Hero inline waitlist form */
.hero h1 .hl { color: var(--em-dark); }
.hero-wl { max-width: 460px; margin-top: 4px; }
.hero-wl-fields { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 12px; }
.hero-wl input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-sm);
  padding: 14px 15px; color: var(--ink); font-size: 16px; font-family: inherit; width: 100%; min-height: 54px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.hero-wl input::placeholder { color: #6E8479; }
.hero-wl input:focus { outline: none; border-color: var(--em-bright); box-shadow: 0 0 0 3px rgba(63,203,106,0.18); }
.hero-wl .wl-submit { width: 100%; }
@media (min-width: 560px) { .hero-wl-fields { grid-template-columns: 0.9fr 1.25fr; } }

/* Animated hero demo: missed call -> text-back -> booked */
.hero-visual { display: flex; justify-content: center; }
.demo-phone { width: 100%; max-width: 384px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-head { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.demo-avatar { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--em), var(--em-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; }
.demo-h-txt { display: flex; flex-direction: column; line-height: 1.25; }
.demo-h-txt strong { font-size: 14px; color: var(--ink); }
.demo-h-txt span { font-size: 11.5px; color: var(--ink-dim); }
.demo-live { width: 9px; height: 9px; border-radius: 50%; background: var(--em); margin-left: auto; animation: pulse 2s infinite; }
.demo-body { padding: 18px 16px 22px; display: flex; flex-direction: column; gap: 12px; min-height: 326px; }
.demo-missed { display: flex; align-items: center; gap: 11px; padding: 12px 14px; background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.22); border-radius: 13px; }
.demo-missed strong { display: block; font-size: 13px; color: var(--ink); }
.demo-missed span { font-size: 12px; color: var(--ink-dim); }
.bubble { display: block; max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.45; }
.bubble.out { background: var(--em); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.bubble.in { background: var(--bg-2); color: var(--ink); margin-right: auto; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.demo-booked { display: flex; align-items: center; gap: 11px; padding: 13px 14px; background: var(--em-tint); border: 1px solid var(--em-tint-2); border-radius: 13px; }
.demo-booked > svg { background: var(--em); border-radius: 50%; padding: 4px; width: 24px; height: 24px; flex-shrink: 0; }
.demo-booked strong { display: block; font-size: 13px; color: var(--em-dark); }
.demo-booked span { font-size: 12px; color: var(--ink-soft); }
.demo-step { opacity: 0; }
@keyframes s1 { 0%,3%{opacity:0;transform:translateY(10px)} 9%{opacity:1;transform:none} 92%{opacity:1;transform:none} 100%{opacity:0} }
@keyframes s2 { 0%,25%{opacity:0;transform:translateY(10px)} 31%{opacity:1;transform:none} 92%{opacity:1;transform:none} 100%{opacity:0} }
@keyframes s3 { 0%,47%{opacity:0;transform:translateY(10px)} 53%{opacity:1;transform:none} 92%{opacity:1;transform:none} 100%{opacity:0} }
@keyframes s4 { 0%,67%{opacity:0;transform:translateY(10px)} 73%{opacity:1;transform:none} 92%{opacity:1;transform:none} 100%{opacity:0} }
.ds1 { animation: s1 9s var(--ease) infinite; }
.ds2 { animation: s2 9s var(--ease) infinite; }
.ds3 { animation: s3 9s var(--ease) infinite; }
.ds4 { animation: s4 9s var(--ease) infinite; }

/* Guarantee metric tile (deep emerald, draws the eye) */
.metric.guarantee { background: var(--em-deep); border-color: transparent; }
.metric.guarantee .big { color: #fff; }
.metric.guarantee .copy { color: #B5C9BE; }
.metric.guarantee:hover { box-shadow: var(--shadow-lg); }

/* Form card (waitlist + reusable) */
.wl-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-lg); }
.wl-card::before { content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg, var(--em), #3FCB6A); }
.wl-head { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.wl-sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 5px; margin-bottom: 20px; }
.wl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.wl-field.full { grid-column: 1 / -1; }
.wl-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); font-weight: 700; }
.wl-field input, .wl-field select, .wl-field textarea {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 14px 14px; color: var(--ink); font-size: 16px; font-family: inherit; width: 100%; min-height: 52px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.wl-field textarea { min-height: 96px; resize: vertical; }
.wl-field input::placeholder, .wl-field textarea::placeholder { color: #adadb4; }
.wl-field input:focus, .wl-field select:focus, .wl-field textarea:focus { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px var(--em-tint-2); }
.wl-submit { width: 100%; margin-top: 8px; }
.wl-fine { font-size: 12px; color: var(--ink-dim); margin-top: 13px; text-align: center; line-height: 1.5; }
.wl-success, .wl-error, .form-success, .form-error { display: none; border-radius: var(--r-sm); padding: 15px; margin-top: 13px; font-size: 14px; line-height: 1.5; }
.wl-success.show, .wl-error.show, .form-success.show, .form-error.show { display: block; }
.wl-success, .form-success { background: var(--em-tint); border: 1px solid var(--em-tint-2); color: var(--em-dark); }
.wl-error, .form-error { background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.35); color: #b91c1c; }

/* ---------- Strip ---------- */
.strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px; text-align: center; }
.strip-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-dim); font-weight: 700; }
.strip-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.strip-items .sep { color: var(--line-2); }

/* ---------- Sections ---------- */
.section { padding: clamp(74px, 9vw, 128px) 0; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 62px); text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head .sub { margin-top: 16px; color: var(--ink-soft); font-size: clamp(16px,1.4vw,18.5px); line-height: 1.6; }

/* Feature section: deep emerald, light text (use sparingly for rhythm) */
.section.feature, .cta-band { background: var(--em-deep); color: #EAF3EE; }
.section.feature h1, .section.feature h2, .section.feature h3,
.cta-band h1, .cta-band h2, .cta-band h3 { color: #fff; }
.section.feature .lede, .section.feature .body, .section.feature .sub,
.cta-band p { color: #B5C9BE; }
.section.feature .eyebrow, .cta-band .eyebrow { color: #5FD98A; }
.section.feature .btn.ghost, .cta-band .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.section.feature .btn.ghost:hover, .cta-band .btn.ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* Card base */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); }

/* Metrics */
.metrics-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.metric { padding: 28px 26px; transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease); }
.metric:hover { transform: translateY(-3px); border-color: var(--em-tint-2); box-shadow: var(--shadow-lg); }
.metric .big { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px,3vw,40px); font-weight: 700; color: var(--em-dark); letter-spacing: -0.03em; line-height: 1; }
.metric .copy { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

/* Leaks */
.leak-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.leak-card { padding: 32px 30px; }
.leak-no { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--em); letter-spacing: 0.1em; margin-bottom: 16px; }
.leak-card h3 { margin-bottom: 12px; }
.leak-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 12px; }
.leak-card p.fix { color: var(--ink); }
.leak-card .recovers { display: block; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--em-dark); font-weight: 600; font-size: 14.5px; line-height: 1.5; }

/* Bento (audit promo) */
.bento { display: grid; grid-template-columns: 1fr; gap: 32px; padding: clamp(30px,4vw,52px); align-items: center; }
.bento-text h2 { margin: 16px 0 18px; }
.bento-text .lede { margin-bottom: 22px; }
.bento-text .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.ticks { list-style: none; margin-bottom: 8px; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ink-soft); font-size: 15.5px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--em-tint); box-shadow: inset 0 0 0 1.5px var(--em); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 9px; width: 5px; height: 9px; border-right: 2px solid var(--em); border-bottom: 2px solid var(--em); transform: rotate(40deg); }
.bento-stats { background: var(--em-deep); border-radius: var(--r); padding: 32px; }
.bstat .bs-num { font-family: 'Space Grotesk', sans-serif; font-size: 52px; font-weight: 700; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.bstat .bs-num.gold { color: #5FD98A; }
.bstat .bs-label { margin-top: 10px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #8FB5A4; font-weight: 600; }
.bs-line { height: 1px; background: rgba(255,255,255,0.12); margin: 26px 0; }

/* Steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
.step { padding: 30px 26px; }
.step-no { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #fff; background: var(--em); box-shadow: var(--shadow-em); margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Built by / person */
.person { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.person .badge { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--em), var(--em-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; box-shadow: var(--shadow-em); }
.person .person-text { display: flex; flex-direction: column; }
.person .person-text strong { color: var(--ink); font-size: 16px; }
.person .person-text span { color: var(--ink-dim); font-size: 14px; }

/* Quote */
.quote-box { margin-top: 24px; border-left: 3px solid var(--em); padding: 6px 0 6px 28px; }
.quote-box p { font-size: clamp(18px,2vw,23px); line-height: 1.5; color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 18px; }
.quote-box p:last-child { margin-bottom: 0; color: var(--ink-soft); font-family: 'Inter Tight', sans-serif; font-size: 18px; font-weight: 400; }

/* Rule-left (tailored) */
.rule-left { border-left: 3px solid var(--em); padding-left: 30px; }
.rule-left .eyebrow { display: inline-block; margin-bottom: 16px; }
.rule-left h2 { margin-bottom: 20px; }

/* Forms (secondary + audit) */
.form-card { max-width: 720px; margin: 0 auto; padding: clamp(26px,4vw,40px); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card .btn { margin-top: 8px; }

/* Before / After (hero-adjacent: bigger, sharper pain-vs-relief contrast) */
.ba-section { padding: clamp(80px,10vw,150px) 0; }
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.ba-col { border-radius: var(--r-lg); padding: 40px 34px; }
/* WITHOUT: cooler, desaturated, heavier, deflated */
.ba-col.before { background: linear-gradient(165deg, #14181C, #0B0E10); border: 1px solid rgba(255,255,255,0.07); }
/* WITH: rich emerald, brighter, lifted (relief) */
.ba-col.after { position: relative; background: linear-gradient(165deg, #0B3F1E, #06220E); border: 1px solid rgba(95,217,138,0.22); box-shadow: 0 30px 80px rgba(6,40,18,0.55), inset 0 0 60px rgba(20,145,63,0.12); }
.ba-col.after::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); pointer-events: none; background: radial-gradient(120% 90% at 80% 0%, rgba(63,203,106,0.16), transparent 55%); }
.ba-col.before .ba-item { color: #8b9099; }
.ba-h { display: flex; align-items: center; gap: 11px; margin-bottom: 26px; }
.ba-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; padding: 7px 13px; border-radius: 999px; }
.ba-col.before .ba-tag { background: rgba(178,58,46,0.10); color: #b23a2e; border: 1px solid rgba(178,58,46,0.24); }
.ba-col.after .ba-tag { background: rgba(95,217,138,0.16); color: #5FD98A; border: 1px solid rgba(95,217,138,0.34); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.ba-item { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.ba-col.before .ba-item { color: #5c615b; }
.ba-col.after .ba-item { color: #E6F4EC; }
.ba-ico { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ba-col.before .ba-ico { background: rgba(178,58,46,0.12); }
.ba-col.after .ba-ico { background: var(--em); box-shadow: 0 2px 8px rgba(14,122,51,0.45); }
.ba-cta { text-align: center; margin-top: 44px; }
.ba-cta-sub { margin-top: 12px; font-size: 13px; color: var(--ink-dim); }
/* scroll stagger: pains fade in first, then the wins */
.ba-col.before .ba-item:nth-child(1){transition-delay:.04s} .ba-col.before .ba-item:nth-child(2){transition-delay:.11s}
.ba-col.before .ba-item:nth-child(3){transition-delay:.18s} .ba-col.before .ba-item:nth-child(4){transition-delay:.25s}
.ba-col.before .ba-item:nth-child(5){transition-delay:.32s} .ba-col.before .ba-item:nth-child(6){transition-delay:.39s}
.ba-col.after .ba-item:nth-child(1){transition-delay:.46s} .ba-col.after .ba-item:nth-child(2){transition-delay:.53s}
.ba-col.after .ba-item:nth-child(3){transition-delay:.60s} .ba-col.after .ba-item:nth-child(4){transition-delay:.67s}
.ba-col.after .ba-item:nth-child(5){transition-delay:.74s} .ba-col.after .ba-item:nth-child(6){transition-delay:.81s}
@media (min-width: 820px) { .ba-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .ba-col { padding: 48px 44px; } }

/* CTA band */
.cta-band { position: relative; overflow: hidden; padding: clamp(80px,10vw,130px) 0; text-align: center; border-top: 1px solid var(--line); }
.cta-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 760px; height: 420px; background: radial-gradient(circle, rgba(63,203,106,0.20), transparent 60%); filter: blur(80px); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { font-size: clamp(16px,1.5vw,19px); line-height: 1.6; max-width: 620px; margin: 0 auto 30px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Simple / legal pages (terms, privacy, etc.) ---------- */
.page-hero { padding: clamp(70px,9vw,120px) 0 clamp(34px,5vw,54px); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { display: inline-block; margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 17px; margin-top: 14px; max-width: 640px; }
.prose { max-width: 760px; margin: 0 auto; padding: clamp(46px,6vw,72px) 22px clamp(60px,8vw,100px); }
.prose h2 { font-size: clamp(22px,2.4vw,30px); margin: 40px 0 14px; }
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--em-dark); text-decoration: underline; }

/* ---------- Express audit: price card + intake form + pill tag ---------- */
.pill-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--em-dark); background: var(--em-tint); border: 1px solid var(--em-tint-2); padding: 6px 13px; border-radius: 999px; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-lg); max-width: 520px; margin-top: 28px; }
.price-card .price { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--em-dark); letter-spacing: -0.03em; line-height: 1; }
.price-card .price-sub { color: var(--ink-dim); font-size: 14px; margin: 8px 0 18px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.price-card li { display: flex; gap: 10px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.price-card li .check { color: var(--em); font-weight: 700; flex-shrink: 0; }
.intake label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin: 14px 0 6px; }
.intake input, .intake select, .intake textarea { width: 100%; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 14px; font-size: 16px; font-family: inherit; min-height: 50px; color: var(--ink); }
.intake textarea { min-height: 92px; resize: vertical; }
.intake input:focus, .intake select:focus, .intake textarea:focus { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px var(--em-tint-2); }
.grid.cols-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- ROI Calculator ---------- */
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.input-row { margin-bottom: 22px; }
.input-row label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; color: var(--ink); font-size: 15px; margin-bottom: 10px; }
.input-row label .v { font-family: 'Space Grotesk', sans-serif; color: var(--em-dark); font-weight: 700; }
.input-row .hint { font-size: 12.5px; color: var(--ink-dim); margin-top: 8px; }
.input-row input[type=range] { width: 100%; accent-color: var(--em); height: 6px; }
.jackpot { background: var(--em-deep); border-radius: var(--r-lg); padding: 8px 28px; }
.jackpot .row { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.jackpot .row:last-child { border-bottom: 0; }
.jackpot .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: #9FBDB0; font-weight: 600; }
.jackpot .num { font-family: 'Space Grotesk', sans-serif; font-size: 46px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1; margin: 6px 0; }
.jackpot .row.featured .num { color: #5FD98A; }
.jackpot .sub { font-size: 13px; color: #8FB5A4; }
.calc-disclaimer { font-size: 12.5px; color: var(--ink-dim); margin-top: 14px; text-align: center; line-height: 1.5; }
.method-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 8px; }
@media (min-width: 720px) { .method-grid { grid-template-columns: repeat(4, 1fr); } }
.method-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--shadow); }
.method-card .num { font-family: 'Space Grotesk', sans-serif; color: var(--em); font-weight: 700; font-size: 14px; }
.method-card h3 { margin: 10px 0 8px; font-size: 16px; }
.method-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.method-foot { margin-top: 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Methodology / prose extras ---------- */
.prose .source { font-size: 13px; color: var(--ink-dim); margin-top: -8px; margin-bottom: 16px; }
.callout { background: var(--em-tint); border: 1px solid var(--em-tint-2); border-left: 4px solid var(--em); border-radius: var(--r-sm); padding: 16px 18px; margin: 18px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.callout strong { color: var(--ink); }

/* ---------- Florida Index ---------- */
.bullets { list-style: none; display: flex; flex-direction: column; }
.bullets li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); }
.bullets li:last-child { border-bottom: 0; }
.bullets li a { color: var(--em-dark); font-weight: 600; }
.idx-cover { background: var(--em-deep); color: #fff; border-radius: var(--r-lg); padding: 34px; }
.idx-cover h3 { color: #fff; margin-bottom: 12px; }
.idx-cover p { color: #B5C9BE; }
.idx-cover .badge-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #5FD98A; background: rgba(95,217,138,.14); border: 1px solid rgba(95,217,138,.3); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.idx-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 860px) { .idx-grid { grid-template-columns: 1fr 1fr; gap: 44px; } }
.idx-form { display: flex; gap: 10px; flex-wrap: wrap; }
.idx-form input { flex: 1; min-width: 240px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-sm); padding: 14px; font-size: 16px; font-family: inherit; min-height: 52px; color: var(--ink); }
.idx-form input::placeholder { color: #6E8479; }
.idx-form input:focus { outline: none; border-color: var(--em-bright); box-shadow: 0 0 0 3px rgba(63,203,106,0.18); }

/* ---------- Comparison tables ---------- */
.compare-block { margin-bottom: 44px; }
.compare-block h2 { margin-bottom: 10px; }
.compare-block .summary { color: var(--ink-soft); max-width: 760px; margin-bottom: 20px; font-size: 16px; line-height: 1.6; }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
.cmp { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; font-size: 14px; box-shadow: var(--shadow); }
.cmp th, .cmp td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { background: var(--em-deep); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .feature { font-weight: 600; color: var(--ink); }
.cmp .them { color: var(--ink-dim); }
.cmp .us { color: var(--em-dark); font-weight: 600; }
.cmp .why { color: var(--ink-soft); }

/* ---------- Chip (capability tags, comparison labels) ---------- */
.chip { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--em-dark); background: var(--em-tint); border: 1px solid var(--em-tint-2); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }

/* ---------- Pricing tiers ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.ptier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow); }
.ptier.featured { border: 2px solid var(--em); box-shadow: var(--shadow-lg); position: relative; }
.ptier .pop { position: absolute; top: -12px; left: 28px; background: var(--em); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px; }
.ptier h3 { font-size: 22px; margin-bottom: 8px; }
.ptier .price { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.ptier .price span { font-size: 15px; color: var(--ink-dim); font-weight: 500; font-family: 'Inter Tight', sans-serif; }
.ptier .scope { color: var(--ink-dim); font-size: 13px; margin: 8px 0; }
.ptier .plus { font-weight: 600; color: var(--ink); font-size: 14px; margin: 14px 0 6px; }
.ptier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 16px 0 24px; }
.ptier li { position: relative; padding-left: 27px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }
.ptier li::before { content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px; border-radius: 50%; background: var(--em-tint); box-shadow: inset 0 0 0 1.5px var(--em); }
.ptier li::after { content: ""; position: absolute; left: 5.5px; top: 8px; width: 5px; height: 8px; border-right: 2px solid var(--em); border-bottom: 2px solid var(--em); transform: rotate(40deg); }
.ptier .btn { width: 100%; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Free-audit: FAQ, consent block, footnotes ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; color: var(--em); font-size: 24px; line-height: 1; font-weight: 400; flex-shrink: 0; }
details.faq-item[open] summary::after { content: "\2013"; }
details.faq-item p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 660px; }
.pewc-block { margin-top: 14px; padding: 14px 15px; background: var(--em-tint); border: 1px solid var(--em-tint-2); border-radius: var(--r-sm); }
.pewc-block label { display: flex; align-items: flex-start; gap: 10px; font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.pewc-block input[type=checkbox] { margin-top: 3px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--em); cursor: pointer; }
.pewc-block strong { color: var(--ink); }
.post-submit { margin-top: 14px; font-size: 13px; color: var(--ink-dim); text-align: center; }
.post-submit a { color: var(--em-dark); font-weight: 700; }
.success-check { font-size: 44px; color: var(--em); font-weight: 700; line-height: 1; }
.audit-footnotes { max-width: 760px; margin: 0 auto 18px; color: var(--ink-dim); font-size: 12px; line-height: 1.5; }
.audit-footnotes p { margin-bottom: 6px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 28px; }
.trust-row .item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.trust-row .item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--em); }

/* ---------- Legal pages: draft banner + TOC ---------- */
.draft-banner { background: #FEF3C7; border-bottom: 1px solid #FCD34D; color: #92400E; font-size: 13.5px; font-weight: 600; text-align: center; padding: 11px 22px; line-height: 1.5; }
.draft-banner strong { color: #78350F; }
.legal-meta { color: var(--ink-dim); font-size: 14px; margin-top: 10px; }
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px; margin: 0 auto clamp(34px,5vw,50px); max-width: 760px; }
.toc h2 { font-size: 13px !important; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-dim); margin: 0 0 14px !important; font-family: 'Inter Tight', sans-serif; font-weight: 700; }
.toc ol { margin: 0 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.9; columns: 2; column-gap: 28px; }
.toc a { color: var(--ink-soft); }
.toc a:hover { color: var(--em-dark); }
.flag { display: inline-block; background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.22); color: #b23a2e; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }
.prose h2[id], .prose h3[id] { scroll-margin-top: 90px; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; }
.footer-brand .logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.footer-brand .logo span { color: var(--em); }
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-brand a { color: var(--ink-soft); }
footer .links { display: flex; flex-wrap: wrap; gap: 14px 22px; align-content: flex-start; }
footer .links a { color: var(--ink-soft); font-size: 14px; }
footer .links a:hover { color: var(--ink); }
footer .links a.gold { color: var(--em-dark); font-weight: 600; }

/* ---------- Tagline band ---------- */
.tagline-band { background: var(--em-deep); color: #fff; text-align: center; padding: clamp(46px,7vw,78px) 0; }
.tagline-band .tl { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,4vw,42px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; max-width: 880px; margin: 0 auto; }
.tagline-band .tl .accent { color: #5FD98A; }
.tagline-band p { color: #9FBDB0; margin-top: 14px; font-size: clamp(15px,1.6vw,18px); }

/* ---------- The Edge ---------- */
.edge-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .edge-grid { grid-template-columns: repeat(3, 1fr); } }
.edge-card { padding: 28px 26px; }
.edge-card .edge-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--em-tint); border: 1px solid var(--em-tint-2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--em-dark); font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.edge-card h3 { margin-bottom: 9px; }
.edge-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }

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

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .leak-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .hero-trust { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (min-width: 920px) {
  .hero-cta-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .bento { grid-template-columns: 1.3fr 0.7fr; gap: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-rings, .demo-live { animation: none !important; }
  .demo-step { opacity: 1 !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   DARK CINEMATIC SYSTEM (Talk-Titan-rivaling, emerald translation)
   Dark dramatic sections interspersed with the light base.
   ============================================================ */

/* Dark section shell */
.dark { position: relative; background: #05140E; color: #EAF3EE; overflow: hidden; }
.dark.near-black { background: #060A09; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .lede, .dark .sub, .dark .body { color: #9FBDB0; }
.dark .section-head .sub { color: #9FBDB0; }
.dark .eyebrow { color: #5FD98A; }
/* radial accent glow layers for dark sections */
.glow-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.glow-layer::before { content: ""; position: absolute; width: 760px; height: 620px; border-radius: 50%; filter: blur(110px); opacity: .55;
  background: radial-gradient(circle, rgba(14,122,51,0.40), transparent 62%); top: -240px; left: 50%; transform: translateX(-50%); }
.glow-layer::after { content: ""; position: absolute; width: 560px; height: 520px; border-radius: 50%; filter: blur(120px); opacity: .42;
  background: radial-gradient(circle, rgba(20,145,63,0.30), transparent 60%); bottom: -260px; right: -120px; }
.dark .wrap, .dark .hero-inner { position: relative; z-index: 1; }
/* faint grid texture for dark sections */
.dark .grid-tex { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 25%, transparent 75%);
          mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 25%, transparent 75%); }

/* Monospace live status chip */
.statuschip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(95,217,138,0.08); border: 1px solid rgba(95,217,138,0.26);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #5FD98A; font-weight: 600; }
.statuschip .live { width: 8px; height: 8px; border-radius: 50%; background: #3FCB6A; box-shadow: 0 0 0 0 rgba(63,203,106,.6); animation: pulse 2s infinite; }

/* Oversized cinematic display headline */
.display-xl { font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.035em; line-height: 0.98;
  font-size: clamp(44px, 8vw, 104px); }
.grad-em { background: linear-gradient(100deg, #3FCB6A 0%, #5FD98A 45%, #0C6A2C 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.serif-accent { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; color: #5FD98A; }

/* Audio waveform animation */
.waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 56px; }
.waveform span { width: 4px; border-radius: 4px; background: linear-gradient(180deg, #3FCB6A, #0E7A33); animation: wave 1.1s ease-in-out infinite; }
@keyframes wave { 0%,100% { height: 10px; opacity: .55; } 50% { height: 46px; opacity: 1; } }

/* Industry pills row */
.ind-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ind-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); color: #C9DCD3; font-size: 13.5px; font-weight: 500; }
.ind-pill .d { width: 6px; height: 6px; border-radius: 50%; background: #3FCB6A; }
.ind-pill.soon { opacity: .6; }

/* Big single-stat dark cards */
.bigstat-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .bigstat-grid { grid-template-columns: repeat(3, 1fr); } }
.bigstat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-lg); padding: 32px 28px; transition: border-color 200ms var(--ease), transform 200ms var(--ease); }
.bigstat:hover { border-color: rgba(95,217,138,0.4); transform: translateY(-3px); }
.bigstat .n { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(40px,5.5vw,64px); letter-spacing: -0.04em; line-height: 1; color: #fff; }
.bigstat .n .u { color: #5FD98A; }
.bigstat .l { margin-top: 12px; color: #9FBDB0; font-size: 15px; line-height: 1.5; }

/* Dark CTA pill buttons inside dark sections */
.dark .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.26); }
.dark .btn.ghost:hover { background: rgba(255,255,255,0.07); border-color: #fff; color: #fff; }

/* Liz character card (real 3D render, framed dramatic) */
.liz-stage { position: relative; display: flex; align-items: center; justify-content: center; }
.liz-halo { position: absolute; width: 108%; height: 108%; border-radius: var(--r-lg); background: radial-gradient(circle, rgba(63,203,106,0.34), transparent 66%); filter: blur(54px); z-index: 0; animation: liz-pulse 5s var(--ease) infinite alternate; }
@keyframes liz-pulse { from { transform: scale(0.97); opacity: .65; } to { transform: scale(1.03); opacity: 1; } }
.liz-card { position: relative; z-index: 1; width: 100%; max-width: 420px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(95,217,138,0.28); box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.04); animation: liz-float 7s var(--ease) infinite alternate; }
@keyframes liz-float { from { transform: translateY(0); } to { transform: translateY(-12px); } }
.liz-card img { display: block; width: 100%; height: auto; }
.liz-card .liz-badge { position: absolute; z-index: 2; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(6,10,9,0.78); border: 1px solid rgba(95,217,138,0.4); backdrop-filter: blur(8px); color: #EAF3EE; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.liz-card .liz-badge .live { width: 8px; height: 8px; border-radius: 50%; background: #3FCB6A; box-shadow: 0 0 0 0 rgba(63,203,106,.6); animation: pulse 2s infinite; }
.liz-card .liz-cap { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 28px 18px 16px; background: linear-gradient(to top, rgba(4,12,9,0.92), transparent); color: #fff; font-weight: 600; font-size: 14.5px; }
.liz-card .liz-cap span { display: block; color: #9FBDB0; font-weight: 400; font-size: 13px; margin-top: 2px; }

/* Meet Liz section layout */
.meet-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .meet-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.meet-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.meet-list li { display: flex; gap: 12px; align-items: flex-start; color: #C9DCD3; font-size: 15.5px; line-height: 1.55; }
.meet-list li .mk { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--em); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* Demo line cards */
.demo-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .demo-grid { grid-template-columns: repeat(3, 1fr); } }
.demo-card { position: relative; background: linear-gradient(170deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-lg); padding: 26px 24px; overflow: hidden; transition: border-color 200ms var(--ease), transform 200ms var(--ease); }
.demo-card:hover { border-color: rgba(95,217,138,0.4); transform: translateY(-3px); }
.demo-card .live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px; background: rgba(63,203,106,0.14); border: 1px solid rgba(63,203,106,0.36); color: #5FD98A; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.demo-card .live-badge .live { width: 7px; height: 7px; border-radius: 50%; background: #3FCB6A; animation: pulse 2s infinite; }
.demo-card h3 { color: #fff; margin-bottom: 6px; }
.demo-card .num { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 4px; }
.demo-card .sub { color: #9FBDB0; font-size: 13.5px; margin-bottom: 18px; }
.demo-card .call-link { display: inline-flex; align-items: center; gap: 7px; color: #5FD98A; font-weight: 700; font-size: 14px; }

/* Recorded sample player */
.player { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r); padding: 18px 20px; max-width: 540px; }
.player .play { width: 52px; height: 52px; border-radius: 50%; background: var(--em); border: 0; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 160ms var(--ease), transform 160ms var(--ease); }
.player .play:hover { background: #3FCB6A; transform: scale(1.05); }
.player .pmeta { flex: 1; }
.player .pmeta .pt { color: #fff; font-weight: 600; font-size: 15px; }
.player .pmeta .ps { color: #9FBDB0; font-size: 13px; margin-top: 2px; }
.player .pbars { display: flex; align-items: center; gap: 3px; height: 28px; margin-top: 8px; }
.player .pbars span { width: 3px; border-radius: 3px; background: rgba(95,217,138,0.5); }

/* Glowing dark sliders (calculator in dark mode) */
.calc-dark .input-row label { color: #EAF3EE; }
.calc-dark .input-row label .v { color: #5FD98A; }
.calc-dark .input-row .hint { color: #7E9A8D; }
.calc-dark .minmax { display: flex; justify-content: space-between; font-size: 11px; color: #5f7268; margin-top: 6px; }
input[type=range].em-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.12); outline: none; }
input[type=range].em-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--em); border: 3px solid #061a12; box-shadow: 0 0 0 4px rgba(14,122,51,0.35), 0 0 18px rgba(63,203,106,0.7); cursor: pointer; }
input[type=range].em-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--em); border: 3px solid #061a12; box-shadow: 0 0 0 4px rgba(14,122,51,0.35), 0 0 18px rgba(63,203,106,0.7); cursor: pointer; }

/* Dramatic calculator result panel */
.calc-result { background: linear-gradient(165deg, #07301F, #05140E); border: 1px solid rgba(95,217,138,0.2); border-radius: var(--r-lg); padding: 34px 30px; }
.calc-result .pre { color: #9FBDB0; font-size: 14px; }
.calc-result .huge { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(46px,8vw,84px); letter-spacing: -0.04em; line-height: 1; margin: 6px 0; }
.calc-result .post { color: #9FBDB0; font-size: 15px; }
.calc-breakdown { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.calc-breakdown .b { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-sm); padding: 16px; }
.calc-breakdown .b .bl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: #7E9A8D; font-weight: 600; }
.calc-breakdown .b .bn { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: #fff; margin-top: 6px; }
.calc-row { display: flex; align-items: center; gap: 11px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.08); color: #C9DCD3; font-size: 14.5px; margin-top: 8px; }
.calc-row strong { color: #fff; }

/* Comparison rows (dark, icon header + x/check) */
.vsrow { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; }
.vsrow .vshead { display: flex; align-items: center; gap: 11px; padding: 16px 20px; font-weight: 600; color: #fff; font-size: 16px; }
.vsrow .vshead .vsico { width: 30px; height: 30px; border-radius: 8px; background: rgba(95,217,138,0.12); display: flex; align-items: center; justify-content: center; color: #5FD98A; }
.vsrow .vsopt { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-size: 14.5px; }
.vsrow .vsopt.them { color: #8aa094; border-top: 1px solid rgba(255,255,255,0.06); }
.vsrow .vsopt.us { color: #EAF3EE; background: rgba(14,122,51,0.10); border-top: 1px solid rgba(95,217,138,0.18); }
.vsrow .vsopt .tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; width: 96px; flex-shrink: 0; }
.vsrow .vsopt.them .tag { color: #6f8479; }
.vsrow .vsopt.us .tag { color: #5FD98A; }
.vsrow .vsopt .mk { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.vsrow .vsopt.them .mk { background: rgba(192,57,43,0.16); color: #e07a6e; }
.vsrow .vsopt.us .mk { background: var(--em); color: #fff; }

/* Auto-recap SMS preview */
.sms-preview { max-width: 300px; margin: 0 auto; background: linear-gradient(180deg,#0c1712,#070d0a); border: 1px solid rgba(255,255,255,0.12); border-radius: 36px; padding: 14px 12px 18px; box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.03); position: relative; }
.sms-preview::before { content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #05100B; border-radius: 999px; }
.sms-preview .sms-top { text-align: center; color: #6E8479; font-size: 11px; margin: 26px 0 14px; }
.sms-bubble { background: var(--em-grad); color: #fff; border-radius: 16px 16px 16px 5px; padding: 10px 13px; font-size: 13px; line-height: 1.45; margin-bottom: 8px; max-width: 86%; box-shadow: 0 4px 14px rgba(8,60,24,0.4); }
.sms-bubble.them { background: rgba(255,255,255,0.07); color: #EAF3EE; border-radius: 16px 16px 5px 16px; margin-left: auto; max-width: 70%; box-shadow: none; }
.offchip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; background: rgba(245,200,75,0.12); border: 1px solid rgba(245,200,75,0.34); color: #d6a82f; font-size: 12px; font-weight: 700; }

/* Dark footer variant when preceding section is dark — keep standard footer */

/* ============================================================
   BRAND IMAGE TREATMENTS
   ============================================================ */
/* nav logo mark */
nav.bar .logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark { width: 26px; height: 26px; object-fit: contain; mix-blend-mode: multiply; }
.dark .logo-mark, nav.bar.on-dark .logo-mark { mix-blend-mode: normal; }

/* dark hero/section background image layer */
.bg-img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.5; }
.bg-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,9,0.72), rgba(5,10,9,0.92)); }
.dark .wrap, .dark .hero-inner { position: relative; z-index: 2; }

/* feature spots (dark glowing product images) */
.spots-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .spots-grid { grid-template-columns: repeat(3,1fr); } }
.spot-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 56px rgba(0,0,0,0.45); transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.spot-card:hover { border-color: rgba(95,217,138,0.45); transform: translateY(-5px); box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 40px rgba(20,145,63,0.18); }
.spot-card .spot-wrap { position: relative; }
.spot-card .spot-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; }
.spot-card .spot-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(15,28,21,0.95)); pointer-events: none; }
.spot-card .spot-body { padding: 20px 24px 26px; margin-top: -1px; }
.spot-card h3 { color: #fff; margin-bottom: 8px; }
.spot-card p { color: #9FBDB0; font-size: 14.5px; line-height: 1.55; margin: 0; }

/* audit page visuals */
.audit-hero-img { width: 100%; max-width: 480px; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); display: block; }
.audit-results-img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow); display: block; }

/* Floating Liz cutout (transparent standalone, mascot treatment) */
.liz-stage-float { padding: 10px 0; }
.liz-float { position: relative; z-index: 1; width: 100%; max-width: 400px; height: auto; filter: drop-shadow(0 34px 56px rgba(0,0,0,0.6)); animation: liz-float 7s var(--ease) infinite alternate; }
.liz-badge.floatbadge { position: absolute; z-index: 2; bottom: 2%; left: 50%; transform: translateX(-50%); top: auto; }

/* ============================================================
   GLOBAL DARK THEME OVERRIDES (base flipped to dark, sitewide)
   ============================================================ */
nav.bar { background: rgba(7,18,13,0.86); border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo-mark { mix-blend-mode: normal; width: 30px; height: 30px; }
a { color: #5FD98A; } a:hover { color: #8FE7AD; }
.eyebrow, .eyebrow.pill, .hl { color: #5FD98A; }
nav.bar .audit-pill { color: #5FD98A; border-color: rgba(95,217,138,0.5); }
nav.bar .audit-pill:hover { color: #06120E; }
nav.bar .navlinks a { color: var(--ink-soft); } nav.bar .navlinks a:hover { color: #fff; }
.input-row label .v, .metric .big, .method-card .num, .faq-item summary::after, .cmp .us, .leak-card .recovers { color: #5FD98A; }
.ptier .price { color: #fff; }
.section-head .sub, .lede, .body { color: var(--ink-soft); }
/* dark form fields everywhere */
.wl-field input, .wl-field select, .wl-field textarea,
.intake input, .intake select, .intake textarea {
  background: rgba(255,255,255,0.05); color: var(--ink); border: 1px solid rgba(255,255,255,0.16);
}
.wl-field input::placeholder, .wl-field textarea::placeholder,
.intake input::placeholder, .intake textarea::placeholder { color: #6E8479; }
.wl-field input:focus, .intake input:focus, .intake select:focus, .intake textarea:focus { border-color: var(--em-bright); box-shadow: 0 0 0 3px rgba(63,203,106,0.18); }
.pewc-block { background: rgba(95,217,138,0.07); border: 1px solid rgba(95,217,138,0.2); }
.pewc-block label { color: var(--ink-soft); } .pewc-block strong { color: var(--ink); }
.faq-item summary { color: var(--ink); }
.prose a { color: #5FD98A; }
.prose strong { color: var(--ink); }
.toc a { color: var(--ink-soft); }
/* every page hero gets an ambient emerald glow on the dark base */
.page-hero { position: relative; background: radial-gradient(120% 85% at 50% -12%, rgba(20,145,63,0.18), transparent 60%); }
.page-hero .wrap { position: relative; z-index: 1; }
/* faint logo watermark behind a dark section */
.wm { position: relative; overflow: hidden; }
.wm::before { content: ""; position: absolute; z-index: 0; right: -4%; top: 50%; transform: translateY(-50%); width: min(620px, 70%); height: min(620px, 70%);
  background: url('/assets/mavrix-logo-transparent.png') center/contain no-repeat; opacity: 0.07; pointer-events: none; }
.wm .wrap { position: relative; z-index: 1; }

/* ============================================================
   SECTION BACKGROUND IMAGES (mixed sitewide for cinematic variety)
   Add `bgimg` + one of bg-recep / bg-office / bg-tex to any section.
   ============================================================ */
.bgimg { position: relative; overflow: hidden; }
.bgimg > .wrap, .bgimg > .hero-inner { position: relative; z-index: 2; }
.bgimg::before { content: ""; position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.30; pointer-events: none; }
.bgimg::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(7,18,13,0.82), rgba(7,18,13,0.95)); }
.bg-recep::before { background-image: url('/assets/hero-bg.png'); }
.bg-office::before { background-image: url('/assets/hero-office.png'); }
.bg-tex::before    { background-image: url('/assets/bg-texture.png'); opacity: 0.45; }
.bg-tex::after     { background: linear-gradient(180deg, rgba(7,18,13,0.74), rgba(7,18,13,0.90)); }
