@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F6F4EE;
      --white: #FFFFFF;
      --ink: #0F0F0E;
      --ink2: #4F4E48;
      --ink3: #7D7B73;
      --border: rgba(15,15,14,0.10);
      --border2: rgba(15,15,14,0.20);
      --surface: #EFEEE7;
      --lime: #CBEA63;
      --lime-dark: #789617;
      --r: 22px;
      --r-sm: 14px;
      --shadow: 0 2px 8px rgba(15,15,14,.04), 0 10px 26px rgba(15,15,14,.06);
      --shadow-lg: 0 6px 18px rgba(15,15,14,.06), 0 24px 60px rgba(15,15,14,.10);
      --font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font);
      font-weight: 450;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
    @media (min-width: 768px) { body { padding-bottom: 0; } }
    a { color: inherit; text-decoration: none; }
    main { display: block; overflow: clip; }

    /* HEADER */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(247,246,242,0.9);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding-top: env(safe-area-inset-top);
    }
    .header-inner {
      max-width: 1120px; margin: 0 auto;
      padding: 0 clamp(14px, 4vw, 24px); min-height: 54px;
      display: flex; align-items: center; gap: 8px;
    }
    .logo { font-size: 16px; font-weight: 760; letter-spacing: -0.035em; flex-shrink: 0; }
    .logo-dot { color: var(--lime-dark); }
    nav.desk { display: none; margin-left: 24px; gap: 4px; }
    @media (min-width: 900px) { nav.desk { display: flex; } }
    nav.desk a {
      font-size: 13.5px; font-weight: 600; color: var(--ink2);
      padding: 6px 12px; border-radius: 8px;
      transition: background .15s, color .15s;
    }
    nav.desk a:hover { background: var(--surface); color: var(--ink); }

    /* Горизонтальное меню разделов на телефонах (десктопное скрыто до 900px) */
    .nav-mob {
      display: flex; gap: 8px; overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0 16px 12px;
      margin-top: -2px;
    }
    .nav-mob::-webkit-scrollbar { display: none; }
    .nav-mob a {
      flex-shrink: 0;
      font-size: 12.5px; font-weight: 700; color: var(--ink2);
      padding: 9px 14px; border-radius: 999px;
      background: var(--white); border: 1px solid var(--border);
      -webkit-tap-highlight-color: transparent;
      transition: background .15s, border-color .15s;
    }
    .nav-mob a:active { background: var(--surface); }
    @media (min-width: 900px) { .nav-mob { display: none; } }

    .header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-ghost {
      font-size: 13px; font-weight: 700; color: var(--ink2);
      padding: 8px 14px; border-radius: 12px; border: 1.5px solid var(--border2);
      background: rgba(255,255,255,0.55); transition: background .18s ease, border-color .18s ease, transform .18s ease;
      -webkit-tap-highlight-color: transparent;
      min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
      white-space: nowrap;
    }
    .btn-ghost:hover { background: var(--white); border-color: rgba(15,15,14,0.26); transform: translateY(-1px); }
    .btn-ghost-full { display: inline; }
    .btn-ghost-short { display: none; }
    .btn-primary {
      font-size: 13px; font-weight: 720; color: #fff;
      padding: 9px 16px; border-radius: 12px;
      background: var(--ink); transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
      display: inline-flex; align-items: center; justify-content: center;
      white-space: nowrap;
      -webkit-tap-highlight-color: transparent;
      min-height: 44px;
      box-shadow: 0 10px 22px rgba(15,15,14,0.12);
    }
    .btn-primary-full { display: inline; }
    .btn-primary-short { display: none; }
    @media (max-width: 619px) {
      .btn-ghost-full { display: none; }
      .btn-ghost-short { display: inline; }
    }
    @media (max-width: 419px) {
      .btn-primary-full { display: none; }
      .btn-primary-short { display: inline; }
    }
    @media (max-width: 359px) {
      .btn-primary,
      .btn-ghost { padding: 8px 12px; font-size: 12px; }
    }
    .btn-primary:hover { background: #232321; transform: translateY(-1px); box-shadow: 0 14px 28px rgba(15,15,14,0.18); }

    /* HERO */
    .hero-wrap { max-width: 1120px; margin: 0 auto; padding: 60px 24px 48px; }
    @media (max-width: 599px) {
      .hero-wrap { padding: 32px 16px 36px; }
    }
    .hero-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
    @media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 380px; align-items: start; } }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; max-width: 100%;
      background: var(--lime); color: var(--ink);
      font-size: 11px; font-weight: 720; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

    h1 {
      font-size: clamp(2.1rem, 5.1vw, 3.35rem);
      font-weight: 780; letter-spacing: -0.055em; line-height: 0.98; color: var(--ink);
      text-wrap: balance;
    }
    h1 .muted { color: var(--ink2); }
    .hero-sub {
      margin-top: 20px; max-width: 540px;
      font-size: 17px; font-weight: 450; line-height: 1.62; color: var(--ink2);
    }
    .hero-sub + .hero-sub { margin-top: 14px; }
    .hero-sub-lead {
      font-weight: 600;
      color: var(--ink);
      max-width: 520px;
    }
    .hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .cta-main {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink); color: #fff;
      font-size: 15px; font-weight: 740;
      padding: 15px 28px; border-radius: 16px; min-height: 56px;
      transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
      -webkit-tap-highlight-color: transparent;
      box-shadow: 0 14px 30px rgba(15,15,14,0.14);
    }
    .cta-main:hover { background: #232321; transform: translateY(-1px); box-shadow: 0 18px 38px rgba(15,15,14,0.18); }
    .cta-main:active { transform: translateY(0) scale(.985); }
    .arrow { display: inline-block; transition: transform .2s; }
    .cta-main:hover .arrow { transform: translateX(3px); }
    .cta-alt {
      display: inline-flex; align-items: center;
      font-size: 14px; font-weight: 720; color: var(--ink2);
      padding: 13px 20px; border-radius: 16px;
      border: 1.5px solid var(--border2); background: var(--white); min-height: 52px;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
      -webkit-tap-highlight-color: transparent;
    }
    @media (max-width: 480px) {
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .cta-main,
      .hero-ctas .cta-alt { width: 100%; justify-content: center; text-align: center; }
    }
    .cta-alt:hover { background: var(--surface); border-color: rgba(15,15,14,0.24); transform: translateY(-1px); }
    .hero-microcopy {
      margin-top: 12px;
      max-width: 540px;
      font-size: 12.5px;
      line-height: 1.55;
      color: var(--ink3);
    }
    .hero-points {
      margin-top: 18px;
      display: grid;
      gap: 10px;
      max-width: 620px;
    }
    .hero-point {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.68);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 620;
      color: var(--ink2);
    }
    .hero-point span {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      font-size: 11px;
      font-weight: 760;
      letter-spacing: 0.06em;
    }

    .app-downloads {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: stretch;
    }
    .download-pill {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      min-width: 148px;
      min-height: 58px;
      padding: 10px 16px;
      border-radius: 14px;
      border: 1.5px solid var(--border2);
      background: var(--white);
      color: var(--ink);
      transition: background .15s, border-color .15s, transform .1s;
      -webkit-tap-highlight-color: transparent;
    }
    .download-pill:hover {
      background: var(--surface);
      border-color: rgba(15,15,14,0.2);
    }
    .download-pill:active { transform: scale(.99); }
    .download-pill-main {
      background: var(--lime);
      border-color: rgba(15,15,14,0.16);
    }
    .download-pill-kicker {
      font-size: 11px;
      line-height: 1.1;
      font-weight: 760;
      color: var(--ink3);
      text-transform: uppercase;
    }
    .download-pill-title {
      margin-top: 3px;
      font-size: 14px;
      line-height: 1.15;
      font-weight: 760;
    }
    @media (max-width: 480px) {
      .app-downloads { flex-direction: column; }
      .download-pill { width: 100%; text-align: center; align-items: center; }
    }

    .hero-trust { margin-top: 28px; display: flex; gap: 20px; flex-wrap: wrap; }
    .trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 560; color: var(--ink3);
    }
    .trust-icon {
      width: 20px; height: 20px; border-radius: 6px;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; font-size: 11px;
    }

    .hero-stats {
      margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
      display: grid; grid-template-columns: repeat(3, 1fr);
    }
    .stat { padding-right: 24px; min-width: 0; }
    .stat + .stat { padding-left: 24px; border-left: 1px solid var(--border); }
    .stat-num { font-size: 2.1rem; font-weight: 760; letter-spacing: -0.045em; line-height: 1; }
    @media (max-width: 380px) {
      .stat { padding-right: 10px; }
      .stat + .stat { padding-left: 10px; }
      .stat-num { font-size: 1.65rem; }
      .stat-label { font-size: 10px; }
    }
    .stat-label { font-size: 11.5px; font-weight: 650; color: var(--ink3); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.04em; }

    /* PAY CARD */
    .pay-card {
      background: var(--white); border-radius: 28px;
      border: 1px solid var(--border); box-shadow: var(--shadow-lg);
      padding: 30px; position: relative; overflow: hidden;
    }
    .pay-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--lime);
    }
    .pay-card-title { font-size: 12px; font-weight: 680; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.1em; }
    .pay-card-sub { font-size: 16px; font-weight: 760; color: var(--ink); margin-top: 4px; letter-spacing: -0.03em; }
    .pay-card-note {
      margin-top: 10px;
      font-size: 12.5px;
      line-height: 1.5;
      color: var(--ink2);
    }
    .pay-card-note a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

    .plans-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .plan {
      display: block; padding: 14px 14px 12px;
      border-radius: 16px; border: 1.5px solid var(--border);
      background: rgba(255,255,255,0.72); text-decoration: none;
      transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
      min-height: 48px;
      -webkit-tap-highlight-color: transparent;
    }
    .plan:hover { border-color: var(--border2); background: var(--white); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(15,15,14,0.08); }
    .plan:active { transform: translateY(0) scale(.985); }
    .plan.pop { border-color: var(--ink); background: var(--ink); }
    .plan-tag { font-size: 10.5px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink3); }
    .plan.pop .plan-tag { color: rgba(255,255,255,.45); }
    .hit-badge {
      display: inline-block; background: var(--lime); color: var(--ink);
      font-size: 9px; font-weight: 760; text-transform: uppercase; letter-spacing: 0.05em;
      padding: 2px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle;
    }
    .plan-price { font-size: 22px; font-weight: 780; letter-spacing: -0.05em; color: var(--ink); margin-top: 6px; line-height: 1; }
    .plan.pop .plan-price { color: #fff; }
    .plan-save {
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink3);
      margin-top: 6px;
      line-height: 1.35;
      letter-spacing: -0.01em;
    }
    .plan-period { font-size: 11.5px; font-weight: 600; color: var(--ink3); }
    .plan.pop .plan-period { color: rgba(255,255,255,.5); }
    .plan-trial {
      background: linear-gradient(145deg, #11120f 0%, #1e2412 100%);
      border-color: rgba(196,241,53,0.28);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .plan-trial .plan-tag,
    .plan-trial .plan-period,
    .plan-trial .plan-save {
      color: rgba(255,255,255,.7);
    }
    .plan-trial .hit-badge {
      background: #fff;
    }

    .pay-btn {
      display: flex; align-items: center; justify-content: center;
      margin-top: 16px; padding: 15px;
      background: var(--ink); color: #fff;
      font-size: 14.5px; font-weight: 720; letter-spacing: -0.015em;
      border-radius: 12px; transition: background .15s;
    }
    .pay-btn:hover { background: #2a2a28; }
    .pay-methods {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 13px; font-size: 12px; font-weight: 600; color: var(--ink3);
    }
    .method { padding: 3px 10px; background: var(--surface); border-radius: 6px; font-size: 11px; font-weight: 700; }

    /* SECTIONS */
    section { padding: 72px 24px; position: relative; }
    @media (max-width: 599px) {
      section { padding: 48px 16px; }
    }
    .defer-section {
      content-visibility: visible;
      contain-intrinsic-size: auto;
    }
    html.js-anim .defer-section {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s ease, transform .55s ease;
    }
    html.js-anim .defer-section.is-visible { opacity: 1; transform: translateY(0); }
    .s-inner { max-width: 1120px; margin: 0 auto; }
    .s-label { font-size: 11px; font-weight: 680; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.45rem); font-weight: 760; letter-spacing: -0.05em; line-height: 1.06; text-wrap: balance; }
    h2 + p { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--ink2); max-width: 560px; }

    .proof-strip {
      padding-top: 0;
      margin-top: -4px;
    }
    .proof-strip-inner {
      display: grid;
      gap: 14px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 760px) {
      .proof-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1080px) {
      .proof-strip-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }
    .proof-card {
      min-height: 100%;
      padding: 20px 20px 18px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,246,242,0.95) 100%);
      box-shadow: 0 10px 30px rgba(15,15,14,0.04);
    }
    .proof-kicker {
      font-size: 10px;
      font-weight: 760;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink3);
    }
    .proof-title {
      margin-top: 8px;
      font-size: 18px;
      line-height: 1.15;
      letter-spacing: -0.04em;
      font-weight: 760;
      color: var(--ink);
    }
    .proof-card p {
      margin-top: 8px;
      font-size: 13.5px;
      line-height: 1.55;
      color: var(--ink2);
    }

    /* SERVERS */
    .servers-bg { background: var(--ink); }
    .servers-bg .s-label { color: rgba(255,255,255,.3); }
    .servers-bg h2 { color: #fff; }
    .servers-bg h2 + p { color: rgba(255,255,255,.5); }
    .srv-grid { margin-top: 40px; display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 600px) { .srv-grid { grid-template-columns: repeat(4, 1fr); } }
    .srv-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px; padding: 16px 14px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .18s ease, transform .18s ease, border-color .18s ease;
    }
    .srv-card:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
    .srv-left { display: flex; align-items: center; gap: 10px; }
    .srv-flag { font-size: 20px; line-height: 1; }
    .srv-city { font-size: 13.5px; font-weight: 700; color: #fff; }
    .srv-country { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); margin-top: 1px; }
    .srv-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .d-green { background: #4ADE80; }
    .d-amber { background: #FBBF24; }

    /* PRICING */
    .p-grid { margin-top: 48px; display: grid; gap: 16px; grid-template-columns: 1fr; }
    @media (min-width: 560px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .p-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
    .p-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,246,242,0.98) 100%); border: 1.5px solid var(--border);
      border-radius: var(--r); padding: 28px 22px 24px;
      position: relative; overflow: hidden; display: block;
      transition: box-shadow .2s, transform .18s ease, border-color .2s, background .2s ease;
      min-height: 100%;
    }
    .p-card:hover { box-shadow: 0 18px 42px rgba(15,15,14,0.09); transform: translateY(-4px); border-color: rgba(15,15,14,0.18); }
    .p-card.feat { background: var(--ink); border-color: var(--ink); }
    .p-card.feat:hover { box-shadow: 0 8px 40px rgba(0,0,0,.25); }
    .p-badge {
      position: absolute; top: 16px; right: 16px;
      background: var(--lime); color: var(--ink);
      font-size: 10px; font-weight: 740; text-transform: uppercase; letter-spacing: 0.06em;
      padding: 3px 9px; border-radius: 100px;
    }
    .p-period { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink3); }
    .p-card.feat .p-period { color: rgba(255,255,255,.4); }
    .p-amount { font-size: 2.2rem; font-weight: 780; letter-spacing: -0.055em; margin-top: 10px; line-height: 1; }
    .p-card.feat .p-amount { color: #fff; }
    .p-save {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--ink2);
      margin-top: 8px;
      line-height: 1.4;
      max-width: 220px;
      margin-left: auto;
      margin-right: auto;
    }
    .p-sub { font-size: 12.5px; font-weight: 600; color: var(--ink2); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
    .p-card.feat .p-sub { color: rgba(255,255,255,.45); border-top-color: rgba(255,255,255,.12); }
    .p-btn {
      display: block; text-align: center; margin-top: 18px; padding: 12px;
      background: transparent; border: 1.5px solid var(--border2);
      border-radius: 10px; font-size: 13.5px; font-weight: 700; color: var(--ink);
      transition: background .15s;
    }
    .p-card:hover .p-btn { background: var(--surface); }
    .p-card.feat .p-btn { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .p-card.feat:hover .p-btn { background: #d4f54a; }
    .p-card-trial.feat {
      background: linear-gradient(145deg, #11120f 0%, #1e2412 100%);
      border-color: rgba(196,241,53,0.34);
    }

    /* HOW */
    .how-bg { background: var(--surface); }
    .steps { margin-top: 48px; display: grid; gap: 16px; grid-template-columns: 1fr; }
    @media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
    .step {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r); padding: 28px 24px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(15,15,14,0.12);
    }
    .step-num {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--ink); color: #fff;
      font-size: 15px; font-weight: 760;
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    }
    .step h3 { font-size: 16px; font-weight: 720; letter-spacing: -0.025em; }
    .step p { font-size: 14px; font-weight: 500; color: var(--ink2); line-height: 1.6; margin-top: 8px; }
    .step a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border2); }
    .step a:hover { text-decoration-color: var(--ink); }
    .step .step-note { margin-top: 10px; font-size: 13px; font-weight: 500; color: var(--ink3); line-height: 1.55; }

    /* FAQ */
    .faq-list { margin-top: 40px; max-width: 720px; }
    details {
      border: 1px solid var(--border); border-radius: var(--r-sm);
      background: var(--white); overflow: hidden; margin-bottom: 10px;
      transition: box-shadow .2s;
    }
    details[open] { box-shadow: var(--shadow); }
    details:hover { border-color: rgba(15,15,14,0.16); }
    summary {
      cursor: pointer; list-style: none;
      padding: 18px 20px; font-size: 15px; font-weight: 700;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      -webkit-tap-highlight-color: transparent;
    }
    summary::-webkit-details-marker { display: none; }
    .fq-plus {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
      background: var(--surface); display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--ink2); transition: background .15s, transform .25s;
    }
    details[open] .fq-plus { transform: rotate(45deg); background: var(--ink); color: #fff; }
    .faq-body {
      padding: 16px 20px 18px; border-top: 1px solid var(--border);
      font-size: 14.5px; font-weight: 500; color: var(--ink2); line-height: 1.65;
    }
    .faq-body a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

    /* CTA BANNER */
    .cta-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px 72px; }
    @media (max-width: 599px) { .cta-wrap { padding: 0 16px 56px; } }
    .cta-banner {
      background: linear-gradient(135deg, #c4f135 0%, #dff883 100%); border-radius: 24px; padding: 40px 40px 32px;
      display: grid; gap: 22px;
      box-shadow: 0 24px 54px rgba(143,184,0,0.16);
    }
    @media (min-width: 860px) {
      .cta-banner {
        grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 20px;
      }
    }
    .cta-banner-copy {
      order: 1;
      max-width: 560px;
    }
    .cta-banner-actions {
      order: 2;
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: flex-start;
    }
    .cta-banner-figure {
      order: 3;
      display: flex;
      justify-content: flex-end;
      pointer-events: none;
      user-select: none;
    }
    .cta-banner-figure img {
      display: block;
      width: min(62vw, 220px);
      height: auto;
      margin: 4px -8px -24px 0;
      filter: drop-shadow(0 16px 30px rgba(15,15,14,0.16));
    }
    @media (min-width: 860px) {
      .cta-banner-copy { order: 2; }
      .cta-banner-actions { justify-content: flex-end; }
      .cta-banner-figure {
        order: 1;
        justify-content: flex-start;
        align-self: end;
      }
      .cta-banner-figure img {
        width: 290px;
        max-width: none;
        margin: -14px 0 -32px -48px;
      }
    }
    @media (max-width: 699px) {
      .cta-banner { padding: 28px 20px; border-radius: 20px; }
      .cta-banner-actions { flex-direction: column; }
      .cta-banner-actions .btn-dark { width: 100%; justify-content: center; white-space: normal; text-align: center; }
      .cta-banner-copy { max-width: none; }
    }
    .cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.04em; }
    .cta-banner p { font-size: 15px; font-weight: 500; color: var(--ink2); margin-top: 8px; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink);
      color: #fff; font-size: 15px; font-weight: 720;
      padding: 15px 30px; border-radius: 14px; white-space: nowrap;
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px;
    }
    .btn-dark:hover { background: #2a2a28; }

    /* FOOTER */
    footer { border-top: 1px solid var(--border); background: var(--white); padding: 32px 24px; }
    @media (max-width: 599px) { footer { padding: 28px 16px; } }
    .foot-inner {
      max-width: 1120px; margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
    }
    .foot-logo { font-size: 14px; font-weight: 760; letter-spacing: -0.03em; }
    .foot-links { display: flex; gap: 4px; }
    .foot-links a { font-size: 13px; font-weight: 600; color: var(--ink3); padding: 6px 10px; border-radius: 7px; transition: background .15s, color .15s; }
    @media (max-width: 520px) {
      .foot-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
      .foot-links { flex-wrap: wrap; gap: 6px; max-width: 100%; }
      .foot-links a { padding: 8px 12px; min-height: 44px; display: inline-flex; align-items: center; }
    }
    .foot-links a:hover { background: var(--surface); color: var(--ink); }
    .foot-email { font-size: 13px; font-weight: 600; color: var(--ink3); }
    .foot-email:hover { color: var(--ink); }

    /* Юридические страницы */
    .legal-page { padding-bottom: 48px; }
    .legal-body { margin-top: 28px; max-width: 640px; }
    .legal-body h2 {
      font-size: 1.05rem;
      font-weight: 720;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 28px 0 10px;
    }
    .legal-body h2:first-of-type { margin-top: 8px; }
    .legal-body p {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.65;
      color: var(--ink2);
      margin: 0 0 12px;
    }
    .legal-body a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
    .legal-body a:hover { color: var(--lime-dark); }

    /* MOBILE BAR */
    .mob-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: rgba(247,246,242,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border); padding: 12px 16px;
      padding-bottom: max(12px, env(safe-area-inset-bottom));
      display: flex; align-items: center; gap: 12px;
    }
    @media (min-width: 768px) { .mob-bar { display: none; } }
    .mob-info { flex: 1; min-width: 0; }
    .mob-label { font-size: 11px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.05em; }
    .mob-price { font-size: 18px; font-weight: 760; letter-spacing: -0.035em; }
    .mob-cta {
      flex: 2; display: flex; align-items: center; justify-content: center;
      background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 720;
      padding: 14px 20px; border-radius: 12px; transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px;
    }
    .mob-cta:hover { background: #2a2a28; }

    /* IP SECTION */
    .ip-section { background: var(--white); padding: 72px 24px; }
    @media (max-width: 599px) { .ip-section { padding: 48px 16px; } }
    @media (max-width: 480px) {
      .ip-left .cta-main {
        display: flex !important;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
      }
    }
    .ip-checker-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
    @media (min-width: 860px) { .ip-checker-grid { grid-template-columns: 1fr 1.4fr; align-items: center; } }
    .ip-cards { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
    @media (max-width: 560px) {
      .ip-cards {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .ip-vs {
        order: 2;
        text-align: center;
        padding: 2px 0;
        font-size: 12px;
        letter-spacing: 0.12em;
      }
      .ip-card:first-of-type { order: 1; }
      .ip-card:last-of-type { order: 3; }
    }
    .ip-card {
      border-radius: 18px; padding: 20px;
      border: 1.5px solid var(--border);
      background: var(--bg);
    }
    .ip-exposed { border-color: rgba(255,59,48,0.2); }
    .ip-safe { border-color: rgba(52,199,89,0.25); background: rgba(52,199,89,0.04); }
    .ipc-tag { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink3); margin-bottom: 12px; }
    .ipc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .red-dot { background: #FF3B30; }
    .green-dot { background: #34C759; }
    .ipc-ip { font-size: 1.25rem; font-weight: 760; letter-spacing: -0.035em; color: var(--ink); margin-bottom: 12px; font-variant-numeric: tabular-nums; }
    .safe-ip { color: #1A7A35; letter-spacing: 0.02em; }
    .ipc-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .ipc-row { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; }
    .ipc-lbl { font-weight: 600; color: var(--ink3); }
    .ipc-val { font-weight: 700; color: var(--ink2); text-align: right; }
    .ipc-warn { font-size: 12px; font-weight: 700; color: #CC2D25; padding: 8px 10px; background: rgba(255,59,48,0.07); border-radius: 8px; }
    .ipc-ok { font-size: 12px; font-weight: 700; color: #1A7A35; padding: 8px 10px; background: rgba(52,199,89,0.1); border-radius: 8px; }
    .ip-vs { font-size: 11px; font-weight: 700; color: var(--ink3); letter-spacing: 0.05em; }
    @keyframes ip-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
    .ip-skel { display: inline-block; height: 14px; width: 140px; background: var(--surface); border-radius: 6px; animation: ip-pulse 1.3s ease-in-out infinite; vertical-align: middle; }

    /* ANIM */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    .fu { opacity: 1; animation: fadeUp .6s ease both; }
    .reduced-motion .fu { opacity: 1; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .marquee-track { animation: none; }
      .arrow { transition: none; }
      .fu { opacity: 1; }
    }

/* —— Внутренние страницы (оплата, кабинет, успех) —— */
body.page-inner { padding-bottom: 32px; }
.sub-page-wrap { max-width: 600px; margin: 0 auto; padding: 20px 22px 64px; }
.sub-page-wrap--wide { max-width: 820px; }
.inner-kicker {
  font-size: 11px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink3);
  margin-bottom: 10px;
}
.inner-kicker span { color: var(--lime-dark); }
.sub-page-title { font-size: clamp(1.5rem, 4.2vw, 2.05rem); font-weight: 760; letter-spacing: -0.05em; line-height: 1.08; color: var(--ink); text-wrap: balance; }
.sub-page-lead { margin-top: 14px; font-size: 16px; font-weight: 500; color: var(--ink2); line-height: 1.65; max-width: 520px; }
.sub-page-lead a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.pricing-note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
}
.pricing-note a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.sub-card {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.sub-card--stripe::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime);
}
.sub-card--muted { background: var(--surface); border-color: transparent; box-shadow: none; }
.sub-card-title { font-size: 13px; font-weight: 680; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.sub-hint {
  margin-top: 14px; padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(196,241,53,0.12); border: 1px solid rgba(143,184,0,0.22);
  font-size: 13px; font-weight: 600; color: var(--ink2); line-height: 1.5;
}
.sub-hint strong { color: var(--ink); font-weight: 700; }
.sub-hint a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.legal-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(15,15,14,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--ink2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.legal-consent input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--ink);
  cursor: pointer;
}
.legal-consent strong { color: var(--ink); font-weight: 800; }
.legal-consent a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.legal-consent:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(15,15,14,0.08);
}
.pm-line-large { font-weight: 700; font-size: 1.05rem; margin-top: 8px; line-height: 1.45; color: var(--ink); }
.cabinet-dual { display: grid; gap: 18px; margin-top: 4px; }
@media (min-width: 800px) {
  .cabinet-dual { grid-template-columns: 1fr 1fr; align-items: start; }
}
.cabinet-email-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; margin-top: 8px; }
.cabinet-email-row .field-input { flex: 1; min-width: 220px; }
.cabinet-email-row .submit-pay { width: auto; margin-top: 0; padding: 14px 26px; white-space: nowrap; }
@media (max-width: 540px) {
  .cabinet-email-row { flex-direction: column; }
  .cabinet-email-row .submit-pay { width: 100%; }
}
.sub-stat-big { font-size: 1.35rem; font-weight: 760; letter-spacing: -0.035em; margin-top: 6px; line-height: 1.2; }
.sub-actions-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pm-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 100px;
  background: var(--surface); color: var(--ink2); border: 1px solid var(--border);
}
.pm-badge--ok { background: rgba(52,199,89,0.12); color: #1a6b2c; border-color: rgba(52,199,89,0.25); }
.pm-badge--off { background: var(--bg); color: var(--ink3); }
.checkout-stack { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.field-label { font-size: 11px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink3); margin-bottom: 8px; display: block; }
.field-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
}
.field-input:focus { outline: none; border-color: var(--ink2); background: var(--white); }
.sub-plans { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.sub-plan-btn {
  display: block; width: 100%; text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .15s, background .15s, transform .1s;
}
.sub-plan-btn:hover { border-color: var(--border2); background: var(--white); }
.sub-plan-btn:active { transform: scale(.99); }
.sub-plan-btn.pop { border-color: var(--ink); background: var(--ink); color: #fff; }
.sub-plan-btn .ptag { font-size: 10.5px; font-weight: 680; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink3); }
.sub-plan-btn.pop .ptag { color: rgba(255,255,255,.5); }
.sub-plan-btn .pprice { font-size: 22px; font-weight: 780; letter-spacing: -0.05em; margin-top: 6px; }
.sub-plan-btn.pop .pprice { color: #fff; }
.sub-plan-btn .psub { font-size: 12px; font-weight: 600; color: var(--ink3); margin-top: 4px; }
.sub-plan-btn.pop .psub { color: rgba(255,255,255,.45); }
.submit-pay {
  width: 100%; margin-top: 20px;
  padding: 15px;
  border: none;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 740;
  cursor: pointer;
  font-family: var(--font);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  min-height: 56px;
  box-shadow: 0 14px 30px rgba(15,15,14,0.12);
}
.submit-pay:hover { background: #232321; transform: translateY(-1px); box-shadow: 0 18px 36px rgba(15,15,14,0.18); }
.submit-pay:disabled { opacity: .55; cursor: not-allowed; }
.submit-pay:disabled:hover { background: var(--ink); transform: none; box-shadow: 0 14px 30px rgba(15,15,14,0.12); }
.pay-sbp-line button:disabled {
  opacity: .45;
  cursor: not-allowed !important;
  text-decoration: none !important;
}
.pay-actions-row {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.pay-actions-row .submit-pay {
  margin-top: 0;
}
.submit-pay--secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border2);
}
.submit-pay--secondary:hover {
  background: var(--surface);
}
.pay-methods-foot {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--ink3);
}
/* Блок «что будет с оплатой» на странице checkout */
.pay-notice {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 18px 18px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
}
.pay-notice.is-visible { display: flex; }
.pay-notice--trial {
  background: linear-gradient(145deg, rgba(196, 241, 53, 0.2) 0%, var(--surface) 42%, var(--white) 100%);
  border-color: rgba(15, 15, 14, 0.18);
  border-width: 1.5px;
}
.pay-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  font-weight: 760;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font);
}
.pay-notice--trial .pay-notice-icon {
  background: var(--lime);
  color: var(--ink);
}
.pay-notice-body { min-width: 0; flex: 1; }
.pay-notice-title {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.pay-notice-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}
.pay-notice-text strong { color: var(--ink); font-weight: 700; }
.pay-notice-text a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pay-notice-text a:hover { color: var(--lime-dark); }

