:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --brand: #d9601a;
  --brand-fill: #a8112a;
  --brand-light: #ff9a5c;
  --brand-glow: rgba(217, 96, 26, 0.12);
  --success: #00c2a8;
  --success-fill: #007f72;
  --focus: #a3e635;
  --warm-stone: #8a8378;
  --accent-blue: #3084ff;
  --accent-violet: #8e5cf6;
  --accent-coral: #f44c5c;
  --accent-teal: #00c2a8;
  --accent: #a8112a;
  --accent-light: rgba(217, 96, 26, 0.1);
  --accent-dark: #861024;
  --bg: #071823;
  --bg-elevated: #0d2734;
  --bg-subtle: #112d3a;
  --card: #0d2734;
  --surface: #0d2734;
  --text-primary: #fafafa;
  --text: #fafafa;
  --text-secondary: #b7b0a5;
  --text-muted: #8a8378;
  --muted: #8a8378;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --max-w: 1080px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: var(--font); cursor: pointer; }
* { cursor: default; }
a, button, input, select, label, [role="button"] { cursor: pointer; }
input[type="text"], input[type="email"], input[type="tel"], textarea { cursor: text; }
:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid var(--focus) !important;
  outline-offset: 3px;
}
.container { width: min(var(--max-w), calc(100% - 2.5rem)); margin: 0 auto; }
@media (min-width: 768px) { .container { width: min(var(--max-w), calc(100% - 4rem)); } }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  background: var(--focus);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}
.skip-link:focus { transform: translateY(0); }

.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;
}

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

/* --- REVEAL --- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 24, 35, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  cursor: pointer;
}
.nav-logo, .nav-logo * { cursor: pointer; }
.logo-q { color: var(--brand); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--text-primary);
  color: var(--bg);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }

/* --- HERO --- */
.hero {
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    min-height: 100vh;
  }
  .hero .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  aspect-ratio: 1;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(217, 96, 26, 0.07), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(0, 194, 168, 0.38);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--success);
  margin-bottom: 2rem;
  cursor: pointer;
  animation: fade-up 0.6s var(--ease-out) both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: fade-up 0.6s var(--ease-out) 0.08s both;
}
@media (min-width: 768px) { .hero h1 { font-size: 5rem; margin-bottom: 1.25rem; } }
.hero h1 .highlight {
  background: linear-gradient(135deg, #ff9a5c 0%, #d9601a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 2rem;
  animation: fade-up 0.6s var(--ease-out) 0.16s both;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.2rem; margin: 0 auto 2.5rem; } }
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fade-up 0.6s var(--ease-out) 0.24s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 2rem;
  background: var(--brand-fill);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 0 20px var(--brand-glow), 0 0 60px rgba(217, 96, 26, 0.06);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--brand-glow), 0 8px 40px rgba(217, 96, 26, 0.12);
}
.hero-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* --- SPORTS STRIP --- */
.sport-strip { padding: 2rem 0; }

