/* ════════════════════════════════════════════════════════════
   MONARCH — liquid glass, Apple design foundations, Prestige-lux
   blue theme · serif/script accents · no cards · scroll reveals
   ════════════════════════════════════════════════════════════ */

:root {
  --bg:            #04070d;
  --bg-2:          #060b14;
  --ink:           #f2f7fd;
  --ink-dim:       #9fb2c8;
  --ink-faint:     #5c6f88;

  --glass:         rgba(150, 190, 255, 0.07);
  --glass-strong:  rgba(170, 205, 255, 0.11);
  --glass-hi:      rgba(255, 255, 255, 0.22);

  --blue:          #4da3ff;
  --blue-deep:     #1e6fd9;
  --blue-glow:     rgba(77, 163, 255, 0.45);

  --font-body:     "Inter", system-ui, sans-serif;
  --font-display:  "Cormorant Garamond", "Times New Roman", serif;
  --font-mono:     "JetBrains Mono", ui-monospace, monospace;

  --max-w: 1140px;
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(1200px 700px at 50% -200px, rgba(30, 111, 217, 0.16), transparent 70%),
    radial-gradient(900px 600px at 85% 110%, rgba(30, 111, 217, 0.09), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font: 400 16px/1.6 var(--font-body);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: rgba(77, 163, 255, 0.35); }

/* ── script / serif accents ─────────────────────────────── */
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue-deep); color: #fff;
  padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ── glass materials ────────────────────────────────────── */
.glass-strong {
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.04));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(170, 205, 255, 0.14);
  box-shadow:
    0 24px 70px rgba(2, 8, 20, 0.55),
    inset 0 1px 0 var(--glass-hi);
  border-radius: var(--radius);
}