.alert-err { color: #9e2a1f; font-size: 14px; font-weight: 600; margin-top: 10px; }
.loading-txt { color: var(--ink3); font-size: 15px; font-weight: 500; }
.success-card .sub-url-box {
  word-break: break-all; font-size: 13px; font-weight: 600;
  background: var(--surface); padding: 14px; border-radius: var(--r-sm);
  border: 1px solid var(--border); margin: 14px 0;
  line-height: 1.45;
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px;
  border: 1.5px solid var(--border2);
  background: var(--white);
  font-size: 14px; font-weight: 700;
  font-family: var(--font);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
}
.btn-secondary:hover { background: var(--surface); }
.profile-block { margin-top: 8px; }
.pm-line { font-weight: 700; font-size: 15px; margin-top: 6px; }
.unbind-row { margin-top: 14px; }
.modal-root {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,15,14,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--white); border-radius: var(--r);
  padding: 24px; max-width: 400px; width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 18px; font-weight: 760; letter-spacing: -0.03em; }
.modal-box p { margin-top: 10px; font-size: 14px; color: var(--ink2); line-height: 1.55; }
.modal-actions { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.hidden { display: none !important; }
.flex { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* REFERRAL LANDING */
.ref-section {
  padding: 72px 24px 80px;
  background: linear-gradient(165deg, rgba(196, 241, 53, 0.14) 0%, var(--bg) 42%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ref-section-inner { max-width: 1120px; margin: 0 auto; }
.ref-section-head { max-width: 720px; margin-bottom: 40px; }
.ref-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-top: 12px;
}
.ref-accent {
  background: linear-gradient(120deg, var(--lime-dark), #5a7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ref-lead {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink2);
  font-weight: 500;
}
.ref-lead a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ref-bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .ref-bento {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ref-card--steps { grid-column: 1 / -1; }
}
.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ref-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.ref-card--hero {
  background: linear-gradient(145deg, var(--white) 0%, rgba(196, 241, 53, 0.2) 100%);
  border-color: rgba(143, 184, 0, 0.35);
}
.ref-card-tag {
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.ref-card-title {
  font-size: 1.65rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}
.ref-card-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink2);
  font-weight: 500;
}
.ref-card--steps .ref-card-text { margin-top: 0; }
.ref-steps {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink2);
  font-weight: 500;
}
.ref-steps li { margin-bottom: 10px; }
.ref-code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--ink);
}
.ref-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}
@media (max-width: 480px) {
  .ref-cta-row { flex-direction: column; align-items: stretch; }
  .ref-cta-row .cta-main,
  .ref-cta-row .cta-alt { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 599px) {
  .ref-section { padding: 48px 16px 56px; }
}
@media (max-width: 420px) {
  .pay-card { padding: 22px 16px; border-radius: 20px; }
  .plan-price { font-size: clamp(1.1rem, 5vw, 22px); }
}

/* Landing refresh — April 2026 */
.header-inner {
  max-width: 1180px;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
nav.desk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  margin-left: 0;
}
nav.desk a {
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-mob { display: none !important; }
.header-actions {
  margin-left: 0;
  gap: 10px;
}
.hero-wrap {
  max-width: 1180px;
  padding: 52px 24px 28px;
}
.hero-grid {
  gap: 34px;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) 420px;
    align-items: center;
  }
}
.hero-badge {
  margin-bottom: 18px;
  font-size: 10.5px;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 4.45rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.hero-sub {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
}
.hero-sub-lead {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 560;
}
.hero-ctas {
  margin-top: 28px;
}
.hero-note {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15,15,14,0.03), rgba(196,241,53,0.13));
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-note-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15,15,14,0.08);
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-note p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink2);
}
.pay-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,246,242,0.98) 100%);
}
.pay-card-sub {
  font-size: 1.5rem;
}
.pay-card-note {
  max-width: 100%;
}
.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.plan {
  min-height: 0;
}
.plan-feature {
  grid-column: 1 / -1;
  padding: 18px 16px 16px;
}
.plan-feature .plan-price {
  font-size: 30px;
}
.plan-old-price {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink3);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15,15,14,0.3);
}
.plan.pop .plan-period {
  color: rgba(255,255,255,0.72);
}
.pay-btn {
  margin-top: 18px;
}
.marquee-track {
  animation-duration: 34s;
}
.ip-section {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(240,239,233,0.65) 100%);
}
.ip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.ip-head > div {
  max-width: 680px;
}
.ip-head p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink2);
}
.ip-cards {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.ip-card {
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.ip-exposed {
  background: linear-gradient(160deg, rgba(255,255,255,0.96) 0%, rgba(255,59,48,0.08) 100%);
  border-color: rgba(255,59,48,0.22);
}
.ip-safe {
  background: linear-gradient(160deg, rgba(255,255,255,0.96) 0%, rgba(52,199,89,0.12) 100%);
  border-color: rgba(52,199,89,0.28);
}
.ipc-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.ipc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(15,15,14,0.06);
}
.ipc-icon--alert {
  background: rgba(255,59,48,0.12);
}
.ipc-icon--safe {
  background: rgba(52,199,89,0.14);
}
.ipc-title {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}
.ipc-tag {
  margin-bottom: 6px;
}
.ipc-ip {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.ipc-rows {
  gap: 10px;
}
.ipc-row {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.56);
}
.ip-vs {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 760;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.srv-grid-live {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.srv-card-wide {
  grid-column: span 2;
}
.srv-flag-text {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(196,241,53,0.14);
  color: var(--lime);
  font-size: 12px;
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
.srv-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.srv-dot {
  width: 9px;
  height: 9px;
}
.srv-status-text {
  font-size: 10.5px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.62);
}
.p-grid {
  align-items: stretch;
}
@media (min-width: 900px) {
  .p-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr) minmax(0, 0.95fr);
  }
}
.p-card.feat {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.p-card.feat:hover {
  transform: translateY(-12px);
}
.p-old-price {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink3);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15,15,14,0.32);
}
.step {
  position: relative;
  overflow: visible;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(196,241,53,0.22);
  border: 1px solid rgba(143,184,0,0.18);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 760;
}
@media (min-width: 700px) {
  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 34px;
    right: -22px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 760;
    box-shadow: 0 10px 24px rgba(143,184,0,0.18);
  }
}
.cta-banner-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}
.mob-cta {
  white-space: nowrap;
}
@media (max-width: 959px) {
  nav.desk {
    display: none;
  }
  .header-inner {
    display: flex;
    min-height: 60px;
  }
}
@media (max-width: 899px) {
  .ip-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ip-head-cta {
    width: 100%;
    justify-content: center;
  }
  .ip-cards {
    grid-template-columns: 1fr;
  }
  .ip-vs {
    width: 100%;
    height: 40px;
    border-radius: 12px;
  }
  .p-card.feat {
    transform: none;
  }
  .p-card.feat:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 820px) {
  .srv-grid-live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .srv-card-wide {
    grid-column: span 2;
  }
}
@media (max-width: 699px) {
  .steps {
    gap: 24px;
  }
  .step:not(:last-child)::after {
    content: '↓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 18px auto -6px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    font-size: 16px;
    font-weight: 760;
  }
}
@media (max-width: 620px) {
  .header-actions .btn-ghost {
    display: none;
  }
  .hero-wrap {
    padding: 32px 16px 20px;
  }
  .hero-note {
    padding: 14px;
    border-radius: 14px;
  }
  .pay-card {
    padding: 24px 18px;
  }
  .p-card.feat {
    order: -1;
  }
}
@media (max-width: 520px) {
  .srv-grid-live {
    grid-template-columns: 1fr;
  }
  .srv-card-wide {
    grid-column: auto;
  }
  .mob-cta {
    white-space: normal;
    text-align: center;
  }
}

