/* ============================================
   THE WAIVER WIRE — styles.css
   ESPN meets LinkedIn. Dark. Bold. Electric.
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --bg-primary:     #080c18;
  --bg-secondary:   #0f1629;
  --bg-card:        #141c32;
  --bg-card-hover:  #1a2440;

  --accent:         #00e676;
  --accent-dim:     rgba(0, 230, 118, 0.12);
  --accent-hover:   #1fff88;
  --accent-amber:   #f59e0b;
  --accent-amber-dim: rgba(245, 158, 11, 0.12);

  --text-primary:   #ffffff;
  --text-secondary: #c8d4e0;
  --text-muted:     #7a8ba0;

  --border:         rgba(255, 255, 255, 0.10);
  --border-accent:  rgba(0, 230, 118, 0.28);
  --border-amber:   rgba(245, 158, 11, 0.28);

  --shadow-card:    0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow:    0 0 48px rgba(0, 230, 118, 0.12);
  --shadow-btn:     0 8px 24px rgba(0, 230, 118, 0.32);

  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    100px;

  --transition:     0.2s ease;

  --max-width:      1200px;

  --font-display:   'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 9vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px)  { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

section { padding: 5rem 0; }

@media (min-width: 768px) { section { padding: 6rem 0; } }

.text-accent { color: var(--accent); }
.text-amber  { color: var(--accent-amber); }
.text-muted  { color: var(--text-secondary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled,
.nav.mobile-open {
  background: rgba(8, 12, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  flex-shrink: 0;
  line-height: 1;
}

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

.nav-descriptor {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  margin-top: 0.3rem;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-investor {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-investor:hover { color: var(--text-secondary); }

@media (min-width: 768px) { .nav-investor { display: inline-flex; } }

.nav-cta { display: none; }

@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-mobile .nav-investor-mobile {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: none;
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.nav-mobile .nav-investor-mobile:hover { color: var(--text-secondary); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 0.25rem;
}

.nav-mobile.open { display: flex; }

@media (min-width: 768px) { .nav-mobile { display: none !important; } }

.nav-mobile a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }

.nav-mobile .btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 35%, rgba(0, 230, 118, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(0, 100, 230, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badge-pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-social-proof strong { color: var(--text-secondary); }

.hero-avatars { display: flex; }

.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-left: -8px;
}

.hero-avatar:first-child { margin-left: 0; }

/* ============================================
   PLAYER CARD (Hero Visual)
   ============================================ */
.player-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-amber) 100%);
}

.card-header {
  background: var(--bg-secondary);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(245,158,11,0.1));
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.card-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.card-badge {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.card-body { padding: 1.5rem; }

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.stat-item {
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.skill-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-company { font-size: 0.78rem; color: var(--text-muted); }

.card-company strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.94rem;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0.05em;
}

.card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-amber);
  border-radius: 50%;
  animation: badge-pulse 1.5s ease infinite;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.problem-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.problem-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.8;
}

.problem-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.875rem;
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.problem-card h3 { margin-bottom: 0.625rem; }

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.problem-stat {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-amber);
  letter-spacing: 0.02em;
  line-height: 1;
}

.problem-stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution { position: relative; }

.solution-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.solution-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.8;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  user-select: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ============================================
   STATS / BY THE NUMBERS
   ============================================ */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.stats-intro .section-label {
  justify-content: center;
}

.stats-intro p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--bg-card);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
}

.stat-card:hover { background: var(--bg-card-hover); }

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* ============================================
   HOW IT WORKS — HOMEPAGE FLOW
   ============================================ */
.how-it-works-home { background: var(--bg-primary); }

.how-it-works-home .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.how-it-works-home .section-header .section-label {
  justify-content: center;
}

.steps-flow {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .steps-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
  }
}

.flow-step {
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.flow-step:last-child { border-bottom: none; }
.flow-step:hover { background: var(--bg-card-hover); }

@media (min-width: 768px) {
  .flow-step {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .flow-step:last-of-type { border-right: none; }
}

.flow-arrow {
  display: none;
  align-self: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  padding: 0 0.5rem;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .flow-arrow {
    display: flex;
    align-items: center;
  }
}

.flow-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

.flow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
}

.flow-step p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ============================================
   WAITLIST FORM
   ============================================ */
.waitlist { background: var(--bg-secondary); }

.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner .section-label { justify-content: center; }
.waitlist-inner h2 { margin-bottom: 1rem; }

.waitlist-inner > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.waitlist-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  position: relative;
}

