:root {
  --ink: #070a12;
  --surface: #0d1523;
  --line: rgba(189, 220, 255, 0.17);
  --line-strong: rgba(189, 220, 255, 0.3);
  --text: #f1f6fc;
  --muted: #a9b8cb;
  --dim: #77869a;
  --blue: #54c9f7;
  --ice: #c9f4ff;
  --ember: #ff8844;
  --ember-soft: #ffc080;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
/* The UA's `[hidden] { display: none }` loses to any author `display` rule, so
   `.secondary-action { display: flex }` was defeating `hidden` on the onward
   link: it rendered in EVERY completion state, including "Setting up your
   membership…" and "UNABLE TO VERIFY" — an invitation into an app the customer
   cannot sign in to yet, shown before payment was even confirmed. Verified
   live on 2026-07-27 (computed display: flex while [hidden] was set).
   activation.css has carried this rule since day one; checkout.css did not. */
[hidden] { display: none !important; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 9%, rgba(22, 60, 94, 0.62), transparent 31rem),
    radial-gradient(circle at 88% 48%, rgba(91, 41, 24, 0.3), transparent 34rem),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(176, 217, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(176, 217, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -0.045em; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 4px; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 30; padding: .75rem 1rem; background: var(--ice); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 1rem; }
.site-header {
  min-height: 78px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, .78);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: .62rem; color: var(--text); font-size: 1rem; font-weight: 750; letter-spacing: .02em; text-decoration: none; }
.brand img { object-fit: contain; filter: drop-shadow(0 0 11px rgba(79, 195, 247, .58)); }
.site-header > p { margin: 0; color: var(--dim); font-size: .6rem; letter-spacing: .16em; }
.secure-label { color: var(--muted); font-size: .72rem; }
.secure-label span { margin-right: .35rem; color: var(--blue); }
main { width: min(100%, 1120px); margin: 0 auto; padding: 5.5rem clamp(1.5rem, 5vw, 4rem) 7rem; }
.intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: end; gap: 4rem; }
.intro h1 { max-width: 720px; margin: 0; font-size: clamp(3.25rem, 6vw, 5.8rem); line-height: .96; }
.intro > p { max-width: 420px; margin: 0 0 .55rem; color: var(--muted); }
.eyebrow { display: flex; align-items: center; gap: .6rem; margin: 0 0 1.15rem; color: var(--ember-soft); font-size: .69rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 19px; height: 1px; background: var(--ember); }
.progress { margin: 4rem 0 1px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); list-style: none; }
.progress li { min-width: 0; padding: 1rem 1.15rem; display: grid; grid-template-columns: auto 1fr; column-gap: .8rem; background: rgba(10, 17, 29, .94); }
.progress li.current { background: linear-gradient(135deg, rgba(24, 54, 80, .96), rgba(59, 31, 23, .9)); box-shadow: inset 0 -2px var(--ember); }
.progress li.complete span { color: var(--blue); }
.progress span { grid-row: 1 / 3; align-self: center; color: var(--dim); font-size: .62rem; letter-spacing: .1em; }
.progress strong { font-family: var(--display); font-size: 1rem; font-weight: 400; }
.progress small { color: var(--dim); font-size: .64rem; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); border: 1px solid var(--line); background: rgba(8, 13, 22, .82); box-shadow: 0 28px 80px rgba(0, 0, 0, .26); }
.offer-panel, .action-panel, .activation-panel { min-width: 0; padding: clamp(1.5rem, 4vw, 3rem); }
.offer-panel { border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(23, 51, 78, .68), rgba(10, 17, 29, .2) 58%, rgba(78, 35, 23, .26)); }
.context-badge { width: fit-content; margin-bottom: 2.8rem; padding: .42rem .65rem; border: 1px solid rgba(91, 211, 244, .38); background: rgba(52, 151, 183, .09); color: var(--ice); font-size: .68rem; font-weight: 750; letter-spacing: .05em; }
.context-badge span { margin-right: .25rem; color: var(--blue); }
.context-kicker, .cap-number { margin-bottom: .5rem; color: var(--dim); font-size: .6rem; letter-spacing: .15em; }
.offer-panel h2, .action-panel h2, .activation-panel h2 { margin-bottom: 1.6rem; font-size: 2.35rem; line-height: 1.05; }
.price { display: flex; align-items: baseline; gap: .65rem; margin: 2rem 0 .3rem; }
.price strong { font-family: var(--display); font-size: 3rem; font-weight: 400; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .7rem; letter-spacing: .08em; }
.trial { margin: 0 0 1.7rem; color: var(--ember-soft); font-size: .78rem; }
.trial span { margin-right: .35rem; }
.facts { margin: 0 0 1.5rem; }
.facts div { padding: .75rem 0; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--dim); font-size: .72rem; }
.facts dd { margin: 0; color: var(--text); font-size: .75rem; text-align: right; }
.terms, .action-copy, .microcopy { color: var(--muted); font-size: .74rem; }
.action-panel { display: flex; flex-direction: column; justify-content: center; background: rgba(10, 17, 29, .4); }
.section-heading { margin-bottom: .5rem; }
.action-copy { max-width: 31rem; margin-bottom: 2rem; }
.primary-action, .secondary-action { min-height: 52px; padding: .9rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 0; color: #281108; background: linear-gradient(135deg, #fff1e7, #ff9b56); box-shadow: 0 8px 28px rgba(255, 138, 61, .18); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease; }
.primary-action { width: 100%; }
.primary-action:hover:not(:disabled), .secondary-action:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 138, 61, .3); }
.primary-action:disabled { cursor: wait; opacity: .76; }
.microcopy { margin: .85rem 0 0; color: var(--dim); font-size: .64rem; }
.notice { margin-top: 1rem; padding: 1rem; border-left: 2px solid var(--ember); background: rgba(255, 136, 68, .06); color: var(--ember-soft); font-size: .74rem; }
.embedded-shell { width: 100%; min-height: 500px; }
#embedded-checkout { width: 100%; }
.activation-panel { grid-column: 2; display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 1.5rem; }
.activation-symbol { position: relative; width: 56px; height: 56px; border: 1px solid rgba(84, 201, 247, .48); transform: rotate(45deg); }
.activation-symbol::before, .activation-symbol::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255, 136, 68, .35); }
.activation-symbol i { position: absolute; inset: 22px; background: var(--ice); box-shadow: 0 0 18px var(--blue); }
.activation-panel h2 { margin: .1rem 0 .55rem; }
.activation-panel p:not(.cap-number) { margin-bottom: 1.4rem; color: var(--muted); font-size: .78rem; }
.secondary-action { width: fit-content; min-height: 44px; }
.trust-note { margin-top: 1.5rem; padding: 1rem 1.2rem; display: flex; gap: 1.4rem; border-left: 2px solid var(--ember); background: rgba(255, 136, 68, .045); color: var(--muted); font-size: .72rem; }
.trust-note strong { color: var(--ember-soft); white-space: nowrap; }
.trust-note p { margin: 0; }
footer { min-height: 90px; padding: 1.6rem clamp(1.5rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--line); color: var(--dim); font-size: .62rem; letter-spacing: .08em; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .offer-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .activation-panel { grid-column: 1; }
}
@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .site-header > p { display: none; }
  main { padding: 4.5rem 1.5rem 5rem; }
  .intro h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .progress { grid-template-columns: 1fr 1fr; }
  .progress li { padding: .85rem; }
  footer { align-items: flex-start; flex-direction: column; gap: .65rem; }
}
@media (max-width: 520px) {
  .site-header { padding-inline: 1rem; }
  .secure-label { font-size: .64rem; }
  main { padding-inline: 1rem; }
  .offer-panel, .action-panel, .activation-panel { padding: 1.35rem; }
  .context-badge { margin-bottom: 2rem; }
  .offer-panel h2, .action-panel h2, .activation-panel h2 { font-size: 2rem; }
  .facts div { flex-direction: column; gap: .2rem; }
  .facts dd { text-align: left; }
  .activation-panel { grid-template-columns: 52px 1fr; gap: 1rem; }
  .activation-symbol { width: 44px; height: 44px; }
  .activation-symbol i { inset: 17px; }
  .trust-note { flex-direction: column; gap: .4rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .primary-action:hover:not(:disabled), .secondary-action:hover { transform: none; }
}
