/* Jai Club — premium, lightweight (system fonts; no webfont requests) */

:root {
  --bg: #06080d;
  --bg-elevated: #0a0d14;
  --surface: #0d1118;
  --surface-2: #1a2332;
  --text: #f0f4fa;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #22d3a6;
  --accent-hover: #5eead4;
  --gold: #fbbf24;
  --gold-dim: #d97706;
  --violet: #8b5cf6;
  --violet-dim: #6d28d9;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --glow: rgba(34, 211, 166, 0.35);
  --max: 76rem;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: var(--font-display);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent) 0%, #0d9488 50%, var(--violet) 100%);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--bg);
  box-shadow: 0 4px 20px var(--glow);
}

.logo span {
  color: var(--accent);
}

.logo:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
}

.nav-list {
  display: flex;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-radius: 8px;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.nav-list a[aria-current="page"] {
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
  color: #042f2e !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(34, 211, 166, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(34, 211, 166, 0.45);
  color: #042f2e !important;
}

.cta--gold {
  background: linear-gradient(135deg, #fde68a 0%, var(--gold) 42%, #b45309 100%);
  color: #1c1917 !important;
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.35);
}

.cta--gold:hover {
  box-shadow: 0 10px 36px rgba(251, 191, 36, 0.5);
  color: #1c1917 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .cta--pulse {
    animation: ctaPulse 2.8s ease-in-out infinite;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(34, 211, 166, 0.35);
  }
  50% {
    box-shadow: 0 6px 36px rgba(34, 211, 166, 0.55);
  }
}

.cta--ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

.cta--ghost:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  box-shadow: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    width: 100%;
    display: none;
    padding-top: 0.5rem;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav-cta {
    margin-left: 0;
    padding-top: 0.75rem !important;
  }

  .nav-cta .cta {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% -25%, rgba(34, 211, 166, 0.16), transparent 52%),
    radial-gradient(ellipse 50% 45% at 95% 15%, rgba(139, 92, 246, 0.12), transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 211, 166, 0.12);
  border: 1px solid rgba(34, 211, 166, 0.28);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .hl {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
  -webkit-background-clip: unset;
  background-clip: unset;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.stat {
  min-width: 5rem;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.stat-val small {
  font-size: 0.9rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted-2);
  margin-top: 0.2rem;
}

/* Hero visual — real image + caption (no CSS mockup) */
.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-figure {
  margin: 0;
  width: min(100%, 28rem);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  background: var(--bg-elevated);
}

.hero-caption {
  margin-top: 1.15rem;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.45);
}

.hero-caption__lead {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.hero-caption__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.hero-caption__list li {
  margin-bottom: 0.45rem;
}

.hero-caption__list li:last-child {
  margin-bottom: 0;
}

.hero-caption__list strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-visual {
    order: -1;
  }
}

/* ---------- Sections ---------- */
section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-intro {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--dark {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.12), transparent),
    var(--bg-elevated);
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.card {
  position: relative;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(34, 211, 166, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: rgba(34, 211, 166, 0.12);
  border: 1px solid rgba(34, 211, 166, 0.22);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.cat-tile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s, background 0.2s;
}

.cat-tile:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: var(--surface-2);
}

.cat-tile-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.cat-tile h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.cat-tile p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Spec table */
.spec-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.spec-table th,
.spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.25);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  color: var(--muted);
  width: 38%;
}

.spec-table td:last-child {
  font-weight: 500;
}

.spec-table a {
  font-weight: 600;
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #0d9488);
  color: #042f2e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 211, 166, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--muted);
  margin: 0 auto 1.5rem;
  max-width: 40ch;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(34, 211, 166, 0.15), transparent);
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero .lead {
  color: var(--muted);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted-2);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Contact */
.form-panel {
  max-width: 32rem;
  margin-inline: auto;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 166, 0.15);
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted-2);
  margin-top: 1rem;
}

.form-note code {
  font-size: 0.8em;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0.75rem 0 0;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-2);
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0.75rem;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}

details.faq-item[open] {
  border-color: rgba(34, 211, 166, 0.35);
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 1.1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin: 0 1.25rem 1.15rem;
}

details.faq-item .faq-body p {
  margin: 0;
}

