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

:root {
  --blue:     #2F80ED;
  --blue-mid: #1A6DD4;
  --black:    #0A0A0A;
  --ink:      #111111;
  --body:     #4A4A4A;
  --muted:    #888;
  --light:    #bbb;
  --white:    #fff;
  --off:      #F7F7F5;
  --border:   #E2E2DE;
  --green:    #16A34A;
}

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

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

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

.reveal-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s 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; }

/* ─── 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.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px 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-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.nav-menu-toggle:hover {
  border-color: rgba(47,128,237,0.28);
}

.nav-menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47,128,237,0.18);
}

.nav-menu-toggle-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-menu-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-right { display: flex; align-items: center; gap: 2rem; margin-left: auto; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.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;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 5rem;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Subtle background orbs */
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.1;
}

.orb-1 {
  width: 700px; height: 700px;
  background: var(--blue);
  top: -200px; right: -150px;
  animation: o1 14s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: #60A5FA;
  bottom: 0; left: -100px;
  animation: o2 18s ease-in-out infinite;
}

@keyframes o1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-50px, 40px); }
}
@keyframes o2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, -50px); }
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

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

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

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow-div {
  width: 1px; height: 12px;
  background: var(--border);
}

.eyebrow-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}

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

.hero h1 .line-blue {
  color: var(--blue);
  display: block;
}

.hero h1 .line-italic {
  font-style: italic;
  display: block;
}

/* Hero right column */
.hero-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 1.75rem;
  max-width: 420px;
}

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

.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.9rem 1.75rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(47,128,237,0.28);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47,128,237,0.38);
}

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

.hero-footnote {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.6;
}

.hero-footnote strong { color: var(--blue); font-weight: 700; }

/* ─── 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.06),
    0 28px 80px rgba(0,0,0,0.1),
    0 4px 16px rgba(47,128,237,0.08);
  overflow: hidden;
  animation: floatDash 7s ease-in-out infinite;
}

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

.dash-header {
  background: var(--ink);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #FF5F57; }
.dash-dot.y { background: #FFBD2E; }
.dash-dot.g { background: #28C840; }

.dash-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #28C840;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #28C840;
  animation: livePulse 1.5s ease-in-out infinite;
}

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

.dash-body { padding: 1.25rem; background: var(--off); }

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

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

.ds-num {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 3px;
}

.ds-num.blue { color: var(--blue); }
.ds-num.green { color: var(--green); }
.ds-num.ink { color: var(--ink); }

.ds-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-jobs { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }

.dash-job {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  transition: border-color 0.2s;
}

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

.dj-badge {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.dj-badge.new { background: #DBEAFE; color: var(--blue); }
.dj-badge.acc { background: #DCFCE7; color: var(--green); }

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

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

.dj-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

.dash-action {
  background: var(--blue);
  border-radius: 6px;
  padding: 0.7rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-action:hover { background: var(--blue-mid); }

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

.inline-cta-strip {
  padding: 0 0 2.5rem;
}

.inline-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(47,128,237,0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(47,128,237,0.1), transparent 35%),
    linear-gradient(135deg, rgba(248,251,255,0.98), rgba(255,255,255,0.92));
  box-shadow: 0 20px 50px rgba(15,74,153,0.08);
}

.inline-cta-copy {
  max-width: 620px;
}

.inline-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(47,128,237,0.1);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-cta-card h3 {
  margin: 0.95rem 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.inline-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.inline-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 40px rgba(15,74,153,0.26);
}

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

/* ─── DIVIDER BAND ──────────────────────────────────── */
.divider-band {
  background: var(--black);
  padding: 4rem 5%;
  text-align: center;
}

.divider-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
}

.divider-band h2 span { color: var(--blue); }

.divider-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 560px;
  margin: 0.85rem auto 0;
}

