:root {
  --bg: #06111f;
  --bg-deep: #030812;
  --bg-soft: #0a1b31;
  --panel: rgba(9, 28, 50, 0.62);
  --panel-strong: rgba(5, 16, 30, 0.82);
  --line: rgba(129, 211, 255, 0.18);
  --line-strong: rgba(129, 211, 255, 0.34);
  --text: #f4f8ff;
  --muted: #a8bdd5;
  --cyan: #62d6ff;
  --blue: #2d8dff;
  --gold: #ffd27a;
  --gold-strong: #ffb947;
  --preview-accent: #62d6ff;
  --preview-glow: rgba(98, 214, 255, 0.28);
  --preview-cycle: 5800ms;
  --shadow: 0 26px 100px rgba(0, 0, 0, 0.44);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --max: 1160px;
  --mx: 50vw;
  --my: 40vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-deep);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
::selection { background: rgba(98, 214, 255, 0.32); color: white; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 204, 122, 0.08), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(98, 214, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #030812 0%, #07162a 42%, #06111f 100%);
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(80,190,255,.10) 38%, transparent 48% 100%),
    linear-gradient(245deg, transparent 0 42%, rgba(255,188,73,.08) 52%, transparent 62% 100%);
  animation: hueDrift 12s ease-in-out infinite alternate;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 70%);
  opacity: .22;
}
.aurora {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  filter: blur(46px);
  opacity: .44;
  mix-blend-mode: screen;
  animation: floatBlob 16s ease-in-out infinite;
}
.aurora-a { left: -12vw; bottom: -18vw; background: rgba(27, 120, 210, .34); }
.aurora-b { right: -18vw; top: -10vw; background: rgba(48, 209, 255, .26); animation-delay: -5s; }
.aurora-c { left: 42vw; top: 54vh; background: rgba(255, 185, 71, .12); animation-delay: -9s; }
.cursor-glow {
  position: absolute;
  left: var(--mx);
  top: var(--my);
  width: 360px;
  height: 360px;
  translate: -50% -50%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98,214,255,.19), transparent 62%);
  filter: blur(14px);
  transition: left 160ms linear, top 160ms linear;
}
.wave-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 260px;
  opacity: .16;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(98,214,255,.42) 43%, transparent 47%);
  animation: waveShift 9s ease-in-out infinite alternate;
}
.wave-line-a { bottom: 2%; transform: rotate(-4deg); }
.wave-line-b { bottom: 10%; transform: rotate(3deg); animation-delay: -4s; opacity: .1; }

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  45% { transform: translate3d(5vw,-4vh,0) scale(1.06); }
  75% { transform: translate3d(-3vw,5vh,0) scale(.96); }
}
@keyframes hueDrift {
  0% { transform: translateX(-4%) rotate(0deg); filter: hue-rotate(0deg); }
  100% { transform: translateX(4%) rotate(4deg); filter: hue-rotate(18deg); }
}
@keyframes waveShift {
  from { translate: -2% 0; }
  to { translate: 2% -16px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(3, 9, 18, 0.70);
  border-bottom: 1px solid rgba(129, 211, 255, 0.12);
}
.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: contain;
  padding: 1px;
  background: rgba(8,24,45,.65);
  box-shadow: 0 0 0 1px rgba(98,214,255,.25), 0 10px 26px rgba(0,0,0,.24);
}
.brand span { line-height: 1.05; }
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-panel, .nav-links, .nav-actions {
  display: flex;
  align-items: center;
}
.nav-panel { gap: 20px; }
.nav-links { gap: 18px; color: #c8ddf5; font-size: .95rem; }
.nav-links a:not(.btn) { opacity: .86; transition: opacity 180ms ease, color 180ms ease; }
.nav-links a:not(.btn):hover { opacity: 1; color: white; }

.nav-actions { gap: 12px; }
.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(129,211,255,.18);
  border-radius: 999px;
  background: rgba(8,24,45,.50);
}
.lang-btn {
  border: 0;
  min-width: 38px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.lang-btn.is-active {
  color: #08111d;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(255,185,71,.18);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8,24,45,.65);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 122, .34);
  color: #1c1303;
  background: linear-gradient(135deg, #ffe7b1 0%, var(--gold-strong) 100%);
  box-shadow: 0 14px 40px rgba(255,185,71,.24), inset 0 1px 0 rgba(255,255,255,.45);
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(18deg);
  animation: shimmer 3.8s ease-in-out infinite;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 16px 48px rgba(255,185,71,.32); }
.btn-small { min-height: 42px; padding: 0 16px; }
.btn.secondary {
  color: var(--text);
  background: rgba(10,30,54,.62);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 28px rgba(0,0,0,.18);
}
.btn.secondary::after { display: none; }
@keyframes shimmer {
  0%, 60% { left: -44%; }
  100% { left: 132%; }
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 42px;
  align-items: center;
}
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}
.kicker::before, .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
h1, h2, h3 { margin: 0; }
h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: .90;
  letter-spacing: -.06em;
  max-width: 780px;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #fff6e4 0%, #ffd17a 52%, #b8752b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 42px rgba(255,184,71,.12));
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: #f4f8ff;
}
.lead {
  margin: 24px 0 0;
  max-width: 630px;
  color: #c4d6ed;
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #b9d4ef;
  background: rgba(98,214,255,.08);
  border: 1px solid rgba(98,214,255,.15);
  font-size: .88rem;
}
.dot, .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(98,214,255,.8);
}
.hero-preview, .card, .step, .mascot-card, .cta, .redirect-card, .legal-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-preview {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--preview-glow);
  background:
    radial-gradient(circle at 64% 16%, var(--preview-glow), transparent 38%),
    linear-gradient(180deg, rgba(18,54,92,.58), rgba(7,18,35,.76));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}