/* Landing polish — April 2026 */
.landing-page .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 64px;
  gap: 16px;
}
.landing-page nav.desk,
.landing-page .nav-mob {
  display: none !important;
}
.landing-page .header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.landing-page .header-actions .btn-ghost {
  display: inline-flex !important;
  color: var(--ink);
  background: var(--white);
  border-color: rgba(15,15,14,0.14);
  box-shadow: 0 1px 0 rgba(15,15,14,0.03);
}
.landing-page .header-actions .btn-ghost:hover {
  background: var(--surface);
}
.landing-page .header-actions .btn-ghost,
.landing-page .header-actions .btn-primary {
  min-width: 0;
  flex-shrink: 0;
}
.landing-page .hero-badge {
  gap: 0;
}
.landing-page .hero-badge::before,
.landing-page .hero-badge::after {
  content: none !important;
  display: none !important;
}
.landing-page .hero-badge-dot {
  display: none;
}
.landing-page .logo {
  flex-shrink: 0;
}
.landing-page h1 {
  margin-bottom: 22px;
  line-height: 0.99;
}
.landing-page .hero-sub {
  margin-top: 0;
}
.landing-page .hero-sub + .hero-sub {
  margin-top: 10px;
}
.landing-page .plan.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(196,241,53,0.36);
}
.landing-page .plan.pop.is-active {
  box-shadow: 0 0 0 2px rgba(196,241,53,0.42);
}
.landing-page .pay-btn {
  min-height: 54px;
}
.landing-page .srv-grid-live {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.landing-page .srv-card-wide {
  grid-column: auto;
}
.landing-page .srv-card {
  min-height: 86px;
}
.landing-page .p-card.feat {
  padding: 34px 26px;
  transform: translateY(-14px) scale(1.03);
}
.landing-page .p-card.feat:hover {
  transform: translateY(-16px) scale(1.03);
}
.landing-page .p-card.feat .p-amount {
  font-size: 2.65rem;
}
.landing-page .ip-exposed.is-loading .ipc-warn {
  display: none !important;
}
.landing-page .ip-exposed.is-loading .ipc-row {
  background: rgba(255,255,255,0.78);
}
@media (min-width: 700px) {
  .landing-page .step:not(:last-child)::after {
    content: none;
  }
}
@media (max-width: 699px) {
  .landing-page .steps {
    gap: 26px;
  }
  .landing-page .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(15,15,14,0.2), rgba(15,15,14,0.04));
    box-shadow: none;
  }
}
@media (max-width: 620px) {
  .landing-page .header-actions {
    width: auto;
    gap: 8px;
  }
  .landing-page .p-card.feat {
    transform: none;
    padding: 30px 22px;
  }
  .landing-page .p-card.feat:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 520px) {
  .landing-page .header-inner {
    gap: 12px;
    min-height: 58px;
  }
  .landing-page .header-actions .btn-ghost,
  .landing-page .header-actions .btn-primary {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12.5px;
  }
}
@media (max-width: 389px) {
  .landing-page .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .landing-page .header-actions {
    gap: 6px;
  }
  .landing-page .header-actions .btn-ghost,
  .landing-page .header-actions .btn-primary {
    padding: 8px 10px;
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  .landing-page .srv-grid-live {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SMART ROUTING — redesigned to match site style
   ============================================================ */

/* Remove old premium dark styles */
.sr-section {
  background: var(--white);
  padding: 72px 24px 80px;
}
@media (max-width: 599px) { .sr-section { padding: 48px 16px 56px; } }

.sr-section .s-inner { max-width: 1120px; margin: 0 auto; }

.sr-section h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ---- Flow card (matches ip-card style) ---- */
.sr-flow-card {
  margin-top: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px 20px;
  overflow: hidden;
}

.sr-flow-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sr-flow-row::-webkit-scrollbar { display: none; }

/* node */
.sr-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sr-node-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink2);
  box-shadow: var(--shadow);
}

.sr-node-prive {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--lime);
}

