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

:root {
  /* Color */
  --navy: #010A49;
  --navy-rgb: 1, 10, 73;
  --navy-soft: #131b5e;
  --accent: #F5A623;
  --accent-rgb: 245, 166, 35;
  --accent-soft: #FFE9C2;
  --accent-text: #8a5c0c;
  --bg: #ffffff;
  --bg-alt: #F7F8FC;
  --text: #0B1130;
  --muted: #5B6280;
  --border: #E7E9F5;
  --success: #1E9E6B;
  --danger: #C94B4B;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;

  /* Radius / shadow / border-width */
  --radius-xs: 12px;
  --radius-sm: 14px;
  --radius-md: 16px;
  --radius: 20px;
  --radius-pill: 30px;
  --shadow: 0 24px 60px rgba(var(--navy-rgb), 0.10);
  --border-width: 1px;
  --border-width-thick: 2px;

  /* Motion */
  --transition-snappy: 0.1s;
  --transition-fast: 0.2s;
  --transition-slow: 0.3s;

  /* Type */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Menlo', monospace;
  /* Hero/section headline tier — shared across h1, section titles, CTA */
  --text-2xs: 0.5rem;
  --text-xs: 0.72rem;
  --text-80: 0.8rem;
  --text-85: 0.85rem;
  --text-90: 0.9rem;
  --text-92: 0.92rem;
  --text-base: 0.95rem;
  --text-md: 1rem;
  --text-105: 1.05rem;
  --text-110: 1.1rem;
  --text-lg: 1.2rem;
  --text-140: 1.4rem;
  --text-xl: clamp(1.9rem, 4vw, 2.7rem);
  --text-2xl: clamp(2.2rem, 5vw, 3.2rem);
  --text-2xl-cta: clamp(2.1rem, 5vw, 3.1rem);
  --text-3xl: clamp(2.6rem, 6vw, 4.6rem);

  /* Spacing scale — literal px values actually used in this file */
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-18: 18px;
  --space-20: 20px;
  --space-22: 22px;
  --space-23: 23px;
  --space-24: 24px;
  --space-28: 28px;
  --space-30: 30px;
  --space-32: 32px;
  --space-36: 36px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-72: 72px;
  --space-90: 90px;
  --space-100: 100px;
  --space-120: 120px;
  --space-140: 140px;
  --space-240: 240px;

  /* Content measure (max-widths) */
  --measure-container: 1260px;
  --measure-hero-title: 820px;
  --measure-hero-sub: 560px;
  --measure-hero-visual: 900px;
  --measure-waitlist: 440px;
  --measure-spotlight-sub: 460px;
  --measure-how: 780px;
  --measure-card-min: 300px;
  --measure-trust-sub: 640px;

  /* One-off component sizes */
  --size-logo: 68px;
}

html { scroll-behavior: smooth; }

.container {
  max-width: var(--measure-container);
  margin: 0 auto;
  padding: 0 var(--space-40);
}

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

/* SIDE RAIL — shared cross-app nav (same component as vinted-discord-alerts'
   public-site/explore page): the only way back to /explore from here, so every
   page that has it must keep it. Own class names (side-nav/side-icon/side-logo),
   not reusing .logo/.logo-mark/.nav-*, so this can't collide with admin.html's
   separate .admin-header, which never includes this rail. */
:root {
  --size-logo-rail: 56px;
  --side-nav-width: 72px;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--side-nav-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  padding: var(--space-8) var(--space-8) var(--space-20);
  background: var(--bg-alt);
  border-right: var(--border-width) solid var(--border);
  z-index: 200;
}

.side-logo { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.side-logo-mark { width: var(--size-logo-rail); height: var(--size-logo-rail); display: block; }

.side-icons { display: flex; flex-direction: column; gap: var(--space-12); flex: 1; }

.side-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.side-icon:hover { background: rgba(var(--navy-rgb), 0.06); color: var(--navy); }
.side-icon.active { background: rgba(var(--navy-rgb), 0.08); color: var(--navy); }

.site-content { margin-left: var(--side-nav-width); }

@media (max-width: 700px) {
  .side-nav {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-10) var(--space-16);
    border-right: none;
    border-bottom: var(--border-width) solid var(--border);
  }
  .side-icons { flex-direction: row; flex: 0; }
  .site-content { margin-left: 0; }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: var(--side-nav-width);
  width: calc(100% - var(--side-nav-width));
  z-index: 100;
  padding: var(--space-18) 0;
  background: rgba(var(--white-rgb), 0.85);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-width) solid var(--border);
  transform: translateY(0);
  transition: transform var(--transition-slow) ease;
}