.hero-preview::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.hero-preview::after {
  content: "";
  position: absolute;
  inset: -54% -90%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 34%, rgba(255,255,255,.16) 48%, transparent 62%);
  opacity: .18;
  transform: rotate(12deg) translateX(-36%);
  animation: previewSweepA var(--preview-cycle) ease-in-out infinite;
}
.hero-preview.is-cycle-alt::after { animation-name: previewSweepB; }
.preview-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 4px 12px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.preview-live-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--preview-accent);
  transition: color 260ms ease;
}
.preview-live-meta .status-dot {
  background: var(--preview-accent);
  box-shadow: 0 0 18px var(--preview-glow);
}
.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(129,211,255,.18);
  box-shadow: 0 18px 42px rgba(0,0,0,.30);
  background: rgba(6,17,31,.18);
}
.alert-preview {
  position: relative;
  z-index: 1;
  width: calc(100% - 22px);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(129,211,255,.20);
  background: rgba(2,13,24,.56);
  backdrop-filter: blur(12px);
}
.alert-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #1c1303;
  background: linear-gradient(135deg, #ffe2a3 0%, var(--gold-strong) 100%);
  box-shadow: 0 10px 30px rgba(255,185,71,.20);
  font-size: 1.5rem;
}
.alert-icon.big { width: 76px; height: 76px; border-radius: 24px; font-size: 2rem; margin: 0 auto 20px; }
.alert-preview strong { display: block; font-size: 1rem; }
.alert-preview p { margin: 4px 0 0; color: #a9c1dd; line-height: 1.45; font-size: .92rem; }
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(10,30,54,.62);
  border: 1px solid var(--line-strong);
  white-space: nowrap;
}
.mini-link:hover { background: rgba(14,39,70,.72); }

