/* Brand system: black, white and one electric blue. The previous palette
   carried a purple and an orange that the logo does not use; both are remapped
   onto the blue rather than deleted, so existing rules keep resolving. */
:root {
  --primary: #1F5AFF;
  --primary-dark: #1442CC;
  --secondary: #1F5AFF;
  --accent: #1F5AFF;
  --success: #12B886;
  --dark: #0A0A0A;
  --darker: #000000;
  --light: #F5F7FA;
  --muted: #6B7280;

  --black: #000000;
  --white: #FFFFFF;
  --font-display: "Saira Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Sport Mates launch direction ─────────────────────────────
   The reference uses a near-black stage, a single saturated blue and a very
   graphic, condensed sports voice. These overrides retain the working site
   structure and waitlist behaviour while changing its visual language. */
body {
  background: #050505;
  color: #f8fafc;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, #1E2340 100%);
  color: white;
  padding: 24px 24px 120px;
  overflow: hidden;
}

.hero {
  min-height: 760px;
  padding: 26px 32px 44px;
  background:
    radial-gradient(circle at 84% 64%, rgba(31, 90, 255, 0.32), transparent 25%),
    radial-gradient(circle at 8% 9%, rgba(31, 90, 255, 0.15), transparent 24%),
    #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

.blob-1 {
  width: 360px;
  height: 360px;
  background: var(--primary);
  top: -120px;
  left: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #7B4CFF;
  bottom: -140px;
  right: -80px;
  animation-delay: -6s;
}

.blob-2 { background: var(--primary); }

.nav {
  max-width: 1240px;
  margin-bottom: 48px;
  padding: 10px 0;
  border-radius: 0;
}

.nav.scrolled {
  background: rgba(3, 3, 3, 0.88);
  box-shadow: none;
  padding-inline: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-links { gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--white); color: var(--black); }

.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.55fr);
  align-items: center;
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
  min-height: 510px;
}

.hero-content {
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.eyebrow {
  border-radius: 3px;
  padding: 7px 11px;
  background: rgba(31,90,255,0.15);
  border-color: rgba(31,90,255,0.48);
  color: #d8e4ff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 9vw, 8.5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #2e72ff 0%, #0c46dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.subtitle {
  max-width: 500px;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions { justify-content: flex-start; }
.btn-primary, .btn-secondary {
  border-radius: 4px;
  padding: 14px 23px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-secondary { border-color: rgba(255,255,255,0.28); }
.hero-note { color: rgba(255,255,255,0.45); }

.hero-preview {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.preview-card {
  position: relative;
  background: linear-gradient(150deg, rgba(33,33,33,0.92), rgba(11,11,11,0.96));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  box-shadow: 20px 22px 0 rgba(31,90,255,0.86), 0 28px 70px rgba(0,0,0,0.58);
}
.preview-card-header, .preview-card-meta, .preview-card-footer { color: rgba(255,255,255,0.56); }
.preview-card-title { font-family: var(--font-display); font-size: 1.7rem; font-style: italic; text-transform: uppercase; }
.live-dot { background: var(--primary); }
.preview-card-progress-bar { background: var(--primary); }
.preview-chip { background: var(--primary); border: 0; color: var(--white); border-radius: 7px; }

.sport-strip {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  max-width: 1120px;
  margin: 22px auto 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.56);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.sport-strip span:nth-child(odd) { color: var(--white); }

.features, .how-it-works, .faq { background: #050505; color: var(--white); }
.features { max-width: none; padding: 112px max(24px, calc((100vw - 1100px) / 2)); }
.features h2, .how-it-works h2, .demo h2, .business h2, .faq h2, .early-access h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.feature-card {
  background: #0c0c0c;
  border-color: rgba(255,255,255,0.13);
  border-radius: 6px;
  color: var(--white);
  text-align: left;
}
.feature-card:hover { border-color: var(--primary); box-shadow: 0 18px 42px rgba(31,90,255,0.13); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; letter-spacing: 0.02em; text-transform: uppercase; }
.feature-card p { color: rgba(255,255,255,0.56); }
.feature-icon-wrap { border-radius: 6px; background: rgba(31,90,255,0.16); }

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 18px 20px 38px; }
  .nav { margin-bottom: 54px; }
  .nav-links { display: none; }
  .hero-main { grid-template-columns: 1fr; gap: 58px; min-height: 0; }
  .hero-content { text-align: center; }
  .subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-preview { max-width: 285px; }
  .sport-strip { flex-wrap: wrap; gap: 12px 25px; font-size: 0.88rem; }
}

.blob-3 {
  width: 320px;
  height: 320px;
  background: var(--primary);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.18;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 12px 16px;
  border-radius: 999px;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Brand lockup for the Sport Mates wordmark. */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  width: auto;
  text-decoration: none;
}

.logo-wordmark {
  display: block;
  width: 176px;
  height: auto;
}

@media (max-width: 480px) {
  .logo-wordmark { width: 142px; }
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(46, 92, 255, 0.15);
  border: 1px solid rgba(46, 92, 255, 0.35);
  color: #9CB0FF;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseOrange 1.6s ease-in-out infinite;
}

@keyframes pulseOrange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 92, 255, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(46, 92, 255, 0); }
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  color: #b9c2dc;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(46, 92, 255, 0.6);
  animation: glow 2.5s ease-out infinite;
}

@keyframes glow {
  0% { box-shadow: 0 0 0 0 rgba(46, 92, 255, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(46, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 92, 255, 0); }
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ---------- Hero preview card ---------- */

.hero-preview {
  position: relative;
  max-width: 340px;
  margin: 64px auto 0;
}

.preview-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 77, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 106, 77, 0); }
}