/* ── buttons ────────────────────────────────────────────── */
.btn-prominent, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font: 600 15px/1 var(--font-body); letter-spacing: 0.02em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 160ms cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 160ms ease, background-color 160ms ease, opacity 160ms ease;
}
.btn-prominent {
  background: linear-gradient(180deg, #6db4ff, var(--blue-deep));
  color: #06111f;
  box-shadow: 0 10px 34px rgba(46, 134, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-prominent:hover { transform: translateY(-1px); box-shadow: 0 14px 40px rgba(46, 134, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-prominent:active { transform: scale(0.97); }
.btn-ghost {
  background: var(--glass); color: var(--ink);
  border-color: rgba(170, 205, 255, 0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(170, 205, 255, 0.14); }
.btn-ghost:active { transform: scale(0.97); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ── nav ────────────────────────────────────────────────── */
.glass-nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(1060px, calc(100% - 28px));
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 14px 10px 18px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 34, 58, 0.55), rgba(10, 18, 32, 0.55));
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(170, 205, 255, 0.15);
  box-shadow: 0 18px 50px rgba(2, 8, 20, 0.45), inset 0 1px 0 var(--glass-hi);
  transition: box-shadow 300ms ease, background-color 300ms ease;
}
.glass-nav.scrolled { box-shadow: 0 24px 60px rgba(2, 8, 20, 0.6), inset 0 1px 0 var(--glass-hi); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; font-size: 17px; letter-spacing: 0.01em; }
.brand img { border-radius: 8px; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 9px 14px; border-radius: 999px;
  transition: color 150ms ease, background-color 150ms ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(170, 205, 255, 0.09); }

/* ── hero ───────────────────────────────────────────────── */
.hero { position: relative; padding: 170px 24px 60px; text-align: center; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero-glow {
  position: absolute; inset: auto 0 -10% 0; height: 70%;
  background: radial-gradient(600px 380px at 50% 100%, rgba(46, 134, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-kicker { color: var(--blue); font-size: 21px; margin-bottom: 18px; }
.display {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 1.02; letter-spacing: -0.015em;
}
.display .line { display: block; }
.display em.script { font-style: italic; font-weight: 600; color: var(--blue); }
h1, h2, h3 { text-wrap: balance; }

.hero-sub { color: var(--ink-dim); font-size: 19px; max-width: 620px; margin: 26px auto 0; }
.inline-link { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(77, 163, 255, 0.4); }
.inline-link:hover { border-bottom-color: var(--blue); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.chip {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-dim); padding: 9px 16px; border-radius: 999px;
  background: var(--glass); border: 1px solid rgba(170, 205, 255, 0.14);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 30px; color: var(--ink-faint); font-size: 14px;
}
.hero-meta strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }

.hero-seal {
  width: 220px; height: 220px; margin: 64px auto 0; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(77, 163, 255, 0.14), rgba(10, 20, 40, 0.25));
  border: 1px solid rgba(170, 205, 255, 0.16);
  box-shadow: 0 20px 80px rgba(20, 90, 200, 0.25), inset 0 1px 0 var(--glass-hi);
  animation: seal-float 7s ease-in-out infinite;
}
.hero-seal img { width: 62%; filter: drop-shadow(0 0 40px var(--blue-glow)); }
@keyframes seal-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ── sections ───────────────────────────────────────────── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 110px 24px 0; }
.section-kicker { color: var(--blue); font-size: 20px; margin-bottom: 12px; }
.section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1.1; letter-spacing: -0.01em;
}
.section-sub { color: var(--ink-dim); max-width: 560px; margin-top: 14px; font-size: 17px; }

/* ── features ───────────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px 48px; margin-top: 58px;
}
.feature h3 { font-size: 19px; font-weight: 700; letter-spacing: 0; margin-top: 16px; }
.feature p { color: var(--ink-dim); font-size: 15px; margin-top: 8px; max-width: 34ch; }
.feature-glyph {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  font-size: 20px; color: var(--blue);
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.03));
  border: 1px solid rgba(170, 205, 255, 0.16);
  box-shadow: inset 0 1px 0 var(--glass-hi);
}

/* ── module player ──────────────────────────────────────── */
.module-player { display: grid; grid-template-columns: 1.6fr 1fr; overflow: hidden; margin-top: 54px; }
.mp-screen {
  position: relative; aspect-ratio: 16 / 10; background: #050a13;
  border-right: 1px solid rgba(170, 205, 255, 0.12);
}
.mp-screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mp-placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px;
  color: var(--ink-faint); font-size: 14px; text-align: center; padding: 20px;
}
.mp-placeholder img { width: 64px; opacity: 0.85; }
.mp-list { display: flex; flex-direction: column; overflow-y: auto; max-height: 480px; }
.mp-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; text-align: left; padding: 15px 20px; border: 0; cursor: pointer;
  background: transparent; color: var(--ink-dim);
  font: 500 14px/1.3 var(--font-body); border-bottom: 1px solid rgba(170, 205, 255, 0.07);
  transition: background-color 140ms ease, color 140ms ease;
}
.mp-item:hover { background: rgba(170, 205, 255, 0.06); color: var(--ink); }
.mp-item[aria-selected="true"] { background: rgba(77, 163, 255, 0.12); color: var(--ink); }
.mp-item .mp-tag { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
.mp-list::-webkit-scrollbar { width: 6px; }
.mp-list::-webkit-scrollbar-thumb { background: rgba(170, 205, 255, 0.15); border-radius: 3px; }

/* ── gamemodes ──────────────────────────────────────────── */
.mode-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 54px; }
.mode {
  display: block; text-decoration: none; padding: 30px 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.04));
  border: 1px solid rgba(170, 205, 255, 0.13);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 var(--glass-hi);
  transition: transform 220ms cubic-bezier(0.32, 0.72, 0, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.mode:hover { transform: translateY(-4px); border-color: rgba(77, 163, 255, 0.4); box-shadow: 0 18px 50px rgba(20, 90, 200, 0.22), inset 0 1px 0 var(--glass-hi); }
.mode h3 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 27px; }
.mode p { color: var(--ink-dim); font-size: 15px; margin-top: 10px; }
.mode-link { display: inline-block; margin-top: 18px; color: var(--blue); font-size: 14px; font-weight: 600; }
.mode:hover .mode-link { text-decoration: underline; }

/* ── setup ──────────────────────────────────────────────── */
.setup-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.big-counter strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(64px, 8vw, 96px); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.big-counter > span { display: block; color: var(--ink-dim); margin-top: 6px; }
.big-counter em { display: block; color: var(--blue); font-style: normal; font-size: 14px; margin-top: 8px; }
.setup-steps { list-style: none; display: grid; gap: 14px; }
.setup-steps li {
  display: flex; gap: 18px; align-items: center; padding: 20px 22px; border-radius: 18px;
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.04));
  border: 1px solid rgba(170, 205, 255, 0.13);
  box-shadow: inset 0 1px 0 var(--glass-hi);
}
.step-n {
  display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: rgba(77, 163, 255, 0.15); color: var(--blue); font-weight: 700; font-size: 15px;
  border: 1px solid rgba(77, 163, 255, 0.3);
}
.setup-steps strong { display: block; font-size: 16px; }
.setup-steps div span { color: var(--ink-faint); font-size: 13.5px; }

