:root {
  --bg: #0e0c0f;
  --bg1: #19141a;
  --bg2: #221c24;
  --text: #e0d8eb;
  --muted: #a092a3;
  --accent: #8c4ae8;
  --accent-bright: #995af0;
  --accent-dim: #652ab8;
  --accent-soft: #d4c2f5;
  --line: rgba(205, 186, 232, 0.18);
  --gta: #7ec8e3;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 70vh;
  background:
    radial-gradient(ellipse 55% 45% at 50% 20%, rgba(140, 74, 232, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 35% at 15% 40%, rgba(101, 42, 184, 0.14), transparent 65%),
    radial-gradient(ellipse 35% 30% at 85% 30%, rgba(126, 200, 227, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bg-noise {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
main,
.site-footer,
.to-top {
  position: relative;
  z-index: 1;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 40px);
  backdrop-filter: blur(12px);
  background: rgba(14, 12, 15, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  flex: 0 1 auto;
  min-width: 0;
}

.header-nav {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}

.header-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-nav a:hover {
  color: var(--accent-soft);
}

.header-nav .nav-download {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(140, 74, 232, 0.08);
  color: var(--accent-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  min-width: 40px;
  text-align: center;
}

.chip:hover {
  border-color: rgba(140, 74, 232, 0.45);
  background: rgba(140, 74, 232, 0.16);
}

.chip-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  min-width: 40px;
}

.chip-discord .discord-ico {
  display: block;
}

.btn-menu {
  display: none;
  appearance: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(140, 74, 232, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
}

.btn-menu:hover {
  border-color: rgba(140, 74, 232, 0.45);
  background: rgba(140, 74, 232, 0.18);
}

.btn-menu-bars,
.btn-menu-bars::before,
.btn-menu-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-menu-bars {
  position: relative;
}

.btn-menu-bars::before,
.btn-menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.btn-menu-bars::before {
  top: -5px;
}

.btn-menu-bars::after {
  top: 5px;
}

.site-header.is-nav-open .btn-menu-bars {
  background: transparent;
}

.site-header.is-nav-open .btn-menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .btn-menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mission-swipe {
  display: none;
}

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px 28px;
  animation: rise 0.8s ease both;
}

.hero-brand {
  display: block;
  margin: 0;
  width: 100%;
  opacity: 1;
  font-family: var(--font-display);
  font-size: clamp(56px, 14vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #c77dff;
  background-image: linear-gradient(100deg, #fff 0%, #c77dff 32%, #995af0 68%, #7ec8e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tag {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0.12em;
  color: #fff;
}

.hero-desc {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.55;
  color: var(--muted);
}

.hero-desc strong {
  color: var(--accent-bright);
  font-weight: 700;
}

.btn-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(100deg, #995af0, var(--accent) 45%, var(--accent-dim));
  box-shadow: 0 0 0 1px rgba(153, 90, 240, 0.35), 0 12px 40px rgba(101, 42, 184, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(153, 90, 240, 0.55), 0 16px 48px rgba(140, 74, 232, 0.4);
}

.hero-stats {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  width: min(720px, 100%);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats b {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
}

.hero-stats span {
  font-size: 12px;
  color: var(--muted);
}

.scroll-hint {
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(224, 216, 235, 0.45);
  animation: pulse 2.4s ease-in-out infinite;
}

.scroll-arrow {
  display: block;
  font-size: 28px;
  line-height: 1;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* SHARED RAIL BITS */
.rail-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.rail-title,
.mission-title,
.doubts-title,
.closeout-title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
}

.rail-copy {
  margin: 14px 0 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ARSENAL — grid Brofinity + títulos KRON */
.section.arsenal-bro {
  padding: 88px clamp(16px, 4vw, 40px) 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.section-title {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 64px);
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 0.95;
}

.section-sub {
  margin: 10px auto 0;
  text-align: center;
  max-width: 42ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.feat-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feat-card {
  --card-accent: #8c4ae8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 26px 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(20, 16, 24, 0.88);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-card[data-accent="violet"] { --card-accent: #8c4ae8; }
.feat-card[data-accent="cyan"] { --card-accent: #5ec8e8; }
.feat-card[data-accent="magenta"] { --card-accent: #c45ae8; }
.feat-card[data-accent="amber"] { --card-accent: #e8b45e; }
.feat-card[data-accent="rose"] { --card-accent: #e87a9a; }
.feat-card[data-accent="mint"] { --card-accent: #6ed9b0; }

.feat-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--card-accent) 35%, transparent), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--card-accent) 22%, transparent),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px color-mix(in srgb, var(--card-accent) 18%, transparent);
}

.feat-card:hover::before,
.feat-card:hover .feat-glow {
  opacity: 1;
}

.feat-ico {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: color-mix(in srgb, var(--card-accent) 22%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--card-accent) 35%, transparent);
}

.feat-card h3,
.feat-card p {
  position: relative;
  z-index: 1;
}

.feat-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #fff;
}

.feat-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* MISSÃO — quatro caixas */
.band.mission {
  padding: 88px clamp(16px, 4vw, 40px) 80px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(140, 74, 232, 0.12), transparent 55%),
    var(--bg1);
  border-top: 1px solid var(--line);
}

.mission-head-center {
  text-align: center;
  padding: 0 0 40px;
  max-width: 640px;
  margin: 0 auto;
}

.mission-head-center .mission-copy {
  margin-left: auto;
  margin-right: auto;
}

.mission-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-box {
  --card-accent: #8c4ae8;
  position: relative;
  overflow: hidden;
  padding: 28px 22px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%),
    rgba(18, 14, 22, 0.9);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mission-box[data-accent="violet"] { --card-accent: #8c4ae8; }
.mission-box[data-accent="cyan"] { --card-accent: #5ec8e8; }
.mission-box[data-accent="magenta"] { --card-accent: #c45ae8; }
.mission-box[data-accent="amber"] { --card-accent: #e8b45e; }

.mission-box::before {
  content: "";
  position: absolute;
  inset: -30% 10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--card-accent) 40%, transparent), transparent 70%);
  pointer-events: none;
}

.mission-box:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--card-accent) 40%, transparent);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.mission-box-ico {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: color-mix(in srgb, var(--card-accent) 24%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--card-accent) 40%, transparent);
}

.mission-box-num {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--card-accent) 85%, #fff);
}

.mission-box h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #fff;
}

.mission-box p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* PLANOS Free × Embaixador */
.band.plans {
  padding: 96px clamp(16px, 4vw, 40px) 88px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 45% 50% at 50% 10%, rgba(140, 74, 232, 0.14), transparent 60%),
    var(--bg);
}

.plans-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.plans-pill {
  display: inline-flex;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 74, 232, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  background: rgba(140, 74, 232, 0.1);
}

.plans-title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.plans-title em {
  font-style: normal;
  color: var(--accent-bright);
}

.plans-sub {
  margin: 12px auto 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.plans-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 18, 26, 0.92);
}

.plan-card-featured {
  border-color: rgba(140, 74, 232, 0.7);
  box-shadow:
    0 0 0 1px rgba(140, 74, 232, 0.35),
    0 0 40px rgba(140, 74, 232, 0.28),
    0 24px 60px rgba(101, 42, 184, 0.3);
  background:
    linear-gradient(180deg, rgba(140, 74, 232, 0.2), transparent 38%),
    rgba(22, 18, 26, 0.96);
}

.plan-card-ambassador {
  border-color: rgba(232, 180, 94, 0.65);
  box-shadow:
    0 0 0 1px rgba(232, 180, 94, 0.35),
    0 0 42px rgba(232, 180, 94, 0.28),
    0 24px 60px rgba(160, 110, 30, 0.22);
  background:
    linear-gradient(180deg, rgba(232, 180, 94, 0.16), transparent 38%),
    rgba(22, 18, 26, 0.96);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: #120e16;
  background: linear-gradient(100deg, #f0d78a, #e8b45e);
}

.plan-badge-amb {
  color: #1a1408;
  background: linear-gradient(100deg, #ffe6a8, #e8b45e);
}

.plan-card-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #fff;
}

.plan-price {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.plan-card-featured .plan-price {
  color: var(--accent-bright);
}

.plan-card-ambassador .plan-price {
  color: #f0c86a;
}

.plan-price small {
  margin-left: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.plan-price-note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.amb-countdown {
  margin-top: 14px;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(232, 180, 94, 0.35);
  background: rgba(232, 180, 94, 0.08);
}

.amb-cd-label {
  margin: 0 0 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #f0c86a;
}

.amb-cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  text-align: center;
}

.amb-cd-grid b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

.amb-cd-grid small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(240, 200, 106, 0.75);
}

.plan-feats {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text);
}

.plan-feats li:first-child {
  border-top: 0;
}

.plan-feats li i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 999px;
}

.plan-feats li.is-yes i {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233dff8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E")
    center / 11px no-repeat,
    rgba(61, 255, 138, 0.14);
}

.plan-feats li.is-no {
  color: rgba(160, 146, 163, 0.7);
}

.plan-feats li.is-no i {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a7f90' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E")
    center / 10px no-repeat,
    rgba(255, 255, 255, 0.06);
}

.plan-feats li.is-extra {
  color: #f0d78a;
}

.plan-cta {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

.plan-cta-amb {
  background: linear-gradient(100deg, #f0d78a, #e8b45e 55%, #c4902e);
  color: #1a1408;
  box-shadow: 0 0 0 1px rgba(232, 180, 94, 0.4), 0 12px 36px rgba(180, 120, 30, 0.3);
}

.plan-cta-amb:hover {
  box-shadow: 0 0 0 1px rgba(232, 180, 94, 0.6), 0 16px 44px rgba(200, 140, 40, 0.4);
}

.btn-plan-ghost {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-plan-ghost:hover {
  border-color: rgba(140, 74, 232, 0.45);
  background: rgba(140, 74, 232, 0.12);
}

/* DÚVIDAS — editorial */
.band.doubts {
  display: grid;
  grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(24px, 4vw, 48px);
  padding: 96px clamp(16px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.doubts-board {
  display: flex;
  flex-direction: column;
}

.doubt {
  border-bottom: 1px solid var(--line);
}

.doubt:first-child {
  border-top: 1px solid var(--line);
}

.doubt summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.15s ease;
}

.doubt summary::-webkit-details-marker {
  display: none;
}

.doubt summary em {
  font-style: normal;
  color: rgba(140, 74, 232, 0.65);
}

.doubt summary:hover,
.doubt[open] summary {
  color: var(--accent-soft);
}

.doubt p {
  margin: 0;
  padding: 0 4px 22px 60px;
  max-width: 58ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  animation: rise 0.25s ease both;
}

/* CLOSEOUT */
.closeout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  align-items: center;
  padding: 72px clamp(16px, 5vw, 56px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(140, 74, 232, 0.2), transparent 45%),
    var(--bg1);
}

.closeout-mark {
  font-family: var(--font-display);
  font-size: clamp(120px, 28vw, 280px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(140, 74, 232, 0.32);
  user-select: none;
  transform: translateX(-6%);
  animation: drift 12s ease-in-out infinite alternate;
}

.closeout-body {
  position: relative;
  z-index: 1;
}

.closeout-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.closeout .btn-cta {
  margin-top: 24px;
}

/* FOOTER */
.site-footer {
  padding: 28px clamp(16px, 5vw, 56px) 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212, 194, 245, 0.55);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal {
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(224, 216, 235, 0.32);
  max-width: 64ch;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(140, 74, 232, 0.45);
  cursor: pointer;
  font-size: 18px;
  color: var(--accent-soft);
  background: rgba(25, 20, 26, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.9;
  }
}

@keyframes drift {
  from {
    transform: translateX(-8%) translateY(4%);
  }
  to {
    transform: translateX(-2%) translateY(-2%);
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
  }

  .band.doubts,
  .closeout {
    grid-template-columns: 1fr;
  }

  .header-actions {
    margin-left: auto;
  }

  .doubts-head {
    position: static;
  }

  .closeout-mark {
    display: none;
  }

  .btn-menu {
    display: inline-flex;
  }

  .header-nav {
    position: fixed;
    top: 69px;
    left: 12px;
    right: 12px;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(140, 74, 232, 0.35);
    background: rgba(20, 16, 22, 0.97);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .header-nav a {
    display: block;
    padding: 15px 14px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--accent-soft);
  }

  .header-nav a:hover,
  .header-nav a:active {
    background: rgba(140, 74, 232, 0.14);
    color: #fff;
  }

  .header-nav .nav-download {
    display: block;
    margin-top: 4px;
    text-align: center;
    color: #fff;
    background: linear-gradient(100deg, #995af0, var(--accent) 45%, var(--accent-dim));
  }

  .header-nav .nav-download:hover,
  .header-nav .nav-download:active {
    background: linear-gradient(100deg, #a56af5, var(--accent-bright) 45%, var(--accent));
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-boxes {
    grid-template-columns: 1fr 1fr;
  }

  .plans-grid,
  .plans-grid-3 {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .band.mission {
    padding: 64px clamp(16px, 4vw, 28px) 56px;
  }

  .band.doubts {
    padding: 64px clamp(16px, 5vw, 28px);
  }

  .closeout {
    min-height: auto;
    padding: 56px clamp(16px, 5vw, 28px);
  }

  .footer-nav {
    gap: 10px 14px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
    justify-content: space-between;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-right: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .chip,
  .btn-menu {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .chip-discord .discord-ico {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    padding: 36px 16px 28px;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .hero-brand {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-tag {
    font-size: clamp(22px, 7vw, 32px);
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 360px;
    gap: 10px;
  }

  .hero-stats b {
    font-size: 18px;
  }

  .btn-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feat-card {
    padding: 18px 16px;
  }

  .mission-boxes {
    grid-template-columns: 1fr;
  }

  .doubt summary {
    grid-template-columns: 36px 1fr;
    font-size: 18px;
    padding: 16px 2px;
  }

  .doubt p {
    padding-left: 4px;
    font-size: 14px;
  }

  .closeout-title {
    font-size: clamp(36px, 11vw, 52px);
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 380px) {
  .chip {
    min-width: 36px;
    padding: 7px 9px;
  }
}

/* LEGAL PAGES */
.legal-page .site-header {
  margin-bottom: 0;
}

.legal-wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px clamp(16px, 4vw, 28px) 80px;
}

.legal-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 56px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #fff;
}

.legal-meta {
  margin: 12px 0 28px;
  font-size: 13px;
  color: var(--muted);
}

.legal-wrap h2 {
  margin: 36px 0 12px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
}

.legal-wrap p,
.legal-wrap li {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(224, 216, 235, 0.88);
}

.legal-wrap ul {
  padding-left: 1.2em;
}

.legal-wrap a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 0 0 28px;
  padding: 18px 18px 8px;
  border-radius: 12px;
  border: 1px solid rgba(140, 74, 232, 0.35);
  background: rgba(140, 74, 232, 0.08);
}

.legal-callout h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-accept-banner {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(224, 216, 235, 0.16);
  background: rgba(34, 28, 36, 0.7);
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.legal-note {
  color: var(--muted) !important;
  font-size: 13px !important;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: rgba(224, 216, 235, 0.88);
}

.legal-table th {
  background: rgba(140, 74, 232, 0.12);
  color: var(--accent-soft);
  font-weight: 700;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-back {
  margin-top: 40px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