@media (max-width: 700px) {
  nav { left: 0; width: 100%; }
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark { width: var(--size-logo); height: var(--size-logo); display: block; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-28);
  margin-left: auto;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-92);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.nav-link:hover { color: var(--navy); }

/* BUTTONS */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: var(--space-14) var(--space-24);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition-fast), transform var(--transition-snappy);
}
.btn-primary:hover { background: var(--navy-soft); }
.btn-primary:active { transform: scale(0.98); }

.btn-small { padding: var(--space-10) var(--space-18); font-size: var(--text-85); border-radius: var(--radius-xs); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-140) var(--space-24) var(--space-100);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: calc(var(--space-240) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: var(--measure-hero-visual);
  height: var(--measure-hero-visual);
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  background: var(--accent-soft);
  border: var(--border-width) solid rgba(var(--accent-rgb), 0.4);
  color: var(--accent-text);
  padding: var(--space-6) var(--space-16);
  border-radius: var(--radius);
  font-size: var(--text-80);
  font-weight: 600;
  margin-bottom: var(--space-28);
  letter-spacing: 0.03em;
}

.badge::before { content: '●'; font-size: var(--text-2xs); color: var(--accent); }

h1 {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: var(--measure-hero-title);
  margin-bottom: var(--space-20);
  color: var(--navy);
}

h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: var(--measure-hero-sub);
  margin-bottom: var(--space-48);
}

/* WAITLIST FORM */
.waitlist-form {
  display: flex;
  gap: var(--space-10);
  width: 100%;
  max-width: var(--measure-waitlist);
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  color: var(--text);
  padding: var(--space-14) var(--space-18);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--navy);
}

.waitlist-form input::placeholder { color: var(--muted); }

.form-note {
  margin-top: var(--space-14);
  font-size: var(--text-80);
  color: var(--muted);
}

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-10);
  color: var(--success);
  font-weight: 600;
  font-size: var(--text-md);
}

.form-success::before { content: '✓'; font-size: var(--text-lg); }

/* HERO VISUAL + ASSET SLOTS */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: var(--measure-hero-visual);
  margin-top: var(--space-72);
}

.asset-slot {
  border: var(--border-width-thick) dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  color: var(--muted);
  padding: var(--space-20);
  text-align: center;
}

.slot-label {
  font-size: var(--text-85);
  font-weight: 600;
  color: var(--navy);
}

.slot-file {
  font-family: var(--font-mono);
  font-size: var(--text-80);
  font-weight: 600;
  color: var(--navy);
}

.slot-size {
  font-size: var(--text-xs);
  color: var(--muted);
}

.asset-slot-icon {
  width: var(--space-64);
  height: var(--space-64);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-22);
  padding: 0;
}
.asset-slot-icon .slot-file { font-size: var(--text-2xs); line-height: 1.2; }

.asset-slot-dark {
  background: rgba(var(--white-rgb), 0.06);
  border-color: rgba(var(--white-rgb), 0.25);
}
.asset-slot-dark .slot-file, .asset-slot-dark .slot-size { color: rgba(var(--white-rgb), 0.85); }

.floating-chip {
  position: absolute;
  background: var(--white);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: var(--space-10) var(--space-16);
  font-size: var(--text-85);
  font-weight: 600;
  color: var(--navy);
}

.chip-1 { top: 8%; left: -4%; }
.chip-2 { bottom: 10%; right: -4%; }

/* SECTION LABELS */
.section-label {
  text-align: center;
  font-size: var(--text-80);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-16);
}

.section-label-light { color: var(--accent); }

.section-title {
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-64);
  color: var(--navy);
}

/* FEATURES */
.features {
  padding: var(--space-120) var(--space-24);
  max-width: var(--measure-container);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--measure-card-min), 1fr));
  gap: var(--space-28);
}

.feature-card {
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-36) var(--space-32);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-10);
  letter-spacing: -0.01em;
  color: var(--navy);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.65;
}

/* SAFETY SPOTLIGHT */
.spotlight {
  background: var(--navy);
  padding: var(--space-120) var(--space-24);
}

.spotlight-inner {
  max-width: var(--measure-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.spotlight-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-24);
}

.spotlight-sub {
  color: rgba(var(--white-rgb), 0.75);
  font-size: var(--text-105);
  max-width: var(--measure-spotlight-sub);
}