.preview-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.preview-card-meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.preview-card-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 10px;
}

.preview-card-progress-bar {
  width: 66%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: growBar 1.4s ease-out;
}

@keyframes growBar {
  from { width: 0%; }
  to { width: 66%; }
}

.preview-card-footer {
  font-size: 0.8125rem;
  color: var(--muted);
}

.preview-chip {
  position: absolute;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatChip 4s ease-in-out infinite;
}

.chip-1 { top: -20px; right: -20px; animation-delay: -1s; }
.chip-2 { bottom: 30px; left: -30px; animation-delay: -2.5s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* ---------- Section shared ---------- */

.section-tag {
  display: block;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Features ---------- */

.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  border-color: transparent;
}

.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46, 92, 255, 0.1);
  color: var(--primary);
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* ---------- How it works ---------- */

.how-it-works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 96px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #e2e8f0 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 260px;
  margin: 0 auto;
}

/* ---------- Demo video ---------- */

.demo {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 96px;
  text-align: center;
}

.demo h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darker) 0%, #1E2340 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.blob-4 {
  width: 320px;
  height: 320px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: glow 2.5s ease-out infinite;
}

.play-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}

.play-btn .icon {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.video-message {
  margin-top: 18px;
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 600;
  min-height: 1.5em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 96px;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--dark);
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease;
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 4px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-answer-inner a {
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Business ---------- */

.business {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(31, 90, 255, 0.28), transparent 28%),
    radial-gradient(circle at 90% 74%, rgba(31, 90, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #07101f 0%, #0a1020 52%, #060b15 100%);
  color: #f8fbff;
  padding: 112px 24px;
  text-align: center;
}

.business h2 {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 16px;
}

.business .section-tag { color: #9bb8ff; }

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.business .section-subtitle {
  position: relative;
  color: #c7d3ec;
  line-height: 1.65;
}

.business-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  text-align: left;
  align-items: stretch;
}

.business-steps h3 {
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  margin-bottom: 16px;
}

.business-steps {
  padding: 36px;
  border: 1px solid rgba(151, 180, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(36, 53, 86, 0.7), rgba(12, 20, 37, 0.92));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.business-overline,
.dashboard-label {
  color: #90b0ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.business-overline { margin-bottom: 14px; }

.business-lead {
  color: #c7d3ec;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.business-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.business-step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.business-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6dff, #1745c6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.business-step-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #fff;
}

.business-step-list p {
  color: #c7d3ec;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.business-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.business-dashboard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(162, 189, 255, 0.28);
  border-radius: 24px;
  background: #f7f9ff;
  color: #10192e;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.dashboard-topbar,
.dashboard-schedule-head,
.schedule-row,
.dashboard-foot {
  display: flex;
  align-items: center;
}

.dashboard-topbar {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dce4f4;
}

.dashboard-topbar strong { display: block; margin-top: 5px; font-size: 1.25rem; }
.dashboard-label { display: block; color: #507be8; }

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e9f8ef;
  color: #177447;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28b66d;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px 0;
}

.dashboard-stats div { padding: 13px 10px; border-left: 2px solid #dce6fd; }
.dashboard-stats div:first-child { border-left-color: #1f5aff; }
.dashboard-stats span,
.dashboard-stats small { display: block; }
.dashboard-stats span { color: #667593; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; }
.dashboard-stats strong { display: block; margin: 7px 0 2px; font-size: 1.65rem; line-height: 1; }
.dashboard-stats small { color: #697895; font-size: 0.72rem; }

.dashboard-schedule { padding: 20px; border-radius: 16px; background: #eaf0ff; }
.dashboard-schedule-head { justify-content: space-between; margin-bottom: 12px; }
.dashboard-schedule-head strong { font-size: 0.95rem; }
.dashboard-schedule-head span { color: #6a7895; font-size: 0.78rem; }

.schedule-row { gap: 10px; padding: 12px 0; border-top: 1px solid #d6e0f6; }
.schedule-row time { width: 38px; color: #52617e; font-size: 0.76rem; font-weight: 700; }
.schedule-line { width: 3px; align-self: stretch; border-radius: 3px; }
.schedule-line.booked { background: #1f5aff; }
.schedule-line.open { background: #62c391; }
.schedule-row strong,
.schedule-row small { display: block; }
.schedule-row strong { font-size: 0.82rem; }
.schedule-row small { margin-top: 2px; color: #687795; font-size: 0.72rem; }

.dashboard-foot { gap: 10px; margin-top: auto; padding: 20px 4px 0; color: #53617c; font-size: 0.82rem; }
.dashboard-foot .icon { width: 18px; color: #1f5aff; }

.business-guide-link:hover {
  color: var(--primary);
}

.business-guide-link span {
  color: var(--primary);
  font-size: 1.15rem;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.business-card {
  background: linear-gradient(145deg, rgba(25, 38, 63, 0.95), rgba(12, 20, 36, 0.98));
  border: 1px solid rgba(151, 180, 255, 0.19);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 145, 255, 0.7);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.business-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 90, 255, 0.2);
  color: #a9c0ff;
  margin-bottom: 14px;
}

.business-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.business-card p {
  color: #c7d3ec;
  font-size: 0.875rem;
  line-height: 1.6;
}

.business-planned {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(31, 90, 255, 0.14);
  border: 1px solid rgba(126, 162, 255, 0.36);
  border-radius: 14px;
}

.business-planned .icon {
  flex: 0 0 22px;
  width: 22px;
  color: var(--primary);
}

.business-planned strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #fff;
}

.business-planned p {
  color: #d6e1fb;
  font-size: 0.85rem;
  line-height: 1.5;
}

.business-cta {
  display: inline-block;
  margin-top: 56px;
}

/* ---------- Early access ---------- */

.early-access {
  position: relative;
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 96px 24px;
  overflow: hidden;
}

.early-access h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.early-access p {
  color: var(--muted);
  margin-bottom: 32px;
}

.waitlist-form {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

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

.waitlist-permission {
  flex-basis: 100%;
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
}

.waitlist-permission input {
  flex: 0 0 auto;
  min-width: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  border-radius: 3px;
  background: transparent;
  accent-color: var(--primary);
}

.waitlist-permission a,
.notice-card a {
  color: var(--primary);
  font-weight: 600;
}

.unsubscribe-box {
  position: relative;
  max-width: 480px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.unsubscribe-box p {
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.unsubscribe-button {
  border: 0;
  background: none;
  color: #cbd5e1;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.unsubscribe-button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.notice-page {
  min-height: 100vh;
  background: #f3f5fb;
  padding: 48px 20px;
}

.notice-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: white;
  color: var(--dark);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.notice-card h1,
.notice-card h2 {
  margin: 18px 0 12px;
}

.notice-card p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.notice-card hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}

.form-message {
  position: relative;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--success);
  min-height: 1.5em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Waitlist: social proof + referrals ---------- */

.referred-banner {
  display: inline-block;
  margin: 0 auto 20px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 106, 77, 0.12);
  border: 1px solid rgba(255, 106, 77, 0.3);
  color: #ffb8a3;
  font-size: 0.875rem;
  font-weight: 600;
}

.waitlist-count {
  margin: 0 auto 20px;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 600;
}

.waitlist-count strong {
  color: white;
}

.referral-box {
  max-width: 480px;
  margin: 24px auto 0;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.referral-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.referral-link-row {
  display: flex;
  gap: 8px;
}

.referral-link-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.875rem;
}

.referral-copy-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.referral-copy-btn:hover {
  background: var(--primary-dark);
}

.referral-copy-btn.copied {
  background: var(--success);
}

.referral-invited {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer .logo {
  width: 196px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}

.footer a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
}

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

/* ---------- Responsive ---------- */

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .business-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .business {
    padding: 84px 20px;
  }

  .business-steps,
  .business-dashboard {
    padding: 24px;
  }

  .dashboard-stats {
    gap: 4px;
  }

  .dashboard-stats div {
    padding-inline: 7px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
  }
}

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

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


/* ── Brand typography ─────────────────────────────────────────
   Headings use the condensed italic display face so the page speaks in the
   same voice as the mark; body copy stays in a neutral grotesk for reading. */
h1, h2, h3,
.hero-title,
.section-title {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
}

h1, .hero-title {
  font-weight: 800;
}
