
/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue:      #2F80ED;
  --blue-mid:  #1A6DD4;
  --blue-dark: #0F4A99;
  --black:     #0A0A0A;
  --ink:       #111111;
  --body:      #444;
  --muted:     #888;
  --light:     #bbb;
  --white:     #fff;
  --off:       #F8F8F6;
  --stone:     #F2F1EE;
  --border:    #E3E3DF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ─── NAV ───────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo img { height: 30px; width: auto; }
.nav-logo-fallback { font-size: 1.3rem; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; }

.nav-right { display: flex; align-items: center; gap: 2.5rem; }

.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }

.nav-cta {
  font-size: 0.875rem; font-weight: 700;
  color: var(--white); background: var(--blue);
  padding: 0.55rem 1.25rem; border-radius: 3px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -150px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: #60A5FA;
  bottom: 50px; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: var(--blue-dark);
  top: 40%; right: 30%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-20px, 20px); }
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,128,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,128,237,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(47,128,237,0); }
}

.hero-meta span {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue);
}

.hero-meta-div {
  width: 1px; height: 12px;
  background: var(--border);
  margin: 0 0.2rem;
}

.hero-meta .meta-sec {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--light);
}

.hero h1 {
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 0;
}

.hero h1 .blue-italic {
  display: block;
  color: var(--blue);
  font-style: italic;
}

/* ─── HERO RIGHT: FLOATING DASHBOARD ────────────────── */
.hero-right { position: relative; }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.hero-tension {
  font-size: 0.925rem;
  line-height: 1.72;
  color: var(--muted);
  font-style: italic;
  max-width: 380px;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-weight: 700; font-size: 0.925rem;
  padding: 0.85rem 1.75rem;
  border-radius: 3px; border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(47,128,237,0.3);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47,128,237,0.4);
}

.btn-text {
  font-size: 0.875rem; font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
  white-space: nowrap;
}
.btn-text:hover { color: var(--ink); }

.hero-scarcity { font-size: 0.8rem; color: var(--light); }
.hero-scarcity strong { color: var(--blue); font-weight: 700; }

/* ─── FLOATING DASHBOARD MOCKUP ─────────────────────── */
.dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(47,128,237,0.08),
    0 20px 60px rgba(0,0,0,0.1),
    0 4px 16px rgba(47,128,237,0.12);
  overflow: hidden;
  animation: floatDash 6s ease-in-out infinite;
  position: relative;
  margin-top: 2.5rem;
}