/* ── reviews ────────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 54px; }
.review {
  padding: 26px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.04));
  border: 1px solid rgba(170, 205, 255, 0.13);
  box-shadow: inset 0 1px 0 var(--glass-hi);
}
.review-stars { color: var(--blue); letter-spacing: 3px; font-size: 14px; }
.review p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--ink); }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #06111f;
  background: linear-gradient(160deg, #6db4ff, var(--blue-deep));
}
.review-handle { font-weight: 600; font-size: 14px; }
.review-role { color: var(--ink-faint); font-size: 13px; }

.discord-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; padding: 34px 38px; margin-top: 34px;
}
.discord-banner h3 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 26px; }
.discord-banner p { color: var(--ink-dim); margin-top: 6px; font-size: 15px; }
.discord-banner strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ── changelog timeline ─────────────────────────────────── */
.timeline { margin-top: 54px; display: grid; gap: 0; position: relative; }
.tl-entry { position: relative; padding: 0 0 40px 34px; border-left: 1px solid rgba(170, 205, 255, 0.15); }
.tl-entry:last-child { padding-bottom: 0; border-left-color: transparent; }
.tl-entry::before {
  content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 12px var(--blue-glow);
}
.tl-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tl-date { color: var(--ink-faint); font-size: 13px; font-variant-numeric: tabular-nums; }
.tl-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; color: var(--blue);
  background: rgba(77, 163, 255, 0.1); border: 1px solid rgba(77, 163, 255, 0.25);
}
.tl-entry h3 { font-size: 19px; font-weight: 700; margin-top: 10px; }
.tl-entry > p { color: var(--ink-dim); font-size: 14.5px; margin-top: 6px; }
.tl-entry ul { margin-top: 12px; padding-left: 18px; color: var(--ink-dim); font-size: 14.5px; display: grid; gap: 6px; }
.tl-entry ul li::marker { color: var(--blue); }