.sr-node-lbl {
  font-size: 10px;
  font-weight: 680;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  white-space: nowrap;
}
.sr-node-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink3);
  text-align: center;
  margin-top: -4px;
}

/* connector lines with animated dot */
.sr-conn {
  flex: 1;
  min-width: 24px;
  max-width: 56px;
  height: 2px;
  position: relative;
  margin-bottom: 22px;
}
.sr-conn-h { margin-bottom: 22px; }

.sr-conn-line {
  width: 100%;
  height: 2px;
  background: var(--border2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.sr-conn-dot {
  position: absolute;
  top: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
}

.sr-dot-a1 { animation: sr-flow 2.4s linear infinite; }
.sr-dot-a2 { animation: sr-flow 2.4s linear infinite; animation-delay: 0.6s; }
.sr-dot-a3 { animation: sr-flow 2.4s linear infinite; animation-delay: 1.4s; }

@keyframes sr-flow {
  0%   { left: -10px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: calc(100% + 4px); opacity: 0; }
}

/* fork: vertical Y-split */
.sr-fork-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
  width: 12px;
  position: relative;
  margin-bottom: 22px;
}
.sr-fork-line {
  flex: 1;
  width: 2px;
  background: var(--border2);
  border-radius: 2px;
}
.sr-fork-mid {
  position: relative;
  z-index: 1;
}
.sr-fork-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(143,184,0,0.15);
}

