/* ============================================================================
   NEXUS DEX — marketing site v2 "Next Gen"
   Dark-neon design system. #05060a base, #00ff88 primary, cyan/violet accents.
   Type: Space Grotesk (display) + Inter (body).
   ============================================================================ */

:root {
  --bg: #05060a;
  --bg-raised: #0a0d14;
  --bg-glass: rgba(13, 17, 26, 0.55);
  --line: #1a2030;
  --line-bright: #263047;
  --text: #e6e8ee;
  --text-dim: #b8c0d0;
  --text-faint: #7a8395;
  --green: #00ff88;
  --green-soft: rgba(0, 255, 136, 0.12);
  --cyan: #00e5ff;
  --violet: #a78bfa;
  --danger: #ff5470;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------------
   Ambient background layers
   --------------------------------------------------------------------------- */
.panel { position: relative; overflow: clip; }

.panel__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aurora {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora--green  { background: radial-gradient(circle, rgba(0,255,136,0.5), transparent 65%); top: -20%; left: -10%; }
.aurora--cyan   { background: radial-gradient(circle, rgba(0,229,255,0.4), transparent 65%); bottom: -30%; right: -10%; animation-delay: -6s; }
.aurora--violet { background: radial-gradient(circle, rgba(167,139,250,0.4), transparent 65%); top: -10%; right: -15%; animation-delay: -12s; }
.aurora--right  { left: auto; right: -15%; }
.aurora--left   { right: auto; left: -15%; }
.aurora--center { left: 50%; top: 40%; transform: translate(-50%, -50%); }

@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6%, 8%, 0) scale(1.15); }
}

.hexgrid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(0,255,136,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
}

/* Star canvas sits behind hero copy */
#starfield {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Noise overlay for depth */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------------
   Nav
   --------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--nav-h);
  padding: 0 clamp(16px, 4vw, 40px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}

.nav__brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--green);
  text-decoration: none;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav__links {
  display: flex; gap: 24px;
  margin-left: auto;
}
.nav__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--green); }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
}

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, #00ff88, #00d9a3);
  color: #04120b;
  box-shadow: 0 0 0 1px rgba(0,255,136,0.4), 0 8px 32px -8px rgba(0,255,136,0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0,255,136,0.7), 0 14px 44px -8px rgba(0,255,136,0.6);
}

.btn--ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line-bright);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(0,255,136,0.5);
  color: var(--green);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   Typography
   --------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.display--md { font-size: clamp(30px, 4.6vw, 52px); }
.display--sm { font-size: clamp(24px, 3.4vw, 36px); }

.display__accent {
  background: linear-gradient(100deg, var(--green) 10%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display__accent--violet {
  background-image: linear-gradient(100deg, var(--violet) 10%, var(--cyan) 90%);
}

.lede {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,136,0.25);
  background: var(--green-soft);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.microcopy { color: var(--text-faint); font-size: 13.5px; }
.microcopy__pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   Layout panels
   --------------------------------------------------------------------------- */
.panel__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 11vh, 130px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
.panel__inner--reverse { direction: rtl; }
.panel__inner--reverse > * { direction: ltr; }
.panel__inner--col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 900px) {
  .panel__inner, .panel__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }
  .feature__copy .bullets, .hero__copy .cta-row { justify-content: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .lede { margin-left: auto; margin-right: auto; }
}

/* ---------------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------------- */
.panel--hero { min-height: 100svh; display: flex; align-items: center; }
.panel--hero .panel__inner { padding-top: calc(var(--nav-h) + 48px); width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  color: var(--text-dim);
  font-size: 13.5px;
}
.hero__proof strong { color: var(--green); font-variant-numeric: tabular-nums; }

/* Phone mockups */
.hero__phone, .feature__phone {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: min(330px, 76vw); /* uniform: all phones match the hero */
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
}
.phone--hero { width: min(330px, 76vw); }

.phone__bezel {
  position: relative;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #1c2230, #0a0d14 60%);
  border: 1px solid var(--line-bright);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 40px 80px -20px rgba(0,0,0,0.8),
    0 0 120px -30px rgba(0,255,136,0.25);
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 24px;
  background: #05060a;
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: auto; /* keep natural aspect ratio; HTML height attr must not squash */
  border-radius: 34px;
  position: relative;
  z-index: 1;
}
.phone__glow {
  position: absolute; inset: 0;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), transparent 32%);
  pointer-events: none;
  z-index: 3;
}
.phone__shadow {
  position: absolute;
  left: 8%; right: 8%; bottom: -34px;
  height: 44px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.28), transparent 70%);
  filter: blur(18px);
}

/* Floating chips around the hero phone */
.chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--line-bright);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.7);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: chip-float 5.5s ease-in-out infinite;
}
.chip svg { flex: none; }
.chip--1 { top: 12%; left: -18%; animation-delay: 0s; }
.chip--2 { top: 42%; right: -22%; animation-delay: -1.8s; }
.chip--3 { bottom: 14%; left: -14%; animation-delay: -3.4s; }
.chip small { display: block; color: var(--text-faint); font-weight: 500; font-size: 11px; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .chip--1 { left: -2%; }
  .chip--2 { right: -2%; }
  .chip--3 { left: 0; bottom: 8%; }
}

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