/* ── pricing ────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 58px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 34px 30px 30px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--glass-strong), rgba(150, 190, 255, 0.04));
  border: 1px solid rgba(170, 205, 255, 0.13);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 var(--glass-hi);
  transition: transform 220ms cubic-bezier(0.32, 0.72, 0, 1), border-color 220ms ease;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(77, 163, 255, 0.35); }
.plan-featured {
  border-color: rgba(77, 163, 255, 0.5);
  background: linear-gradient(170deg, rgba(60, 130, 230, 0.16), rgba(30, 111, 217, 0.05));
  box-shadow: 0 24px 70px rgba(20, 90, 200, 0.28), inset 0 1px 0 var(--glass-hi);
}
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #06111f; background: linear-gradient(180deg, #6db4ff, var(--blue-deep));
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(46, 134, 255, 0.4);
}
.plan-flag.flag-alt { color: var(--blue); background: rgba(4, 10, 22, 0.85); border: 1px solid rgba(77, 163, 255, 0.35); }
.plan-tier { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 24px; color: var(--ink); }
.plan-price { font-family: var(--font-display); font-weight: 600; font-size: 58px; line-height: 1.05; margin-top: 10px; letter-spacing: -0.02em; }
.plan-price sup { font-size: 0.45em; vertical-align: super; margin-right: 2px; color: var(--blue); }
.plan-price span { font-size: 0.45em; color: var(--ink-dim); }
.plan-line { color: var(--ink-faint); font-size: 13.5px; margin-top: 6px; }
.plan ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-dim); font-size: 14.5px; }
.plan li::before { content: "✦"; color: var(--blue); font-size: 11px; }
.plan-cta { width: 100%; }

/* ── faq ────────────────────────────────────────────────── */
.faq-list { margin-top: 44px; display: grid; gap: 12px; max-width: 760px; }
.faq-list details {
  border-radius: 16px; padding: 0 22px;
  background: linear-gradient(160deg, var(--glass-strong), rgba(150, 190, 255, 0.03));
  border: 1px solid rgba(170, 205, 255, 0.12);
}
.faq-list summary {
  cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--blue); font-size: 20px; transition: transform 200ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-dim); font-size: 15px; padding-bottom: 20px; max-width: 60ch; }

/* ── footer ─────────────────────────────────────────────── */
.footer {
  max-width: var(--max-w); margin: 110px auto 0; padding: 40px 24px 140px;
  border-top: 1px solid rgba(170, 205, 255, 0.1);
  display: grid; gap: 22px; justify-items: center; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 10px; }
.footer-brand p { color: var(--ink-dim); font-size: 16px; }
.footer-brand strong { color: var(--ink); font-family: var(--font-display); font-size: 18px; }
.footer-brand .script { color: var(--blue); }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; }
.footer-links a { color: var(--ink-dim); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--ink); }
.footer-links a[aria-disabled="true"] { color: var(--ink-faint); cursor: not-allowed; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pay-chip {
  font: 600 11px/1 var(--font-body); letter-spacing: 0.05em; color: var(--ink-faint);
  padding: 7px 12px; border-radius: 8px; border: 1px solid rgba(170, 205, 255, 0.13);
  background: rgba(150, 190, 255, 0.04);
}
.footer-fine { color: var(--ink-faint); font-size: 12.5px; max-width: 640px; }

/* ── sticky buy bar ─────────────────────────────────────── */
.buybar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(20px);
  z-index: 90; display: flex; align-items: center; gap: 22px; padding: 12px 14px 12px 26px;
  border-radius: 999px; opacity: 0; pointer-events: none;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
.buybar.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.buybar p { font-size: 15px; color: var(--ink-dim); }
.buybar p strong { color: var(--ink); }
.buybar .script { color: var(--blue); font-weight: 600; font-size: 17px; }

/* ── checkout modal ─────────────────────────────────────── */
.checkout-scrim {
  position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px;
  background: rgba(2, 6, 14, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 240ms ease;
  /* CRITICAL: the `hidden` attribute loses to `display: grid` above,
     so the scrim must remove itself from hit-testing when closed —
     otherwise it silently swallows EVERY click on the page. */
  pointer-events: none;
}
.checkout-scrim.open { opacity: 1; pointer-events: auto; }
.checkout {
  width: min(460px, 100%); max-height: min(92vh, 720px); overflow-y: auto;
  padding: 30px; position: relative;
  transform: translateY(14px) scale(0.98); opacity: 0;
  transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1), opacity 240ms ease;
}
.checkout-scrim.open .checkout { transform: translateY(0) scale(1); opacity: 1; }
.ck-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(170, 205, 255, 0.18); background: rgba(150, 190, 255, 0.07);
  color: var(--ink-dim); font-size: 14px; cursor: pointer;
}
.ck-close:hover { color: var(--ink); background: rgba(170, 205, 255, 0.14); }
.ck-head { display: flex; align-items: center; gap: 14px; }
.ck-head img { border-radius: 12px; }
.ck-head h2 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 27px; }
.ck-plan-line { color: var(--ink-dim); font-size: 14px; margin-top: 2px; }
.ck-plan-line strong { color: var(--ink); }