@media (min-width: 640px) { .waitlist-form { padding: 2.5rem; } }

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

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

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

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

.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-group select option { background: var(--bg-card); }

.form-single { margin-bottom: 1rem; }

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.form-privacy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}

.form-success.show { display: block; }

.success-icon {
  width: 68px;
  height: 68px;
  background: var(--accent-dim);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

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

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-tagline em {
  font-style: italic;
  color: var(--accent);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links ul a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.75rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  margin-top: 0.875rem;
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

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

/* ============================================
   CONTENT SECTIONS (Inner Pages)
   ============================================ */
.content-section { padding: 5rem 0; }

@media (min-width: 768px) { .content-section { padding: 6rem 0; } }

.content-section.alt { background: var(--bg-secondary); }

.content-section + .content-section { border-top: 1px solid var(--border); }

.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .two-col.reverse > *:first-child { order: 2; }
  .two-col.reverse > *:last-child  { order: 1; }
}

.two-col h2 { margin-bottom: 1.25rem; }

.two-col p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.two-col p:last-of-type { margin-bottom: 0; }

.feature-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-item-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-item-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* Highlight box */
.highlight-box {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.75rem;
}

.highlight-box p {
  font-size: 0.94rem;
  color: #e8e8e8;
  margin: 0 !important;
  line-height: 1.7;
}

/* ============================================
   FOR COMPANIES PAGE — BENEFIT GRID
   ============================================ */
.benefit-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px)  { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.875rem;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }

.benefit-card h3 { margin-bottom: 0.625rem; }

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 560px;
}

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

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

.comparison-table thead th {
  background: var(--bg-secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-body);
}

.comparison-table thead th:nth-child(2) { color: var(--accent-amber); }
.comparison-table thead th:nth-child(3) { color: var(--accent); }

.comparison-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table tbody td:nth-child(2) { color: var(--text-muted); }
.comparison-table tbody td:nth-child(3) { color: var(--accent); font-weight: 600; }

.check { color: var(--accent); }
.cross { color: #ef4444; }

/* Timeline (How It Works Page) */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border);
  max-width: 680px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5625rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
}

.timeline-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: var(--bg-card);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--transition);
  gap: 1rem;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-item.open .faq-question { background: var(--bg-card-hover); }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-card);
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.faq-answer-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.07) 0%, rgba(245, 158, 11, 0.03) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.cta-strip h2 { margin-bottom: 1rem; }

.cta-strip p {
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  font-size: 1.1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }

.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

.section-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.8;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro.centered .section-label {
  justify-content: center;
}

/* ============================================
   REUSABLE CONTENT COMPONENTS
   ============================================ */

/* Narrow content wrapper (780px, used on investors, etc.) */
.content-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* Lead paragraph for section intros */
.lead-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

/* Info card (hoverable content card) */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.info-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.info-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.info-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Phase card (numbered list items, e.g. AI roadmap) */
.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}

.phase-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.phase-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  width: 28px;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.phase-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Green callout box */
.callout-green {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.callout-green p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Source citation */
.source-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.source-text a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Section subheading (smaller all-caps label) */
.section-subhead {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: cookie-slide-up 0.4s ease;
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.cookie-banner button:hover {
  background: var(--accent-hover);
}

/* ============================================
   MOBILE READABILITY
   ============================================ */
@media (max-width: 639px) {
  /* Body text minimum 15px, generous line-height */
  .problem-card p,
  .step-card p,
  .flow-step p,
  .feature-item-text,
  .benefit-card p,
  .timeline-text,
  .faq-answer-inner,
  .info-card p,
  .phase-card p,
  .highlight-box p,
  .callout-green p,
  .page-hero p,
  .stats-intro p,
  .waitlist-inner > p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  /* Card headers minimum 17px */
  .info-card-title,
  .phase-title {
    font-size: 1.1rem;
  }

  /* Stat labels, breadcrumbs, footer — floor at 13px (0.8125rem) */
  .stat-desc,
  .card-title,
  .card-company,
  .source-text,
  .breadcrumb,
  .footer-copy,
  .footer-legal a,
  .form-privacy,
  .section-label,
  .nav-investor,
  .skill-tag,
  .card-status,
  .problem-stat span {
    font-size: max(0.8125rem, 1em);
  }
}