/* destinations column */
.sr-dests {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.sr-dest-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

/* destination boxes — match ip-card style */
.sr-dest-box {
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 14px;
  min-width: 190px;
}
.sr-dest-ru  { border-left: 2px solid #4ADE80; }
.sr-dest-int { border-left: 2px solid var(--lime-dark); }

.sr-dest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.sr-dest-badge {
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sr-dest-badge-ru  { background: rgba(74,222,128,0.12); color: #1a7a40; }
.sr-dest-badge-int { background: rgba(143,184,0,0.12); color: var(--lime-dark); }

.sr-dest-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.sr-dest-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.sr-chip {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink3);
  background: var(--surface);
  border-radius: 5px;
  padding: 2px 7px;
}

/* flow card caption */
.sr-flow-caption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
  text-align: center;
}

/* ---- Feature grid (matches .how-steps / trust-item style) ---- */
.sr-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.sr-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
}
.sr-feat-item:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow);
}

.sr-feat-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sr-ico-green { background: rgba(74,222,128,0.12); color: #1a7a40; }
.sr-ico-lime  { background: rgba(143,184,0,0.12);  color: var(--lime-dark); }

.sr-feat-title {
  font-size: 13px;
  font-weight: 720;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.sr-feat-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
}

/* CTA */
.sr-cta { margin-top: 28px; display: inline-flex; }

/* ---- Responsive ---- */
@media (max-width: 680px) {
  .sr-feat-grid { grid-template-columns: 1fr; }
  .sr-dest-box  { min-width: 150px; }
}
@media (max-width: 480px) {
  .sr-flow-card { padding: 20px 16px 16px; }
  .sr-dest-chips { display: none; }
}
/* ============================================================ */

/* Final public polish, 26.04.2026 */
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font) !important;
}

