:root {
      --ink: #001042;
      --ink-2: #061b5d;
      --paper: #f6f6f6;
      --white: #fff;
      --mist: #f2f8fe;
      --line: rgba(0, 16, 66, .14);
      --muted: #616b86;
      --green: #2f67ff;
      --green-2: #1c40f2;
      --aqua: #73c9ff;
      --blue: #1c40f2;
      --cyan: #39c8ee;
      --gold: #ffc857;
      --pink: #ff478e;
      --orange: #ffb45e;
      --radius: 22px;
      --shadow: 0 22px 70px rgba(4, 25, 31, .12);
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .13;
      background-image: radial-gradient(rgba(0,16,66,.38) .55px, transparent .55px);
      background-size: 7px 7px;
      z-index: 20;
    }
    a { color: inherit; }
    button, input, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
    .skip { position: absolute; left: -9999px; top: 8px; z-index: 100; }
    .skip:focus { left: 8px; background: white; padding: 8px 12px; border-radius: 8px; }
    .topbar { background: #eef5ff; color: var(--ink); font-size: 13px; font-weight: 850; letter-spacing: .01em; padding: 9px 16px; border-bottom: 1px solid rgba(255,71,142,.55); }
    .topbar-inner { display: flex; align-items: center; justify-content: center; gap: 18px; }
    .topbar-code { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px dashed var(--pink); border-radius: 9px; background: white; font-weight: 950; letter-spacing: .07em; }
    .copy-code { border: 0; background: transparent; color: var(--blue); padding: 2px 3px; cursor: pointer; font-size: 11px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(246,243,235,.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(7,27,34,.08);
    }
    nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; font-size: 20px; letter-spacing: -.04em; }
    .brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--blue); font-size: 15px; letter-spacing: -.08em; transform: rotate(-3deg); }
    .nav-links { display: flex; gap: 21px; align-items: center; }
    .nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; color: #34474c; }
    .nav-links a:hover { color: var(--ink); }
    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 13px;
      background: var(--green);
      color: white;
      text-decoration: none;
      font-weight: 900;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      box-shadow: 0 8px 22px rgba(28,64,242,.22);
    }
    .btn:hover { transform: translateY(-2px); background: #174ee8; box-shadow: 0 12px 28px rgba(28,64,242,.3); }
    .btn:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
    .btn.dark { background: var(--ink); color: white; box-shadow: none; }
    .btn.dark:hover { background: var(--ink-2); }
    .btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
    .review-link { padding: 8px 12px; border: 1px solid rgba(28,64,242,.2); border-radius: 10px; background: #f2f8fe; color: var(--blue) !important; }
    .btn.small { min-height: 42px; padding: 0 16px; font-size: 13px; }
    .arrow { font-size: 18px; line-height: 1; }

    .hero {
      position: relative;
      overflow: hidden;
      background: var(--ink);
      color: white;
      padding: 88px 0 74px;
      isolation: isolate;
    }
    .hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(115,201,255,.22); border-radius: 50%; right: -130px; top: -230px; box-shadow: 0 0 0 90px rgba(28,64,242,.05), 0 0 0 180px rgba(57,200,238,.025); z-index: -1; }
    .hero::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; left: 47%; bottom: -280px; background: var(--blue); filter: blur(80px); opacity: .2; z-index: -1; }
    .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
    .eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: #d7e8e8; font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 29px; height: 3px; border-radius: 4px; background: var(--green); }
    h1, h2, h3, p { margin-top: 0; }
    h1 { max-width: 740px; margin-bottom: 22px; font-size: clamp(48px, 6.1vw, 82px); line-height: .99; letter-spacing: -.065em; }
    h1 span { color: var(--aqua); }
    .hero-copy { max-width: 650px; margin-bottom: 30px; color: #c9d6d8; font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 31px; }
    .hero-offer { max-width: 650px; margin: 0 0 24px; padding: 17px 19px; border: 1px solid rgba(255,71,142,.72); border-radius: 16px; background: linear-gradient(105deg, rgba(28,64,242,.22), rgba(57,200,238,.08)); box-shadow: 0 18px 45px rgba(0,0,0,.18); }
    .hero-offer-label { display: block; margin-bottom: 2px; color: var(--aqua); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
    .hero-offer strong { display: block; color: white; font-size: 16px; }
    .hero-countdown { min-width: 152px; padding: 11px 14px; border-radius: 12px; background: white; color: var(--ink); text-align: center; }
    .hero-countdown span { display: block; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .hero-countdown b { display: block; margin-top: 1px; font-size: 34px; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: .035em; }
    .hero .btn.ghost { color: white; border-color: rgba(255,255,255,.22); }
    .trust-row { display: flex; flex-wrap: wrap; gap: 10px 21px; color: #d6e0e1; font-size: 13px; font-weight: 700; }
    .trust-row span { display: inline-flex; align-items: center; gap: 7px; }
    .trust-row i { width: 19px; height: 19px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(57,200,238,.16); color: var(--aqua); font-style: normal; font-size: 11px; }
    .hero-card { position: relative; padding: 27px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.075); backdrop-filter: blur(12px); box-shadow: 0 35px 90px rgba(0,0,0,.28); transform: rotate(1.2deg); }
    .hero-card::before { content: "PAY ONCE"; position: absolute; top: -14px; right: 24px; padding: 8px 12px; border-radius: 9px; background: var(--orange); color: var(--ink); font-size: 11px; font-weight: 950; letter-spacing: .08em; transform: rotate(3deg); }
    .mini-label { color: #aabbbf; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
    .hero-price { margin: 9px 0 0; font-size: 76px; font-weight: 950; letter-spacing: -.07em; line-height: 1; }
    .hero-price sup { font-size: 24px; vertical-align: 31px; margin-right: 4px; color: var(--aqua); }
    .hero-price small { font-size: 15px; letter-spacing: 0; color: #aebdc0; }
    .no-renew { margin: 12px 0 21px; color: #d9e5e6; font-weight: 700; }
    .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
    .hero-metrics div { min-width: 0; padding: 8px; border-radius: 12px; background: rgba(255,255,255,.05); }
    .hero-metrics strong { display: block; color: var(--green); font-size: 18px; }
    .hero-metrics span { color: #aebdc0; font-size: 11px; }
    .fine { margin: 17px 0 0; color: #95a8ac; font-size: 11px; line-height: 1.5; }

    section { padding: 100px 0; }
    .section-head { max-width: 720px; margin-bottom: 48px; }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .kicker { margin-bottom: 11px; color: #4e6d70; font-size: 12px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
    h2 { margin-bottom: 18px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.055em; }
    .section-head > p:last-child { color: var(--muted); font-size: 18px; }
    .audience { padding: 34px 0; background: var(--blue); color: white; }
    .audience-inner { display: flex; gap: 28px; justify-content: space-between; align-items: center; }
    .audience strong { min-width: max-content; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
    .audience-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
    .audience-list span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; background: rgba(255,255,255,.1); font-size: 13px; font-weight: 800; }

    .fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .fit-card { position: relative; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); overflow: hidden; }
    .fit-card:nth-child(2) { background: var(--mist); }
    .fit-card:nth-child(3) { background: #f7e6d2; }
    .fit-num { display: inline-grid; width: 36px; height: 36px; place-items: center; margin-bottom: 50px; border-radius: 50%; background: var(--ink); color: white; font-size: 12px; font-weight: 900; }
    .fit-card h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.035em; }
    .fit-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
    .not-for { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-top: 20px; padding: 23px 26px; border: 1px dashed rgba(7,27,34,.25); border-radius: 17px; background: rgba(255,255,255,.35); }
    .not-for b { color: var(--blue); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
    .not-for p { margin: 0; color: var(--muted); font-size: 14px; }

    .feature-section { background: white; }
    .feature-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
    .feature-sticky { position: sticky; top: 115px; }
    .feature-sticky p { color: var(--muted); font-size: 17px; }
    .feature-list { border-top: 1px solid var(--line); }
    .feature { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
    .feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--mist); color: var(--ink); font-weight: 950; }
    .feature h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -.02em; }
    .feature p { margin: 0; color: var(--muted); font-size: 14px; }

    .pricing { background: var(--ink); color: white; }
    .pricing .section-head > p:last-child { color: #aebdc0; }
    .pricing .kicker { color: var(--aqua); }
    .coupon-ribbon { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin: -8px 0 42px; padding: 18px 22px; border: 1px solid rgba(255,71,142,.55); border-radius: 17px; background: linear-gradient(110deg, rgba(28,64,242,.18), rgba(57,200,238,.08)); }
    .coupon-ribbon .coupon-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--green); color: white; font-weight: 950; }
    .coupon-ribbon strong { display: block; font-size: 17px; }
    .coupon-ribbon p { margin: 2px 0 0; color: #aebdc0; font-size: 12px; }
    .coupon-copy-group { display: flex; align-items: center; gap: 9px; }
    .coupon-ribbon code { padding: 9px 13px; border: 1px dashed rgba(255,255,255,.42); border-radius: 10px; color: white; font-family: var(--sans); font-weight: 950; letter-spacing: .08em; }
    .coupon-copy-group button { min-height: 38px; padding: 0 14px; border: 0; border-radius: 10px; background: var(--green); color: white; cursor: pointer; font-weight: 900; white-space: nowrap; }
    .coupon-copy-group button:hover { background: #174ee8; }
    .price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
    .price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: 23px; background: rgba(255,255,255,.055); }
    .price-card.test-plan { border-color: var(--green); box-shadow: 0 24px 60px rgba(29, 180, 101, .13); }
    .price-card.popular { border-color: var(--green); background: white; color: var(--ink); transform: translateY(-12px); box-shadow: 0 28px 80px rgba(0,0,0,.32); }
    .popular-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 7px 12px; border-radius: 999px; background: var(--blue); color: white; font-size: 10px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
    .plan-for { min-height: 40px; margin-bottom: 14px; color: #9db0b4; font-size: 13px; }
    .popular .plan-for { color: var(--muted); }
    .price-card h3 { margin-bottom: 3px; font-size: 26px; letter-spacing: -.04em; }
    .amount { display: flex; align-items: flex-start; margin: 11px 0 4px; font-weight: 950; letter-spacing: -.065em; }
    .amount sup { margin-top: 8px; color: var(--green); font-size: 20px; }
    .popular .amount sup { color: var(--blue); }
    .amount span { font-size: 62px; line-height: 1; }
    .once { margin-bottom: 23px; color: #9db0b4; font-size: 12px; font-weight: 700; }
    .popular .once { color: var(--muted); }
    .coupon-saving { display: inline-flex; align-self: flex-start; margin: 0 0 17px; padding: 6px 9px; border-radius: 8px; background: rgba(57,200,238,.12); color: #8fe8ff; font-size: 11px; font-weight: 850; }
    .popular .coupon-saving { background: #eaf3ff; color: var(--blue); }
    .plan-list { flex: 1; display: grid; gap: 11px; margin: 0 0 27px; padding: 21px 0 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
    .popular .plan-list { border-color: var(--line); }
    .plan-list li { position: relative; padding-left: 25px; color: #d7e1e2; font-size: 14px; }
    .popular .plan-list li { color: #34474c; }
    .plan-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 950; }
    .popular .plan-list li::before { color: var(--blue); }
    .price-card .btn { width: 100%; }
    .price-card .btn.is-disabled { cursor: not-allowed; opacity: .48; box-shadow: none; transform: none; }
    .popular .btn { background: var(--ink); color: white; }
    .popular .btn:hover { background: var(--ink-2); }
    .pricing-note { margin: 25px auto 0; max-width: 850px; text-align: center; color: #91a6aa; font-size: 12px; }

    .calculator-section { background: #eef5ff; }
    .calculator-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 30px; align-items: start; }
    .calc-copy { padding: 20px 20px 20px 0; }
    .calc-copy h2 { margin-bottom: 20px; }
    .calc-copy > p { color: #51686c; font-size: 17px; }
    .calc-proof { margin-top: 32px; padding: 18px; border-left: 4px solid var(--green-2); background: rgba(255,255,255,.48); border-radius: 0 14px 14px 0; color: #3c5559; font-size: 13px; }
    .calculator { padding: 32px; border: 1px solid rgba(7,27,34,.15); border-radius: 25px; background: white; box-shadow: var(--shadow); }
    .calc-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
    .field { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcfa; }
    .field label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
    .field select { width: 100%; min-height: 38px; border: 0; background: transparent; color: var(--ink); font-weight: 900; outline: 0; }
    .range-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
    .range-head output { color: var(--ink); font-size: 15px; font-weight: 950; }
    input[type="range"] { width: 100%; accent-color: var(--ink); }
    .coupon-toggle { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: -7px 0 22px; padding: 13px 15px; border: 1px solid rgba(255,71,142,.5); border-radius: 13px; background: #eef5ff; }
    .coupon-toggle label { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 850; cursor: pointer; }
    .coupon-toggle input { width: 17px; height: 17px; accent-color: var(--green); }
    .coupon-toggle code { color: var(--blue); font-family: var(--sans); font-size: 12px; font-weight: 950; letter-spacing: .06em; }
    .result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .result { min-height: 128px; padding: 20px; border-radius: 17px; background: var(--ink); color: white; }
    .result.featured { background: var(--blue); color: white; }
    .result span { display: block; margin-bottom: 12px; color: #9fb1b4; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
    .result.featured span { color: #bed2ff; }
    .result strong { display: block; font-size: clamp(27px, 4vw, 42px); line-height: 1; letter-spacing: -.055em; }
    .result small { display: block; margin-top: 9px; color: #aebdc0; font-size: 10px; }
    .result.featured small { color: #bed2ff; }
    .calc-disclaimer { margin: 14px 0 0; padding-top: 13px; border-top: 1px solid var(--line); color: #75809b; font-size: 10px; }

    .reviews { position: relative; overflow: hidden; background: white; }
    .reviews::before { content: ""; position: absolute; width: 420px; height: 420px; left: -180px; top: -190px; border-radius: 50%; background: #edf3ff; }
    .review-summary { display: flex; align-items: center; justify-content: center; gap: 22px; margin: -13px 0 42px; }
    .review-score { display: flex; align-items: center; gap: 10px; }
    .review-score strong { font-size: 38px; letter-spacing: -.05em; }
    .stars { color: #ffb000; letter-spacing: 2px; font-size: 18px; white-space: nowrap; }
    .review-summary p { margin: 0; padding-left: 22px; border-left: 1px solid var(--line); color: var(--muted); font-size: 13px; }
    .review-summary a { color: var(--blue); font-weight: 850; text-decoration: none; }
    .review-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .review-card { display: flex; flex-direction: column; min-height: 290px; padding: 26px; border: 1px solid rgba(28,64,242,.13); border-radius: 20px; background: linear-gradient(145deg, #fff, #f7faff); box-shadow: 0 15px 44px rgba(0,16,66,.07); }
    .review-card:nth-child(2) { transform: translateY(-9px); border-color: rgba(255,71,142,.28); }
    .review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
    .review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 12px; font-weight: 950; }
    .review-rating { padding: 6px 9px; border-radius: 8px; background: #fff6dc; color: #895e00; font-size: 12px; font-weight: 950; }
    .review-card blockquote { flex: 1; margin: 0 0 23px; color: #26365e; font-size: 16px; line-height: 1.7; }
    .review-person strong { display: block; font-size: 14px; }
    .review-person span { color: var(--muted); font-size: 11px; }
    .review-source-note { margin: 30px 0 0; text-align: center; color: var(--muted); font-size: 11px; }
    .review-source-note a { color: var(--blue); font-weight: 850; }

    .compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 15px 45px rgba(0,16,66,.07); }
    table { width: 100%; min-width: 680px; border-collapse: collapse; }
    th, td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); }
    th { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
    th:nth-child(3), td:nth-child(3) { background: rgba(28,64,242,.06); }
    td { font-size: 14px; }
    td:first-child { font-weight: 850; }
    tr:last-child td { border-bottom: 0; }
    .yes { color: #1741d8; font-weight: 900; }
    .maybe { color: #a4511a; font-weight: 900; }

    .definition { padding-top: 0; }
    .definition-box { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; padding: 52px; border-radius: 28px; background: var(--ink); color: white; overflow: hidden; }
    .definition-box::after { content: "∞"; position: absolute; right: -25px; bottom: -102px; color: rgba(57,200,238,.09); font-size: 300px; font-weight: 900; line-height: 1; }
    .definition-box h2 { margin: 0; }
    .definition-copy { position: relative; z-index: 1; }
    .definition-copy p { color: #c3d1d3; }
    .definition-copy p:last-child { margin-bottom: 0; }
    .definition-callout { padding: 16px 18px; border: 1px solid rgba(255,71,142,.55); border-radius: 14px; background: rgba(28,64,242,.15); color: #eef3ff !important; font-size: 13px; }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
    .step { counter-increment: step; padding: 28px; border-top: 4px solid var(--ink); background: rgba(255,255,255,.48); }
    .step::before { content: "0" counter(step); display: block; margin-bottom: 34px; color: #708184; font-size: 12px; font-weight: 950; letter-spacing: .08em; }
    .step h3 { margin-bottom: 9px; font-size: 21px; }
    .step p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

    .faq { background: white; }
    .faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
    .faq-intro { position: sticky; top: 115px; }
    .faq-intro p { color: var(--muted); }
    .faq-list { border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); }
    summary { position: relative; padding: 23px 45px 23px 0; cursor: pointer; list-style: none; font-weight: 850; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 7px; top: 20px; font-size: 22px; font-weight: 500; transition: transform .2s ease; }
    details[open] summary::after { transform: rotate(45deg); }
    details p { max-width: 720px; padding: 0 42px 22px 0; margin: 0; color: var(--muted); font-size: 14px; }

    .final-cta { padding: 88px 0; background: var(--blue); color: white; text-align: center; }
    .final-cta .kicker { color: var(--gold); }
    .final-cta h2 { max-width: 800px; margin-left: auto; margin-right: auto; }
    .final-cta p { max-width: 650px; margin: 0 auto 27px; color: #dbe7ff; font-size: 17px; }
    .final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .final-cta .btn.ghost { color: white; border-color: rgba(255,255,255,.42); }
    footer { padding: 42px 0 90px; background: var(--ink); color: #9db0b4; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 40px; }
    footer .brand { color: white; margin-bottom: 13px; }
    footer p { max-width: 500px; font-size: 12px; }
    footer h3 { color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
    footer ul { margin: 0; padding: 0; list-style: none; }
    footer li { margin: 8px 0; }
    footer a { font-size: 12px; text-decoration: none; }
    footer a:hover { color: white; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
    .toast { position: fixed; left: 50%; bottom: 25px; z-index: 80; max-width: calc(100% - 32px); transform: translate(-50%, 30px); padding: 13px 18px; border-radius: 12px; background: white; color: var(--ink); box-shadow: 0 20px 70px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transition: .25s ease; font-size: 13px; font-weight: 750; }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }
    .domain-modal[hidden] { display: none; }
    .domain-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; overflow-y: auto; background: rgba(2,12,29,.74); backdrop-filter: blur(7px); }
    .domain-dialog { position: relative; width: min(760px,100%); max-height: calc(100dvh - 40px); overflow-y: auto; background: white; border: 1px solid rgba(21,62,112,.18); border-top: 4px solid var(--cyan); border-radius: 18px; box-shadow: 0 30px 80px rgba(0,12,35,.38); padding: 34px; }
    .domain-dialog h2 { font-family: Manrope,sans-serif; color: var(--navy); font-size: clamp(1.55rem,3vw,2.1rem); letter-spacing: -.04em; margin: 0 35px 8px 0; }
    .domain-dialog p { color: #61748b; line-height: 1.65; margin: 0 0 22px; }
    .domain-close { position: absolute; right: 17px; top: 16px; border: 0; background: #edf5fc; color: var(--navy); border-radius: 8px; width: 34px; height: 34px; font-size: 1.35rem; cursor: pointer; }
    .domain-plan-label { display: inline-flex; align-items: center; gap: 8px; background: #e9f8ff; border: 1px solid #bdeeff; color: #075a86; font-size: .76rem; font-weight: 800; padding: 7px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
    .domain-row { display: grid; grid-template-columns: minmax(0, 1fr) 130px 160px; gap: 10px; align-items: stretch; }
    .domain-row input,.domain-row select { width: 100%; height: 53px; border: 1px solid #c9d8e7; border-radius: 10px; padding: 0 15px; font: 700 .98rem Manrope,sans-serif; color: var(--navy); outline: none; background: white; }
    .domain-row input:focus,.domain-row select:focus { border-color: #0d90c7; box-shadow: 0 0 0 4px rgba(49,197,255,.15); }
    .domain-actions { display: flex; align-items: center; gap: 10px; margin-top: 13px; }
    .domain-check { min-width: 142px; border: 0; border-radius: 9px; background: var(--navy); color: white; height: 53px; padding: 0 17px; font: 800 .79rem Manrope,sans-serif; letter-spacing: .03em; cursor: pointer; }
    .domain-check:hover { background: #123e75; }
    .domain-status { font-size: .84rem; font-weight: 700; color: #697d93; line-height: 1.45; }.domain-status.available { color: #087258; }.domain-status.unavailable,.domain-status.error { color: #b33e54; }
    .domain-confirm { width: 100%; margin-top: 18px; display: none; }.domain-confirm.show { display: block; }
    .domain-note { font-size: .75rem !important; margin-top: 14px !important; color: #7a8da2 !important; }
    .selected-domain { display: none; align-items: center; gap: 9px; width: max-content; max-width: 100%; margin: 12px auto 0; background: #e9f8ff; border: 1px solid #bdeeff; padding: 8px 12px; border-radius: 9px; color: #075a86; font-size: .8rem; font-weight: 800; }
    .selected-domain.show { display: flex; }.selected-domain button { border: 0; background: none; color: #075a86; font: 800 .8rem Manrope,sans-serif; cursor: pointer; text-decoration: underline; }
    .proof-pop { position: fixed; left: 22px; bottom: 22px; z-index: 70; width: min(355px, calc(100% - 28px)); padding: 16px; border: 1px solid rgba(28,64,242,.15); border-radius: 16px; background: white; box-shadow: 0 22px 65px rgba(0,16,66,.2); transform: translateY(130%); opacity: 0; transition: .35s ease; pointer-events: none; }
    .proof-pop.show { transform: translateY(0); opacity: 1; }
    .proof-pop-top { display: flex; align-items: center; gap: 11px; }
    .proof-pop-avatar { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-weight: 950; }
    .proof-pop b { display: block; font-size: 13px; }
    .proof-pop span { color: var(--muted); font-size: 10px; }
    .proof-pop p { margin: 10px 0 0; color: #304069; font-size: 12px; line-height: 1.5; }
    .proof-pop-label { display: inline-block; margin-top: 9px; color: var(--blue) !important; font-size: 9px !important; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
    .offer-timer-slider { position: fixed; top: 50%; right: 18px; z-index: 80; width: min(390px, calc(100% - 36px)); padding: 22px 48px 22px 22px; border: 1px solid rgba(115,201,255,.45); border-radius: 18px; background: var(--ink); color: white; box-shadow: 0 24px 70px rgba(0,16,66,.3); opacity: 0; pointer-events: none; transform: translate(calc(100% + 40px), -50%); transition: transform .45s ease, opacity .35s ease; }
    .offer-timer-slider.show { opacity: 1; pointer-events: auto; transform: translate(0, -50%); }
    .offer-timer-slider span { display: block; margin-bottom: 7px; color: var(--aqua); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .offer-timer-slider b { display: block; color: var(--gold); font-size: clamp(25px, 5vw, 34px); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: .025em; white-space: nowrap; }
    .offer-slider-close { position: absolute; top: 10px; right: 12px; width: 30px; height: 30px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: white; cursor: pointer; font-size: 20px; line-height: 1; }
    .mobile-cta { display: none; }

    @media (max-width: 1180px) and (min-width: 921px) {
      .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 920px) {
      .nav-links a:not(.btn) { display: none; }
      .hero { padding-top: 70px; }
      .hero-grid, .feature-grid, .calculator-shell, .definition-box, .faq-layout { grid-template-columns: 1fr; }
      .hero-grid { gap: 50px; }
      .hero-card { max-width: 560px; }
      .fit-grid, .price-grid, .review-grid { grid-template-columns: 1fr; }
      .fit-card { min-height: auto; }
      .fit-num { margin-bottom: 28px; }
      .feature-sticky, .faq-intro { position: static; }
      .price-card.popular { transform: none; margin: 11px 0; }
      .review-card:nth-child(2) { transform: none; }
      .calculator-shell { gap: 10px; }
      .calc-copy { padding-right: 0; }
      .definition-box { gap: 25px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 680px) {
      .container { width: min(100% - 28px, 1160px); }
      section { padding: 72px 0; }
      nav { min-height: 66px; }
      .brand { font-size: 18px; }
      .brand-mark { width: 34px; height: 34px; }
      .nav-links .btn { min-height: 40px; padding: 0 13px; font-size: 12px; }
      .hero { padding: 58px 0 55px; }
      h1 { font-size: 49px; }
      .hero-copy { font-size: 16px; }
      .hero-actions .btn { width: 100%; }
      .hero-offer { grid-template-columns: 1fr; text-align: center; }
      .hero-countdown { width: 100%; }
      .hero-card { padding: 22px; }
      .hero-price { font-size: 64px; }
      .audience-inner { display: block; }
      .audience strong { display: block; margin-bottom: 14px; }
      .audience-list { justify-content: flex-start; }
      .not-for { grid-template-columns: 1fr; gap: 5px; }
      .calc-fields, .result-grid, .steps { grid-template-columns: 1fr; }
      .coupon-ribbon { grid-template-columns: auto 1fr; }
      .coupon-copy-group { grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; }
      .review-summary { flex-direction: column; gap: 7px; }
      .review-summary p { padding: 0; border: 0; text-align: center; }
      .calculator { padding: 20px; }
      .result { min-height: 106px; }
      .definition-box { padding: 30px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > div:first-child { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
      footer { padding-bottom: 96px; }
      .mobile-cta { position: fixed; display: block; left: 10px; right: 10px; bottom: 10px; z-index: 50; }
      .mobile-cta .btn { width: 100%; box-shadow: 0 12px 40px rgba(0,0,0,.3); }
      .proof-pop { left: 14px; bottom: 76px; }
      .domain-dialog { padding: 27px 20px; }
      .domain-modal { align-items: start; padding: 12px; }
      .domain-dialog { max-height: calc(100dvh - 24px); padding: 27px 20px; }
      .domain-row { grid-template-columns: minmax(0, 1fr) 105px; }
      .domain-row .domain-check { grid-column: 1 / -1; width: 100%; }
      .domain-actions { align-items: flex-start; flex-direction: column; }
      .domain-check { width: 100%; }
      .topbar-inner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
      .topbar-message, .topbar-code { justify-self: center; }
    }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