/* ---------- Ad landing + auth (lightweight) ---------- */
.hero--ad {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero-inner--single {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.hero-inner--single .ad-hero-copy {
  max-width: none;
}

.hero-actions--ad {
  margin-bottom: 1.25rem;
}

.ad-strip {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ad-strip strong {
  color: var(--text);
}

.narrow {
  max-width: 38rem;
  margin-inline: auto;
}

.steps--compact li {
  padding: 1.15rem 1.25rem 1.15rem 3.75rem;
}

.steps--compact li::before {
  left: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8rem;
}

/* Auth pages */
.auth-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header--minimal .header-inner {
  padding: 0.75rem 0;
}

.site-header--minimal .nav-toggle {
  display: none;
}

.text-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.auth-main {
  flex: 1;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.auth-wrap {
  max-width: 26rem;
  margin-inline: auto;
}

.auth-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

@media (min-width: 480px) {
  .auth-card {
    padding: 2rem 1.85rem;
  }
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.auth-sub {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.auth-sub code {
  font-size: 0.82em;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form .form-group label {
  color: var(--text);
}

.auth-form input {
  min-height: 48px;
  font-size: 1rem;
}

.form-row--between {
  margin-bottom: 1rem;
}

.checkbox-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  min-height: 0;
}

.form-group--checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta--block {
  width: 100%;
  margin-top: 0.25rem;
  min-height: 48px;
  font-size: 1rem;
}

.auth-switch {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-inline {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(7, 9, 15, 0.6);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted-2);
}

.legal-inline strong {
  color: var(--text);
}

.site-footer--minimal {
  padding: 1rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid--simple {
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

@media (max-width: 768px) {
  .footer-grid--simple {
    grid-template-columns: 1fr 1fr;
  }
}

/* Disclaimer prose */
.prose {
  padding-bottom: 3rem;
}

.prose section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.prose section:last-of-type {
  border-bottom: none;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.prose p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.prose p:last-child {
  margin-bottom: 0;
}

.disclaimer-callout {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 166, 0.28);
  background: rgba(34, 211, 166, 0.06);
}

.disclaimer-callout p {
  margin: 0;
}

/* ---------- Simple premium (minimal UI) ---------- */
.site-header--simple {
  background: rgba(6, 8, 13, 0.85);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.logo--simple {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo--simple .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--bg);
  box-shadow: none;
}

.nav-list--simple {
  gap: 0.5rem 1.75rem;
}

.nav-list--simple a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero--minimal {
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  min-height: auto;
}

.hero-bg--soft {
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(34, 211, 166, 0.09), transparent 55%);
}

.hero--minimal .hero-grid {
  display: none;
}

.hero-min {
  max-width: 26rem;
  margin-inline: auto;
  text-align: center;
}

.hero.hero--minimal h1 {
  font-size: clamp(2.25rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.35rem;
  max-width: none;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
}

.tagline {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.lead--tight {
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero--minimal .hero-actions {
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

.btn-min {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
}

.btn-min:hover {
  border-color: rgba(34, 211, 166, 0.45);
  color: var(--accent) !important;
}

.btn-min--glass {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-min--glass:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(34, 211, 166, 0.35);
}

.cta--premium {
  box-shadow: none;
  min-height: 48px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta--premium:hover {
  transform: none;
  filter: brightness(1.06);
}

.fine-print {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted-2);
  line-height: 1.5;
}

.fine-print a {
  font-weight: 500;
}

.fine-print--center {
  text-align: center;
  margin-top: 1.5rem;
}

.site-footer--min {
  padding: 2rem 0;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: transparent;
}

.footer-min-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-min-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
  }
}

.footer-min-brand {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

.footer-min-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

@media (min-width: 600px) {
  .footer-min-nav {
    justify-content: flex-end;
  }
}

.footer-min-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-min-nav a:hover {
  color: var(--accent);
}

.footer-min-copy {
  margin: 0;
  width: 100%;
  font-size: 0.75rem;
  color: var(--muted-2);
}

@media (min-width: 600px) {
  .footer-min-copy {
    width: auto;
    margin-left: auto;
  }
}

.auth-card--clean {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: none;
}

.auth-card--clean .auth-title {
  font-weight: 700;
  font-size: 1.35rem;
  text-align: center;
}

.auth-card--clean .auth-form .form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

.checkbox-label--simple {
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

.page-hero--min {
  padding-bottom: 1.5rem;
}

.page-hero--min::before {
  display: none;
}

.page-hero--min h1 {
  font-weight: 700;
}

.prose--simple section {
  padding: 1.35rem 0;
}

.prose--simple h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}

.prose--simple p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== Layout: footer pinned to bottom (short pages) ===== */
body.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-shell #main {
  flex: 1 0 auto;
  width: 100%;
}

body.page-shell .site-footer--sticky {
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer--sticky {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

/* ===== Hamburger toggle (replaces “Menu” text) ===== */
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 0;
}

.nav-toggle-bar:nth-child(2) {
  top: 7px;
}

.nav-toggle-bar:nth-child(3) {
  top: 14px;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 0;
    flex-shrink: 0;
  }
}

/* ===== Home: split hero + image ===== */
.hero--split {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.hero-copy-col {
  text-align: center;
}

.hero--split .hero-copy-col h1 {
  max-width: none;
}

.hero-media {
  margin: 0;
  order: -1;
}

.hero-media img {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
}

.hero-media figcaption {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-2);
  line-height: 1.4;
}

.hero-points {
  list-style: none;
  margin: 0 auto 1.35rem;
  padding: 0;
  max-width: 22rem;
  text-align: left;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

@media (min-width: 900px) {
  .hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    max-width: 58rem;
    margin-inline: auto;
  }

  .hero-media {
    order: 0;
  }

  .hero-copy-col {
    text-align: left;
  }

  .hero--split .hero-actions {
    justify-content: flex-start;
  }

  .hero--split .fine-print {
    text-align: left;
  }

  .hero-points {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .hero-media img {
    margin-inline: 0;
    max-width: none;
  }

  .hero-media figcaption {
    text-align: left;
  }
}

/* ===== Home: centered viewport hero + generated banner ===== */
body.page-shell #main.home-main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

.hero.hero--minimal.hero--viewport-mid {
  padding-block: clamp(1rem, 3vw, 2rem);
}

.hero--viewport-mid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: min(calc(100svh - 5.5rem), 900px);
  box-sizing: border-box;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  max-width: 38rem;
  margin-inline: auto;
}

.hero--home .hero-stack {
  gap: 0.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(34, 211, 166, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 999px;
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
}

.hero-kicker {
  margin: 0.35rem 0 0.85rem;
  max-width: 26rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-kicker strong {
  color: var(--text);
  font-weight: 600;
}

.tagline--home {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 0.15rem;
}

.hero-banner-img {
  display: block;
  width: 100%;
  max-width: min(100%, 28rem);
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.35rem;
}

.hero--viewport-mid .tagline {
  margin-bottom: 1rem;
}

.hero--viewport-mid .tagline--home {
  margin-bottom: 0.15rem;
}

.hero--viewport-mid h1 {
  margin: 0;
}

.hero-actions--center {
  justify-content: center;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.fine-print--legal {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.78rem;
}

@media (min-width: 900px) {
  .hero--viewport-mid {
    min-height: calc(100svh - 6.5rem);
  }

  .hero--home.hero--viewport-mid {
    min-height: min(calc(100svh - 5.5rem), 820px);
  }
}

/* Home: premium pitch (marketing — not inner “about” page copy) */
.home-pitch {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 38%, #05060a 100%);
  overflow: hidden;
}

.home-pitch__glow {
  pointer-events: none;
  position: absolute;
  inset: -40% -20% auto;
  height: min(70vh, 520px);
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(34, 211, 166, 0.09), transparent 65%),
    radial-gradient(ellipse 45% 40% at 80% 20%, rgba(139, 92, 246, 0.07), transparent 55%);
}

.home-pitch__inner {
  position: relative;
}

.home-pitch__head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vw, 2.75rem);
  text-align: center;
}

.home-pitch__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .home-pitch__title {
    color: var(--text);
    background: none;
  }
}

.home-pitch__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.pitch-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pitch-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
}

.pitch-card {
  position: relative;
  margin: 0;
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(13, 17, 24, 0.92) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.25s;
}

@media (prefers-reduced-motion: no-preference) {
  .pitch-card:hover {
    border-color: rgba(34, 211, 166, 0.28);
    transform: translateY(-3px);
  }
}

.pitch-card__icon {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.9;
}

.pitch-card__icon--gold {
  color: var(--gold);
}

.pitch-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pitch-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.home-cta-panel {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.65) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .home-cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.home-cta-panel__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-cta-panel__line {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}

.home-cta-panel__line strong {
  color: var(--gold);
  font-weight: 700;
}

.home-cta-panel__action {
  flex-shrink: 0;
}

.home-cta-panel__action .cta {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

@media (min-width: 640px) {
  .home-cta-panel__action .cta {
    width: auto;
  }
}