* {
  letter-spacing: 0 !important;
}

.logo,
.foot-logo,
h1,
h2,
h3,
.sub-page-title,
.pay-card-sub,
.plan-price,
.p-amount {
  font-family: var(--font) !important;
}

.hero-wrap {
  max-width: 1240px;
  padding: 56px 24px 34px;
}

.hero-grid {
  gap: 44px;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
    align-items: start !important;
  }

  #hero-card {
    margin-top: 0 !important;
  }
}

h1 {
  font-size: 64px !important;
  line-height: 0.98 !important;
  max-width: 760px;
}

h2 {
  font-size: 38px !important;
  line-height: 1.1 !important;
}

.hero-sub-lead {
  margin-top: 28px;
}

.hero-sub {
  max-width: 640px;
}

.pay-card {
  width: 100%;
  align-self: start;
}

.pay-card-title,
.hero-badge,
.s-label,
.inner-kicker,
.sub-card-title,
.field-label,
.plan-tag,
.p-period,
.hit-badge {
  text-transform: uppercase;
}

.pay-card-sub {
  font-size: 24px !important;
  line-height: 1.15;
}

.plan-save,
.plan-period,
.p-save,
.p-sub,
.pay-card-note {
  text-wrap: pretty;
}

.cta-main,
.cta-alt,
.pay-btn,
.btn-dark,
.submit-pay,
.mob-cta {
  white-space: normal;
}