/* COMPARE */
.compare {
  padding: var(--space-120) var(--space-24);
  max-width: var(--measure-container);
  margin: 0 auto;
  text-align: center;
}

.compare-toggle {
  display: inline-flex;
  gap: var(--space-4);
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-48);
}

.compare-btn {
  background: none;
  border: none;
  padding: var(--space-10) var(--space-24);
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: var(--text-90);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.compare-btn.active {
  background: var(--navy);
  color: var(--white);
}

.compare-panels { position: relative; text-align: left; }

.compare-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-40);
  align-items: center;
}

.compare-panel.active { display: grid; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.compare-list li {
  position: relative;
  padding-left: var(--space-30);
  color: var(--text);
  font-weight: 600;
  font-size: var(--text-md);
}

#panel-manual .compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 600;
}

#panel-fillo .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

/* HOW IT WORKS */
.how {
  padding: var(--space-120) var(--space-24);
  background: var(--bg-alt);
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
}

.how-inner {
  max-width: var(--measure-how);
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-56);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: var(--space-23);
  top: var(--space-12);
  bottom: var(--space-12);
  width: var(--border-width-thick);
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.step {
  display: flex;
  gap: var(--space-28);
  padding-bottom: var(--space-48);
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step-num {
  width: var(--space-48);
  height: var(--space-48);
  min-width: var(--space-48);
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-90);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: var(--text-110);
  font-weight: 600;
  margin-bottom: var(--space-6);
  margin-top: var(--space-10);
  color: var(--navy);
}

.step-content p {
  color: var(--muted);
  font-size: var(--text-base);
}

/* PRICING */
.pricing {
  padding: var(--space-120) var(--space-24);
  max-width: var(--measure-container);
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--measure-card-min), 1fr));
  gap: var(--space-24);
  text-align: left;
  margin-top: var(--space-16);
}

.pricing-card {
  position: relative;
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-32);
}

.pricing-card.popular {
  border-color: var(--accent);
  border-width: var(--border-width-thick);
}

.pricing-badge {
  position: absolute;
  top: calc(var(--space-16) * -1);
  left: var(--space-32);
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-80);
  font-weight: 600;
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-pill);
}

.pricing-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-10);
}

.pricing-price {
  font-size: var(--text-140);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-16);
}
.pricing-price span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--muted);
}

.pricing-card > p:not(.pricing-price) {
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: var(--space-24);
}

.pricing-card .btn-primary { width: 100%; text-align: center; }

/* PLATFORMS */
.platforms {
  padding: var(--space-90) var(--space-24);
  text-align: center;
}

.platform-chips {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-top: var(--space-32);
}

.chip {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  padding: var(--space-10) var(--space-20);
  border-radius: var(--radius-pill);
  font-size: var(--text-90);
  font-weight: 600;
  color: var(--navy);
}

.chip .dot {
  width: var(--space-8);
  height: var(--space-8);
  background: var(--success);
  border-radius: 50%;
}

/* TRUST DETAILS */
.trust {
  padding: var(--space-120) var(--space-24);
  max-width: var(--measure-container);
  margin: 0 auto;
  text-align: center;
}

.trust-sub {
  color: var(--muted);
  font-size: var(--text-md);
  max-width: var(--measure-trust-sub);
  margin: 0 auto var(--space-64);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--measure-card-min), 1fr));
  gap: var(--space-24);
  text-align: left;
}

.trust-card {
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-32);
}

.trust-badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}

.trust-icon {
  width: var(--space-40);
  height: var(--space-40);
  min-width: var(--space-40);
  border-radius: var(--radius-xs);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.trust-icon .slot-file { font-size: var(--text-2xs); line-height: 1.1; }

.trust-eyebrow {
  font-size: var(--text-85);
  font-weight: 600;
  color: var(--accent-text);
}

.trust-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-10);
  color: var(--navy);
}

.trust-card p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.65;
}

/* CTA BOTTOM */
.cta-bottom {
  padding: var(--space-140) var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.cta-bottom h2 {
  font-size: var(--text-2xl-cta);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-16);
  color: var(--navy);
}

.cta-bottom p {
  color: var(--muted);
  margin-bottom: var(--space-40);
}

/* FOOTER */
footer {
  border-top: var(--border-width) solid var(--border);
  padding: var(--space-32) 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-12);
}

footer p {
  font-size: var(--text-85);
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-85);
}
footer a:hover { color: var(--navy); }