@keyframes floatDash {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

.dash-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #FF5F57; }
.dash-dot.y { background: #FEBC2E; }
.dash-dot.g { background: #28C840; }

.dash-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.02em;
}

.dash-body { padding: 1rem; }

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.dash-header-left h3 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.dash-header-left p {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #22C55E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.dash-stat {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  text-align: center;
}

.dash-stat-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.dash-stat-num.blue { color: var(--blue); }
.dash-stat-num.green { color: #22C55E; }

.dash-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.dash-jobs { display: flex; flex-direction: column; gap: 0.4rem; }

.dash-job {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.3s;
}

.dash-job:hover { border-color: var(--blue); }

.job-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.job-badge.urgent { background: #FEE2E2; color: #DC2626; }
.job-badge.routine { background: #DBEAFE; color: var(--blue); }
.job-badge.done { background: #DCFCE7; color: #16A34A; }

.job-text {
  flex: 1;
  min-width: 0;
}

.job-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-sub {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 1px;
}

.job-time {
  font-size: 0.62rem;
  color: var(--muted);
  flex-shrink: 0;
  font-weight: 500;
}

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

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

.dash-footer-text strong {
  color: var(--blue);
  font-weight: 700;
}

.dash-badge-new {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  animation: badgePop 3s ease-in-out infinite;
}

@keyframes badgePop {
  0%, 80%, 100% { transform: scale(1); }
  90% { transform: scale(1.1); }
}

/* ─── SECTION DIVIDER ───────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── WRAP ──────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

.section-num {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem; display: block;
}

/* ─── STATS BAND ────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 3.5rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ─── PROBLEM ───────────────────────────────────────── */
.problem {
  padding: 9rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle background shape */
.problem::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.problem-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
}

.problem-left { position: sticky; top: 6rem; }

.problem-left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.problem-left p {
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--body);
}

.problem-rows { display: flex; flex-direction: column; }

.problem-row {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: background 0.2s;
}

.problem-row:last-child { border-bottom: 1px solid var(--border); }
.problem-row:hover { background: rgba(47,128,237,0.02); }

.problem-index {
  font-size: 0.7rem; font-weight: 800;
  color: var(--blue); padding-top: 3px;
  letter-spacing: 0.06em;
}

.problem-row h4 {
  font-size: 0.975rem; font-weight: 800;
  color: var(--ink); margin-bottom: 0.45rem;
  letter-spacing: -0.02em; line-height: 1.3;
}

.problem-row p { font-size: 0.875rem; color: var(--body); line-height: 1.72; }

/* ─── PROMISE ───────────────────────────────────────── */
.promise {
  background: var(--black);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated grid on dark bg */
.promise-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,128,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}

.promise-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.promise-inner { position: relative; z-index: 2; }

.promise-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 3rem; display: block;
}

.promise h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 4rem;
}

.promise h2 .accent { color: var(--blue); }

.promise-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
}

.promise-cols p {
  font-size: 0.975rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.42);
}

/* ─── HOW IT WORKS ──────────────────────────────────── */
.how {
  padding: 9rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.how::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: end;
}

.how-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
}

.how-header p {
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--body);
}

.how-steps { display: flex; flex-direction: column; }

.how-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
  transition: background 0.2s;
}

.how-step:last-child { border-bottom: 1px solid var(--border); }
.how-step:hover { background: rgba(47,128,237,0.02); }

.how-num {
  font-size: 0.7rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.06em;
  padding-top: 3px;
}

.how-step h4 {
  font-size: 0.975rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.3;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.72;
}

/* ─── FEATURES ──────────────────────────────────────── */
.features {
  background: var(--stone);
  padding: 9rem 0;
  border-bottom: 1px solid var(--border);
}

.features-header {
  margin-bottom: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
}

.features-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
}

.features-header p {
  font-size: 0.975rem;
  color: var(--body);
  line-height: 1.78;
}

.features-table { display: flex; flex-direction: column; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: 1px solid var(--border); }

.feature-cell {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-cell:hover { background: rgba(47,128,237,0.03); }
.feature-cell:last-child { border-right: none; padding-right: 0; }
.feature-cell:not(:first-child) { padding-left: 2rem; }

.feat-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.6rem;
}

.feature-cell h4 {
  font-size: 0.925rem; font-weight: 800;
  color: var(--ink); margin-bottom: 0.5rem;
  letter-spacing: -0.02em; line-height: 1.3;
}

.feature-cell p {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.72;
}

/* ─── WHO ───────────────────────────────────────────── */
.who {
  padding: 9rem 0;
  border-bottom: 1px solid var(--border);
}

.who-header { margin-bottom: 4.5rem; }

.who-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
}

.who-rows { display: flex; flex-direction: column; }

.who-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 3rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: background 0.2s;
}

.who-row:last-child { border-bottom: 1px solid var(--border); }
.who-row:hover { background: rgba(47,128,237,0.02); }

.who-role {
  font-size: 0.975rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.3;
}

.who-tag {
  font-size: 0.72rem; font-weight: 600;
  color: var(--blue); margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.who-desc { font-size: 0.875rem; color: var(--body); line-height: 1.72; }
.who-aside { font-size: 0.85rem; color: var(--muted); font-style: italic; line-height: 1.6; }

/* ─── OUTCOMES ──────────────────────────────────────── */
.outcomes {
  background: var(--black);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}

.outcomes-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.12) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.outcomes-inner { position: relative; z-index: 2; }