@media (max-width: 979px) {
  .hero-grid {
    gap: 32px;
  }

  h1 {
    font-size: 48px !important;
  }

  h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 560px) {
  .hero-wrap {
    padding: 32px 18px 22px;
  }

  h1 {
    font-size: 38px !important;
  }

  h2,
  .sub-page-title {
    font-size: 28px !important;
  }

  .pay-card {
    padding: 24px 18px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Distinct hero ticket after trial removal */
.access-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.access-stage::before {
  content: "";
  position: absolute;
  inset: 52px 14px 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 74% 16%, rgba(203,234,99,.72), transparent 26%),
    radial-gradient(circle at 12% 84%, rgba(15,15,14,.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.65), rgba(239,238,231,.78));
  filter: blur(.2px);
  transform: rotate(2.4deg);
  z-index: -2;
}

.access-stage::after {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px dashed rgba(15,15,14,.18);
  border-radius: 50%;
  z-index: -1;
}

.route-orbit {
  position: absolute;
  inset: 40px 4px;
  pointer-events: none;
  z-index: 0;
}

.route-chip {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: 2px solid rgba(203,234,99,.95);
  box-shadow: 0 18px 36px rgba(15,15,14,.16);
  font-size: 13px;
  font-weight: 820;
}

.route-chip-wl { left: 16px; top: 84px; transform: rotate(-9deg); }
.route-chip-de { right: 18px; top: 44px; transform: rotate(8deg); }
.route-chip-us { right: 2px; bottom: 110px; transform: rotate(-7deg); }
.route-chip-sg { left: 56px; bottom: 42px; transform: rotate(6deg); }

.access-ticket {
  position: relative;
  width: min(100%, 390px);
  padding: 22px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 84% 4%, rgba(203,234,99,.24), transparent 34%),
    #0f0f0e;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 24px 70px rgba(15,15,14,.26),
    inset 0 1px 0 rgba(255,255,255,.16);
  transform: rotate(-1.5deg);
  overflow: hidden;
}