.ck-form { margin-top: 24px; display: grid; gap: 16px; }
.ck-form fieldset { border: 0; }
.ck-form legend {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 10px;
}
.ck-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; border-radius: 12px; background: rgba(4, 10, 22, 0.55); border: 1px solid rgba(170, 205, 255, 0.1); }
.ck-tabs button {
  padding: 10px; border-radius: 9px; border: 0; cursor: pointer;
  background: transparent; color: var(--ink-dim); font: 600 14px/1 var(--font-body);
  transition: background-color 150ms ease, color 150ms ease;
}
.ck-tabs button[aria-selected="true"] { background: rgba(77, 163, 255, 0.16); color: var(--ink); }

.ck-panel { display: grid; gap: 14px; }
.ck-panel label, .ck-form label { font-size: 13px; font-weight: 600; color: var(--ink-dim); display: grid; gap: 7px; }
.ck-panel input {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(4, 10, 22, 0.6); border: 1px solid rgba(170, 205, 255, 0.16);
  color: var(--ink); font: 500 15px/1 var(--font-body);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.ck-panel input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.18);
}
.ck-panel input::placeholder { color: var(--ink-faint); }
.ck-panel input.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14); }
.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.paypal-note { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; padding: 8px 0; }

.form-error {
  color: #ff8585; font-size: 13.5px; padding: 11px 14px; border-radius: 11px;
  background: rgba(255, 90, 90, 0.08); border: 1px solid rgba(255, 90, 90, 0.22);
}
.ck-pay { width: 100%; padding-block: 16px; font-size: 16px; }
.ck-fine { color: var(--ink-faint); font-size: 12px; line-height: 1.55; text-align: center; }

.ck-success { text-align: center; padding: 30px 6px 10px; display: grid; gap: 12px; justify-items: center; }
.ck-success-icon { font-size: 44px; color: var(--blue); filter: drop-shadow(0 0 18px var(--blue-glow)); }
.ck-success h3 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 30px; }
.ck-success p { color: var(--ink-dim); font-size: 15px; max-width: 34ch; }
.ck-success strong { color: var(--ink); }
.ck-success-sub { color: var(--ink-faint) !important; font-size: 13.5px !important; }

/* ── scroll reveals ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.32, 0.72, 0, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .module-player { grid-template-columns: 1fr; }
  .mp-screen { border-right: 0; border-bottom: 1px solid rgba(170, 205, 255, 0.12); }
  .setup-wrap { grid-template-columns: 1fr; gap: 44px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 130px; }
  .display { font-size: clamp(44px, 12vw, 64px); }
  .discord-banner { padding: 26px; }
  .buybar { width: calc(100% - 28px); justify-content: space-between; }
}

/* ── accessibility ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-seal { animation: none; }
}
@media (prefers-reduced-transparency: reduce) {
  .glass-strong, .glass-nav, .chip, .mode, .plan, .review, .setup-steps li, .faq-list details {
    background: #0a1524; backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}
@media (prefers-contrast: more) {
  body { background: #000; }
  .glass-strong, .glass-nav, .mode, .plan, .review { border-color: rgba(255, 255, 255, 0.45); }
  .ink-dim, .ink-faint, .section-sub { color: #e8eef6; }
}