.outcomes-header { margin-bottom: 4.5rem; }
.outcomes-header .section-num { color: rgba(255,255,255,0.22); }

.outcomes-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1rem;
}

.outcomes-header p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.78;
  max-width: 520px;
}

.outcome-rows { display: flex; flex-direction: column; }

.outcome-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: start;
  transition: background 0.2s;
}

.outcome-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.outcome-row:hover { background: rgba(47,128,237,0.05); }

.outcome-check {
  color: var(--blue);
  font-size: 0.95rem; font-weight: 900;
  padding-top: 2px;
}

.outcome-row p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
}

.outcome-row p strong { color: var(--white); font-weight: 700; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
  padding: 9rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
}

.faq-left { position: sticky; top: 6rem; }

.faq-left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 1rem;
}

.faq-left p { font-size: 0.925rem; color: var(--muted); line-height: 1.72; }

.faq-right { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0;
  text-align: left;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem; font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--blue); }

.faq-icon {
  font-size: 1.1rem; color: var(--blue);
  flex-shrink: 0; font-weight: 300;
  transition: transform 0.25s; line-height: 1;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 0.875rem; color: var(--body);
  line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-a.open { max-height: 300px; padding-bottom: 1.5rem; }

/* ─── CTA ───────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

.cta-inner { max-width: 760px; position: relative; z-index: 2; }

.cta-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem; display: block;
}

.cta-inner h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.cta-inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin-bottom: 3rem;
  max-width: 500px;
}

.waitlist-form {
  max-width: 620px;
  margin-bottom: 1rem;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.waitlist-field-full {
  grid-column: 1 / -1;
}

.waitlist-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.waitlist-form input,
.waitlist-form select {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 3px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-size: 0.925rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.2);
}

.waitlist-form input::placeholder { color: rgba(255,255,255,0.38); }
.waitlist-form select {
  appearance: none;
  cursor: pointer;
}

.waitlist-form select option {
  background: #0b1328;
  color: var(--white);
}

.waitlist-form input.form-error,
.waitlist-form select.form-error {
  border-color: rgba(255,100,100,0.7);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin-bottom: 1rem;
}

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

.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
}

.form-status[data-state="success"] {
  color: #c6ffe0;
}

.form-status[data-state="error"] {
  color: #ffd2d2;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 800; font-size: 0.925rem;
  padding: 0.85rem 1.5rem;
  border-radius: 3px; border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-white:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.32); }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img { height: 24px; width: auto; }
.footer-logo-fallback { font-size: 1rem; font-weight: 900; color: var(--blue); letter-spacing: -0.02em; }
footer p { font-size: 0.78rem; color: var(--muted); }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .dashboard { max-width: 480px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .problem-layout { grid-template-columns: 1fr; gap: 3rem; }
  .problem-left { position: static; }
  .how-header { grid-template-columns: 1fr; gap: 2rem; }
  .how-step { grid-template-columns: 2.5rem 1fr; }
  .how-step p { grid-column: 2; }
  .features-header { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-cell:nth-child(2) { border-right: none; }
  .feature-cell:nth-child(3) { grid-column: 1/-1; border-right: none; border-top: 1px solid var(--border); padding-left: 0; }
  .who-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .who-aside { grid-column: 1/-1; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left { position: static; }
  .promise-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 5% 4rem; }
  .problem, .how, .features, .who, .faq { padding: 5rem 0; }
  .promise, .outcomes, .cta-section { padding: 5rem 0; }
  .stats-band { padding: 2.5rem 5%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .how-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .how-num { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-cell { border-right: none !important; border-top: 1px solid var(--border); padding-left: 0 !important; }
  .feature-cell:first-child { border-top: none; }
  .who-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .waitlist-grid { grid-template-columns: 1fr; }
  .waitlist-actions { align-items: stretch; }
  .waitlist-actions .btn-white { width: 100%; }
  .nav-right .nav-link { display: none; }
  footer { flex-direction: column; text-align: center; }
}

/* ─── MOUSE GLOW ────────────────────────────────────── */
.mouse-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
