:root {
  --night: #17024f;
  --space: #26006f;
  --deep: #0b0626;
  --violet: #5f28d8;
  --violet-2: #8b4dff;
  --purple: #b76cff;
  --lavender: #e7d7ff;
  --card: #fff8ff;
  --card-2: #f5edff;
  --ink: #37127c;
  --muted-ink: #6942a0;
  --white: #ffffff;
  --gold: #ffc247;
  --gold-2: #ff9d35;
  --cyan: #67f0ff;
  --green: #50c878;
  --pink: #f3a4ff;
  --border: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 90px rgba(17, 2, 58, 0.42);
  --soft-shadow: 0 20px 48px rgba(62, 17, 155, 0.22);
  --container: 1220px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 194, 71, 0.22), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(142, 77, 255, 0.36), transparent 24rem),
    radial-gradient(circle at 50% 0%, rgba(103, 240, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #210066 0%, #3a0f92 42%, #19034f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255,194,71,0.45) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,255,255,0.18) 1.2px, transparent 2px);
  background-size: 92px 92px, 138px 138px, 210px 210px;
  background-position: 0 0, 44px 18px, 70px 90px;
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20% -45% -20%;
  height: 55vh;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 157, 53, 0.18), transparent 64%);
}

a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { left: 16px; }

.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(28, 2, 85, 0.88), rgba(28, 2, 85, 0.66));
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 38px rgba(20, 0, 70, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding: 10px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: max-content;
  text-decoration: none;
  font-weight: 950;
  color: var(--white);
  letter-spacing: -0.035em;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  text-shadow: 0 5px 20px rgba(0,0,0,0.22);
}
.wordmark .mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(150deg, #8a3cff 0%, #6121cf 48%, #ffad39 100%);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.06), 0 18px 34px rgba(14, 1, 48, 0.28);
}
.wordmark .accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: nowrap;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 38px rgba(10,0,45,0.18);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  font-weight: 850;
  font-size: 0.86rem;
  white-space: nowrap;
}
.nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #2d1072;
  background: var(--white);
  outline: none;
}

.nav-links a.nav-external {
  color: #351178;
  background: linear-gradient(180deg, #ffe06d 0%, var(--gold) 52%, #ff9d35 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58), 0 10px 20px rgba(255, 157, 53, 0.16);
}
.nav-links a.nav-external:hover,
.nav-links a.nav-external:focus-visible {
  color: #2d1072;
  background: linear-gradient(180deg, #fff08e 0%, #ffc247 52%, #ff9d35 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }
.btn-primary {
  color: #351178;
  background: linear-gradient(180deg, #ffe06d 0%, var(--gold) 48%, #ff9d35 100%);
  box-shadow: 0 14px 34px rgba(255, 164, 52, 0.32), inset 0 1px 0 rgba(255,255,255,0.64);
}
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: 0 18px 42px rgba(255, 164, 52, 0.44); }
.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-secondary:hover, .btn-secondary:focus-visible { background: rgba(255,255,255,0.18); }
.nav-links .btn {
  min-height: 38px;
  padding: 8px 14px;
  color: #351178;
}
.nav-links .btn.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links .btn.btn-secondary:hover,
.nav-links .btn.btn-secondary:focus-visible {
  color: #2d1072;
  background: var(--white);
}

.hero {
  padding: 34px 0 58px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: clamp(32px, 5vw, 62px);
  border-radius: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,0.28);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 8%, rgba(255, 194, 71, 0.22), transparent 16rem),
    radial-gradient(circle at 72% 58%, rgba(103, 240, 255, 0.16), transparent 22rem),
    linear-gradient(145deg, #3c14a0 0%, #6424ca 50%, #2c087e 100%);
  box-shadow: var(--shadow);
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.88) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,198,82,0.72) 1.2px, transparent 2px);
  background-size: 76px 76px, 132px 132px;
  background-position: 16px 10px, 44px 52px;
  pointer-events: none;
}
.hero-shell::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 120px;
  height: 130px;
  border-radius: 50%;
  border-top: 16px solid rgba(255,255,255,0.18);
  transform: rotate(-3deg);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-copy {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 14px;
  color: #fff3cb;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after { content: "✦"; color: var(--gold); }

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 32px rgba(31, 0, 92, 0.28);
}
h1 .gold, h2 .gold { color: var(--gold); }
h2 { font-size: clamp(2rem, 4.2vw, 3.85rem); text-wrap: balance; }
h3 { font-size: 1.35rem; }
.lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.legal-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
}

