
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
 --bg:           #06080a;
 --bg2:          #0b0e11;
 --surface:      #10141a;
 --surface2:     #151a22;
 --surface3:     #1a2029;
 --border:       #1f2730;
 --border-hi:    #2a323d;
 --blue:         #12b8c0;
 --blue-light:   #22d3dd;
 --blue-glow:    #12b8c055;
 --blue-hover:   #0d8a90;
 --cyan:         #22d3dd;
 --aqua:         #12b8c0;
 --aqua-soft:    #0d8a90;
 --neon:         #00eaff;
 --red:          #ff4545;
 --green:        #2fd67a;
 --amber:        #ffc043;
 --text:         #d6e4e6;
 --text-muted:   #6f8087;
 --text-dim:     #4a5864;
 --white:        #ffffff;
 --radius:       0.75rem;
 --radius-lg:    1.25rem;
 --radius-xl:    1.75rem;
 --shadow:       0 4px 24px #0008;
 --font:         "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
 --mono:         "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.005em;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
body.dash-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--blue-glow); color: var(--white); }

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(18, 184, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 184, 192, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
 -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
}
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 20% 10%, rgba(18, 184, 192, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(34, 211, 221, 0.10), transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 90%, rgba(18, 184, 192, 0.08), transparent 70%);
  animation: bgDrift 24s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-20px, 14px, 0) scale(1.05); }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(6, 8, 10, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
 -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  color: var(--blue-light);
  font-size: 1.15rem;
  text-shadow: 0 0 10px var(--blue-glow);
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  filter: drop-shadow(0 0 12px rgba(95, 182, 255, 0.55));
}
.footer-brand .brand-logo { width: 24px; height: 24px; }
.cust-logo-img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 10px rgba(95, 182, 255, 0.45));
}
.brand-name {
  color: var(--white);
}
.brand-dim {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links > li > a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links > li > a.active {
  color: var(--blue-light);
  background: rgba(18, 184, 192, 0.08);
}

.nav-admin {
  background: rgba(18, 184, 192, 0.1) !important;
  border: 1px solid rgba(18, 184, 192, 0.35);
  color: var(--blue-light) !important;
}
.nav-admin:hover {
  background: rgba(18, 184, 192, 0.18) !important;
  border-color: var(--blue-light);
}

.nav-signin.nav-signed-in {
  background: rgba(18, 184, 192, 0.12);
  border: 1px solid rgba(18, 184, 192, 0.4);
  color: var(--blue-light, #5eeaf2) !important;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
}
.nav-signin.nav-signed-in::before {
  content: "●";
  display: inline-block;
  margin-right: 0.45rem;
  color: #2fd67a;
  font-size: 0.7em;
  vertical-align: 0.15em;
}

.cust-nav-admin {
  background: linear-gradient(90deg, rgba(18, 184, 192, 0.1), rgba(18, 184, 192, 0.02));
  border: 1px solid rgba(18, 184, 192, 0.3);
  color: var(--blue-light, #5eeaf2) !important;
  border-radius: 10px;
  margin-top: 0.25rem;
  position: relative;
  font-weight: 700;
}
.cust-nav-admin:hover {
  background: linear-gradient(90deg, rgba(18, 184, 192, 0.2), rgba(18, 184, 192, 0.06));
  border-color: var(--blue-light, #5eeaf2);
}
.cust-nav-ext {
  margin-left: auto;
  font-size: 0.85rem;
  opacity: 0.7;
}
.cust-staff-only[hidden] { display: none !important; }

.badge {
  display: inline-block;
  background: rgba(18, 184, 192, 0.08);
  border: 1px solid rgba(18, 184, 192, 0.3);
  color: var(--blue-light);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  line-height: 1.15;
  letter-spacing: 0.005em;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(34, 211, 221, 0.45) inset, 0 8px 24px rgba(18, 184, 192, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 0 0 1px rgba(34, 211, 221, 0.7) inset, 0 10px 30px rgba(18, 184, 192, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--blue-light);
  background: rgba(18, 184, 192, 0.08);
}

.btn-full { width: 100%; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.18s;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.discord-glyph {
  color: var(--blue-light);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem 7rem;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(18, 184, 192, 0.06);
  border: 1px solid rgba(18, 184, 192, 0.25);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  font-family: var(--mono);
  letter-spacing: 0.01em;
}
.hero-eyebrow b { color: var(--blue-light); font-weight: 700; }
.hero-eyebrow .sep { color: var(--text-dim); }

.hero-stat-slot {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  min-height: 1.2em;
  position: relative;
}
.hero-stat-val {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-light);
  letter-spacing: 0.02em;
  display: inline-block;
}
.hero-stat-label {
  color: var(--text);
  opacity: 0.85;
  display: inline-block;
}
.hero-stat-slot.hero-stat-in .hero-stat-val {
  animation: heroStatPopNum 0.55s cubic-bezier(.34, 1.56, .64, 1) both;
}
.hero-stat-slot.hero-stat-in .hero-stat-label {
  animation: heroStatFadeLabel 0.5s ease 0.08s both;
}
@keyframes heroStatPopNum {
  0%   { transform: translateY(8px) scale(0.8); opacity: 0; filter: blur(4px); }
  55%  { transform: translateY(0) scale(1.12); opacity: 1; filter: blur(0); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes heroStatFadeLabel {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 0.85; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stat-slot.hero-stat-in .hero-stat-val,
  .hero-stat-slot.hero-stat-in .hero-stat-label { animation: none !important; }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(47, 214, 122, 0.6);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(47, 214, 122, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(47, 214, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 214, 122, 0); }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title .grad {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--cyan) 60%, #a2f5ff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 32px rgba(18, 184, 192, 0.35));
}

.grad {
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-card {
  background: linear-gradient(180deg, rgba(18, 184, 192, 0.04) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.hero-stat-card.hero-stat-solo {
  margin-top: 2.75rem;
  min-width: 280px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-stat-card.hero-stat-solo::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-stat-card:hover {
  border-color: var(--aqua-soft);
  transform: translateY(-2px);
}
.hero-stat-card-val {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: opacity 0.2s;
}
.hero-stat-card-label {
  margin-top: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section {
  padding: 6rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
  padding: 0.25rem 0.8rem;
  background: rgba(18, 184, 192, 0.08);
  border: 1px solid rgba(18, 184, 192, 0.25);
  border-radius: 999px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 55ch;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}
.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: rgba(16, 20, 26, 0.5);
}

.product-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 184, 192, 0.035) 0%, transparent 40%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(18, 184, 192, 0.35) 100%);
 -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
 -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 184, 192, 0.35);
  box-shadow: 0 24px 48px -20px rgba(18, 184, 192, 0.35), 0 0 0 1px rgba(18, 184, 192, 0.15);
}
.product-card:hover::before { opacity: 1; }
.product-card.sold-out { opacity: 0.55; }
.product-card.sold-out:hover { transform: none; }

.prod-img {
  aspect-ratio: 16 / 9;
  background: var(--bg2);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .prod-img img { transform: scale(1.04); }
.prod-img-blank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--blue-glow);
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  height: 100%;
}

.prod-body {
  padding: 1.2rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.prod-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.prod-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}
.prod-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.prod-duration {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prod-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0.15rem 0 0.35rem;
}
.prod-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.prod-price-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.prod-price-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.prod-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(18, 184, 192, 0.12);
  border: 1px solid rgba(18, 184, 192, 0.35);
  color: var(--blue-light);
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.prod-cta:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-light);
}
.product-card.sold-out .prod-cta {
  pointer-events: none;
  color: var(--red);
  background: rgba(255, 69, 69, 0.08);
  border-color: rgba(255, 69, 69, 0.3);
}
.prod-stock {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.prod-stock b { color: var(--green); font-weight: 700; }
.product-card.sold-out .prod-stock { color: var(--red); }
.prod-status-msg {
  font-size: 0.78rem;
  color: var(--amber);
  font-style: italic;
}

.media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: #fff;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  transition: opacity 0.2s;
  pointer-events: none;
}
.media-card:hover .media-play { opacity: 1; }

.vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.1rem;
}
.vouches-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.vouch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.vouch-card::after {
  content: """;
  position: absolute;
  top: -12px;
  right: 12px;
  font-size: 5rem;
  color: rgba(18, 184, 192, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.vouch-card:hover {
  border-color: rgba(18, 184, 192, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(18, 184, 192, 0.25);
}
.vouch-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vouch-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px rgba(18, 184, 192, 0.2);
}
.vouch-who { flex: 1; min-width: 0; }
.vouch-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vouch-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.v-stars {
  color: var(--amber);
  letter-spacing: 1px;
  font-size: 0.82rem;
}
.v-stars .dim { color: var(--border-hi); }
.vouch-when {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.vouch-src {
  background: rgba(88, 101, 242, 0.15);
  color: #a9b3ff;
  border: 1px solid rgba(88, 101, 242, 0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}
.vouch-target {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.vouch-target b { color: var(--blue-light); font-weight: 700; }
.vouch-body {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.section-connector {
  position: relative;
  height: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  pointer-events: none;
}
.section-connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--aqua) 45%, var(--aqua) 55%, transparent);
  opacity: 0.35;
}
.section-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--neon), 0 0 24px var(--blue-glow);
}
.section-narrow { max-width: 880px; }

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.faq-item[open] {
  border-color: var(--aqua-soft);
  box-shadow: 0 0 0 1px rgba(18, 184, 192, 0.15), 0 8px 28px -12px var(--blue-glow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(18, 184, 192, 0.1);
  border: 1px solid rgba(18, 184, 192, 0.3);
  color: var(--blue-light);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--aqua);
  color: var(--bg);
  border-color: var(--aqua);
}
.faq-body {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-body b { color: var(--text); font-weight: 600; }

.tos-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: grid;
  gap: 1.5rem;
}
.tos-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-light);
  font-family: var(--mono);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.tos-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
  background: rgba(6, 8, 10, 0.6);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

@media (max-width: 900px) {
  .navbar { padding: 0.85rem 1.25rem; }
  .nav-links { gap: 0.1rem; }
  .nav-links > li > a { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
  .section { padding: 4.5rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 5rem; min-height: auto; }
}
@media (max-width: 640px) {
  .nav-links > li:nth-child(1),
  .nav-links > li:nth-child(2),
  .nav-links > li:nth-child(3) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

.nav-signin { color: var(--blue-light); font-weight: 600; padding: 0.35rem 0.9rem; border: 1px solid var(--blue); border-radius: 999px; transition: background 0.2s; }
.nav-signin:hover { background: var(--blue-glow); }
.cust-modal { position: fixed; inset: 0; background: #000b; display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; }
.cust-modal[hidden] { display: none; }
.cust-modal-inner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); width: 100%; max-width: 420px; padding: 1.75rem; position: relative; box-shadow: var(--shadow); }
.cust-close { position: absolute; top: 0.75rem; right: 0.9rem; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.cust-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.cust-tab { flex: 1; background: none; border: none; color: var(--text-muted); padding: 0.65rem; cursor: pointer; font-weight: 600; border-bottom: 2px solid transparent; }
.cust-tab.active { color: var(--blue-light); border-bottom-color: var(--blue); }
.cust-form { display: flex; flex-direction: column; gap: 0.8rem; }
.cust-form[hidden] { display: none !important; }
.cust-modal[hidden], .cust-dash[hidden] { display: none !important; }
.cust-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: var(--text-muted); }

.cust-form input,
.cust-form textarea,
.cust-form select,
.cust-inline input,
.cust-inline textarea,
.cust-inline select {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
  box-sizing: border-box;
}
.cust-form input::placeholder,
.cust-form textarea::placeholder,
.cust-inline input::placeholder {
  color: var(--text-dim, #6b7680);
  opacity: 0.7;
}
.cust-form input:hover,
.cust-form textarea:hover,
.cust-form select:hover,
.cust-inline input:hover {
  border-color: rgba(18, 184, 192, 0.45);
}
.cust-form input:focus,
.cust-form textarea:focus,
.cust-form select:focus,
.cust-inline input:focus,
.cust-inline textarea:focus,
.cust-inline select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 184, 192, 0.18);
  background: rgba(18, 184, 192, 0.04);
}
.cust-form input:invalid:not(:placeholder-shown),
.cust-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 107, 107, 0.55);
}
.cust-form input[disabled],
.cust-form textarea[disabled],
.cust-form select[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.cust-form textarea { resize: vertical; min-height: 6.5rem; line-height: 1.45; }

.cust-form select,
.cust-inline select {
  appearance: none;
 -webkit-appearance: none;
 -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%2312b8c0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
  padding-right: 2.3rem;
  cursor: pointer;
}
.cust-form select option { background: #0d1418; color: var(--text); }

.cust-form input[type="checkbox"],
.oryth-checkbox {
  appearance: none;
 -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--bg2);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  vertical-align: -0.25em;
  padding: 0;
}
.cust-form input[type="checkbox"]:hover,
.oryth-checkbox:hover {
  border-color: rgba(18, 184, 192, 0.7);
}
.cust-form input[type="checkbox"]:focus-visible,
.oryth-checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 184, 192, 0.22);
}
.cust-form input[type="checkbox"]:checked,
.oryth-checkbox:checked {
  background: linear-gradient(135deg, #12b8c0, #0d8a90);
  border-color: #12b8c0;
}
.cust-form input[type="checkbox"]:checked::after,
.oryth-checkbox:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.cust-form input[type="radio"],
.oryth-radio {
  appearance: none;
 -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--bg2);
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.cust-form input[type="radio"]:hover,
.oryth-radio:hover { border-color: rgba(18, 184, 192, 0.7); }
.cust-form input[type="radio"]:focus-visible,
.oryth-radio:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 184, 192, 0.22);
}
.cust-form input[type="radio"]:checked,
.oryth-radio:checked { border-color: #12b8c0; }
.cust-form input[type="radio"]:checked::after,
.oryth-radio:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12b8c0, #0d8a90);
}

.cust-form input:-webkit-autofill,
.cust-form textarea:-webkit-autofill,
.cust-form select:-webkit-autofill {
 -webkit-box-shadow: 0 0 0 1000px var(--bg2) inset !important;
 -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text) !important;
  transition: background-color 9999s ease-in-out 0s;
}
.cust-msg { font-size: 0.85rem; min-height: 1.2em; }
.cust-msg.err { color: #ff6b6b; }
.cust-msg.ok { color: #2fd67a; }

:root {
 --cust-sidebar-w: 230px;
 --cust-topbar-h:  58px;
}
.cust-dash {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 900;
  display: flex;
  overflow: hidden;
}
.cust-dash[hidden] { display: none !important; }

.cust-sidebar {
  width: var(--cust-sidebar-w);
  min-width: var(--cust-sidebar-w);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: width 0.2s, min-width 0.2s;
  overflow: hidden;
}
.cust-sidebar.collapsed { width: 0; min-width: 0; }

.cust-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.cust-logo-icon { color: var(--blue-light); font-size: 1.2rem; }
.cust-logo-text { font-size: 1rem; font-weight: 800; color: var(--white); }
.cust-logo-dim  { color: var(--text-muted); font-weight: 400; }

.cust-sidebar-back {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.cust-sidebar-back:hover { color: var(--text); background: var(--surface); }

.cust-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
}
.cust-nav-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.2rem 0.35rem;
}
.cust-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cust-nav-item:hover { color: var(--text); background: var(--surface); }
.cust-nav-item.active {
  color: var(--blue-light);
  background: rgba(18, 184, 192, 0.08);
  border-left-color: var(--blue);
}
.cust-nav-icon { font-size: 1rem; width: 1.2rem; display: inline-block; text-align: center; }

.cust-sidebar-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
}
.cust-sidebar-signout {
  width: 100%;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.85rem;
}

.cust-main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.cust-topbar {
  height: var(--cust-topbar-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.cust-topbar-left,
.cust-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.cust-sidebar-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.cust-sidebar-toggle:hover { border-color: var(--blue); color: var(--blue-light); }
.cust-page-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.cust-topbar-back {
  color: var(--blue-light);
  background: var(--blue-glow);
  border: 1px solid #12b8c055;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cust-topbar-back:hover { background: #12b8c033; border-color: var(--blue-light); }
.cust-whoami {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--border);
}
.cust-whoami-name {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.cust-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cust-page { display: none; }
.cust-page.active { display: block; }

.cust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cust-panel.mt { margin-top: 1.25rem; }
.cust-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.cust-panel-body { padding: 1.25rem; }
.cust-panel-body .cust-form { gap: 0.9rem; }
.cust-panel-body .cust-form button { align-self: flex-start; margin-top: 0.25rem; }
.mt-sm { margin-top: 0.5rem; }

.cust-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cust-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cust-stat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
}
.cust-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cust-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1.1;
}

.cust-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}
.cust-quick-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.cust-quick-btn:hover {
  border-color: var(--blue);
  background: rgba(18, 184, 192, 0.08);
  transform: translateY(-1px);
}
.cust-quick-icon { font-size: 1.2rem; }

.cust-keys { display: flex; flex-direction: column; gap: 0.6rem; }
.cust-key { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 0.9rem; }
.cust-key-top { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0.6rem; font-size: 0.85rem; margin-bottom: 0.35rem; }
.cust-key-top code, .cust-key-code { color: var(--blue-light); word-break: break-all; cursor: copy; background: rgba(0,34,255,0.08); border: 1px solid rgba(0,34,255,0.25); padding: 2px 6px; border-radius: 6px; font-size: 0.82rem; }
.cust-key-prod { color: var(--text-muted); margin-left: auto; }
.cust-key-chip { display: inline-flex; align-items: center; font-size: 0.72rem; padding: 2px 8px; border-radius: 999px; font-weight: 600; letter-spacing: 0.02em; }
.cust-key-chip-used { background: rgba(42,254,0,0.12); color: #7eff5a; border: 1px solid rgba(42,254,0,0.35); }
.cust-key-chip-new { background: rgba(255,170,0,0.1); color: #ffc970; border: 1px solid rgba(255,170,0,0.3); }
.cust-key-copy { background: transparent; color: var(--text-muted); border: 1px solid var(--border); border-radius: 6px; padding: 2px 8px; font-size: 0.72rem; cursor: pointer; transition: all .15s ease; }
.cust-key-copy:hover { color: var(--text); border-color: var(--blue-light); }
.cust-key-meta { display: flex; justify-content: space-between; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }
.cust-key-meta b { color: var(--text); }
.cust-key-group { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 0; overflow: hidden; }
.cust-key-group > summary { list-style: none; cursor: pointer; padding: 0.7rem 0.9rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; user-select: none; }
.cust-key-group > summary::-webkit-details-marker { display: none; }
.cust-key-group > summary::after { content: "▾"; color: var(--text-muted); transition: transform 0.15s; }
.cust-key-group[open] > summary::after { transform: rotate(180deg); }
.cust-key-count { color: var(--text-muted); font-size: 0.85rem; }
.cust-key-group-body { display: flex; flex-direction: column; gap: 0.5rem; padding: 0 0.6rem 0.6rem; }
.cust-key-group-body .cust-key { background: var(--bg); }
.cust-inline { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cust-inline input { flex: 1; min-width: 220px; background: var(--bg2); border: 1px solid var(--border); color: var(--text); padding: 0.55rem 0.75rem; border-radius: var(--radius); font: inherit; }
.cust-shop { display: flex; flex-direction: column; gap: 0.5rem; }
.cust-shop-row { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.cust-shop-row:last-child { border-bottom: none; }
.cust-hint { color: var(--text-muted); font-size: 0.85rem; }
.cust-stat-foot { color: var(--text-muted); font-size: 0.72rem; margin-top: 0.25rem; }

.cust-overview-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,34,255,0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(42,254,0,0.08), transparent 55%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.cust-overview-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.cust-overview-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.4rem 0;
  line-height: 1.15;
}
.cust-overview-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
  font-size: 0.92rem;
}
.cust-overview-live {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(10,13,16,0.55);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.cust-overview-live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #2afe00;
  box-shadow: 0 0 10px rgba(42, 254, 0, 0.85);
  animation: custPulse 1.8s ease-in-out infinite;
}
@keyframes custPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.65; }
}
.cust-overview-live-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cust-overview-live-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cust-panel-plain { background: transparent; border: none; }
.cust-shop-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 1rem auto;
}
.cust-shop-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9cb0ff;
  background: rgba(0, 34, 255, 0.15);
  border: 1px solid rgba(0, 34, 255, 0.5);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.cust-shop-notice h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 0.75rem 0;
}
.cust-shop-discord { margin-top: 1.25rem; }

@media (max-width: 820px) {
  .cust-sidebar { position: absolute; top: 0; left: 0; z-index: 10; box-shadow: 4px 0 24px #0009; }
  .cust-main-wrap { width: 100%; }
  .cust-topbar-back { display: none; }
}
@media (max-width: 520px) {
  .cust-whoami-name { display: none; }
  .cust-content { padding: 1rem; }
}

.guides-index-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.guides-index-head {
  text-align: center;
  margin-bottom: 3rem;
}
.guides-index-head .badge { margin-bottom: 1rem; }
.guides-index-head h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.guides-index-head p {
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto;
}

.guides-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

.guides-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.guides-section { display: block; }

.guide-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.guide-category-header .guide-cat-icon {
  font-size: 1.5rem;
  color: var(--blue-light);
}
.guide-category-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.guide-category-header .guide-cat-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
  color: inherit;
}
.guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 0 22px var(--blue-glow);
}

.guide-cover {
  aspect-ratio: 16 / 9;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.guide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  color: var(--blue-light);
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}

.guide-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.guide-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.guide-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.guide-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.guide-back {
  display: inline-block;
  color: var(--blue-light);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
}
.guide-back:hover { color: var(--cyan); }

.guide-cover-hero {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.guide-article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.guide-detail-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-glow);
  border: 1px solid #12b8c055;
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.guide-detail-cat .guide-cat-icon { font-size: 0.9rem; }

.guide-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.guide-detail-head h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.guide-edit-link {
  color: var(--blue-light);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.guide-edit-link:hover { border-color: var(--blue); color: var(--cyan); }

.guide-detail-summary {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0.5rem 0 1rem;
}

.guide-meta {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.guide-body {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  word-wrap: break-word;
}
.guide-body h1,
.guide-body h2,
.guide-body h3,
.guide-body h4 {
  color: var(--white);
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}
.guide-body h1 { font-size: 1.75rem; }
.guide-body h2 { font-size: 1.4rem; }
.guide-body h3 { font-size: 1.15rem; }
.guide-body h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue-light); }
.guide-body p { margin: 0 0 1rem; }
.guide-body a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 2px; }
.guide-body a:hover { color: var(--cyan); }
.guide-body ul,
.guide-body ol { margin: 0 0 1rem 1.5rem; padding: 0; }
.guide-body li { margin-bottom: 0.35rem; }
.guide-body strong { color: var(--white); }
.guide-body em { color: var(--text); }
.guide-body code {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--blue-light);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}
.guide-body pre {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  overflow-x: auto;
  margin: 0 0 1rem;
}
.guide-body pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text);
}
.guide-body blockquote {
  border-left: 3px solid var(--blue);
  background: var(--bg2);
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.guide-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.guide-body img { max-width: 100%; border-radius: var(--radius); margin: 1rem 0; border: 1px solid var(--border); }
.guide-body table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; }
.guide-body th,
.guide-body td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; text-align: left; }
.guide-body th { background: var(--bg2); color: var(--white); font-weight: 700; }

@media (max-width: 640px) {
  .guide-article { padding: 1.5rem 1.1rem; }
  .guide-detail-head { flex-direction: column; align-items: flex-start; }
}

.vouch-stars-input {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 1.9rem;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  color: #2c3338;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
  background: rgba(18, 184, 192, 0.03);
  border: 1px solid rgba(18, 184, 192, 0.08);
  width: max-content;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.vouch-stars-input:hover {
  border-color: rgba(18, 184, 192, 0.25);
  background: rgba(18, 184, 192, 0.06);
}
.vouch-stars-input span {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: color 0.18s ease, transform 0.22s cubic-bezier(.34,1.56,.64,1), text-shadow 0.18s ease, filter 0.18s ease;
  will-change: transform;
}
.vouch-stars-input span:hover {
  color: #5eeaf2;
  transform: translateY(-2px) scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 2px 8px rgba(18, 184, 192, 0.4));
}
.vouch-stars-input span.on {
  color: #12b8c0;
  text-shadow: 0 0 10px rgba(18, 184, 192, 0.55), 0 0 20px rgba(18, 184, 192, 0.25);
  animation: starPop 0.38s cubic-bezier(.34, 1.56, .64, 1) both;
}
.vouch-stars-input span.on:hover {
  color: #5eeaf2;
}

.vouch-stars-input span.just-picked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(18, 184, 192, 0.7);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.9;
  animation: starRipple 0.55s ease-out both;
  pointer-events: none;
}
@keyframes starPop {
  0%   { transform: scale(0.55) rotate(-18deg); opacity: 0.3; }
  55%  { transform: scale(1.35) rotate(6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes starRipple {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vouch-stars-input span,
  .vouch-stars-input span.on,
  .vouch-stars-input span:hover { animation: none !important; transform: none !important; }
  .vouch-stars-input span.just-picked::before { display: none; }
}

.oryth-toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(150%);
  background: #0d8a90;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 30px #12b8c066;
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  max-width: min(90vw, 420px);
  text-align: center;
}
.oryth-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.oryth-toast.ok {
  background: linear-gradient(135deg, #12b8c0, #2fd67a);
  box-shadow: 0 8px 30px rgba(47, 214, 122, 0.35);
}
.oryth-toast.err {
  background: linear-gradient(135deg, #ff4d4d, #c62828);
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.35);
}

.cust-msg {
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  background: transparent;
}
.cust-msg:empty { display: none; }
.cust-msg.err {
  background: rgba(255, 77, 77, 0.08);
  border-color: rgba(255, 77, 77, 0.3);
}
.cust-msg.ok {
  background: rgba(47, 214, 122, 0.08);
  border-color: rgba(47, 214, 122, 0.3);
}

.btn.is-loading {
  opacity: 0.75;
  cursor: progress;
  position: relative;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.55em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -0.15em;
  animation: oryth-spin 0.7s linear infinite;
}
@keyframes oryth-spin {
  to { transform: rotate(360deg); }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.media-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}
.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.media-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 24px var(--blue-glow);
  transform: translateY(-3px);
}
.media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-thumb-blank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: var(--text-muted);
}
.media-duration {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  background: rgba(8, 9, 11, 0.85);
  color: var(--blue-light);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.media-meta {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.media-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}
.media-game {
  color: var(--blue-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.media-status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(18, 184, 192, 0.15);
  color: var(--blue-light);
  border: 1px solid var(--blue);
}

body.landing-v3 {
 --bg: #05070d;
 --bg-2: #0a0d13;
 --panel: #0a0d10;
 --ink: #eef0f4;
 --ink-2: #c9cacd;
 --mute: #8a8f98;
 --dim: #5a6069;
 --line: rgba(255,255,255,.06);
 --line-2: rgba(255,255,255,.11);
 --card: #0a0d10;
 --card-hi: #0e1218;
 --cobalt: #0022ff;
 --cobalt-hi: #3346ff;
 --halo: rgba(0,89,255,.55);
 --accent: #4b7cff;
 --signal: #2afe00;
 --amber: #ffc043;
 --danger: #ff4d5e;
 --shadow-card: 0 8px 23px 5px rgba(0,0,0,.45);
 --shadow-lift: 0 16px 40px -10px rgba(0,34,255,.35), 0 0 0 1px rgba(0,34,255,.18) inset;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.landing-v3 .aurora {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(0,49,94,.55), transparent 62%),
    radial-gradient(760px 480px at 88% 8%, rgba(0,78,150,.32), transparent 65%),
    radial-gradient(600px 420px at 50% 110%, rgba(0,34,255,.14), transparent 70%),
    var(--bg);
}
body.landing-v3 .aurora-blob {
  position: absolute; width: 640px; height: 640px; border-radius: 2400px;
  filter: blur(100px); opacity: .62; mix-blend-mode: screen;
  animation: orb-float 26s ease-in-out infinite;
}
body.landing-v3 .aurora-blob.b1 { left: -180px; top: -160px; background: radial-gradient(circle at 30% 30%, #00315e, transparent 62%); }
body.landing-v3 .aurora-blob.b2 { right: -200px; top: 180px; background: radial-gradient(circle at 70% 40%, #03315c, transparent 62%); animation-delay: -9s; }
body.landing-v3 .aurora-blob.b3 { left: 35%; top: 780px; background: radial-gradient(circle at 50% 50%, #004e96, transparent 62%); animation-delay: -16s; opacity: .4; }
@keyframes orb-float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(36px,-22px,0) scale(1.06); }
  66% { transform: translate3d(-28px,18px,0) scale(.96); }
}
body.landing-v3 .aurora-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 28%, transparent 72%);
 -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 28%, transparent 72%);
}
body.landing-v3 .aurora-noise {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}
body.landing-v3 main { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

body.landing-v3 .navbar {
  position: sticky; top: 18px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 20px 10px 22px;
  background: rgba(10,13,16,.72);
  backdrop-filter: saturate(180%) blur(14px);
 -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(0,34,255,.05) inset;
}
body.landing-v3 .navbar .brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
body.landing-v3 .navbar .brand-logo {
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 10px rgba(0,89,255,.55));
}
body.landing-v3 .navbar .brand-name { font-size: 1rem; }
body.landing-v3 .brand-dot {
  color: var(--cobalt-hi);
  text-shadow: 0 0 10px rgba(0,89,255,.7);
}
body.landing-v3 .nav-links {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
body.landing-v3 .nav-links a {
  position: relative;
  color: var(--ink-2); text-decoration: none; font-size: .86rem;
  font-weight: 500; padding: 7px 12px;
  border-radius: 999px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
body.landing-v3 .nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
body.landing-v3 .nav-links .nav-signin {
  color: #fff; font-weight: 600;
  padding: 7px 16px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgb(0,34,255);
  box-shadow: 0 0 0 1px rgba(0,89,255,.45) inset, 0 6px 18px rgba(0,34,255,.35);
  transition: box-shadow .2s, transform .08s, background .2s;
}
body.landing-v3 .nav-links .nav-signin:hover {
  background: rgb(26,54,255);
  box-shadow: 0 0 0 1px rgba(0,89,255,.75) inset, 0 8px 22px rgba(0,34,255,.55);
}

body.landing-v3 .hero {
  padding: 90px 0 70px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}

body.landing-v3 .hero-chip { display: none !important; }

body.landing-v3 .hero-title {
  font-size: clamp(2.6rem, 6.8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 0 0 22px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fff 55%, rgba(255,255,255,.78) 100%);
 -webkit-background-clip: text; background-clip: text;
 -webkit-text-fill-color: transparent;
  max-width: 960px;
  text-wrap: balance;
}
body.landing-v3 .hero-title .rot-slot {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 7ch;
  text-align: center;
  position: relative;
  vertical-align: baseline;
}
body.landing-v3 .grad-word {
  position: relative;
  display: inline-block;
  color: var(--cobalt-hi);
 -webkit-text-fill-color: var(--cobalt-hi);
  font-style: normal;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(0,89,255,.45);
}
body.landing-v3 .grad-cursor {
  display: inline-block; width: 3px; height: .82em;
  margin-left: 3px; vertical-align: -.08em;
  background: var(--cobalt-hi);
  box-shadow: 0 0 10px rgba(0,89,255,.8);
  animation: blink 1s steps(2,end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

body.landing-v3 .hero-sub {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0 0 38px;
}
body.landing-v3 .hero-sub em { color: var(--ink); font-style: normal; font-weight: 600; }

body.landing-v3 .hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 42px;
}

body.landing-v3 .btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, box-shadow .22s, background .2s, border-color .2s;
  isolation: isolate;
  overflow: hidden;
}
body.landing-v3 .btn-primary {
  color: #fff;
  background: rgb(0,34,255);
  box-shadow:
    0 0 0 1px rgba(0,89,255,.55) inset,
    0 10px 30px rgba(0,34,255,.35);
}
body.landing-v3 .btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 160% at 50% 50%, rgba(0,89,255,.9) 0%, rgba(0,34,255,0) 70%);
  filter: blur(12px);
  opacity: .9;
  transition: opacity .25s;
}
body.landing-v3 .btn-primary:hover {
  transform: translateY(-1px);
  background: rgb(20,54,255);
  box-shadow:
    0 0 0 1px rgba(70,120,255,.8) inset,
    0 14px 38px rgba(0,34,255,.55);
}
body.landing-v3 .btn-primary:hover::before { opacity: 1; }
body.landing-v3 .btn-primary .btn-arrow { transition: transform .18s; }
body.landing-v3 .btn-primary:hover .btn-arrow { transform: translateX(4px); }
body.landing-v3 .btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
body.landing-v3 .btn-ghost:hover {
  background: rgba(0,34,255,.08);
  border-color: rgba(0,89,255,.55);
  color: #fff;
}
body.landing-v3 .btn:active { transform: translateY(1px); }
body.landing-v3 .discord-glyph {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  font-size: .9rem;
  color: #fff;
}
body.landing-v3 .btn-ghost .discord-glyph { color: var(--cobalt-hi); }

body.landing-v3 .hero-marquee {
  width: min(1100px, 95%);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
 -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  margin: 8px 0 42px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
body.landing-v3 .hero-marquee-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  color: var(--mute);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
body.landing-v3 .hero-marquee-track > span:nth-child(odd) { color: var(--ink); }
body.landing-v3 .hero-marquee-track > span.sep { color: var(--cobalt-hi); text-shadow: 0 0 8px rgba(0,89,255,.55); }

body.landing-v3 .hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  width: min(720px, 95%);
  margin-bottom: 36px;
}
body.landing-v3 .hero-stat-card {
  position: relative;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  text-align: left;
  overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .22s;
}
body.landing-v3 .hero-stat-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(0,34,255,.12), transparent 60%);
  opacity: 0; transition: opacity .22s;
}
body.landing-v3 .hero-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,89,255,.5);
  box-shadow: 0 16px 40px -10px rgba(0,34,255,.3);
}
body.landing-v3 .hero-stat-card:hover::before { opacity: 1; }
body.landing-v3 .hero-stat-card > * { position: relative; }
body.landing-v3 .hero-stat-card-val {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -.025em;
  color: #fff;
  line-height: 1.05;
}
body.landing-v3 .hero-stat-card-val .unit { font-size: 1rem; color: var(--ink-2); font-weight: 500; }
body.landing-v3 .hero-stat-card-val.live-num::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
  margin-right: 10px; vertical-align: .18em;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .65; }
}
body.landing-v3 .hero-stat-card-label {
  margin-top: 6px;
  color: var(--mute); font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
}

body.landing-v3 .hero-scroll {
  position: relative;
  width: 26px; height: 42px;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  margin-top: 12px;
  opacity: .6;
  transition: opacity .2s, border-color .2s;
}
body.landing-v3 .hero-scroll:hover { opacity: 1; border-color: var(--cobalt-hi); }
body.landing-v3 .hero-scroll span {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--cobalt-hi);
  box-shadow: 0 0 8px rgba(0,89,255,.7);
  animation: scroll-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: .4; }
}

body.landing-v3 .section { padding: 100px 0; position: relative; }
body.landing-v3 .section-head { text-align: center; margin-bottom: 54px; }

body.landing-v3 .section-eyebrow { display: none !important; }
body.landing-v3 .section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.08;
}
body.landing-v3 .section-head h2 .grad-word {
  color: var(--cobalt-hi);
 -webkit-text-fill-color: var(--cobalt-hi);
  text-shadow: 0 0 16px rgba(0,89,255,.35);
}
body.landing-v3 .section-head .section-sub {
  color: var(--ink-2);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

body.landing-v3 .products-grid,
body.landing-v3 .media-grid,
body.landing-v3 .vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
body.landing-v3 .products-grid > *,
body.landing-v3 .media-grid > *,
body.landing-v3 .vouches-grid > * {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, border-color .22s, box-shadow .25s;
  overflow: hidden;
  min-width: 0;
}
body.landing-v3 .products-grid > *:hover,
body.landing-v3 .media-grid > *:hover,
body.landing-v3 .vouches-grid > *:hover {
  transform: translateY(-3px);
  border-color: rgba(0,89,255,.55);
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(0,89,255,.25) inset;
}

body.landing-v3 .products-loading,
body.landing-v3 .media-loading,
body.landing-v3 .vouches-loading {
  grid-column: 1 / -1; text-align: center;
  color: var(--mute); padding: 72px 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body.landing-v3 .products-loading::before,
body.landing-v3 .media-loading::before,
body.landing-v3 .vouches-loading::before { display: none; }
body.landing-v3 .products-loading::after,
body.landing-v3 .media-loading::after,
body.landing-v3 .vouches-loading::after {
  content: ""; display: block; width: 34px; height: 34px;
  margin: 18px auto 0;
  border: 2px solid var(--line-2);
  border-top-color: var(--cobalt-hi);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

body.landing-v3 .product-card { display: flex; flex-direction: column; }
body.landing-v3 .prod-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0; flex: 1;
}
body.landing-v3 .prod-name,
body.landing-v3 .prod-desc,
body.landing-v3 .prod-duration,
body.landing-v3 .prod-status-msg {
  overflow-wrap: anywhere; word-break: break-word;
}
body.landing-v3 .prod-name { color: var(--ink); font-size: 1.1rem; font-weight: 700; letter-spacing: -.015em; }
body.landing-v3 .prod-desc { color: var(--ink-2); font-size: .92rem; line-height: 1.55; }
body.landing-v3 .prod-duration { color: var(--cobalt-hi); font-family: "JetBrains Mono", monospace; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
body.landing-v3 .prod-footer {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
body.landing-v3 .prod-price-wrap { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
body.landing-v3 .prod-price-label { font-size: .66rem; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
body.landing-v3 .prod-price { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
body.landing-v3 .prod-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgb(0,34,255); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: .82rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0,89,255,.4) inset, 0 6px 14px rgba(0,34,255,.25);
  transition: background .15s, box-shadow .2s, transform .12s;
}
body.landing-v3 .prod-cta:hover {
  background: rgb(26,54,255);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(70,120,255,.7) inset, 0 8px 18px rgba(0,34,255,.45);
}
body.landing-v3 .product-card.sold-out { opacity: .6; }
body.landing-v3 .product-card.sold-out .prod-cta {
  pointer-events: none;
  background: rgba(255,77,94,.15); color: var(--danger);
  box-shadow: 0 0 0 1px rgba(255,77,94,.4) inset;
}
body.landing-v3 .prod-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "JetBrains Mono", monospace; font-size: .68rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute);
  padding: 3px 8px; border-radius: 3px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  width: max-content;
}
body.landing-v3 .prod-dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
}
body.landing-v3 .prod-stock { font-size: .78rem; color: var(--mute); font-family: "JetBrains Mono", monospace; }
body.landing-v3 .prod-stock b { color: var(--signal); font-weight: 700; }
body.landing-v3 .product-card.sold-out .prod-stock { color: var(--danger); }
body.landing-v3 .prod-status-msg { font-size: .78rem; color: var(--amber); font-style: italic; }
body.landing-v3 .prod-img { aspect-ratio: 16/9; background: var(--bg-2); border-bottom: 1px solid var(--line); overflow: hidden; }
body.landing-v3 .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
body.landing-v3 .product-card:hover .prod-img img { transform: scale(1.04); }
body.landing-v3 .prod-img-blank {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(0,89,255,.35);
  background: linear-gradient(135deg, var(--bg-2), var(--card));
  height: 100%;
}

body.landing-v3 .media-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
body.landing-v3 .media-meta { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
body.landing-v3 .media-title { color: var(--ink); font-weight: 600; font-size: 1rem; line-height: 1.3; overflow-wrap: anywhere; }
body.landing-v3 .media-game { color: var(--cobalt-hi); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
body.landing-v3 .media-thumb { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; }
body.landing-v3 .media-duration {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(0,0,0,.82); color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 2px 8px; border-radius: 999px;
  font-size: .72rem; font-weight: 600;
}

body.landing-v3 .vouch-card { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
body.landing-v3 .vouch-body { color: var(--ink-2); font-size: .93rem; line-height: 1.6; overflow-wrap: anywhere; }
body.landing-v3 .vouch-head { display: flex; align-items: center; gap: 10px; min-width: 0; }
body.landing-v3 .vouch-name { color: var(--ink); font-weight: 700; font-size: .92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.landing-v3 .vouch-who { flex: 1; min-width: 0; }
body.landing-v3 .vouch-avatar {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgb(0,34,255), rgb(70,120,255));
  color: #fff; font-weight: 800; font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px rgba(0,89,255,.25);
}
body.landing-v3 .vouch-meta { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--mute); flex-wrap: wrap; }
body.landing-v3 .v-stars { color: var(--amber); letter-spacing: 1px; }
body.landing-v3 .v-stars .dim { color: var(--dim); }
body.landing-v3 .vouch-src {
  background: rgba(0,34,255,.18); color: #9fb3ff;
  border: 1px solid rgba(0,89,255,.4);
  font-size: .64rem; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; padding: 2px 7px; border-radius: 3px;
}
body.landing-v3 .vouch-target { font-size: .82rem; color: var(--mute); overflow-wrap: anywhere; }
body.landing-v3 .vouch-target b { color: var(--cobalt-hi); font-weight: 700; }

body.landing-v3 .cta-band { display: none !important; }

body.landing-v3 .discord-notice {
  max-width: 760px;
  margin: 20px auto 40px;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.landing-v3 .discord-notice::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 50% 0%, rgba(0,34,255,.18), transparent 60%);
  pointer-events: none;
}
body.landing-v3 .discord-notice > * { position: relative; }
body.landing-v3 .discord-notice p { color: var(--ink-2); margin: 0 0 14px; font-size: .98rem; line-height: 1.55; }
body.landing-v3 .discord-notice .btn { margin: 0 auto; }

body.landing-v3 .footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: 44px 24px;
  background: rgba(5,7,13,.72);
  margin-top: 40px;
}
body.landing-v3 .footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
body.landing-v3 .footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 700; letter-spacing: -.01em;
}
body.landing-v3 .footer-brand .brand-logo { width: 22px; height: 22px; filter: drop-shadow(0 0 6px rgba(0,89,255,.45)); }
body.landing-v3 .footer-links { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
body.landing-v3 .footer-links a {
  color: var(--mute); text-decoration: none; font-size: .86rem;
  transition: color .15s;
}
body.landing-v3 .footer-links a:hover { color: var(--cobalt-hi); }
body.landing-v3 .footer-copy { color: var(--dim); font-size: .78rem; font-style: normal; }

body.landing-v3 .bg-grid, body.landing-v3 .bg-glow { display: none !important; }
body.landing-v3 .section-connector { display: none !important; }
body.landing-v3 .eyebrow { display: none !important; }

@media (max-width: 820px) {
  body.landing-v3 .hero-stat-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body.landing-v3 .navbar {
    top: 10px;
    padding: 8px 14px 8px 16px;
    width: calc(100% - 20px);
    gap: 10px;
  }
  body.landing-v3 .nav-links { gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch; flex: 1; justify-content: flex-end; }
  body.landing-v3 .nav-links a { font-size: .8rem; white-space: nowrap; padding: 6px 8px; }
  body.landing-v3 .nav-links .nav-signin { padding: 6px 12px; margin-left: 4px; }
  body.landing-v3 .hero { padding: 60px 0 50px; }
  body.landing-v3 .section { padding: 70px 0; }
}
@media (max-width: 540px) {
  body.landing-v3 .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  body.landing-v3 .hero-actions { flex-direction: column; width: 100%; padding: 0 12px; }
  body.landing-v3 .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  body.landing-v3 .aurora-blob,
  body.landing-v3 .hero-marquee-track,
  body.landing-v3 .grad-cursor,
  body.landing-v3 .hero-scroll span { animation: none !important; }
}

body.landing-v2-deprecated {
 --bg: #fbfbfd;
 --bg-alt: #f5f5f7;
 --text: #1d1d1f;
 --text-muted: #6e6e73;
 --accent: #0071e3;
 --accent-hover: #0077ed;
 --border-soft: #d2d2d7;
 --card: #ffffff;
 --card-shadow: 0 1px 2px rgba(0,0,0,.03), 0 4px 24px rgba(0,0,0,.04);
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: dark) {
  body.landing-v2 {
 --bg: #000;
 --bg-alt: #0b0b0f;
 --text: #f5f5f7;
 --text-muted: #a1a1a6;
 --border-soft: #2a2a2e;
 --card: #141418;
 --card-shadow: 0 1px 2px rgba(0,0,0,.4), 0 4px 28px rgba(0,0,0,.5);
  }
}

body.landing-v2 .navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
 -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
body.landing-v2 .navbar .brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 600; text-decoration: none;
}
body.landing-v2 .navbar .brand-logo { width: 26px; height: 26px; }
body.landing-v2 .navbar .brand-name { font-size: 1.02rem; letter-spacing: -.01em; }
body.landing-v2 .nav-links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
body.landing-v2 .nav-links a {
  color: var(--text); text-decoration: none; font-size: .88rem;
  font-weight: 400; opacity: .84; transition: opacity .15s;
}
body.landing-v2 .nav-links a:hover { opacity: 1; }
body.landing-v2 .nav-links .nav-signin { color: var(--accent); opacity: 1; font-weight: 500; }

body.landing-v2 main { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
body.landing-v2 .hero {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}
body.landing-v2 .hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--text);
}
body.landing-v2 .hero-sub {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 36px;
  font-weight: 400;
}
body.landing-v2 .hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
}
body.landing-v2 .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .18s, color .18s, border-color .18s, transform .08s;
  cursor: pointer;
}
body.landing-v2 .btn-primary {
  background: var(--accent); color: #fff;
}
body.landing-v2 .btn-primary:hover { background: var(--accent-hover); }
body.landing-v2 .btn-ghost {
  background: transparent; color: var(--accent); border-color: transparent;
}
body.landing-v2 .btn-ghost:hover { text-decoration: underline; }
body.landing-v2 .btn:active { transform: translateY(1px); }

body.landing-v2 .hero-stat-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 18px 28px;
  box-shadow: var(--card-shadow);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
body.landing-v2 .hero-stat-card-val {
  font-size: 1.6rem; font-weight: 600; letter-spacing: -.02em; color: var(--text);
}
body.landing-v2 .hero-stat-card-label { color: var(--text-muted); font-size: .85rem; }

body.landing-v2 .section { padding: 100px 0; }
body.landing-v2 .section-head { text-align: center; margin-bottom: 56px; }
body.landing-v2 .section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.028em;
  margin: 0 0 10px;
  color: var(--text);
}
body.landing-v2 .section-head .section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}

body.landing-v2 .products-grid,
body.landing-v2 .media-grid,
body.landing-v2 .vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
body.landing-v2 .products-grid > *,
body.landing-v2 .media-grid > *,
body.landing-v2 .vouches-grid > * {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
body.landing-v2 .products-grid > *:hover,
body.landing-v2 .media-grid > *:hover,
body.landing-v2 .vouches-grid > *:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 16px 40px rgba(0,0,0,.08);
}
body.landing-v2 .products-loading,
body.landing-v2 .media-loading,
body.landing-v2 .vouches-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 56px 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.landing-v2 .footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 24px;
  background: var(--bg-alt);
  margin-top: 40px;
}
body.landing-v2 .footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
body.landing-v2 .footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 500;
}
body.landing-v2 .footer-brand .brand-logo { width: 22px; height: 22px; }
body.landing-v2 .footer-links {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center;
}
body.landing-v2 .footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: .85rem;
}
body.landing-v2 .footer-links a:hover { color: var(--text); text-decoration: underline; }
body.landing-v2 .footer-copy { color: var(--text-muted); font-size: .8rem; }

body.landing-v2 .hero-title .line { display: inline; }
body.landing-v2 .hero-title .grad,
body.landing-v2 .section-head .grad {
  background: none;
 -webkit-background-clip: initial;
  background-clip: initial;
 -webkit-text-fill-color: currentColor;
  color: var(--text);
}
body.landing-v2 .eyebrow { display: none; }
body.landing-v2 .section-connector { display: none; }
body.landing-v2 .bg-grid,
body.landing-v2 .bg-glow { display: none !important; }

@media (max-width: 720px) {
  body.landing-v2 .navbar { padding: 12px 16px; }
  body.landing-v2 .nav-links { gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  body.landing-v2 .nav-links a { font-size: .82rem; white-space: nowrap; }
  body.landing-v2 .hero { padding: 80px 0 60px; min-height: auto; }
  body.landing-v2 .section { padding: 72px 0; }
}

body.landing-v3 .sub-hero {
  position: relative;
  z-index: 1;
  padding: 96px 0 36px;
  text-align: center;
}
body.landing-v3 .sub-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
body.landing-v3 .sub-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0.35rem 0 0.9rem;
  color: var(--ink);
}
body.landing-v3 .sub-hero-title .grad-word {
  background: linear-gradient(92deg, #3b6bff 0%, #6a8dff 60%, #8aa7ff 100%);
 -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.landing-v3 .sub-hero-sub {
  font-size: 1.07rem;
  color: var(--mute);
  margin: 0;
  line-height: 1.6;
}
body.landing-v3 .sub-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
}

body.landing-v3 .orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
}
body.landing-v3 .orb.orb-a {
  width: 520px; height: 520px;
  left: -160px; top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(0,49,94,0.8), transparent 65%);
}
body.landing-v3 .orb.orb-b {
  width: 520px; height: 520px;
  right: -180px; top: 220px;
  background: radial-gradient(circle at 70% 40%, rgba(3,49,92,0.6), transparent 65%);
  animation: orb-float 30s ease-in-out infinite;
  animation-delay: -8s;
}

body.landing-v3 .faq-list,
body.landing-v3 .tos-card,
body.landing-v3 .guides-sections {
  position: relative;
  z-index: 1;
  margin: 0 auto 96px;
  max-width: 820px;
}
body.landing-v3 .section-narrow { padding: 16px 0 72px; }
body.landing-v3 .guides-index-wrap { padding: 16px 0 72px; }