.discord-preview-stage {
  position: relative;
  z-index: 1;
  margin: 12px 0 2px;
  padding: 16px 0 18px;
  perspective: 900px;
  overflow: hidden;
  border-radius: 24px;
}
.discord-preview-stage::before {
  content: "";
  position: absolute;
  inset: 12% 2% 4%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 50%, var(--preview-glow), transparent 38%),
    radial-gradient(circle at 72% 36%, rgba(255,185,71,.18), transparent 34%),
    rgba(11, 18, 42, .72);
  filter: blur(24px);
  transform: rotate(-5deg) scale(.96);
  opacity: .9;
}
.preview-blur-stack {
  position: absolute;
  inset: 6px 0 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
  contain: paint;
}
.preview-glow-image {
  position: absolute;
  left: 1%;
  right: 1%;
  bottom: 14%;
  width: 98%;
  height: 64%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  filter: blur(26px) saturate(1.25) contrast(1.08);
  transform: translateZ(0) scale(1.18) rotate(-3deg);
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 140ms ease;
}
.preview-glow-image.is-active {
  opacity: .56;
}
.preview-sweep {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.18) 48%, transparent 58% 100%),
    repeating-linear-gradient(180deg, transparent 0 15px, rgba(255,255,255,.035) 16px);
  mix-blend-mode: screen;
  opacity: .24;
  transform: translateX(-22%);
  animation: previewScanA var(--preview-cycle) ease-in-out infinite;
}
.hero-preview.is-cycle-alt .preview-sweep { animation-name: previewScanB; }
.discord-capture {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 11px 10px 14px;
  border-radius: 7px;
  border-left: 4px solid var(--preview-accent);
  background: #111226;
  box-shadow: 0 28px 76px rgba(0,0,0,.48), 0 0 0 1px rgba(129,211,255,.10);
  transform: rotate(-2.8deg) translateY(2px);
  filter: saturate(1.05);
  backface-visibility: hidden;
  transition: border-left-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.discord-capture::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.07), transparent 44%);
  pointer-events: none;
}
.discord-message-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 7px -2px;
  color: #d8def6;
  font-size: .82rem;
}
.discord-message-head img {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(98,214,255,.22);
}
.discord-message-head strong {
  font-weight: 900;
  line-height: 1;
}
.discord-message-head span {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  margin-left: 4px;
  padding: 0 4px;
  border-radius: 3px;
  color: white;
  background: #5865f2;
  font-size: .64rem;
  font-weight: 900;
}
.discord-message-head time {
  color: #97a1c3;
  font-size: .74rem;
}
.discord-embed {
  margin-left: 42px;
  padding: 13px 14px 12px;
  border-radius: 4px;
  border: 1px solid rgba(98,214,255,.14);
  border-left: 0;
  color: #e7ecff;
  background: #15162d;
}
.discord-embed-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: .8rem;
  font-weight: 900;
}
.discord-embed-brand img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
}
.discord-embed h3 {
  margin-bottom: 12px;
  color: #eef3ff;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}
.discord-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}
.discord-stats strong,
.discord-stats span {
  display: block;
}
.discord-stats strong {
  color: #e0e7ff;
  font-size: .82rem;
  line-height: 1.2;
}
.discord-stats span {
  margin-top: 4px;
  color: #c8d0f1;
  font-size: .82rem;
}
.discord-banner-composite {
  position: relative;
  overflow: hidden;
  aspect-ratio: 17 / 6;
  border-radius: 4px;
  border: 1px solid var(--preview-glow);
  background: #030812;
  box-shadow: 0 14px 32px rgba(0,0,0,.24), 0 0 28px var(--preview-glow);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}
