/* ============================================
   GUEST ENGINE — guestengine.live
   Brand family: Syncopate + Inter, Gold #fbbf24
   Dark mode only. Cinematic broadcast aesthetic.
   ============================================ */

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

:root {
  --bg: #020617;
  --bg-alt: #0a0f1a;
  --surface: #0f172a;
  --surface-alt: #131d30;
  --border: #1e293b;
  --border-light: #253348;
  --gold: #fbbf24;
  --gold-hover: #f5b820;
  --gold-dim: rgba(251, 191, 36, 0.15);
  --gold-glow: rgba(251, 191, 36, 0.25);
  --text-primary: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #8892a4;
  --red: #ef4444;
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --max-narrow: 860px;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s var(--ease);
}

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

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__logo-icon { width: 32px; height: 32px; }

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.nav__wordmark strong {
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.nav__link:hover { color: var(--text-primary); }
.nav__link--login { font-weight: 400; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

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

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.625rem;
}

.btn__arrow {
  font-size: 1em;
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 5rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero__video { object-position: 35% 40%; }
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 40%, #1a1006 70%, #0f172a 100%);
  z-index: -1;
}

.hero__placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
  gap: 2px;
  opacity: 0.08;
}

.hero__placeholder-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.hero__placeholder-cell--accent {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.15) 0%,
    transparent 20%,
    transparent 45%,
    rgba(2, 6, 23, 0.65) 75%,
    #020617 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 300;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__pricing {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: -0.5rem;
}

.hero__pricing strong {
  color: var(--gold);
  font-weight: 600;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat { text-align: left; }

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.125rem;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* --- SECTIONS --- */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

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

.section--cta {
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section__title--center { text-align: center; }

.section__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section__sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__cta {
  margin-top: 3rem;
  text-align: center;
}

.section__cta-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* --- SPLIT / COMPARE --- */
.split { padding: clamp(5rem, 10vw, 8rem) 0; }

.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card--compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all 0.3s var(--ease);
}

.card--compare-highlight {
  border-color: rgba(251, 191, 36, 0.3);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(251, 191, 36, 0.04) 100%);
}

.card__badge {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.card__badge--muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.card__badge--gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card__list li i {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.card__list--muted li i { color: rgba(255, 255, 255, 0.25); }
.card__list--gold li i { color: var(--gold); }

/* --- FEATURE CARDS (Guests) --- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}

.feature-card:hover {
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.125rem;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- HOST CARDS --- */
.hosts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.host-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all 0.3s var(--ease);
}

.host-card:hover {
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

.host-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.host-card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.host-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- STEPS --- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  position: relative;
  text-align: center;
}

.step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step__line {
  width: 40px;
  height: 2px;
  background: rgba(251, 191, 36, 0.2);
  margin: 0 auto 1.25rem;
}

.step__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- NETWORK CARDS --- */
.network__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.network-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.network-card:hover {
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

.network-card__badge {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: fit-content;
}

.network-card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.network-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.network-card__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s var(--ease);
}

.network-card__link:hover { gap: 0.625rem; }

/* --- PROOF --- */
.proof__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.proof-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.proof-item:hover {
  border-color: rgba(251, 191, 36, 0.15);
}

.proof-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 1.125rem;
}

.proof-item__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.proof-item__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- CTA SECTION --- */
.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* --- CONTENT CALCULATOR --- */
.calculator {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.calculator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calculator__input-group {
  margin-top: 1.5rem;
}

.calculator__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
  display: block;
}

.calculator__slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calculator__slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--gold-glow);
}

.calculator__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.calculator__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 4ch;
  text-align: right;
}

.calculator__results {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.calculator__results-title {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.calculator__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.calculator__row:last-child { border-bottom: none; }

.calculator__row-label {
  font-size: 0.875rem;
  color: var(--text-body);
}

.calculator__row-value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calculator__row--highlight {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-dim);
  border-bottom: none;
}

.calculator__row--highlight .calculator__row-label {
  font-weight: 600;
  color: var(--text-primary);
}

.calculator__row--highlight .calculator__row-value {
  font-size: 1.125rem;
  color: var(--gold);
}

@media (max-width: 768px) {
  .calculator__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- CONTENT PACKAGE GRID --- */
.package {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.package__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.package__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.package__item:hover {
  border-color: rgba(251, 191, 36, 0.25);
  transform: translateY(-2px);
}

.package__item--wide {
  grid-column: span 2;
}

.package__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
}

.package__placeholder-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 0.875rem;
}

.package__placeholder-label {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.package__placeholder-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .package__grid { grid-template-columns: repeat(2, 1fr); }
  .package__item--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
  .package__grid { grid-template-columns: 1fr; }
  .package__item--wide { grid-column: span 1; }
}

/* --- SOPHIA CHAT WIDGET --- */
.sophia-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--gold-glow), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.sophia-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow), 0 4px 12px rgba(0,0,0,0.4);
}

.sophia-fab__icon {
  width: 28px;
  height: 28px;
  background: rgba(2, 6, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.sophia-fab__pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

@keyframes sophiaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.sophia-fab__pulse { animation: sophiaPulse 2s ease-in-out infinite; }

@media (max-width: 768px) {
  .sophia-fab span { display: none; }
  .sophia-fab { padding: 0.875rem; border-radius: 50%; }
  .sophia-fab__icon { width: 32px; height: 32px; font-size: 1rem; }
}

/* --- LEAD CAPTURE --- */
.capture {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.capture__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.capture__text {
  flex: 1;
}

.capture__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.2;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.capture__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.capture__form {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.capture__input {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  width: 280px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.capture__input::placeholder {
  color: var(--text-muted);
}

.capture__input:focus {
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .capture__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .capture__form {
    flex-direction: column;
    width: 100%;
  }
  .capture__input {
    width: 100%;
  }
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.footer__founder {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.375rem;
}

.footer__founder-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer__bottom a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.footer__bottom a:hover { opacity: 0.8; }

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO ENTRANCE ANIMATION --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow { animation: heroFadeUp 0.7s var(--ease) 0.1s both; }
.hero__title { animation: heroFadeUp 0.7s var(--ease) 0.2s both; }
.hero__sub { animation: heroFadeUp 0.7s var(--ease) 0.35s both; }
.hero__ctas { animation: heroFadeUp 0.7s var(--ease) 0.5s both; }
.hero__pricing { animation: heroFadeUp 0.7s var(--ease) 0.6s both; }
.hero__stats { animation: heroFadeUp 0.7s var(--ease) 0.65s both; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .network__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions .nav__link--login { display: none; }

  .nav__hamburger { display: flex; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: 100svh; padding-bottom: 3rem; }
  .hero__title { font-size: clamp(1.75rem, 8vw, 3rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero__stat-divider { display: none; }

  .split__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .hosts__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .network__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta__buttons { flex-direction: column; align-items: center; }
  .cta__buttons .btn { width: 100%; justify-content: center; max-width: 360px; }
}

@media (max-width: 480px) {
  .section__title { font-size: clamp(1.25rem, 6vw, 1.75rem); }
  .card--compare { padding: 1.5rem; }
  .host-card { padding: 1.5rem; }
}
