/* WreckedLeads shared site styles (design system + page hero mocks).
   Extracted from the landing pages so it is downloaded once and cached. */
/* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:          #0b0b0c;
      --bg-2:        #101012;
      --panel:       #19191c;
      --panel-2:     #232327;
      --ink:         #f1f1f2;
      --mut:         #9ba1ab;
      --mut-strong:  #c9cdd4;
      --gold:        #ceb888;
      --gold-deep:   #b0975c;
      --on-gold:     #151515;
      --line:        rgba(255, 255, 255, 0.09);
      --green:       #4ade80;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--bg);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Kill orphan words (one word alone on a line) site-wide: balance short
       multi-line headings, and keep paragraphs from ending on a lone word.
       Supported on iOS Safari 17.5+/Chrome; older browsers ignore it safely. */
    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1 !important; transform: none !important; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .reveal.is-visible { opacity: 1; transform: none; }
    .delay-1 { transition-delay: 0.05s; }
    .delay-2 { transition-delay: 0.1s; }
    .delay-3 { transition-delay: 0.15s; }
    .delay-4 { transition-delay: 0.2s; }

    /* ===== NAV: shared component, see /assets/nav.css ===== */

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      background: var(--gold);
      color: var(--on-gold);
      font-size: 1rem;
      font-weight: 700;
      padding: 0.95rem 1.9rem;
      border-radius: 11px;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      letter-spacing: -0.1px;
      transition: filter 0.15s, transform 0.12s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    }
    .btn-primary:hover {
      filter: brightness(1.07);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    }
    .btn-small { font-size: 0.85rem; padding: 0.55rem 1.25rem; border-radius: 9px; box-shadow: none; }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.16);
      color: var(--mut-strong);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.95rem 1.7rem;
      border-radius: 12px;
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.4);
      color: var(--ink);
      background: rgba(255, 255, 255, 0.05);
    }

    /* ===== PHONE FRAME ===== */
    .phone {
      background: linear-gradient(165deg, #2c2c30, #0b0b0c 60%);
      border-radius: 46px;
      padding: 10px;
      box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.09);
    }
    .phone-screen {
      border-radius: 37px;
      overflow: hidden;
      background: #fff;
    }
    .phone-screen img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 7.5rem 2.25rem 5rem;
      overflow: hidden;
      background: var(--bg);
    }
    .hero-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    /* The radial-gradients are already soft, so we skip filter: blur() here.
       A 90px blur on these two large layers was an expensive repaint on every
       load of the hero pages (Home / SEO / Website); the gradient alone looks
       the same at a fraction of the paint cost. */
    .hero-glow-1 {
      width: 820px; height: 820px;
      background: radial-gradient(circle, rgba(206,184,136,0.13) 0%, transparent 72%);
      top: -240px; right: -200px;
    }
    .hero-glow-2 {
      width: 620px; height: 620px;
      background: radial-gradient(circle, rgba(206,184,136,0.06) 0%, transparent 72%);
      bottom: -170px; left: -150px;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      /* Faded dot grid without a mask layer: a bg-color overlay gradient fades
         the dots toward the edges (hero bg is solid var(--bg)), avoiding the
         full-viewport mask-image compositing cost on every load. */
      background:
        radial-gradient(ellipse at 35% 40%, transparent 25%, var(--bg) 72%),
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 38px 38px;
    }
    .hero-inner {
      position: relative;
      z-index: 10;
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      gap: 3.5rem;
      align-items: center;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(206, 184, 136, 0.1);
      border: 1px solid rgba(206, 184, 136, 0.32);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0.45rem 1.05rem;
      border-radius: 999px;
      margin-bottom: 1.75rem;
    }
    .hero-badge-dot {
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: dotPulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(0.75); }
    }
    .hero-eyebrow {
      font-size: clamp(1.35rem, 3.8vw, 1.75rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: var(--gold);
      text-wrap: balance;
      margin-bottom: 2.5rem;
    }
    .hero h1 {
      font-size: clamp(3.25rem, 9.8vw, 5.5rem);
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      color: var(--ink);
      text-wrap: balance;
      margin-bottom: 2.5rem;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(115deg, var(--gold) 10%, #e7cf9c 90%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-sub {
      font-size: clamp(1.22rem, 3.3vw, 1.4rem);
      color: var(--mut);
      max-width: 480px;
      margin-bottom: 2.5rem;
      line-height: 1.6;
      text-wrap: pretty;
      font-weight: 500;
    }
    .hero-sub strong { color: var(--mut-strong); font-weight: 600; }
    .hero-buttons {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 2.75rem;
    }
    .hero-scroll-cue { display: none; }
    @keyframes cueBounce { 0%, 100% { transform: translateY(0); opacity: 0.75; } 50% { transform: translateY(7px); opacity: 1; } }
    .hero-proof {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      flex-wrap: wrap;
    }
    .hero-proof-item { min-width: 0; }
    .hero-proof-num {
      display: block;
      font-size: 1.45rem;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -0.8px;
      line-height: 1.1;
    }
    .hero-proof-label {
      display: block;
      font-size: 0.72rem;
      color: var(--mut);
      text-transform: uppercase;
      letter-spacing: 1.4px;
      margin-top: 0.2rem;
    }
    .hero-proof-div { width: 1px; height: 38px; background: var(--line); flex-shrink: 0; }
    .hero-phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-phone { width: min(330px, 80vw); position: relative; z-index: 2; }
    .hero-phone .phone-screen { aspect-ratio: 390 / 730; }
    .hero-phone-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(ellipse at center, rgba(206,184,136,0.16) 0%, transparent 68%);
      pointer-events: none;
      z-index: 1;
    }
    .phone-caption {
      text-align: center;
      font-size: 0.72rem;
      color: var(--mut);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-top: 1rem;
    }

    /* ===== SHARED SECTIONS ===== */
    .section { padding: 6.5rem 2.25rem; position: relative; }
    .section-inner { max-width: 1120px; margin: 0 auto; }
    .section-label {
      display: block;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(1.9rem, 4.5vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.05;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }
    .section-sub {
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      color: var(--mut);
    }

    /* ===== PROOF (0 → 10) ===== */
    .proof { background: var(--bg); text-align: center; padding-top: 3rem; scroll-margin-top: 72px; }
    .proof .section-title { color: var(--ink); }
    .proof-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 2rem;
      align-items: stretch;
      max-width: 900px;
      margin: 3.5rem auto 0;
    }
    .proof-card {
      border-radius: 22px;
      padding: 3rem 2rem 2.5rem;
      border: 1px solid var(--line);
      background: var(--panel);
    }
    .proof-card-new {
      border-color: rgba(206, 184, 136, 0.45);
      background:
        radial-gradient(ellipse at 50% 0%, rgba(206,184,136,0.12) 0%, transparent 70%),
        var(--panel);
      box-shadow: 0 0 70px rgba(206, 184, 136, 0.12);
    }
    .proof-num {
      display: block;
      font-size: clamp(4.5rem, 10vw, 7rem);
      font-weight: 900;
      letter-spacing: -4px;
      line-height: 1;
      color: var(--mut);
    }
    .proof-card-new .proof-num { color: var(--gold); }
    .proof-desc {
      margin-top: 1.1rem;
      font-size: 1rem;
      color: var(--mut);
      line-height: 1.6;
    }
    .proof-desc strong { color: var(--mut-strong); }
    .proof-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      color: var(--gold);
      font-weight: 900;
    }
    .proof-foot {
      margin: 2.25rem auto 0;
      font-size: 0.95rem;
      color: var(--mut);
      max-width: 620px;
      line-height: 1.7;
    }
    .proof-foot strong { color: var(--mut-strong); }

    /* ===== RECAPTURE ===== */
    .recap-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2.5rem;
      align-items: center;
      max-width: 960px;
      margin: 2.5rem auto 0;
    }
    .recap-lede { font-size: 1.05rem; color: var(--mut-strong); line-height: 1.6; margin-bottom: 1.6rem; }
    .recap-steps { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
    .recap-steps li { display: flex; align-items: center; gap: 0.85rem; font-size: 1.02rem; color: var(--mut-strong); }
    .recap-dot {
      flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
      background: rgba(206,184,136,0.14); border: 1px solid var(--gold-deep);
      color: var(--gold); font-weight: 800; font-size: 0.82rem;
      display: flex; align-items: center; justify-content: center;
    }
    .recap-stat {
      text-align: center; border-radius: 22px; padding: 2.75rem 2rem;
      border: 1px solid rgba(206,184,136,0.45);
      background: radial-gradient(ellipse at 50% 0%, rgba(206,184,136,0.12) 0%, transparent 70%), var(--panel);
      box-shadow: 0 0 70px rgba(206,184,136,0.12);
    }
    .recap-stat .proof-num { color: var(--gold); }
    .recap-stat-desc { margin-top: 0.6rem; font-size: 0.92rem; color: var(--mut); line-height: 1.6; }
    .recap-stat-desc strong { display: block; color: var(--mut-strong); font-size: 1.05rem; margin-bottom: 0.45rem; }
    @media (max-width: 760px) {
      .recap-grid { grid-template-columns: 1fr; gap: 1.75rem; max-width: 460px; }
    }

    /* ===== HOW IT WORKS ===== */
    .how { background: var(--bg-2); }
    .how .section-title { color: var(--ink); }
    .how .section-sub { color: var(--mut); }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }
    .how-step { text-align: center; }
    .how-step .phone {
      width: 100%;
      max-width: 230px;
      margin: 0 auto;
      border-radius: 34px;
      padding: 7px;
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }
    .how-step .phone-screen { border-radius: 28px; aspect-ratio: 390 / 640; }
    .how-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--on-gold);
      font-weight: 900;
      font-size: 0.9rem;
      margin: 1.5rem 0 0.6rem;
    }
    .how-step h3 {
      font-size: 1.06rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.3px;
      margin-bottom: 0.3rem;
    }
    .how-step p { font-size: 0.95rem; color: var(--mut); line-height: 1.6; }
    .how-caption {
      text-align: center;
      font-size: 0.85rem;
      color: var(--mut);
      margin-top: 2.5rem;
    }

    /* ===== YOUR SIDE ===== */
    .yours { background: var(--bg); }
    .yours .section-title { color: var(--ink); }
    .yours-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 4rem;
      align-items: center;
      margin-top: 1rem;
    }
    .dash-shot {
      max-width: 500px;
      margin: 0;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    }
    .dash-shot img { display: block; width: 100%; height: auto; }
    .yours-points { list-style: none; display: grid; gap: 1.9rem; }
    .yours-points h3 {
      font-size: 1.08rem;
      font-weight: 800;
      letter-spacing: -0.3px;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }
    .yours-points p { font-size: 1rem; color: var(--mut); line-height: 1.65; }
    .yours-points li { padding-left: 1.6rem; position: relative; }
    .yours-points li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.45rem;
      width: 8px; height: 8px;
      border-radius: 2px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    /* ===== STATS ===== */
    .stats { background: var(--panel); text-align: center; }
    .stats .section-title { color: var(--ink); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
      margin-top: 3.5rem;
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 2.75rem 1.75rem 2.4rem;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
    }
    .stat-card:hover {
      border-color: rgba(206, 184, 136, 0.4);
      background: rgba(206, 184, 136, 0.05);
      transform: translateY(-4px);
    }
    .stat-num {
      display: block;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      font-weight: 900;
      color: var(--gold);
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 0.9rem;
    }
    .stat-desc { font-size: 1rem; color: var(--mut); line-height: 1.65; }
    .stat-desc strong { color: var(--mut-strong); }
    .stat-src {
      display: block;
      margin-top: 0.9rem;
      font-size: 0.7rem;
      letter-spacing: 0.4px;
      color: #9097a1;
      text-transform: uppercase;
    }

    /* ===== PRICING ===== */
    .pricing { background: var(--bg-2); text-align: center; overflow: hidden; }   /* clip the .pricing-glow halo so it can't bleed past the viewport on mobile (matches .hero / .cta-final) */
    .pricing .section-title { color: var(--ink); font-size: clamp(1.45rem, 4.5vw, 3rem); }   /* slightly smaller so "Straightforward pricing." fits one line on mobile (no single-word lines) */
    .pricing .section-sub { color: var(--mut); margin: 0 auto; }
    .pricing-card-wrap { position: relative; display: inline-block; margin-top: 3.25rem; }
    .pricing-glow {
      position: absolute;
      inset: -60px;
      background: radial-gradient(ellipse at center, rgba(206,184,136,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .pricing-card {
      position: relative;
      background: var(--panel);
      border: 2px solid var(--gold);
      border-radius: 22px;
      padding: 2.8rem 2.5rem;
      max-width: 400px;
      box-shadow: 0 0 80px rgba(206,184,136,0.14), 0 18px 50px rgba(0,0,0,0.5);
    }
    .pricing-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--on-gold);
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0.3rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.4rem;
    }
    .pricing-was {
      font-size: 1rem;
      color: var(--mut);
      text-decoration: line-through;
      margin-bottom: 0.2rem;
    }
    .pricing-amount {
      font-size: 4rem;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -3px;
      line-height: 1;
    }
    .pricing-amount span {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--mut);
      letter-spacing: 0;
    }
    .pricing-period {
      color: var(--mut);
      font-size: 0.85rem;
      margin-top: 0.4rem;
      margin-bottom: 2rem;
    }
    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 2rem;
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--line);
      font-size: 0.94rem;
      color: var(--mut-strong);
    }
    .pricing-features li::before {
      content: "✓";
      color: var(--gold);
      font-weight: 900;
      flex-shrink: 0;
    }
    .pricing-note {
      font-size: 0.8rem;
      color: var(--mut);
      margin-top: 1rem;
      line-height: 1.55;
    }
    .pricing-wrap-2 { position: relative; display: block; margin-top: 3.25rem; }
    .pricing-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      max-width: 1080px;
      margin: 0 auto;
      align-items: stretch;
    }
    .pricing-grid .pricing-card { max-width: none; margin: 0; display: flex; flex-direction: column; }
    .pricing-grid .pricing-features { flex: 1 0 auto; }
    .pricing-tier-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.9rem;
      letter-spacing: 0.2px;
    }
    .pricing-card-addon { border-color: var(--line); box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
    .pricing-badge-addon { background: var(--panel-2); color: var(--gold); border: 1px solid var(--gold-deep); }
    @media (max-width: 980px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    }

    /* ===== FINAL CTA ===== */
    .cta-final {
      background: var(--bg);
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 2.25rem;
    }
    .cta-orb {
      position: absolute;
      width: 860px; height: 860px;
      background: radial-gradient(circle, rgba(206,184,136,0.10) 0%, transparent 72%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      border-radius: 50%;
    }
    .cta-final .section-title {
      color: var(--ink);
      font-size: clamp(2.1rem, 5.5vw, 3.6rem);
      max-width: 760px;
      margin: 0 auto 1.1rem;
    }
    .cta-final .section-sub { margin: 0 auto 2.75rem; }
    .cta-subtext { margin-top: 1.2rem; font-size: 0.9rem; color: var(--mut); }

    /* ===== FOOTER ===== */
    footer {
      background: #060607;
      padding: 2.75rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    footer p { color: #6b7077; font-size: 0.92rem; }
    footer a { color: #8b9099; text-decoration: none; transition: color 0.15s; }
    footer a:hover { color: var(--gold); }
    .footer-tagline {
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }
    .footer-sources {
      margin-top: 1.1rem;
      font-size: 0.7rem;
      color: #5b606a;
      line-height: 1.7;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== DEMO MODAL ===== */
    @keyframes modalIn {
      from { opacity: 0; transform: translateY(14px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .modal-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 2.25rem 2rem;
      max-width: 440px;
      width: 100%;
      position: relative;
      animation: modalIn 0.18s ease-out;
      color: var(--ink);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    }
    .modal-close {
      position: absolute;
      top: 0.75rem; right: 0.75rem;
      width: 34px; height: 34px;
      border: none;
      background: transparent;
      font-size: 1.5rem;
      color: var(--mut);
      cursor: pointer;
      line-height: 1;
      border-radius: 8px;
    }
    .modal-close:hover { background: var(--panel-2); color: var(--ink); }
    .modal-emoji { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1; }
    .modal-title {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .modal-sub { color: var(--mut); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.1rem; }
    .modal-form { display: flex; gap: 0.55rem; flex-direction: column; }
    .modal-input {
      padding: 0.85rem 1rem;
      font-size: 1rem;
      border: 1.5px solid var(--line);
      border-radius: 9px;
      outline: none;
      font-family: inherit;
      width: 100%;
      color: var(--ink);
      background: var(--panel-2);
    }
    .modal-input::placeholder { color: #7c828c; }
    .modal-input:focus { border-color: var(--gold); }
    .contact-legend {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--mut);
      margin-bottom: 0.45rem;
      padding: 0;
    }
    .contact-chips {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.4rem;
    }
    .contact-chip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      padding: 0.55rem 0.4rem;
      border: 1.5px solid var(--line);
      border-radius: 9px;
      background: var(--panel-2);
      cursor: pointer;
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--mut-strong);
      transition: all 0.12s;
    }
    .contact-chip[aria-checked="true"] {
      border-color: var(--gold);
      background: rgba(206, 184, 136, 0.14);
      color: var(--gold);
    }
    .modal-submit {
      margin-top: 0.3rem;
      padding: 0.95rem 1rem;
      background: var(--gold);
      color: var(--on-gold);
      font-weight: 800;
      font-size: 1rem;
      border: none;
      border-radius: 9px;
      cursor: pointer;
      font-family: inherit;
      transition: filter 0.15s;
    }
    .modal-submit:hover, .modal-submit:focus { filter: brightness(1.07); }
    .form-error { display: none; color: #f87171; font-size: 0.85rem; margin-top: 0.75rem; }
    .modal-success { display: none; text-align: center; }
    .modal-success-emoji { font-size: 3.5rem; line-height: 1; margin-bottom: 0.5rem; }
    .modal-success h3 {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--ink);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }
    .modal-success-body { color: var(--mut-strong); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.25rem; }
    .modal-success-list {
      background: rgba(206, 184, 136, 0.1);
      border: 1px solid rgba(206, 184, 136, 0.3);
      border-radius: 10px;
      padding: 0.9rem 1.1rem;
      text-align: left;
      font-size: 0.85rem;
      color: var(--mut-strong);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .modal-dismiss {
      padding: 0.7rem 1.5rem;
      background: var(--panel-2);
      color: var(--mut-strong);
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-family: inherit;
    }

    /* Fixed thumb-reach CTA bar (mobile only) (see max-width:768px) */
    .mobile-cta-bar { display: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 980px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: left; }
      .hero-buttons, .hero-proof { justify-content: flex-start; }
      .how-steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.1rem;
        padding: 0.5rem 0.25rem 1.25rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        -webkit-overflow-scrolling: touch;
      }
      .how-step {
        flex: 0 0 72vw;
        max-width: 290px;
        scroll-snap-align: center;
      }
      .yours-grid { grid-template-columns: 1fr; gap: 3rem; }
      .dash-shot { margin: 0 auto; }
    }
    @media (max-width: 768px) {
      /* base mobile spacing */
      /* nav mobile styles: shared, see /assets/nav.css */
      body { padding-bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px)); }   /* clear the fixed CTA bar */
      .section { padding: 4.25rem 1.25rem; }

      /* compact, focused hero */
      .hero { min-height: 100svh; padding: 5.25rem 1.25rem 5.5rem; }
      .hero-inner { gap: 0; }
      .hero-phone-wrap { display: none; }
      .hero h1 { letter-spacing: -0.03em; }
      /* Center the headline in the viewport: equal-flex top/bottom zones put
         the H1 dead-center, with the question hugging just above it and the
         tagline + CTA just below. Empty space falls at the edges, not as a
         gap above the headline. */
      .hero-copy { display: flex; flex-direction: column; min-height: calc(100svh - 5.25rem - 5.5rem); }
      .hero-copy .hero-top { flex: 1 1 0; display: flex; flex-direction: column; justify-content: flex-end; }
      .hero-copy .hero-bottom { flex: 1 1 0; display: flex; flex-direction: column; justify-content: flex-start; }
      .hero-copy h1 { margin: 0; }
      .hero-copy .hero-eyebrow { margin-bottom: 0.85rem; }
      .hero-copy .hero-sub { margin: 0.85rem 0 1.4rem; }
      .hero-buttons { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
      .hero-buttons .btn-primary { padding: 1rem 1.9rem; }
      .hero-buttons .btn-ghost { display: none; }
      .hero-scroll-cue { display: none; }   /* the "Learn more" button is the scroll cue now; dropping the arrow frees room to center the headline */
      .hero-proof { display: none; }              /* proof carried by the badge + the proof section right below */

      /* one-column, simplified sections */
      .proof-grid { grid-template-columns: 1fr auto 1fr; gap: 0.5rem; margin-top: 1.75rem; }
      .proof-card { padding: 1.4rem 0.7rem; }
      .proof-num { font-size: 3rem; letter-spacing: -2px; }
      .proof-desc { margin-top: 0.55rem; font-size: 0.78rem; line-height: 1.45; }
      .proof-arrow { transform: none; font-size: 1.4rem; padding: 0; }
      .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
      .stat-card { padding: 2.1rem 1.5rem; }
      .pricing-card { padding: 2.25rem 1.6rem; }
      .pricing-amount { font-size: 3.25rem; }
      .modal-card { padding: 2rem 1.5rem; }

      /* fixed thumb-reach CTA bar, always one tap away */
      .mobile-cta-bar {
        display: flex;
        gap: 0.6rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
        background: rgba(11, 11, 12, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--line);
        transform: translateY(120%);
        transition: transform 0.3s ease;
      }
      .mobile-cta-bar.revealed { transform: translateY(0); }
      .mcta {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.95rem 0.6rem;
        border-radius: 12px;
        font-family: inherit;
        font-weight: 800;
        font-size: 1rem;
        text-decoration: none;
        letter-spacing: -0.1px;
      }
      .mcta-gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 6px 22px rgba(206, 184, 136, 0.32); }
      .mcta-ghost { background: var(--panel-2); color: var(--ink); border: 1px solid var(--line); }
    }

    /* ===== SEO PAGE: search-result mock (hero) ===== */
    .serp { width: min(370px, 84vw); background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 1.15rem 1.15rem 1.3rem; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05); position: relative; z-index: 2; }
    .serp-bar { display: flex; align-items: center; gap: 0.55rem; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.65rem 1rem; color: var(--mut-strong); font-size: 0.92rem; }
    .serp-pin { font-size: 0.64rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin: 1.15rem 0 0.65rem; }
    .serp-card { display: flex; gap: 0.85rem; align-items: flex-start; background: rgba(206, 184, 136, 0.08); border: 1px solid rgba(206, 184, 136, 0.38); border-radius: 14px; padding: 0.85rem 0.95rem; }
    .serp-card + .serp-card { margin-top: 0.6rem; }
    .serp-dim { background: rgba(255, 255, 255, 0.02); border-color: var(--line); opacity: 0.6; }
    .serp-rank { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--on-gold); font-weight: 900; display: flex; align-items: center; justify-content: center; font-size: 0.92rem; }
    .serp-rank-dim { background: var(--panel-2); color: var(--mut); }
    .serp-body { min-width: 0; }
    .serp-name { font-weight: 800; color: var(--ink); font-size: 1rem; letter-spacing: -0.2px; }
    .serp-name-dim { color: var(--mut-strong); font-weight: 700; }
    .serp-meta { font-size: 0.8rem; color: var(--mut); margin-top: 0.15rem; }
    .serp-stars { color: var(--gold); letter-spacing: 1px; }
    .serp-open { color: var(--green); }
  

    /* ===== WEBSITE PAGE: browser mockup (hero) ===== */
    .bw { width: min(430px, 86vw); background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05); position: relative; z-index: 2; }
    .bw-bar { display: flex; align-items: center; gap: 0.45rem; padding: 0.7rem 0.9rem; background: var(--panel-2); border-bottom: 1px solid var(--line); }
    .bw-dot { width: 10px; height: 10px; border-radius: 50%; background: #3a3a40; flex-shrink: 0; }
    .bw-url { margin-left: 0.6rem; flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.85rem; color: var(--mut); font-size: 0.74rem; }
    .bw-band { padding: 1.5rem 1.2rem 1.3rem; text-align: center; background: radial-gradient(ellipse at 50% -10%, rgba(206, 184, 136, 0.16), transparent 72%); }
    .bw-eyebrow { font-size: 0.6rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); }
    .bw-h { font-size: 1.2rem; font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.3px; margin: 0.4rem 0 0.8rem; }
    .bw-btn { display: inline-block; background: var(--gold); color: var(--on-gold); font-weight: 800; font-size: 0.72rem; padding: 0.5rem 1.1rem; border-radius: 8px; }
    .bw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0 1.2rem 1.4rem; }
    .bw-card { height: 50px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 9px; }
  