/* ---------------------------------------------------------------------------
   Stats ribbon
   --------------------------------------------------------------------------- */
.ribbon {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 20, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.ribbon__track {
  display: flex;
  gap: 64px;
  width: max-content;
  padding: 18px 0;
  animation: ribbon-scroll 32s linear infinite;
}
.ribbon:hover .ribbon__track { animation-play-state: paused; }
.ribbon__item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.ribbon__item strong { color: var(--green); font-family: var(--font-display); }
@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon__track { animation: none; }
}

/* ---------------------------------------------------------------------------
   Features
   --------------------------------------------------------------------------- */
.bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullets li {
  position: relative;
  padding-left: 30px;
  color: var(--text-dim);
  font-size: 15.5px;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--green-soft);
  border: 1px solid rgba(0,255,136,0.4);
}
.bullets li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .bullets { align-items: center; }
  .bullets li { text-align: left; }
}

/* ---------------------------------------------------------------------------
   Pricing
   --------------------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 940px;
  margin-top: 18px;
}
.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--pro {
  box-shadow: 0 0 60px -20px rgba(0,255,136,0.35);
  background:
    linear-gradient(var(--bg-glass), var(--bg-glass)) padding-box,
    linear-gradient(135deg, rgba(0,255,136,0.7), rgba(0,229,255,0.4)) border-box;
  border: 1px solid transparent;
}
.price-card--pro:hover { box-shadow: 0 0 90px -20px rgba(0,255,136,0.5); }

.price-card__badge {
  position: absolute;
  top: -13px; right: 22px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #04120b;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}
.price-card__price span { font-size: 15px; color: var(--text-faint); font-weight: 500; letter-spacing: 0; }
.price-card__note { color: var(--text-faint); font-size: 13px; margin: 4px 0 20px; }
.price-card .bullets { margin-bottom: 24px; }
.price-card .bullets li { font-size: 14.5px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------------- */
.faq {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.25s;
  text-align: left;
}
.faq details[open] { border-color: rgba(0,255,136,0.35); }
.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line-bright);
  color: var(--green);
  font-weight: 500;
  transition: transform 0.3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ---------------------------------------------------------------------------
   CTA + email form
   --------------------------------------------------------------------------- */
.store-row { display: flex; gap: 16px; margin: 10px 0 30px; flex-wrap: wrap; justify-content: center; }
.store {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: #fff;
  color: #05060a;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.store:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(255,255,255,0.35); }
.store svg { grid-row: span 2; }
.store__small { font-size: 11px; line-height: 1.2; opacity: 0.75; }
.store__big { font-size: 18px; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }

/* Coming-soon store (Google Play / Android) */
.store--soon {
  position: relative;
  cursor: default;
  background: rgba(255,255,255,0.06);
  color: #f4f6fb;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}
.store--soon:hover { transform: none; box-shadow: none; }
.store--soon .store__small,
.store--soon .store__big { opacity: 0.85; }
.store__badge {
  position: absolute;
  top: -10px;
  right: -8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #05060a;
  background: linear-gradient(135deg, #00e08a, #00d1c8);
  box-shadow: 0 6px 16px -6px rgba(0,224,138,0.6);
  white-space: nowrap;
}

.email-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin-top: 6px;
}
.email-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-bright);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.email-form input:focus {
  border-color: rgba(0,255,136,0.6);
  box-shadow: 0 0 0 4px rgba(0,255,136,0.12);
}
@media (max-width: 520px) {
  .email-form { flex-direction: column; }
}
.form-status { min-height: 22px; font-size: 14px; color: var(--text-faint); margin-top: 10px; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--danger); }

/* ---------------------------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .aurora, .chip, .scroll-hint, .eyebrow__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: #070910;
  position: relative;
  z-index: 1;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px clamp(20px, 5vw, 48px) 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer__brand span { color: var(--text); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
}
.footer__links a:hover { color: var(--green); }
.footer__legal {
  color: #3a4358;
  font-size: 12px;
  max-width: 72ch;
  margin: 0;
}

/* ============================================================================
   SUBPAGES (privacy / terms / support)
   ============================================================================ */
.subpage {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 5vw, 40px) 90px;
}
.subpage h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.subpage .updated { color: var(--text-faint); font-size: 13.5px; margin-bottom: 34px; }
.subpage h2 {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 42px 0 12px;
  color: var(--text);
}
.subpage h3 { font-size: 16px; margin: 26px 0 8px; }
.subpage p, .subpage li { color: var(--text-dim); font-size: 15.5px; }
.subpage ul { padding-left: 22px; }
.subpage .card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid rgba(0,255,136,0.25);
  backdrop-filter: blur(10px);
  margin: 24px 0;
}
.subpage .card p { margin: 0; }
.subpage .card strong { color: var(--green); }
.subpage a { text-decoration-color: rgba(0,255,136,0.4); }
.subpage .related {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 14px;
}
.subpage .backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
}
.subpage .backlink:hover { color: var(--green); }

/* ============================================================
   LEGACY RULES for verified-welcome.html (from v1 stylesheet)
   ============================================================ */
.panel__bg--hero {
  /* Hero gets a stronger top vignette to seat the nav. */
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0, 230, 118, 0.08), transparent 70%);
}
.nav__logo { filter: drop-shadow(0 0 10px var(--green-glow-soft)); }
