/* ══════════════════════════════════════════════
       TOKENS
    ══════════════════════════════════════════════ */
    :root {
      --bg:            #090A0D;
      --surface:       #0F1014;
      --surface-2:     #141619;
      --border:        #1C1E26;
      --border-2:      #252830;
      --accent:        #BF975A;
      --accent-dim:    rgba(191,151,90,.10);
      --accent-border: rgba(191,151,90,.25);
      --text:          #E2DFD8;
      --text-2:        #8A8D99;
      --text-3:        #3C3F4C;
      --warn-bg:       rgba(110,42,28,.16);
      --warn-border:   rgba(185,78,48,.30);
      --warn-text:     #D4856A;
      --mono: 'JetBrains Mono', monospace;
      --sans: 'Space Grotesk', system-ui, sans-serif;
      --r:    6px;
    }

    /* ══════════════════════════════════════════════
       RESET
    ══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: var(--sans); }

    /* ══════════════════════════════════════════════
       LAYOUT
    ══════════════════════════════════════════════ */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

    /* ══════════════════════════════════════════════
       NAV
    ══════════════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 18px 0;
      background: rgba(9,10,13,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
    }
    .nav-logo {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: .10em;
      color: var(--accent);
      text-transform: uppercase;
    }
    .nav-logo span { color: var(--text-3); margin: 0 6px; }
    .nav-sections {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 4px;
      min-width: 0;
      max-width: 100%;
      overflow-x: auto;
      scrollbar-width: none;
      font-family: var(--mono);
      text-transform: uppercase;
      white-space: nowrap;
    }
    .nav-sections::-webkit-scrollbar { display: none; }
    .nav-section-link {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 9px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: var(--text-3);
      font-size: 10px;
      letter-spacing: .10em;
      transition: color .15s, border-color .15s, background .15s;
    }
    .nav-section-link:hover {
      color: var(--text-2);
      border-color: var(--border-2);
    }
    .nav-section-link.active {
      color: var(--accent);
      background: var(--accent-dim);
      border-color: var(--accent-border);
    }
    .nav-cta {
      justify-self: end;
      padding: 9px 22px;
      background: var(--accent);
      color: #08090C;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      border: none;
      border-radius: var(--r);
      transition: background .15s;
    }
    .nav-cta:hover { background: #D4AC6A; }

    /* ══════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════ */
    .parallax-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .parallax-section > .container {
      position: relative;
      z-index: 1;
    }
    .parallax-layer {
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }
    .section-depth {
      position: absolute;
      right: max(24px, calc((100vw - 1080px) / 2));
      top: 30px;
      z-index: 0;
      font-family: var(--mono);
      font-size: clamp(54px, 12vw, 142px);
      font-weight: 500;
      line-height: 1;
      letter-spacing: .02em;
      color: rgba(191,151,90,.025);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 130px 0 90px;
      overflow: hidden;
    }
    /* ghosted key glyph — the signature ambient texture */
    .hero-ghost {
      position: absolute;
      right: -20px; top: 50%;
      transform: translateY(-50%);
      font-size: 380px;
      line-height: 1;
      color: rgba(191,151,90,.035);
      pointer-events: none;
      user-select: none;
      font-family: var(--mono);
    }
    /* subtle top-left grid lines for depth */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity: .35;
      mask-image: radial-gradient(ellipse 70% 60% at 80% 50%, transparent 40%, black 100%);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }
    h1 {
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -.035em;
      max-width: 720px;
      margin-bottom: 28px;
    }
    h1 em { font-style: normal; color: var(--accent); }
    .hero-sub {
      font-size: 17px;
      color: var(--text-2);
      max-width: 490px;
      line-height: 1.7;
      margin-bottom: 48px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .btn-primary {
      padding: 15px 34px;
      background: var(--accent);
      color: #08090C;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .03em;
      border: none;
      border-radius: var(--r);
      transition: background .15s;
    }
    .btn-primary:hover { background: #D4AC6A; }
    .hero-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .10em;
      color: var(--text-3);
      text-transform: uppercase;
    }

    /* ══════════════════════════════════════════════
       CHECKLIST BAND
    ══════════════════════════════════════════════ */
    #checklist {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 52px 0;
    }
    .check-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 10px 48px;
    }
    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.5;
    }
    .check-mark {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════════
       SECTION SCAFFOLDING
    ══════════════════════════════════════════════ */
    .sec-pad { padding: 96px 0; }
    .sec-eyebrow {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 44px;
    }
    .sec-title {
      font-size: clamp(26px, 3vw, 34px);
      font-weight: 700;
      letter-spacing: -.02em;
      margin-bottom: 12px;
    }

    /* ══════════════════════════════════════════════
       FEATURES
    ══════════════════════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .fc {
      background: var(--surface);
      padding: 30px;
      transition: background .15s;
    }
    .fc:hover { background: var(--surface-2); }
    .fc-icon {
      width: 34px; height: 34px;
      border: 1px solid var(--accent-border);
      border-radius: 4px;
      background: var(--accent-dim);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      margin-bottom: 18px;
    }
    .fc-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 7px;
    }
    .fc-desc {
      font-size: 13px;
      color: var(--text-2);
      line-height: 1.65;
    }
    .fc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 12px;
    }
    .fc-tag {
      font-family: var(--mono);
      font-size: 10px;
      padding: 3px 8px;
      border: 1px solid var(--accent-border);
      border-radius: 3px;
      color: var(--accent);
    }

    /* ══════════════════════════════════════════════
       HOW IT WORKS
    ══════════════════════════════════════════════ */
    #how {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }
    /* connector line between step circles */
    .steps-wrap::before {
      content: '';
      position: absolute;
      top: 23px;
      left: calc(12.5% + 12px);
      right: calc(12.5% + 12px);
      height: 1px;
      background: linear-gradient(90deg, var(--accent-border), var(--accent-border));
    }
    .step { padding: 0 20px; text-align: center; }
    .step-num {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1px solid var(--accent-border);
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--mono);
      font-size: 13px;
      color: var(--accent);
      margin: 0 auto 20px;
      position: relative; z-index: 1;
    }
    .step-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
    .step-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
    .step-hi { font-family: var(--mono); font-size: 12px; color: var(--accent); }

    /* ══════════════════════════════════════════════
       PRICING
    ══════════════════════════════════════════════ */
    .pricing-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
    .pricing-left h2 {
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -.025em;
      margin-bottom: 20px;
    }
    .pricing-left p {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--accent-border);
      border-radius: 10px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), rgba(191,151,90,.3));
    }
    .price-sub-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 14px;
    }
    .price-amount {
      font-size: 54px;
      font-weight: 700;
      letter-spacing: -.03em;
      margin-bottom: 4px;
      line-height: 1;
    }
    .price-curr {
      font-size: 22px;
      vertical-align: baseline;
      color: var(--text-2);
      margin-right: 4px;
    }
    .price-caption { font-size: 13px; color: var(--text-2); margin-bottom: 32px; }
    .price-list { list-style: none; margin-bottom: 32px; }
    .price-list li {
      font-size: 13px;
      color: var(--text-2);
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .price-list li:last-child { border-bottom: none; }
    .pi { color: var(--accent); font-size: 11px; }
    .btn-buy {
      width: 100%;
      padding: 16px;
      background: var(--accent);
      color: #08090C;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .03em;
      border: none;
      border-radius: var(--r);
      transition: background .15s;
    }
    .btn-buy:hover { background: #D4AC6A; }
    .price-fine {
      text-align: center;
      font-size: 12px;
      color: var(--text-3);
      margin-top: 14px;
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════════
       WARNING
    ══════════════════════════════════════════════ */
    #warning {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .warn-box {
      max-width: 660px;
      margin: 0 auto;
      border: 1px solid var(--warn-border);
      border-radius: var(--r);
      padding: 36px 40px;
      background: var(--warn-bg);
    }
    .warn-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .warn-icon { font-size: 16px; }
    .warn-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--warn-text);
    }
    .warn-box p {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.75;
      margin-bottom: 10px;
    }
    .warn-box p:last-child { margin-bottom: 0; }
    .warn-box strong { color: var(--warn-text); font-weight: 500; }

    /* ══════════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════════ */
    .faq-list { max-width: 700px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--text);
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 500;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      line-height: 1.4;
      transition: color .15s;
    }
    .faq-q:hover { color: var(--accent); }
    .faq-ico {
      font-family: var(--mono);
      font-size: 18px;
      color: var(--text-3);
      flex-shrink: 0;
      transition: transform .2s, color .2s;
    }
    .faq-item.open .faq-ico { transform: rotate(45deg); color: var(--accent); }
    .faq-a {
      display: none;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.75;
      padding: 0 0 20px;
    }
    .faq-item.open .faq-a { display: block; }

    /* ══════════════════════════════════════════════
       PRIVACY NOTE
    ══════════════════════════════════════════════ */
    #privacy-note {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .privacy-inner { max-width: 640px; }
    .privacy-inner h3 {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 16px;
    }
    .privacy-inner p {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.8;
    }

    /* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
    footer {
      padding: 36px 0;
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo { font-family: var(--mono); font-size: 12px; color: var(--text-3); letter-spacing: .10em; }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: var(--text-3); transition: color .15s; }
    .footer-links a:hover { color: var(--text-2); }
    .footer-copy { font-size: 12px; color: var(--text-3); }

    /* ══════════════════════════════════════════════
       MODAL OVERLAY
    ══════════════════════════════════════════════ */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.78);
      z-index: 200;
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .overlay.active { display: flex; }
    .modal {
      background: var(--surface);
      border: 1px solid var(--border-2);
      border-radius: 10px;
      padding: 48px;
      max-width: 480px;
      width: 100%;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 16px; right: 18px;
      background: none;
      border: none;
      color: var(--text-3);
      font-size: 20px;
      line-height: 1;
      transition: color .15s;
    }
    .modal-close:hover { color: var(--text); }
    .modal-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
    .modal-sub { font-size: 13px; color: var(--text-2); margin-bottom: 28px; }
    .modal-price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      margin-bottom: 24px;
    }
    .mpr-label { font-size: 14px; color: var(--text-2); }
    .mpr-amt { font-size: 20px; font-weight: 700; }
    .form-group { margin-bottom: 18px; }
    .form-label {
      display: block;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: var(--text-2);
      margin-bottom: 8px;
    }
    .form-input {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border-2);
      border-radius: var(--r);
      color: var(--text);
      font-family: var(--sans);
      font-size: 15px;
      padding: 11px 14px;
      outline: none;
      transition: border-color .15s;
    }
    .form-input:focus { border-color: var(--accent); }
    #card-element {
      background: var(--bg);
      border: 1px solid var(--border-2);
      border-radius: var(--r);
      padding: 12px 14px;
      transition: border-color .15s;
    }
    #card-element.StripeElement--focus { border-color: var(--accent); }
    .form-err { font-size: 13px; color: var(--warn-text); margin-top: 8px; min-height: 18px; }
    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--accent);
      color: #08090C;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: var(--r);
      margin-top: 8px;
      transition: background .15s;
    }
    .btn-submit:hover:not(:disabled) { background: #D4AC6A; }
    .btn-submit:disabled { opacity: .5; cursor: not-allowed; }
    .modal-secure {
      text-align: center;
      font-size: 12px;
      color: var(--text-3);
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* ══════════════════════════════════════════════
       ROOM KEY REVEAL SCREEN
    ══════════════════════════════════════════════ */
    #key-reveal {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 300;
      overflow-y: auto;
    }
    #key-reveal.active { display: block; }
    .reveal-wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 24px;
    }
    .reveal-inner { max-width: 580px; width: 100%; text-align: center; }
    .reveal-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-dim);
      border: 1px solid var(--accent-border);
      border-radius: 40px;
      padding: 5px 14px;
      margin-bottom: 28px;
    }
    .reveal-badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }
    .reveal-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      letter-spacing: -.025em;
      margin-bottom: 10px;
    }
    .reveal-sub {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 40px;
    }
    /* ── The Key Box — signature design moment ── */
    .key-box {
      background: var(--surface);
      border: 1px solid var(--accent-border);
      border-radius: 10px;
      padding: 36px 40px;
      margin-bottom: 28px;
      position: relative;
      overflow: hidden;
    }
    .key-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    /* ambient glow behind key */
    .key-box::after {
      content: '';
      position: absolute;
      bottom: -40px; left: 50%;
      transform: translateX(-50%);
      width: 280px; height: 80px;
      background: radial-gradient(ellipse, rgba(191,151,90,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .key-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 18px;
    }
    .key-value {
      font-family: var(--mono);
      font-size: clamp(17px, 3.5vw, 26px);
      font-weight: 500;
      color: var(--accent);
      letter-spacing: .12em;
      word-break: break-all;
      margin-bottom: 24px;
      line-height: 1.4;
    }
    .btn-copy {
      padding: 10px 24px;
      border: 1px solid var(--accent-border);
      background: var(--accent-dim);
      color: var(--accent);
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .06em;
      border-radius: var(--r);
      transition: background .15s, color .15s, border-color .15s;
    }
    .btn-copy:hover { background: rgba(191,151,90,.2); }
    .btn-copy.copied { color: #60C080; border-color: rgba(96,192,128,.3); background: rgba(96,192,128,.08); }

    /* instructions */
    .reveal-instructions {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 26px 30px;
      text-align: left;
      margin-bottom: 24px;
    }
    .ri-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .ri-steps { list-style: none; counter-reset: ris; }
    .ri-steps li {
      counter-increment: ris;
      font-size: 13px;
      color: var(--text-2);
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 14px;
      align-items: flex-start;
      line-height: 1.5;
    }
    .ri-steps li:last-child { border-bottom: none; }
    .ri-steps li::before {
      content: counter(ris);
      font-family: var(--mono);
      font-size: 10px;
      color: var(--accent);
      background: var(--accent-dim);
      border: 1px solid var(--accent-border);
      width: 22px; height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .ri-steps li strong { color: var(--text); font-weight: 500; }

    /* confirm block */
    .reveal-confirm {
      border: 1px solid var(--warn-border);
      border-radius: var(--r);
      padding: 18px 22px;
      background: var(--warn-bg);
      margin-bottom: 20px;
      text-align: left;
    }
    .reveal-confirm label {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      color: var(--text-2);
      cursor: pointer;
      line-height: 1.55;
    }
    .reveal-confirm input[type="checkbox"] {
      margin-top: 2px;
      width: 16px; height: 16px;
      flex-shrink: 0;
      accent-color: var(--accent);
      cursor: pointer;
    }
    .btn-done {
      width: 100%;
      padding: 14px;
      background: none;
      border: 1px solid var(--border-2);
      border-radius: var(--r);
      color: var(--text-2);
      font-size: 14px;
      transition: border-color .15s, color .15s;
    }
    .btn-done:hover:not(:disabled) { border-color: var(--text-2); color: var(--text); }
    .btn-done:disabled { opacity: .3; cursor: not-allowed; }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 860px) {
      html { scroll-padding-top: 132px; }
      .nav-inner {
        grid-template-columns: 1fr auto;
      }
      .nav-sections {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        padding-bottom: 2px;
      }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-wrap { grid-template-columns: 1fr 1fr; gap: 44px; }
      .steps-wrap::before { display: none; }
      .pricing-wrap { grid-template-columns: 1fr; gap: 44px; }
    }
    @media (max-width: 560px) {
      nav { padding: 14px 0 12px; }
      .nav-section-link { padding: 5px 8px; }
      .features-grid { grid-template-columns: 1fr; }
      .steps-wrap { grid-template-columns: 1fr; }
      .modal { padding: 32px 22px; }
      .key-box { padding: 24px 20px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; }
      .parallax-layer { transform: none !important; }
    }

.faq-title { margin-bottom: 44px; }
.email-hint { color: var(--text-3); font-size: 10px; }
.pay-error { text-align: center; margin-top: 10px; }
.reveal-warning { color: var(--warn-text); }


     /* ══════════════════════════════════════════════
        STRIPE CHECKOUT STYLES
     ══════════════════════════════════════════════ */
     #checkout-container {
       display: flex;
       flex-direction: column;
       gap: 16px;
     }

     .checkout-field {
       display: flex;
       flex-direction: column;
       gap: 6px;
     }

     .checkout-label {
       font-family: var(--mono);
       font-size: 11px;
       letter-spacing: .10em;
       text-transform: uppercase;
       color: var(--text-2);
     }

     .checkout-input {
       width: 100%;
       background: var(--bg);
       border: 1px solid var(--border-2);
       border-radius: var(--r);
       color: var(--text);
       font-family: var(--sans);
       font-size: 15px;
       padding: 11px 14px;
       outline: none;
       transition: border-color .15s, box-shadow .15s;
     }

     .checkout-input:focus {
       border-color: var(--accent);
       box-shadow: 0 0 0 3px rgba(191, 151, 90, 0.1);
     }

     .checkout-loading {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
       padding: 20px;
       font-size: 14px;
       color: var(--text-2);
     }

     .checkout-loading span {
       display: inline-flex;
       gap: 4px;
     }

     .dot {
       width: 6px;
       height: 6px;
       border-radius: 50%;
       background: var(--accent);
       animation: dot-pulse 1.4s infinite;
     }

     .dot:nth-child(1) { animation-delay: 0s; }
     .dot:nth-child(2) { animation-delay: 0.2s; }
     .dot:nth-child(3) { animation-delay: 0.4s; }

     @keyframes dot-pulse {
       0%, 100% { opacity: 0.3; }
       50% { opacity: 1; }
     }

     .checkout-err {
       padding: 12px 14px;
       background: var(--warn-bg);
       border: 1px solid var(--warn-border);
       border-radius: var(--r);
       color: var(--warn-text);
       font-size: 13px;
       line-height: 1.5;
       min-height: 40px;
       display: flex;
       align-items: center;
     }

     /* Stripe Payment Element */
     .StripeElement {
       background: var(--bg) !important;
       border-radius: var(--r) !important;
       transition: border-color .15s !important;
     }

     .StripeElement--focus {
       border-color: var(--accent) !important;
       box-shadow: 0 0 0 3px rgba(191, 151, 90, 0.1) !important;
     }

     .StripeElement--invalid {
       border-color: var(--warn-text) !important;
     }

     .pay-btn {
       width: 100%;
       padding: 16px;
       background: var(--accent);
       color: #08090C;
       font-size: 15px;
       font-weight: 600;
       border: none;
       border-radius: var(--r);
       cursor: pointer;
       transition: background .2s, opacity .15s;
     }

     .pay-btn:hover:not(:disabled) {
       background: #D4AC6A;
     }

     .pay-btn:disabled {
       opacity: 0.5;
       cursor: not-allowed;
     }

     .pay-btn:active:not(:disabled) {
       transform: scale(0.98);
     }

     /* ──────────────────────────────────────────── */

