:root {
      --bg: #ffffff;
      --ink: #07111f;
      --ink-soft: #344154;
      --muted: #6a7280;
      --line: rgba(7, 17, 31, 0.12);
      --line-strong: rgba(7, 17, 31, 0.20);
      --panel: rgba(255, 255, 255, 0.82);
      --panel-solid: #ffffff;
      --blue: #0b1f45;
      --blue-2: #14346b;
      --red: #c4142f;
      --red-2: #e3263f;
      --gold: #c9952d;
      --gold-2: #f2c15a;
      --green: #087f5b;
      --shadow: 0 28px 80px rgba(10, 22, 50, 0.16);
      --shadow-soft: 0 18px 48px rgba(10, 22, 50, 0.10);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --max: 1180px;
      --safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.5;
      letter-spacing: -0.012em;
      background:
        radial-gradient(circle at 12% 0%, rgba(227, 38, 63, 0.12), transparent 34%),
        radial-gradient(circle at 82% 8%, rgba(201, 149, 45, 0.18), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fff 42%, #f8fafc 100%);
      overflow-x: hidden;
      padding-bottom: calc(112px + var(--safe-bottom));
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background-image:
        linear-gradient(rgba(7,17,31,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,17,31,0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 74%);
    }

    body::after {
      content: "";
      position: fixed;
      top: -16vw;
      right: -12vw;
      width: 42vw;
      height: 42vw;
      min-width: 460px;
      min-height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 31, 69, 0.11), rgba(11,31,69,0.03) 45%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    ::selection { background: rgba(227,38,63,0.18); }

    .wrap {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
    }

    .deadline-ribbon {
      position: sticky;
      top: 0;
      z-index: 80;
      border-bottom: 1px solid rgba(7,17,31,0.09);
      backdrop-filter: blur(18px) saturate(1.15);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 12px 34px rgba(10,22,50,0.07);
    }

    .deadline-ribbon-inner {
      width: min(1320px, calc(100% - 24px));
      margin-inline: auto;
      min-height: 80px;
      padding-block: 14px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 22px;
      align-items: center;
    }

    .ribbon-left,
    .ribbon-right {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      color: #fff;
      font-weight: 900;
      letter-spacing: -0.08em;
      background:
        linear-gradient(135deg, var(--red), #8f0c21 45%, var(--blue) 100%);
      box-shadow: 0 12px 28px rgba(196,20,47,0.26);
    }

    .brand-text {
      display: grid;
      line-height: 1.05;
    }
    .brand-text strong {
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .brand-text span {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    .ribbon-brand-logo {
      display: block;
      flex-shrink: 0;
      line-height: 0;
    }
    .ribbon-brand-logo img {
      display: block;
      height: clamp(34px, 4.4vw, 48px);
      width: auto;
      max-width: min(360px, 54vw);
      object-fit: contain;
    }

    .ribbon-message {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--ink-soft);
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      line-height: 1.25;
    }

    .live-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 0 rgba(227,38,63,0.45);
      animation: pulseDot 1.7s infinite;
      flex: 0 0 auto;
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(227,38,63,0.42); }
      70% { box-shadow: 0 0 0 9px rgba(227,38,63,0); }
      100% { box-shadow: 0 0 0 0 rgba(227,38,63,0); }
    }

    .mini-countdown {
      display: grid;
      grid-auto-flow: column;
      gap: 8px;
    }

    .mini-time {
      min-width: 58px;
      padding: 9px 10px 7px;
      border: 1px solid rgba(7,17,31,0.12);
      border-radius: 14px;
      text-align: center;
      background: #fff;
      box-shadow: 0 10px 24px rgba(10,22,50,0.07);
    }
    .mini-time b {
      display: block;
      font-size: 17px;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .mini-time small {
      display: block;
      margin-top: 3px;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .top-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--red), #9f0f25);
      box-shadow: 0 14px 30px rgba(196,20,47,0.25);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: -0.02em;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .top-cta:hover { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(196,20,47,0.31); }
    .top-cta:focus-visible { outline: 4px solid rgba(196,20,47,0.24); outline-offset: 3px; }

    .hero {
      position: relative;
      padding: 72px 0 32px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.07fr) minmax(380px, .93fr);
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      margin-bottom: 18px;
      padding: 9px 13px;
      border: 1px solid rgba(196,20,47,0.18);
      border-radius: 999px;
      color: #811125;
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,244,246,0.86));
      box-shadow: 0 12px 30px rgba(196,20,47,0.08);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .eyebrow svg { width: 16px; height: 16px; }

    h1 {
      margin: 0;
      max-width: 830px;
      font-size: clamp(44px, 6.1vw, 86px);
      line-height: .92;
      letter-spacing: -0.075em;
      color: var(--ink);
    }

    .hero h1 .accent {
      display: inline-block;
      padding: 0 0.07em 0 0.02em;
      color: transparent;
      background: linear-gradient(100deg, var(--red) 0%, #a20e25 36%, var(--blue) 78%);
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 18px 28px rgba(196,20,47,0.10));
      /* Extend gradient box past tight letter-spacing so last glyph isn’t sheared */
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .lead {
      margin: 22px 0 0;
      max-width: 690px;
      font-size: clamp(18px, 2.15vw, 25px);
      line-height: 1.36;
      color: var(--ink-soft);
      letter-spacing: -0.035em;
      font-weight: 560;
    }
    .lead strong { color: var(--ink); font-weight: 860; }

    .value-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 30px 0 0;
    }

    .value-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 12px 14px;
      border: 1px solid rgba(7,17,31,0.10);
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
      box-shadow: 0 14px 28px rgba(10,22,50,0.07);
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .value-pill span {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      color: #fff;
      background: var(--blue);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .btn {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 0 24px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 950;
      letter-spacing: -0.035em;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      user-select: none;
    }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--red), #930b21 60%, #6f0b1c);
      box-shadow: 0 18px 44px rgba(196,20,47,0.32), inset 0 1px 0 rgba(255,255,255,0.22);
    }
    .btn-primary::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: -70% -30%;
      transform: translateX(-65%) rotate(12deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
      animation: shimmer 3.8s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%, 35% { transform: translateX(-75%) rotate(12deg); }
      55% { transform: translateX(72%) rotate(12deg); }
      100% { transform: translateX(72%) rotate(12deg); }
    }
    .btn-secondary {
      color: var(--ink);
      background: #fff;
      border: 1px solid rgba(7,17,31,0.13);
      box-shadow: 0 16px 40px rgba(10,22,50,0.09);
    }
    .btn:hover { transform: translateY(-2px); filter: saturate(1.05); }
    .btn-primary:hover { box-shadow: 0 24px 54px rgba(196,20,47,0.38), inset 0 1px 0 rgba(255,255,255,0.22); }
    .btn:focus-visible { outline: 5px solid rgba(196,20,47,0.22); outline-offset: 4px; }
    .btn svg { width: 19px; height: 19px; flex: 0 0 auto; }

    .microcopy {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      max-width: 500px;
      padding-top: 8px;
    }
    .microcopy svg { color: var(--green); width: 18px; height: 18px; flex: 0 0 auto; }

    .payment-card {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 26px;
      background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(201,149,45,0.45), rgba(196,20,47,0.26), rgba(11,31,69,0.28)) border-box;
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .payment-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 92% 5%, rgba(201,149,45,0.20), transparent 30%),
        radial-gradient(circle at 0% 0%, rgba(227,38,63,0.10), transparent 32%);
      pointer-events: none;
    }
    .payment-card > * { position: relative; }

    .card-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }
    .card-top small {
      display: block;
      color: var(--muted);
      font-weight: 850;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      font-size: 11px;
    }
    .card-top strong {
      display: block;
      margin-top: 3px;
      color: var(--ink);
      font-size: 18px;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }
    .card-top .card-status-text {
      font-size: 16px;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    .secure-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex: 0 0 auto;
      padding: 8px 10px;
      border-radius: 999px;
      color: var(--green);
      background: rgba(8,127,91,0.08);
      border: 1px solid rgba(8,127,91,0.18);
      font-size: 12px;
      font-weight: 950;
    }
    .secure-badge svg { width: 15px; height: 15px; }

    .price-block {
      padding: 24px 0 20px;
      text-align: center;
    }
    .price-label {
      margin: 0 0 5px;
      color: #8b1325;
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }
    .price {
      display: flex;
      justify-content: center;
      align-items: baseline;
      gap: 8px;
      color: var(--ink);
      line-height: 1;
    }
    .price .currency {
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 900;
      letter-spacing: -0.06em;
    }
    .price .amount {
      font-size: clamp(78px, 8.5vw, 118px);
      font-weight: 1000;
      letter-spacing: -0.095em;
    }
    .price-note {
      margin: 8px 0 0;
      color: var(--ink-soft);
      font-size: 16px;
      font-weight: 820;
      letter-spacing: -0.03em;
    }
    .anchor-line {
      margin: 18px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
      font-weight: 780;
    }
    .strike {
      text-decoration: line-through;
      color: #7c8797;
      text-decoration-thickness: 2px;
    }
    .save-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      color: #6f3e00;
      background: rgba(242,193,90,0.28);
      border: 1px solid rgba(201,149,45,0.22);
      font-weight: 950;
      font-size: 12px;
      letter-spacing: -0.02em;
    }

    .countdown-card {
      margin-top: 12px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(11,31,69,0.98), rgba(4,11,28,0.98));
      color: #fff;
      box-shadow: 0 22px 44px rgba(11,31,69,0.28);
    }
    .countdown-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .countdown-head strong {
      font-size: 14px;
      letter-spacing: -0.02em;
    }
    .countdown-head span {
      color: rgba(255,255,255,0.70);
      font-size: 12px;
      font-weight: 750;
      text-align: right;
    }
    .clock {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 9px;
    }
    .time-box {
      padding: 13px 8px 11px;
      border-radius: 16px;
      text-align: center;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.13);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .time-box b {
      display: block;
      font-size: 28px;
      line-height: .9;
      letter-spacing: -0.06em;
    }
    .time-box small {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,0.66);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .progress-track {
      margin-top: 14px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
      overflow: hidden;
    }
    .progress-fill {
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold-2), #ff7b65, var(--red-2));
      box-shadow: 0 0 24px rgba(242,193,90,0.35);
      transition: width .7s ease;
    }

    .card-actions {
      display: grid;
      gap: 11px;
      margin-top: 18px;
    }
    .card-actions .btn { width: 100%; min-height: 62px; font-size: 18px; }
    .instant-proof {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 16px;
    }
    .proof-mini {
      padding: 13px;
      border: 1px solid var(--line);
      border-radius: 17px;
      background: rgba(255,255,255,0.72);
    }
    .proof-mini b {
      display: block;
      font-size: 18px;
      letter-spacing: -0.04em;
      line-height: 1.05;
    }
    .proof-mini span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 760;
      line-height: 1.25;
    }

    .section { padding: 54px 0; }

    .section-title {
      max-width: 760px;
      margin: 0 auto 24px;
      text-align: center;
    }
    .section-title .kicker {
      color: #8b1325;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 9px;
    }
    .section-title h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: .98;
      letter-spacing: -0.075em;
    }
    .section-title p {
      margin: 15px auto 0;
      max-width: 640px;
      color: var(--ink-soft);
      font-size: 18px;
      line-height: 1.4;
      font-weight: 560;
      letter-spacing: -0.03em;
    }

    .price-table-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.84);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 18px;
    }
    .price-table th,
    .price-table td {
      padding: 24px 26px;
      text-align: left;
      vertical-align: middle;
      border-bottom: 1px solid rgba(7,17,31,0.09);
    }
    .price-table th {
      background: rgba(248,250,252,0.94);
      color: var(--ink);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .price-table tr:last-child td { border-bottom: 0; }
    .price-table .timing {
      color: var(--ink);
      font-size: 21px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }
    .price-table .price-cell {
      width: 190px;
      font-size: 25px;
      font-weight: 1000;
      letter-spacing: -0.055em;
      color: var(--ink);
      white-space: nowrap;
    }
    .price-table .meaning {
      color: var(--ink-soft);
      font-size: 16px;
      font-weight: 700;
    }
    .price-table tr.featured {
      background: linear-gradient(90deg, rgba(227,38,63,0.08), rgba(242,193,90,0.10), rgba(255,255,255,0.5));
    }
    .price-table tr.featured .price-cell {
      color: var(--red);
      font-size: 31px;
    }
    .active-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-left: 10px;
      transform: translateY(-2px);
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(196,20,47,0.10);
      color: #8b1325;
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .active-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
    }

    .stack-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 26px;
    }
    .stack-card {
      position: relative;
      min-height: 265px;
      padding: 24px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.93), rgba(248,250,252,0.84));
      box-shadow: 0 18px 44px rgba(10,22,50,0.08);
      overflow: hidden;
    }
    .stack-card::after {
      content: "";
      position: absolute;
      right: -46px;
      top: -54px;
      width: 128px;
      height: 128px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,20,47,0.12), transparent 70%);
    }
    .stack-card:nth-child(2)::after { background: radial-gradient(circle, rgba(11,31,69,0.13), transparent 70%); }
    .stack-card:nth-child(3)::after { background: radial-gradient(circle, rgba(201,149,45,0.18), transparent 70%); }
    .stack-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), #061229);
      box-shadow: 0 15px 30px rgba(11,31,69,0.22);
      font-weight: 1000;
    }
    .stack-card h3 {
      margin: 20px 0 0;
      font-size: 24px;
      line-height: 1.04;
      letter-spacing: -0.055em;
    }
    .stack-card p {
      margin: 12px 0 0;
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.42;
      font-weight: 620;
    }
    .stack-meta {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }
    .stack-meta b {
      font-size: 18px;
      letter-spacing: -0.04em;
    }
    .stack-meta span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: right;
    }

    .fomo-panel {
      position: relative;
      margin-top: 20px;
      padding: clamp(26px, 4vw, 44px);
      border-radius: var(--radius-xl);
      color: #fff;
      background:
        radial-gradient(circle at 10% 5%, rgba(242,193,90,0.24), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #0b1f45 58%, #111827 100%);
      box-shadow: 0 30px 80px rgba(7,17,31,0.26);
      overflow: hidden;
    }
    .fomo-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at 78% 0%, rgba(0,0,0,.9), transparent 58%);
    }
    .fomo-panel > * { position: relative; }
    .fomo-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      align-items: center;
    }
    .fomo-panel h2 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(35px, 4.8vw, 66px);
      line-height: .96;
      letter-spacing: -0.075em;
    }
    .fomo-panel p {
      margin: 18px 0 0;
      max-width: 690px;
      color: rgba(255,255,255,0.78);
      font-size: 18px;
      line-height: 1.42;
      font-weight: 590;
      letter-spacing: -0.025em;
    }
    .fomo-list {
      display: grid;
      gap: 10px;
    }
    .fomo-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 15px;
      border-radius: 18px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .fomo-item svg { width: 20px; height: 20px; color: var(--gold-2); flex: 0 0 auto; margin-top: 1px; }
    .fomo-item b { display: block; font-size: 15px; letter-spacing: -0.03em; }
    .fomo-item span { display: block; margin-top: 2px; color: rgba(255,255,255,0.67); font-size: 13px; font-weight: 650; }

    .checkout-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 20px;
      align-items: stretch;
      margin-top: 24px;
    }
    .checkout-copy,
    .summary-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.88);
      box-shadow: var(--shadow-soft);
    }
    .checkout-copy { padding: clamp(26px, 4vw, 42px); }
    .checkout-copy h2 {
      margin: 0;
      font-size: clamp(34px, 4.2vw, 56px);
      line-height: .98;
      letter-spacing: -0.075em;
    }
    .checkout-copy p {
      max-width: 680px;
      margin: 16px 0 0;
      color: var(--ink-soft);
      font-size: 18px;
      line-height: 1.42;
      font-weight: 600;
      letter-spacing: -0.03em;
    }
    .commitments {
      display: grid;
      grid-template-columns: 1fr;
      gap: 11px;
      margin-top: 24px;
    }
    .commitment {
      display: flex;
      gap: 10px;
      padding: 14px;
      border: 1px solid rgba(7,17,31,0.09);
      border-radius: 16px;
      background: rgba(248,250,252,0.72);
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 760;
      line-height: 1.32;
    }
    .commitment svg { color: var(--green); width: 19px; height: 19px; flex: 0 0 auto; }

    .checkout-copy-webinar-banner {
      margin: 28px 0 0;
      padding: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .checkout-copy-webinar-banner img {
      display: block;
      width: 100%;
      height: auto;
    }

    .summary-card {
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
    .summary-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, var(--red), var(--gold-2), var(--blue));
    }
    .summary-card h3 {
      margin: 8px 0 4px;
      font-size: 21px;
      letter-spacing: -0.05em;
    }
    .summary-card .subtitle {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 760;
    }
    .line-item {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink-soft);
      font-weight: 760;
    }
    .line-item strong {
      color: var(--ink);
      font-weight: 900;
      text-align: right;
    }
    .line-item small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      max-width: 240px;
      line-height: 1.25;
    }
    .total-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      padding-top: 20px;
    }
    .total-row span {
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 860;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .total-row b {
      color: var(--red);
      font-size: 44px;
      line-height: .9;
      letter-spacing: -0.075em;
    }
    .summary-card .btn { width: 100%; margin-top: 18px; min-height: 62px; }
    .below-button {
      margin: 11px 0 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 720;
      text-align: center;
      line-height: 1.35;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 24px;
    }
    .faq {
      padding: 22px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.82);
      box-shadow: 0 14px 36px rgba(10,22,50,0.06);
    }
    .faq h3 {
      margin: 0;
      font-size: 18px;
      letter-spacing: -0.045em;
      line-height: 1.12;
    }
    .faq p {
      margin: 10px 0 0;
      color: var(--ink-soft);
      font-size: 14px;
      line-height: 1.42;
      font-weight: 610;
    }

    .legal {
      margin: 26px auto 0;
      max-width: 980px;
      color: var(--muted);
      text-align: center;
      font-size: 12px;
      line-height: 1.55;
      font-weight: 610;
    }

    .sticky-cta {
      position: fixed;
      left: 50%;
      bottom: calc(16px + var(--safe-bottom));
      transform: translateX(-50%);
      z-index: 90;
      width: min(1040px, calc(100% - 28px));
      border: 1px solid rgba(7,17,31,0.12);
      border-radius: 24px;
      background: rgba(255,255,255,0.90);
      backdrop-filter: blur(18px) saturate(1.2);
      box-shadow: 0 24px 70px rgba(7,17,31,0.18);
      overflow: hidden;
    }
    .sticky-cta::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--red), var(--gold-2), var(--blue));
    }
    .sticky-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 16px;
      align-items: center;
      padding: 15px 16px 15px 20px;
    }
    .sticky-copy {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .sticky-price {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 62px;
      height: 62px;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--red), #8a0c20);
      box-shadow: 0 16px 34px rgba(196,20,47,0.28);
      font-size: 20px;
      font-weight: 1000;
      letter-spacing: -0.05em;
    }
    .sticky-copy b {
      display: block;
      font-size: 17px;
      line-height: 1.12;
      letter-spacing: -0.04em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .sticky-copy span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 760;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .sticky-timer {
      display: flex;
      gap: 6px;
      align-items: center;
      color: var(--ink);
      font-weight: 950;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }
    .sticky-timer span {
      padding: 8px 9px;
      border-radius: 12px;
      background: #f4f6f8;
      border: 1px solid rgba(7,17,31,0.08);
      font-size: 14px;
    }
    .sticky-cta .btn { min-height: 54px; padding-inline: 22px; }

    .expired .live-dot { background: var(--muted); animation: none; box-shadow: none; }
    .expired .btn-primary {
      background: linear-gradient(135deg, var(--blue), #061229);
      box-shadow: 0 18px 44px rgba(11,31,69,0.26), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    .expired .price-label { color: var(--blue); }
    .expired .price .amount,
    .expired .price .currency,
    .expired .total-row b { color: var(--blue); }
    .expired .progress-fill { background: linear-gradient(90deg, #6b7280, #111827); }
    .expired .active-chip { background: rgba(7,17,31,0.08); color: var(--ink-soft); }
    .expired .active-chip::before { background: var(--muted); }

    @media (max-width: 1020px) {
      .deadline-ribbon-inner { grid-template-columns: auto 1fr; }
      .ribbon-right { display: none; }
      .ribbon-message { justify-self: end; }
      .hero-grid, .fomo-grid, .checkout-panel { grid-template-columns: 1fr; }
      .payment-card { max-width: 620px; margin-inline: auto; width: 100%; }
      .stack-grid, .faq-grid { grid-template-columns: 1fr; }
      .stack-card { min-height: 230px; }
    }

    @media (max-width: 760px) {
      body { padding-bottom: calc(126px + var(--safe-bottom)); }
      .wrap { width: min(100% - 24px, var(--max)); }
      .deadline-ribbon-inner {
        min-height: 68px;
        padding-block: 12px;
        width: min(100% - 16px, 1320px);
        gap: 12px;
      }
      .ribbon-brand-logo img {
        max-width: min(280px, 85vw);
        height: clamp(28px, 8.5vw, 40px);
      }
      .ribbon-message { font-size: 13px; text-align: right; gap: 8px; }
      .mini-countdown { display: none; }
      .hero { padding-top: 42px; }
      .hero-grid { gap: 24px; }
      h1 { font-size: clamp(42px, 11vw, 64px); }
      .lead { font-size: 18px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .payment-card { padding: 19px; border-radius: 28px; }
      .card-top { align-items: center; }
      .price .amount { font-size: 88px; }
      .instant-proof, .commitments { grid-template-columns: 1fr; }
      .clock { gap: 6px; }
      .time-box { padding: 11px 4px; }
      .time-box b { font-size: 23px; }
      .section { padding: 38px 0; }
      .price-table-card { border-radius: 24px; }
      .price-table, .price-table tbody, .price-table tr, .price-table td, .price-table th { display: block; width: 100%; }
      .price-table thead { display: none; }
      .price-table tr { padding: 18px; border-bottom: 1px solid rgba(7,17,31,0.10); }
      .price-table tr:last-child { border-bottom: 0; }
      .price-table td { padding: 4px 0; border-bottom: 0; }
      .price-table .timing { font-size: 19px; }
      .price-table .price-cell { font-size: 30px; width: auto; margin-top: 8px; }
      .price-table .meaning { margin-top: 4px; }
      .active-chip { margin-left: 0; margin-top: 8px; display: flex; width: fit-content; transform: none; }
      .stack-card { min-height: 255px; }
      .checkout-copy, .summary-card { border-radius: 26px; }
      .sticky-inner { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
      .sticky-copy { display: none; }
      .sticky-timer { justify-content: center; font-size: 13px; }
      .sticky-timer span { font-size: 13px; padding: 7px 8px; }
      .sticky-cta .btn { width: 100%; }
    }

    @media (max-width: 420px) {
      .ribbon-message span { display: none; }
      .card-top { display: grid; }
      .secure-badge { width: fit-content; }
      .price .amount { font-size: 78px; }
      .value-pill { width: 100%; justify-content: flex-start; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    }

/* Next.js /250/masterclass bundle shell + Stripe form */
.a250-bundle-page {
  max-width: 100vw;
  min-height: 100vh;
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  /* Don’t clip gradient text / filter; viewport still constrained by body overflow-x in this file */
  overflow-x: visible;
  background:
    radial-gradient(circle at 12% 0%, rgba(227, 38, 63, 0.12), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(201, 149, 45, 0.18), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fff 42%, #f8fafc 100%);
  /* Same as .li-shell.li-light — checkout form renders outside .li-shell */
  --text: #102235;
  --muted: #526879;
  --line: rgba(10, 30, 50, 0.12);
}

/*
 * Preflight / Tailwind resets h1–h6 (font-size & font-weight: inherit).
 * Bundled CSS often loads after this file — scope headings under `.a250-bundle-page`.
 */
.a250-bundle-page .hero h1 {
  margin: 0;
  max-width: 830px;
  font-size: clamp(44px, 6.1vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  color: var(--ink);
  font-weight: 700;
  overflow: visible;
}

.a250-bundle-page .hero h1 .accent {
  display: inline-block;
  padding: 0 0.1em 0 0.02em;
  color: transparent;
  background: linear-gradient(100deg, var(--red) 0%, #a20e25 36%, var(--blue) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 18px 28px rgba(196, 20, 47, 0.1));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Grid track minmax(0, …) can clip inline descendants; hero copy must paint past cell bounds */
.a250-bundle-page .hero-grid > :first-child {
  overflow: visible;
}

.a250-bundle-page .checkout-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  color: var(--ink);
  font-weight: 700;
}

.a250-bundle-page .section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.a250-bundle-page .fomo-panel h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(35px, 4.8vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  color: #fff;
  font-weight: 700;
}

.a250-bundle-page .stack-card h3 {
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--ink);
  font-weight: 700;
}

.a250-bundle-page .summary-card h3 {
  margin: 8px 0 4px;
  font-size: 21px;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-weight: 700;
}

.a250-bundle-page .faq h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 760px) {
  .a250-bundle-page .hero h1 {
    font-size: clamp(42px, 11vw, 64px);
  }
}

/* long-island-shell borders reference .li-shell; mirror them here */
.a250-bundle-page .li-input,
.a250-bundle-page .li-select {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.a250-bundle-page .li-stripe-card-wrap {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  min-height: 48px;
  color: #102235;
  color-scheme: light;
}

.a250-bundle-page .li-phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0 10px 0 14px;
}

.a250-bundle-page .li-phone-field input[type="tel"],
.a250-bundle-page .li-phone-field input:not([type]) {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
  font: inherit;
}

.a250-bundle-page .li-phone-field input::placeholder {
  color: #8ea7ba;
}
.a250-bundle-enrollment-wrap {
  margin-top: 14px;
}
.a250-bundle-enrollment-wrap .america250-masterclass-checkout-form {
  margin-top: 0 !important;
}
.a250-bundle-enrollment-wrap .btn.btn-primary {
  width: 100%;
  justify-content: center;
  gap: 10px;
}