.flow-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-top: clamp(38px, 5vw, 68px);
}
.flow-map::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 140px;
  height: 50px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.86) 0 22px, transparent 22px 42px),
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.18);
  transform: rotate(-2deg);
  opacity: 0.78;
  filter: drop-shadow(0 22px 28px rgba(13, 0, 55, 0.28));
}
.flow-step {
  position: relative;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.flow-step:nth-child(2),
.flow-step:nth-child(3),
.flow-step:nth-child(4) { transform: none; }
.step-flag {
  position: absolute;
  top: 0;
  left: 18%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 76px;
  height: 72px;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 950;
  background: linear-gradient(160deg, #a55eff, #6b27d8 74%);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 10px 22px 22px 10px;
  clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 100%, 0 100%);
  box-shadow: 0 16px 34px rgba(28, 0, 95, 0.34), inset 0 1px 0 rgba(255,255,255,0.35);
}
.step-flag::before {
  content: "";
  position: absolute;
  left: -13px;
  top: -4px;
  width: 10px;
  height: 170px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd95c, #f4932f);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}
.step-flag::after {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff6af, #ffbe32 62%, #ff8f22 100%);
  box-shadow: 0 4px 14px rgba(255, 169, 48, 0.42);
}
.stage-visual {
  position: relative;
  z-index: 3;
  width: min(210px, 100%);
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: -4px;
  border-radius: 50% / 34%;
  background: radial-gradient(ellipse at 50% 36%, rgba(255,255,255,0.34), rgba(255,255,255,0.08) 58%, rgba(39, 0, 101, 0.36) 72%);
  filter: drop-shadow(0 26px 28px rgba(22, 0, 70, 0.32));
}
.stage-visual::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 10px;
  height: 18px;
  border-radius: 50%;
  background: rgba(11, 0, 50, 0.3);
  filter: blur(5px);
}
.stage-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  font-size: 3.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0e3ff 100%);
  color: var(--ink);
  border: 4px solid rgba(255,255,255,0.56);
  box-shadow: 0 16px 32px rgba(20,0,70,0.28), inset 0 -6px 0 rgba(71, 23, 155, 0.10);
}
.stage-icon.card-icon { transform: rotate(-7deg); }
.stage-icon.mail-icon { transform: rotate(5deg); }
.stage-icon.redeem-icon { transform: rotate(-3deg); }
.stage-icon.game-icon { transform: rotate(4deg); }
.flow-map > .flow-step > .step-card {
  height: 220px;
}

.step-card {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 220px;
  padding: 26px 22px 24px;
  border-radius: 30px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 3px solid rgba(255,255,255,0.56);
  box-shadow: 0 18px 36px rgba(31, 4, 93, 0.22), inset 0 -4px 0 rgba(90, 45, 174, 0.08);
}
.step-card .mini-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -52px 0 14px 0;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(160deg, #8650ff, #5b20cc);
  border: 4px solid #f4eaff;
  box-shadow: 0 10px 22px rgba(49,12,122,0.26);
}
.step-card h3 {
  color: #6b35cc;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}
.step-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 10px 0 14px;
  border-radius: 999px;
  background: var(--gold);
}
.step-card p { margin: 0; color: var(--muted-ink); font-size: 1rem; }

.trust-strip { padding: 6px 0 54px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border-radius: 24px;
  color: #fdf7ff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 36px rgba(9, 0, 40, 0.16);
  font-weight: 950;
}
.trust-item span { color: var(--gold); margin-right: 8px; }

section { padding: 68px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 1.05rem;
}

.panel,
.role-card,
.feature-card,
.faq-item,
.mail-card,
.checklist-card,
.reference-panel,
.sidebar-panel,
.compliance-panel,
.cta-band {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.11);
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.split-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.role-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  min-height: 260px;
}
.role-card .icon,
.feature-card .icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #431282;
  background: linear-gradient(180deg, #fff8d6, var(--gold));
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255, 174, 53, 0.22), inset 0 1px 0 rgba(255,255,255,0.65);
}
.role-card h3,
.feature-card h3,
.faq-item h3,
.checklist-card h2,
.mail-card h2,
.reference-panel h2,
.sidebar-panel h2,
.sidebar-panel h3 { color: var(--white); }
.role-card p,
.feature-card p,
.faq-item p,
.checklist-card p,
.mail-card p,
.reference-panel p,
.sidebar-panel p { color: rgba(255,255,255,0.78); }
.role-card a,
.reference-panel a:not(.btn),
.faq-item a { color: #fff0b6; font-weight: 950; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}
.process .step-card {
  min-height: 205px;
  border-radius: 26px;
  padding: 24px;
}
.process .step-card::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #451785;
  background: linear-gradient(180deg, #ffdd74, #ffad39);
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(255, 166, 50, 0.22);
}
.process .step-card h3 { color: #6531c8; }
.process .step-card p { color: var(--muted-ink); }

.redeem-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 20px; align-items: stretch; }
.mail-card, .checklist-card { border-radius: var(--radius-lg); overflow: hidden; }
.mail-card { background: rgba(255,255,255,0.12); }
.mail-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 18px 0 0 rgba(255,255,255,0.42), 36px 0 0 rgba(183,108,255,0.62); }
.mail-body, .checklist-card { padding: 28px; }
.mail-meta { margin-bottom: 18px; color: rgba(255,255,255,0.68); font-size: 0.95rem; }
.code-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff8ff;
  border: 2px dashed #8e55e7;
  box-shadow: 0 14px 30px rgba(12,0,50,0.18);
}
.code-block strong { font-size: 1.08rem; letter-spacing: 0.08em; }
.small-pill {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  color: #451785;
  background: var(--gold);
  font-weight: 950;
  font-size: 0.78rem;
}
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 36px; color: rgba(255,255,255,0.82); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #78e39d, var(--green));
  font-weight: 950;
}