.discord-banner-composite::before,
.discord-banner-composite::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.discord-banner-composite::before {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.18) 50%, transparent 58% 100%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: .32;
  transform: translateX(-34%);
  animation: bannerGlintA var(--preview-cycle) ease-in-out infinite;
}
.hero-preview.is-cycle-alt .discord-banner-composite::before { animation-name: bannerGlintB; }
.discord-banner-composite::after {
  background: linear-gradient(180deg, transparent 52%, rgba(3,8,18,.34) 100%);
}
.discord-banner-art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.02);
  transform: translateZ(0) scale(1.01);
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 120ms ease, transform 260ms ease, filter 180ms ease;
}
.discord-banner-art.is-active {
  opacity: 1;
}
.discord-capture:hover .discord-banner-art {
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.045);
}
.preview-carousel-controls {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.preview-tab {
  min-width: 0;
  height: 38px;
  border: 1px solid rgba(129,211,255,.18);
  border-radius: 10px;
  color: #c9d8f3;
  background: rgba(6,17,31,.68);
  font: inherit;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.preview-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(129,211,255,.36);
  background: rgba(11,31,55,.82);
}
.preview-tab.is-active {
  color: #07111d;
  border-color: transparent;
  background: linear-gradient(135deg, #e9fbff 0%, var(--preview-accent) 100%);
  box-shadow: 0 10px 26px var(--preview-glow);
}
.preview-progress {
  position: relative;
  z-index: 2;
  max-width: 520px;
  height: 3px;
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(129,211,255,.13);
}
.preview-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--preview-accent), var(--gold));
  transform-origin: left center;
  animation: previewProgressA var(--preview-cycle) linear infinite;
}
.hero-preview.is-cycle-alt .preview-progress span {
  animation-name: previewProgressB;
}
.hero-preview.is-paused::after,
.hero-preview.is-paused .preview-sweep,
.hero-preview.is-paused .discord-banner-composite::before,
.hero-preview.is-paused .preview-progress span {
  animation-play-state: paused;
}
@keyframes previewSweepA {
  0%, 58% { transform: rotate(12deg) translateX(-36%); }
  100% { transform: rotate(12deg) translateX(36%); }
}
@keyframes previewSweepB {
  0%, 58% { transform: rotate(12deg) translateX(-36%); }
  100% { transform: rotate(12deg) translateX(36%); }
}
@keyframes previewScanA {
  0%, 44% { transform: translateX(-28%); opacity: .16; }
  100% { transform: translateX(28%); opacity: .32; }
}
@keyframes previewScanB {
  0%, 44% { transform: translateX(-28%); opacity: .16; }
  100% { transform: translateX(28%); opacity: .32; }
}
@keyframes bannerGlintA {
  0%, 62% { transform: translateX(-38%); }
  100% { transform: translateX(38%); }
}
@keyframes bannerGlintB {
  0%, 62% { transform: translateX(-38%); }
  100% { transform: translateX(38%); }
}
@keyframes previewProgressA {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes previewProgressB {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.discord-source {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #d8def6;
  font-size: .74rem;
  font-weight: 800;
}
.discord-source img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 96px auto 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.section-head h2, .flow h2, .cta h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.045em; line-height: 1; }
.section-head p, .flow p, .cta p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.7; }
.cards, .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .step {
  padding: 24px;
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12,39,69,.68), rgba(7,19,35,.74));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  transition: border-color 180ms ease, background 180ms ease;
}
.card:hover, .step:hover { border-color: rgba(98,214,255,.34); background: linear-gradient(180deg, rgba(14,48,84,.72), rgba(7,19,35,.82)); }
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #201506;
  background: linear-gradient(135deg, #ffe6ad, #ffb947);
  box-shadow: 0 12px 32px rgba(255,185,71,.16);
  font-weight: 900;
  margin-bottom: 22px;
}
.card h3, .step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p, .step p { margin: 0; color: var(--muted); line-height: 1.62; }

.split-section {
  display: grid;
  grid-template-columns: .76fr 1fr;
  align-items: center;
  gap: 44px;
}
.mascot-card {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(98,214,255,.18), transparent 44%),
    linear-gradient(180deg, rgba(6,17,31,.30), rgba(6,17,31,.10));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mascot-card img {
  width: min(104%, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 58px rgba(0,0,0,.42));
  animation: mascotFloat 5.5s ease-in-out infinite;
}
.mascot-card .shine {
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(98,214,255,.22), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes mascotFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: .75; } }