/* ─── STATS ─────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 3.5rem 5%;
}

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

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

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

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

.stat-num.green { color: #22C55E; }

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

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

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

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

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

.sticky-left p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
}

.row-list { display: flex; flex-direction: column; }

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

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

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

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

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

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

.promise-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,128,237,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: gridDrift 22s linear infinite;
}

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

.promise-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.12) 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.2);
  margin-bottom: 2.5rem;
  display: block;
}

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

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

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

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

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

.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.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
}

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

.step-list { display: flex; flex-direction: column; }

.step-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

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

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

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

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

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

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

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

.feat-header p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
}

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

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

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

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

.feat-cell:hover { background: rgba(47,128,237,0.025); }
.feat-cell:last-child { border-right: none; }
.feat-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;
}

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

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

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

/* ─── 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.1) 0%, transparent 70%);
  top: 50%; right: -80px;
  transform: translateY(-50%);
  pointer-events: none;
}

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

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

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

.outcomes > .wrap > .outcomes-inner > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 4rem;
}

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

.outcome-item {
  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;
}

.outcome-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }

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

.outcome-item p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.74;
}

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

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

.faq-left h2 {
  font-size: clamp(2.2rem, 3.2vw, 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.74;
}

.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.82;
  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.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 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.08) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

.cta-inner { max-width: 720px; 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.35);
  margin-bottom: 2rem;
  display: block;
}

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

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

.register-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 460px;
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 0.65rem;
}

.register-form input,
.register-form select {
  flex: 1;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.25);
  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;
  appearance: none;
  -webkit-appearance: none;
}

.register-form input:focus,
.register-form select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

.register-form input::placeholder { color: rgba(255,255,255,0.35); }
.register-form select { color: rgba(255,255,255,0.65); cursor: pointer; }
.register-form select option { background: var(--ink); color: var(--white); }

.register-form input.form-error,
.register-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: 0.35rem 0 0.4rem;
}

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

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

.btn-white:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

.legal-note {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.legal-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

/* ─── 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 { margin: 0; font-size: 0.78rem; color: var(--muted); }
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.footer-links .cookie-settings-trigger {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-links .cookie-settings-trigger:hover {
  color: var(--ink);
}

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

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 3.5rem; min-height: auto; padding-top: 7rem; }
  .hero h1 { font-size: clamp(3rem, 9vw, 5rem); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .sticky-left { position: static; }
  .how-header { grid-template-columns: 1fr; gap: 2rem; }
  .step-item { grid-template-columns: 2.5rem 1fr; }
  .step-item p { grid-column: 2; }
  .feat-header { grid-template-columns: 1fr; gap: 2rem; }
  .feat-row { grid-template-columns: 1fr 1fr; }
  .feat-cell:nth-child(2) { border-right: none; }
  .feat-cell:nth-child(3) { grid-column: 1/-1; border-right: none; border-top: 1px solid var(--border); padding-left: 0; }
  .promise-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .promise h2 { font-size: clamp(2.8rem, 7vw, 4.5rem); }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 6.5rem;
  }

  nav {
    gap: 0.75rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
    gap: 0.6rem;
    min-width: 0;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 5%;
    right: 5%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.1rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 44px rgba(15,74,153,0.12);
  }

  nav.menu-open .nav-right {
    display: flex;
  }

  .nav-right .nav-link {
    display: block;
    font-size: 0.98rem;
    color: var(--ink);
  }

  .nav-right .nav-cta {
    width: 100%;
    text-align: center;
  }

  .inline-cta-strip {
    padding: 0 0 2rem;
  }

  .inline-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem;
    border-radius: 22px;
  }

  .inline-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .inline-cta-actions .btn-primary,
  .inline-cta-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 5%;
    right: 5%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + var(--cookie-banner-height, 0px) + 0.9rem);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav.menu-open .nav-menu-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  nav.menu-open .nav-menu-bar:nth-child(2) {
    opacity: 0;
  }

  nav.menu-open .nav-menu-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .hero { padding: 6.5rem 5% 4rem; }
  .hero-eyebrow {
    flex-wrap: wrap;
    row-gap: 0.45rem;
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 0.97;
    letter-spacing: -0.04em;
    max-width: 8.8ch;
  }
  .hero-body,
  .hero-pull,
  .hero-footnote {
    max-width: none;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .inline-cta-card h3 {
    font-size: 1.45rem;
  }
  .dashboard {
    width: min(100%, 26rem);
    max-width: 100%;
    margin-inline: auto;
  }
  .dash-header {
    gap: 0.6rem;
    padding: 0.95rem 1rem;
  }
  .dash-title {
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dash-job {
    grid-template-columns: auto 1fr;
  }
  .dj-val { display: none; }
  .problem, .how, .features, .community, .faq { padding: 5rem 0; }
  .promise, .outcomes, .cta-section { padding: 5rem 0; }
  .stats-band, .divider-band { padding: 2.5rem 5%; }
  .step-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-num { display: none; }
  .feat-row { grid-template-columns: 1fr; }
  .feat-cell { border-right: none !important; border-top: 1px solid var(--border); padding-left: 0 !important; }
  .feat-cell:first-child { border-top: none; }
  .form-row { flex-direction: column; }
  footer { flex-direction: column; text-align: center; }
  .footer-meta { align-items: center; }
  .footer-links { justify-content: center; }
}