.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature-card { padding: 24px; border-radius: var(--radius-lg); }
.feature-card .icon { width: 48px; height: 48px; font-size: 1.1rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 194, 71, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07));
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -92px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px; }
.cta-band p { max-width: 780px; margin: 14px 0 0; color: rgba(255,255,255,0.78); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-item { padding: 24px; border-radius: var(--radius-lg); }
.faq-item p { margin: 12px 0 0; }

.compliance-panel {
  border-radius: var(--radius-lg);
  padding: 26px;
  border-color: rgba(255, 194, 71, 0.32);
  background: rgba(255, 194, 71, 0.10);
}
.compliance-panel p { color: #fff4d7; margin: 12px 0 0; font-size: 0.96rem; }

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  background: rgba(9,0,36,0.22);
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); gap: 24px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,0.86); text-decoration: none; font-weight: 850; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold); }
.fine-print { margin: 16px 0 0; max-width: 980px; font-size: 0.83rem; color: rgba(255,255,255,0.62); }

/* Reference pages */
.breadcrumb { margin: 0 0 18px; color: rgba(255,255,255,0.68); font-size: 0.95rem; }
.breadcrumb a { color: #fff0b6; text-decoration: none; font-weight: 950; }
.page-hero { padding: 54px 0 42px; }
.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.24);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,194,71,0.22), transparent 20rem),
    radial-gradient(circle at 82% 12%, rgba(103,240,255,0.13), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.07));
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255,255,255,0.16);
}
.page-hero .lead { margin-left: 0; max-width: 880px; }
.reference-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr); gap: 28px; align-items: start; }
.reference-panel, .sidebar-panel { border-radius: var(--radius-xl); }
.reference-panel { padding: 32px; }
.sidebar-panel { position: sticky; top: 116px; padding: 26px; }
.reference-panel h2 { margin-top: 34px; }
.reference-panel h2:first-child { margin-top: 0; }
.reference-panel p { margin: 14px 0 0; }
.summary-list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.summary-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.78);
}
.summary-list strong { display: block; color: var(--gold); margin-bottom: 4px; }
.mini-flow { display: grid; gap: 12px; margin-top: 22px; }
.mini-flow div {
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
}
.mini-flow strong { color: var(--white); }
.link-grid { display: grid; gap: 12px; margin-top: 20px; }
.link-grid .btn { width: 100%; }

@media (max-width: 980px) {
  .nav { align-items: center; flex-direction: column; gap: 10px; min-height: auto; }
  .nav-links { justify-content: center; border-radius: 999px; flex-wrap: nowrap; max-width: 100%; }
}

@media (max-width: 1020px) {
  .flow-map { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 18px; }
  .flow-map::before { display: none; }
  .flow-step, .flow-step:nth-child(2), .flow-step:nth-child(3), .flow-step:nth-child(4) { transform: none; min-height: 345px; }
  .section-head, .redeem-layout, .cta-band-inner, .footer-grid, .reference-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links { justify-content: flex-start; }
  .sidebar-panel { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--container)); }
  .site-header { backdrop-filter: blur(14px); }
  .nav { gap: 7px; padding: 7px 0 8px; min-height: auto; }
  .wordmark { gap: 8px; font-size: 0.98rem; white-space: nowrap; min-width: 0; letter-spacing: -0.025em; }
  .wordmark .mark { width: 32px; height: 32px; border-radius: 11px; box-shadow: 0 0 0 3px rgba(255,255,255,0.05), 0 10px 20px rgba(14, 1, 48, 0.22); }
  .nav-links { width: 100%; max-width: 100%; display: flex; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; gap: 3px; padding: 4px; border-radius: 999px; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { min-height: 28px; font-size: 0.68rem; padding: 4px 7px; }
  .hero { padding-top: 22px; }
  .hero-shell { min-height: auto; padding: 26px 18px; }
  .hero-shell::after { display: none; }
  h1 { font-size: clamp(2.3rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .flow-map, .split-grid, .process, .features, .trust-grid, .faq-grid { grid-template-columns: 1fr; }
  .flow-step { min-height: 320px; }
  .stage-visual { min-height: 130px; }
  .stage-icon { width: 100px; height: 100px; font-size: 3.1rem; }
  .step-flag { left: 22px; }
  section { padding: 48px 0; }
  .code-block { display: grid; justify-items: start; }
  .cta-band, .reference-panel, .sidebar-panel { padding: 24px; }
}

@media (max-width: 390px) {
  .wordmark { font-size: 0.92rem; }
  .wordmark .mark { width: 30px; height: 30px; border-radius: 10px; }
  .nav-links a { font-size: 0.62rem; padding: 4px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:hover, .btn:focus-visible { transform: none; }
}