.flow { display: grid; gap: 20px; }
.flow-list { display: grid; gap: 12px; margin-top: 8px; }
.flow-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(129,211,255,.16);
  background: rgba(8,24,45,.44);
}
.flow-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(98,214,255,.10);
  color: var(--cyan);
  font-weight: 950;
}
.flow-item p { margin: 0; }

.cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 96px auto 0;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,210,122,.22);
  background:
    radial-gradient(circle at 86% 18%, rgba(255,185,71,.14), transparent 30%),
    linear-gradient(135deg, rgba(12,39,69,.74), rgba(7,19,35,.82));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.cta p { margin-top: 10px; }

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 46px auto 0;
  padding: 28px 0 36px;
  color: #9eb7d1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .92rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #bfd6ef; opacity: .88; }
.footer-links a:hover { opacity: 1; color: white; }
.coffee-link { color: var(--gold) !important; }

.legal, .redirect-page {
  width: min(920px, calc(100% - 40px));
  margin: 74px auto 0;
}
.legal-hero { margin-bottom: 26px; }
.legal-hero h1, .redirect-card h1 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.legal-hero p { color: var(--muted); }
.legal-card, .redirect-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12,39,69,.70), rgba(7,19,35,.78));
  box-shadow: var(--shadow);
  padding: 30px;
}
.legal-card h2 { margin-top: 28px; font-size: 1.28rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li {
  color: #bfd2e8;
  line-height: 1.75;
}
.legal-card ul { padding-left: 1.2rem; }
.redirect-page {
  min-height: 56vh;
  display: grid;
  place-items: center;
}
.redirect-card {
  text-align: center;
  max-width: 600px;
}
.redirect-card p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-panel {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(4,12,22,.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-panel { display: flex; }
  .nav-links, .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-links a, .nav-actions .btn { justify-content: center; text-align: center; }
  .language-switch { justify-content: center; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-preview { max-width: 680px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .card, .step { min-height: auto; }
}
@media (max-width: 700px) {
  .nav { width: min(100% - 28px, var(--max)); min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: .96rem; }
  .hero, .section, .cta, .site-footer, .legal, .redirect-page { width: min(100% - 28px, var(--max)); }
  .hero { margin-top: 40px; }
  .hero-preview { padding: 12px; border-radius: 24px; }
  .discord-preview-stage { padding: 8px 0 10px; }
  .discord-capture {
    max-width: calc(100vw - 52px);
    padding: 9px 8px 11px;
    transform: rotate(-1.6deg);
  }
  .preview-glow-image {
    height: 58%;
    filter: blur(20px) saturate(1.2);
  }
  .discord-message-head { font-size: .76rem; }
  .discord-message-head img { width: 26px; height: 26px; }
  .discord-embed {
    margin-left: 22px;
    padding: 11px 10px 10px;
  }
  .discord-embed h3 { font-size: .9rem; }
  .discord-stats {
    gap: 12px;
    margin-bottom: 11px;
  }
  .discord-stats strong,
  .discord-stats span { font-size: .72rem; }
  .discord-source {
    gap: 6px;
    font-size: .62rem;
  }
  .discord-source img { width: 16px; height: 16px; }
  .preview-carousel-controls,
  .preview-progress {
    max-width: calc(100vw - 52px);
  }
  .preview-tab {
    height: 34px;
    border-radius: 9px;
    font-size: .64rem;
    letter-spacing: .06em;
  }
  .alert-preview { grid-template-columns: 50px 1fr; width: 100%; }
  .alert-icon { width: 50px; height: 50px; border-radius: 16px; }
  .mini-link { grid-column: 1 / -1; justify-self: start; }
  .cta { flex-direction: column; align-items: flex-start; padding: 24px; }
  .mascot-card { min-height: 310px; }
  .site-footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .interactive-card { transform: none !important; }
}