/* MODALS (auth + account) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.5);
  z-index: 300; /* above .side-nav (200) unconditionally, not just by DOM order */
  align-items: center;
  justify-content: center;
  padding: var(--space-24);
}
.modal-overlay.open { display: flex; }

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-40);
  width: 100%;
  max-width: var(--measure-waitlist);
  max-height: 90vh;
  overflow-y: auto;
}

/* Wide enough to hold the embedded Vinted Alerts admin panel (own left rail + grid) at
   a usable size — the plain account modal's narrower measure-waitlist width would
   otherwise cramp it. */
.modal-wide { max-width: 1100px; }

.alerts-admin-frame {
  width: 100%;
  height: 70vh;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-sm);
}

.modal-close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background: none;
  border: none;
  font-size: var(--text-2xl-cta);
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.modal-close:hover { color: var(--navy); }

.modal-tabs {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-24);
  border-bottom: var(--border-width) solid var(--border);
}

.modal-tab {
  background: none;
  border: none;
  padding: var(--space-10) var(--space-4);
  margin-bottom: calc(var(--border-width) * -1);
  border-bottom: var(--border-width-thick) solid transparent;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.modal-tab.active { color: var(--navy); border-bottom-color: var(--accent); }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.auth-form input {
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  color: var(--text);
  padding: var(--space-14) var(--space-18);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}
.auth-form input:focus { border-color: var(--navy); }

.auth-error {
  color: var(--danger);
  font-size: var(--text-85);
  min-height: 1em;
}

.account-status-badge {
  display: inline-block;
  font-size: var(--text-85);
  font-weight: 600;
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-24);
}
.account-status-badge.active { background: var(--accent-soft); color: var(--success); }
.account-status-badge.inactive { background: var(--bg-alt); color: var(--danger); }

.account-block { margin-bottom: var(--space-24); }

.account-block-label {
  font-size: var(--text-85);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-6);
}

.account-block p { font-size: var(--text-base); color: var(--muted); margin-bottom: var(--space-10); }

.account-paycode {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
}

.account-plan-amounts, .payments-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  font-size: var(--text-85);
  color: var(--muted);
}

.payments-empty { color: var(--muted); }

/* ADMIN PANEL */
.hidden { display: none; }

.admin-page {
  padding: var(--space-64) var(--space-24);
  max-width: var(--measure-container);
}

.admin-header {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-40);
}
.admin-header .logo-mark { width: var(--space-40); height: var(--space-40); }
.admin-header h1 { font-size: var(--text-xl); font-weight: 600; color: var(--navy); flex: 1; }

.admin-login-card {
  background: var(--bg-alt);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-32);
  max-width: var(--measure-waitlist);
}
.admin-login-card h2 { font-size: var(--text-lg); font-weight: 600; color: var(--navy); margin-bottom: var(--space-16); }

.admin-message {
  color: var(--danger);
  font-size: var(--text-base);
  margin-bottom: var(--space-24);
}

.admin-table-wrap {
  overflow-x: auto;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-85);
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: var(--space-12) var(--space-16);
  border-bottom: var(--border-width) solid var(--border);
  white-space: nowrap;
}
.admin-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--navy);
}
.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-pill);
}

/* TOASTS */
#toast-container {
  position: fixed;
  top: var(--space-24);
  right: var(--space-24);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  max-width: 360px;
}

.toast {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: var(--space-14) var(--space-40) var(--space-14) var(--space-18);
  font-size: var(--text-base);
  border-left: var(--border-width-thick) solid var(--muted);
  animation: toast-in 0.2s ease;
}
.toast-error { border-left-color: var(--danger); color: var(--text); }
.toast-success { border-left-color: var(--success); color: var(--text); }
.toast-info { border-left-color: var(--navy); color: var(--text); }

.toast-close {
  position: absolute;
  top: var(--space-10);
  right: var(--space-10);
  background: none;
  border: none;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.toast-close:hover { color: var(--navy); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
/* Breakpoints below are intentionally literal px — CSS custom properties
   cannot be used inside @media conditions, so there is no token to swap in. */
@media (max-width: 900px) {
  .spotlight-inner { grid-template-columns: 1fr; text-align: center; }
  .spotlight-sub { margin: 0 auto; }
  .compare-panel.active { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-right { gap: var(--space-14); }
  .nav-link { display: none; }
}

@media (max-width: 600px) {
  nav { padding: var(--space-16) var(--space-20); }
  .waitlist-form { flex-direction: column; }
  .btn-primary { width: 100%; text-align: center; }
  footer { flex-direction: column; text-align: center; }
  .steps::before { display: none; }
  .floating-chip { display: none; }
}