/* Desktop version */
.sport-desktop { display: none; }
@media (min-width: 768px) {
  .sport-desktop {
    display: block;
    width: 100%;
    padding: 1.5rem 0;
    margin-top: auto;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
  }
  .sport-desktop::before,
  .sport-desktop::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .sport-desktop::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .sport-desktop::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .sport-desktop .sport-strip-inner {
    display: flex;
    gap: 0.55rem;
    width: max-content;
    animation: strip-scroll 40s linear infinite;
  }
}
@keyframes strip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile version */
.sport-mobile { display: block; }
@media (min-width: 768px) { .sport-mobile { display: none; } }
.sport-strip-scroll {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.25rem;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sport-strip-scroll::-webkit-scrollbar { display: none; }

/* Pill shared */
.pill {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 2.1rem;
  padding: 0 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .pill { height: 2.3rem; padding: 0 1.1rem; font-size: 0.82rem; }
}

/* --- BENTO FEATURES --- */
.bento {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .bento { padding: 4rem 0; min-height: 100vh; display: flex; align-items: center; } }
.bento-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .bento-header { margin-bottom: 3.5rem; } }
.bento-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
}
@media (min-width: 768px) { .bento-header h2 { font-size: 2.75rem; } }
.bento-header p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(3, 1fr); } }
.bento-card {
  padding: 2rem 1.5rem;
  background: var(--bg);
  transition: background 0.3s;
}
@media (min-width: 768px) { .bento-card { padding: 2.5rem 2rem; } }
.bento-card:hover { background: var(--bg-elevated); }
.bento-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.bento-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.bento-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- SHOWCASE CARD --- */
.showcase {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .showcase { padding: 4rem 0; min-height: 100vh; display: flex; align-items: center; } }
.showcase-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.showcase-header {
  padding: 1.5rem 1.25rem 0;
  text-align: center;
}
@media (min-width: 768px) { .showcase-header { padding: 3rem 2rem 0; } }
.showcase-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
@media (min-width: 768px) { .showcase-header h2 { font-size: 2.25rem; } }
.showcase-header p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.showcase-ui {
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) { .showcase-ui { padding: 2.5rem; } }
.app-mock {
  width: 100%;
  max-width: 360px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.app-mock-bar {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.app-mock-bar span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}
.app-mock-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px rgba(217, 96, 26, 0.4);
}
.app-mock-body { padding: 1rem; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.slot {
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.15s;
}
.slot.open {
  border-color: rgba(0, 194, 168, 0.38);
  color: #fff;
  background: rgba(0, 194, 168, 0.08);
}
.slot.open:hover {
  background: rgba(0, 194, 168, 0.15);
  border-color: var(--success);
}
.slot.booked {
  opacity: 0.3;
  text-decoration: line-through;
}
.app-mock-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-mock-footer span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.app-mock-footer .mock-btn {
  padding: 0.4rem 0.9rem;
  background: var(--success-fill);
  color: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* --- STEPS --- */
.how {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .how { padding: 4rem 0; min-height: 100vh; display: flex; align-items: center; } }
.how-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .how-header { margin-bottom: 3.5rem; } }
.how-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
@media (min-width: 768px) { .how-header h2 { font-size: 2.5rem; } }
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.how-step { text-align: center; }
.how-visual {
  margin-bottom: 1.25rem;
}
.how-mini-app {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.how-sport-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.1rem;
  transition: border-color 0.2s;
}
.how-sport-btn.active {
  border-color: var(--brand);
  background: rgba(217, 96, 26, 0.08);
  box-shadow: 0 0 8px rgba(217, 96, 26, 0.15);
}
.how-slot {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(0, 194, 168, 0.38);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 194, 168, 0.08);
  text-align: center;
}
.how-pay-btn {
  width: 100%;
  padding: 0.45rem;
  background: var(--success-fill);
  color: #fff;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
}
.how-qr {
  font-size: 2.5rem;
  color: var(--text-muted);
  line-height: 1;
}
.how-confirmed {
  width: 100%;
  padding: 0.35rem;
  background: rgba(217, 96, 26, 0.1);
  border: 1px solid rgba(217, 96, 26, 0.3);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brand-light);
  text-align: center;
}
.how-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}
.how-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.how-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- PARTNERS --- */
.partners {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .partners { padding: 4rem 0; min-height: 100vh; display: flex; align-items: center; } }
.partners-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .partners-header { margin-bottom: 3.5rem; } }
.partners-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
@media (min-width: 768px) { .partners-header h2 { font-size: 2.5rem; } }
.partners-header p {
  margin-top: 0.5rem;
  color: var(--text-muted);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: border-color 0.3s, background 0.3s;
}
.partner-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}
.partner-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.partner-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.partner-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.partner-card a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-light);
  transition: color 0.2s;
}
.partner-card a:hover { color: var(--text-primary); }