.access-ticket::before,
.access-ticket::after {
  content: "";
  position: absolute;
  top: 188px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(15,15,14,.08);
}

.access-ticket::before { left: -14px; }
.access-ticket::after { right: -14px; }

.ticket-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.ticket-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.ticket-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(203,234,99,.13);
}

.ticket-title {
  margin-top: 18px;
  max-width: 320px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 820;
  text-wrap: balance;
}

.ticket-options {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.ticket-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ticket-option:hover {
  transform: translateY(-1px);
  border-color: rgba(203,234,99,.55);
  background: rgba(255,255,255,.09);
}

.ticket-option.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.ticket-option-label {
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.ticket-option strong {
  grid-row: span 2;
  color: inherit;
  font-size: 26px;
  line-height: 1;
  font-weight: 860;
  white-space: nowrap;
}

.ticket-option small {
  color: currentColor;
  opacity: .7;
  font-size: 12px;
  font-weight: 680;
}

.access-flow {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,.22);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.access-flow div {
  min-height: 66px;
  padding: 11px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.access-flow b {
  display: block;
  color: var(--lime);
  font-size: 11px;
  line-height: 1;
}

.access-flow span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 720;
}

.access-ticket .pay-btn {
  margin-top: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.access-ticket .pay-btn:hover {
  background: var(--lime);
}

.ticket-foot {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ticket-foot span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 760;
}

@media (min-width: 980px) {
  .access-stage {
    margin-top: 8px;
  }
}

@media (max-width: 979px) {
  .access-stage {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .access-stage {
    min-height: 0;
    padding: 12px 0 6px;
  }

  .access-stage::after,
  .route-orbit {
    display: none;
  }

  .access-stage::before {
    inset: 24px 0 16px;
    border-radius: 28px;
  }

  .access-ticket {
    width: 100%;
    padding: 18px;
    border-radius: 28px;
    transform: none;
  }

  .access-ticket::before,
  .access-ticket::after {
    top: 170px;
  }

  .ticket-title {
    font-size: 25px;
  }

  .ticket-option {
    grid-template-columns: 1fr;
  }

  .ticket-option strong {
    grid-row: auto;
  }
}

/* Centered premium hero without side panels */
.center-hero {
  position: relative;
  max-width: 1180px;
  padding: clamp(46px, 7vw, 92px) 24px clamp(42px, 5vw, 70px);
  text-align: center;
  isolation: isolate;
}

.center-hero::before {
  content: "";
  position: absolute;
  inset: 22px 24px auto;
  height: min(520px, 58vw);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(203,234,99,.28), transparent 28%),
    radial-gradient(circle at 18% 58%, rgba(255,255,255,.72), transparent 34%),
    radial-gradient(circle at 82% 58%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(239,238,231,0));
  z-index: -2;
}

.center-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  width: min(720px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(15,15,14,.12), transparent);
  z-index: -1;
}

.center-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.center-badge {
  margin: 0 auto 22px;
  padding: 8px 14px;
  border: 1px solid rgba(120,150,23,.24);
  background: rgba(203,234,99,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  color: #25261f;
  font-size: 11px;
  font-weight: 760;
  text-transform: none;
  letter-spacing: 0 !important;
}

.center-title {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(46px, 7.2vw, 92px) !important;
  line-height: .94 !important;
  font-weight: 850 !important;
  letter-spacing: -.072em !important;
  text-wrap: balance;
}

.center-title span {
  color: #62615a;
}

.center-lead {
  max-width: 660px;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.48;
  font-weight: 620;
  text-wrap: balance;
}

.center-ctas {
  justify-content: center;
  margin-top: 32px;
}

.center-main-cta {
  min-height: 64px;
  padding: 18px 34px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 18px 42px rgba(15,15,14,.18);
}

.center-alt-cta {
  min-height: 60px;
  padding: 16px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 1px 0 rgba(15,15,14,.04);
}

.center-microcopy {
  max-width: 560px;
  margin: 14px auto 0;
}

.center-facts {
  max-width: 850px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.center-facts div {
  min-height: 104px;
  padding: 18px 14px;
  border-radius: 24px;
  border: 1px solid rgba(15,15,14,.09);
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 36px rgba(15,15,14,.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.center-facts strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.035em !important;
}

.center-facts span {
  display: block;
  margin-top: 10px;
  color: var(--ink3);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 720;
}

@media (max-width: 760px) {
  .center-hero {
    padding: 38px 16px 34px;
  }

  .center-title {
    font-size: clamp(38px, 11vw, 58px) !important;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
  }

  .center-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .center-ctas {
    gap: 10px;
  }

  .center-main-cta,
  .center-alt-cta {
    width: 100%;
    justify-content: center;
  }

  .center-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }
}

@media (max-width: 420px) {
  .center-badge {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .center-facts {
    grid-template-columns: 1fr;
  }

  .center-facts div {
    min-height: 0;
  }
}