/* --- WAITLIST --- */
.waitlist {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 60px;
}
@media (min-width: 768px) { .waitlist { padding: 4rem 0; min-height: 100vh; display: flex; align-items: center; } }
.waitlist-inner {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .waitlist-inner h2 { font-size: 1.75rem; } }
.waitlist-inner > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.waitlist-form { text-align: left; }
.form-field { margin-bottom: 0.9rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.form-field label span { color: var(--text-muted); font-weight: 400; }
.form-field input,
.form-field select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
}
.form-field input::placeholder { color: var(--text-muted); }
#referred_by { text-transform: uppercase; }
.referral-status {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.referral-status.is-valid { color: var(--brand-light); }
.referral-status.is-invalid { color: #f87171; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.btn-submit {
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  background: var(--brand-fill);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 0 20px var(--brand-glow);
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--brand-glow), 0 4px 20px rgba(217, 96, 26, 0.1);
}
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: center;
  display: none;
}
.form-success {
  color: var(--brand-light);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: center;
  display: none;
}
.referral-note {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
.referral-note strong { color: var(--brand-light); }

/* --- FOOTER --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
}
.footer-links a:hover { color: var(--text-primary); }
.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- MOBILE OVERRIDES (< 480px) --- */
@media (max-width: 480px) {
  .container { width: calc(100% - 2rem); }

  .nav { padding: 0.75rem 0; }
  .nav-logo { font-size: 1rem; gap: 0.5rem; }
  .nav-logo svg { width: 22px; height: 22px; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.72rem; }

  .hero { padding: 6rem 0 3rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.3rem 0.75rem; margin-bottom: 1.25rem; }
  .hero h1 { font-size: 2.25rem; margin-bottom: 0.75rem; }
  .hero-sub { font-size: 0.88rem; margin: 0 auto 1.5rem; line-height: 1.6; }
  .btn-primary { min-height: 2.5rem; padding: 0 1.75rem; font-size: 0.85rem; }
  .hero-note { font-size: 0.68rem; }


  .bento { padding: 3rem 0; }
  .bento-header { margin-bottom: 1.75rem; }
  .bento-header h2 { font-size: 1.3rem; }
  .bento-header p { font-size: 0.85rem; margin-top: 0.5rem; }
  .bento-card { padding: 1.5rem 1.25rem; }
  .bento-card-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 1rem; }
  .bento-card h3 { font-size: 0.92rem; }
  .bento-card p { font-size: 0.82rem; }

  .showcase { padding: 3rem 0; }
  .showcase-card { border-radius: 12px; }
  .showcase-header { padding: 1.25rem 1rem 0; }
  .showcase-header h2 { font-size: 1.1rem; }
  .showcase-header p { font-size: 0.8rem; }
  .showcase-ui { padding: 1rem 0.75rem; }
  .app-mock { border-radius: 12px; }
  .app-mock-bar { padding: 0.6rem 0.75rem; }
  .app-mock-bar span { font-size: 0.68rem; }
  .app-mock-body { padding: 0.75rem; }
  .slot-grid { gap: 0.35rem; }
  .slot { padding: 0.5rem 0.25rem; font-size: 0.65rem; border-radius: 6px; }
  .app-mock-footer { padding: 0.6rem 0.75rem; }
  .app-mock-footer span { font-size: 0.65rem; }
  .app-mock-footer .mock-btn { padding: 0.35rem 0.7rem; font-size: 0.65rem; }

  .how { padding: 3rem 0; }
  .how-header { margin-bottom: 2rem; }
  .how-header h2 { font-size: 1.3rem; }
  .how-steps { gap: 1.25rem; }
  .how-num { width: 32px; height: 32px; font-size: 0.75rem; margin-bottom: 0.75rem; }
  .how-step h3 { font-size: 0.92rem; }
  .how-step p { font-size: 0.82rem; }

  .partners { padding: 3rem 0; }
  .partners-header { margin-bottom: 2rem; }
  .partners-header h2 { font-size: 1.3rem; }
  .partners-header p { font-size: 0.85rem; }
  .partners-grid { gap: 0.75rem; }
  .partner-card { padding: 1.5rem 1.25rem; border-radius: 12px; }
  .partner-card-icon { font-size: 1.3rem; margin-bottom: 0.75rem; }
  .partner-card h3 { font-size: 0.92rem; }
  .partner-card p { font-size: 0.82rem; margin-bottom: 0.75rem; }

  .waitlist { padding: 3rem 0; }
  .waitlist-inner h2 { font-size: 1.3rem; }
  .waitlist-inner > p { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field input, .form-field select { padding: 0.65rem 0.8rem; font-size: 0.85rem; }
  .btn-submit { min-height: 2.5rem; font-size: 0.85rem; }
  .referral-note { font-size: 0.72rem; padding: 0.65rem 0.85rem; }

  .footer { padding: 2rem 0; }
  .footer-links { gap: 1.25rem; }
  .footer-links a { font-size: 0.75rem; }
  .footer p { font-size: 0.7rem; }
}

/* Home page, mission-led 2026 refresh */
.home-page {
  --home-paper: #f7f2e8;
  --home-ink: #071823;
  --home-cream: #fffaf1;
  --home-orange: #d9601a;
  --home-crimson: #a8112a;
  --home-teal: #00c2a8;
  --home-stone: #8a8378;
  --home-lime: #a3e635;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-page .container {
  width: min(1180px, calc(100% - 2rem));
}

.home-page .home-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 24, 35, 0.9);
  backdrop-filter: blur(18px);
}

.home-page .home-nav.scrolled {
  background: rgba(7, 24, 35, 0.98);
}

.home-page .home-nav .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.home-page .nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.home-page .nav-logo img {
  display: block;
  width: 114px;
  height: auto;
}

.home-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.4rem);
}

.home-nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-nav-links a:hover {
  color: #fff;
}

.home-page .nav-cta {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(163, 230, 53, 0.5);
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--home-lime);
  color: var(--home-ink);
  font-size: 0.75rem;
  font-weight: 850;
}

.home-page .home-menu {
  display: none;
  position: relative;
  margin-left: auto;
}

.home-page .home-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 0.9rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.home-page .home-menu summary::-webkit-details-marker {
  display: none;
}

.home-page .home-menu > div {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(280px, calc(100vw - 2rem));
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #0d2734;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.home-page .home-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-page .home-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5.5rem;
  background: var(--home-ink);
  color: #fff;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.home-kicker {
  margin: 0 0 1rem;
  color: var(--home-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero .home-kicker {
  color: var(--home-lime);
}

.home-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.7rem, 8.2vw, 7rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.home-hero h1 span {
  color: var(--home-orange);
}

.home-mission {
  max-width: 650px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.62;
}

.home-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-page .btn-primary,
.home-page .btn-quiet,
.home-page .btn-submit {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.25rem;
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 850;
}

.home-page .btn-primary {
  background: var(--home-lime);
  color: var(--home-ink);
}

.home-page .btn-primary:hover {
  transform: translateY(-1px);
  background: #b2ef50;
  box-shadow: none;
}

.home-page .btn-quiet {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
}

.home-page .btn-quiet:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.home-fineprint {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
}

.home-proof {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #0d2734;
}

.home-proof-top {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-proof-copy {
  padding: 1.6rem 1.5rem 1.4rem;
}

.home-proof-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.home-proof-copy p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-proof-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-proof-list > div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-proof-list > div:last-child {
  border-bottom: 0;
}

.home-proof-list > div > span {
  color: var(--home-orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.home-proof-list p {
  margin: 0;
}

.home-proof-list strong,
.home-proof-list small {
  display: block;
}

.home-proof-list strong {
  color: #fff;
  font-size: 0.86rem;
}

.home-proof-list small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.home-trust {
  border-bottom: 1px solid #ded5c7;
  background: var(--home-cream);
}

.home-trust .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-trust .container::-webkit-scrollbar {
  display: none;
}

.home-trust span {
  flex: 0 0 auto;
  color: #625d55;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--home-teal);
  vertical-align: middle;
}

.home-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  border: 0;
  background: var(--home-paper);
}

.home-section-alt {
  background: var(--home-ink);
  color: #fff;
}

.home-section-heading {
  max-width: 720px;
}

.home-section-heading h2,
.home-contact h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.3rem, 5.6vw, 4.8rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.home-section-heading > p:last-child {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: #625d55;
  font-size: 1rem;
  line-height: 1.68;
}

.home-section-alt .home-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(7, 24, 35, 0.2);
}

.home-principles article {
  padding: 2rem clamp(1rem, 2vw, 2rem) 1rem;
  border-right: 1px solid rgba(7, 24, 35, 0.16);
}

.home-principles article:first-child {
  padding-left: 0;
}

.home-principles article:last-child {
  border-right: 0;
  padding-right: 0;
}

.home-principle-number,
.home-step {
  color: var(--home-crimson);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-principles h3,
.home-journey h3 {
  margin: 1.1rem 0 0.65rem;
  color: inherit;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.home-principles p,
.home-journey article > div > p:last-child {
  margin: 0;
  color: #625d55;
  font-size: 0.9rem;
  line-height: 1.68;
}

.home-journey {
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.home-journey article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.home-journey-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.1);
  color: var(--home-lime);
  font-size: 1.4rem;
  font-weight: 800;
}

.home-journey .home-step {
  margin: 0;
  color: var(--home-lime);
}

.home-journey h3 {
  margin-top: 0.35rem;
}

.home-journey article > div > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.58);
}

.home-ecosystem {
  background: var(--home-cream);
}

.home-ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.home-ecosystem-links {
  border-top: 1px solid rgba(7, 24, 35, 0.2);
}

.home-ecosystem-links a {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(7, 24, 35, 0.17);
  padding: 1.1rem 3rem 1.1rem 0;
  position: relative;
}

.home-ecosystem-links a::after {
  content: "↗";
  position: absolute;
  right: 0;
  color: var(--home-crimson);
  font-size: 1.2rem;
}

.home-ecosystem-links span {
  color: var(--home-crimson);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-ecosystem-links strong {
  color: var(--home-ink);
  font-size: 1.05rem;
}

.home-contact {
  padding: 3.5rem 0;
  background: var(--home-orange);
  color: var(--home-ink);
}

.home-contact .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.home-contact .home-kicker {
  color: var(--home-ink);
}

.home-contact h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.home-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.home-contact-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 24, 35, 0.34);
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.76rem;
  font-weight: 850;
}

.home-contact-links a:hover {
  background: var(--home-ink);
  color: #fff;
}

.home-page .home-waitlist {
  min-height: 0;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  border: 0;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.home-launch-note {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--home-teal);
}

.home-launch-note strong,
.home-launch-note span {
  display: block;
}

.home-launch-note strong {
  color: var(--home-ink);
  font-size: 0.88rem;
}

.home-launch-note span {
  margin-top: 0.15rem;
  color: #625d55;
  font-size: 0.8rem;
}

.home-page .waitlist-inner {
  max-width: none;
  margin: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #ded5c7;
  border-radius: 26px;
  background: var(--home-cream);
  text-align: left;
}

.home-page .form-field label {
  color: #625d55;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-page .form-field input,
.home-page .form-field select {
  min-height: 48px;
  border: 1px solid #d7cdbd;
  border-radius: 14px;
  background: #fff;
  color: var(--home-ink);
}

.home-page .form-field input:focus,
.home-page .form-field select:focus {
  border-color: var(--home-crimson);
  box-shadow: 0 0 0 3px rgba(168, 17, 42, 0.08);
}

.home-page .form-field input::placeholder {
  color: #948d82;
}

.home-page .btn-submit {
  min-height: 50px;
  background: var(--home-crimson);
  color: #fff;
}

.home-page .btn-submit:hover {
  background: #8f1025;
  box-shadow: none;
}

.home-page .referral-status.is-valid,
.home-page .form-success {
  color: #007f72;
}

.home-privacy-note {
  margin: 0.8rem 0 0;
  color: #756f66;
  font-size: 0.72rem;
  text-align: center;
}

.home-page .home-footer {
  padding: 2.5rem 0;
  border-top: 0;
  background: var(--home-ink);
}

.home-footer .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.home-footer-brand {
  display: inline-flex;
  align-items: center;
}

.home-footer-brand img {
  display: block;
  width: 114px;
  height: auto;
}

.home-page .home-footer .footer-links {
  margin: 0;
}

.home-page .home-footer .footer-links a {
  color: rgba(255, 255, 255, 0.62);
}

.home-page .home-footer .footer-links a:hover {
  color: #fff;
}

.home-page .home-footer p {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1040px) {
  .home-nav-links {
    display: none;
  }

  .home-page .home-menu {
    display: block;
  }

  .home-page .nav-cta {
    margin-left: 0;
  }

  .home-hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
  }
}

@media (max-width: 800px) {
  .home-page .home-nav .container {
    min-height: 64px;
  }

  .home-page .nav-cta {
    display: none;
  }

  .home-hero {
    min-height: 0;
    padding: 7.5rem 0 4.5rem;
  }

  .home-hero-grid,
  .home-ecosystem-grid,
  .home-waitlist-grid,
  .home-contact .container {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: 680px;
  }

  .home-hero h1 {
    font-size: clamp(3.35rem, 13vw, 5.6rem);
  }

  .home-proof {
    max-width: 540px;
  }

  .home-principles {
    grid-template-columns: 1fr;
  }

  .home-principles article,
  .home-principles article:first-child,
  .home-principles article:last-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 24, 35, 0.15);
  }

  .home-principles article:last-child {
    border-bottom: 0;
  }

  .home-contact .container {
    align-items: start;
  }

  .home-contact-links {
    justify-content: flex-start;
  }

  .home-footer .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .home-page .container {
    width: calc(100% - 1.5rem);
  }

  .home-page .nav-logo img,
  .home-footer-brand img {
    width: 104px;
  }

  .home-page .home-menu summary {
    min-height: 40px;
  }

  .home-hero {
    padding-top: 6.8rem;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .home-mission {
    font-size: 1rem;
  }

  .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-page .btn-primary,
  .home-page .btn-quiet {
    width: 100%;
  }

  .home-trust .container {
    justify-content: flex-start;
  }

  .home-section-heading h2,
  .home-contact h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .home-journey article {
    grid-template-columns: 1fr;
  }

  .home-journey-icon {
    width: 48px;
    height: 48px;
  }

  .home-waitlist-grid {
    gap: 2rem;
  }

  .home-page .waitlist-inner {
    padding: 1rem;
    border-radius: 20px;
  }

  .home-page .home-waitlist .form-row {
    grid-template-columns: 1fr;
  }

  .home-contact-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-contact-links a {
    justify-content: center;
  }
}

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