/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #000;
  --bg-card:      #0a0a0a;
  --bg-card-2:    #111;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.14);
  --text:         #ededed;
  --text-muted:   rgba(237,237,237,0.5);
  --text-dim:     rgba(237,237,237,0.3);
  --green:        #d85722;
  --green-dim:    rgba(216,87,34,0.12);
  --green-glow:   rgba(216,87,34,0.15);
  --teal:         #296b71;
  --white:        #fff;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, background 0.15s, transform 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-white {
  background: var(--white);
  color: #000;
  font-weight: 600;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }
.btn-primary {
  background: var(--white);
  color: #000;
  font-weight: 600;
}
.btn-sm  { padding: 7px 14px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.75);
  border-color: var(--border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-item:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-end { margin-left: 12px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 80px);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(216,87,34,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Pill badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-hover);
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.hero-pill:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--green); }
  50%       { opacity: 0.6; box-shadow: 0 0 14px var(--green); }
}

/* Hero headline */
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.headline-gradient {
  background: linear-gradient(135deg, #d85722 0%, #e8733a 50%, #f59c6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

/* ── Hero phones ──────────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-visual-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at 50% 100%, rgba(216,87,34,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.hero-phones::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  z-index: 10;
}

/* Base phone — frame stripped, SVG bezels do the framing */
.phone {
  position: relative;
  background: transparent;
  border: none;
  overflow: visible;
  box-shadow: none;
}
.phone-notch,
.phone-island,
.screen-empty { display: none; }

.phone-screen {
  display: block !important;
  position: static;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55));
}

/* Hero phone sizes */
.phone-center {
  width: 220px;
  z-index: 3;
}
.phone-left, .phone-right {
  width: 186px;
  z-index: 2;
}
.phone-left  { transform: rotate(-4deg) translateY(20px) translateX(45px); }
.phone-right { transform: rotate(4deg) translateY(20px) translateX(-45px); }

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: linear-gradient(180deg, rgba(216,87,34,0.04) 0%, rgba(255,255,255,0.01) 100%);
}
.stats-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 40px;
}
.stat-val {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-accent {
  color: var(--green);
}
.stat-sep {
  width: 1px; height: 36px;
  background: rgba(216,87,34,0.2);
  flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-dark {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#how-it-works { padding-bottom: 60px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 64px;
  line-height: 1.65;
}

/* ── Bento grid ───────────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.bento-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.bento-2    { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.card-body { position: relative; z-index: 2; }
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.card-icon-green {
  background: var(--green-dim);
  border-color: rgba(216,87,34,0.2);
  color: var(--green);
}
.bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}

/* Border beam on featured card */
.bento-featured { border-color: rgba(216,87,34,0.2); }
.card-beam {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.card-beam::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: beam 3s ease-in-out infinite;
}
.card-beam::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: beam 3s ease-in-out infinite 1.5s;
}
@keyframes beam {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Diagnosis window mock */
.card-visual { margin-top: 28px; position: relative; z-index: 2; }
.diag-window {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 360px;
}
.diag-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.diag-dot { width: 10px; height: 10px; border-radius: 50%; }
.diag-dot.r { background: #ff5f57; }
.diag-dot.y { background: #febc2e; }
.diag-dot.g { background: #28c840; }
.diag-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  letter-spacing: 0.04em;
}
.diag-body { padding: 16px 14px; }
.diag-tag {
  font-size: 11px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(216,87,34,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.diag-fix {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.diag-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.diag-save { color: var(--green); font-weight: 600; }

/* Savings chips */
.savings-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.chip-green { color: var(--green); font-weight: 600; }

/* ── Feature rows ─────────────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-flip .feature-visual { order: -1; }

.feature-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}
.feature-text h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.feature-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Large phone mockup — frame stripped, SVG bezels do the framing */
.mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-lg {
  position: relative;
  width: 260px;
  background: transparent;
  border: none;
  overflow: visible;
  box-shadow: none;
}
.phone-lg img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.phone-lg .phone-island { display: none; }
.phone-lg .phone-screen {
  display: block !important;
  position: static;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.mockup-glow {
  position: relative;
  width: 300px; height: 80px;
  margin: -20px auto 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(216,87,34,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Compare grid ─────────────────────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.compare-card:hover { border-color: var(--border-hover); }
.compare-job {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}
.compare-lbl  { font-size: 14px; color: var(--text-muted); }
.compare-price { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.compare-price.bad  { color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.25); }
.compare-price.good { color: var(--green); }
.compare-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-bottom: 48px;
}
.pricing-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.pricing-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(216,87,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pricing-pillar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-pillar-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.pricing-pillar-text span {
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-pillar-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

.pricing-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pricing-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--border-hover); }
.pricing-card-featured {
  border-color: rgba(216,87,34,0.25);
  background: rgba(216,87,34,0.04);
}
.pricing-card-featured:hover { border-color: rgba(216,87,34,0.45); }

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-cycle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-was {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}
.pricing-trial-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ── Mission ──────────────────────────────────────────────────────────────── */
.mission {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.mission-eyebrow::before,
.mission-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.mission-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.mission-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 48px;
}

/* Progress bar */
.mission-progress {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  text-align: left;
}
.mission-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.mission-progress-label {
  font-size: 13px;
  color: var(--text-muted);
}
.mission-progress-count {
  font-size: 13px;
  color: var(--text-muted);
}
.mission-count-num {
  color: var(--green);
  font-weight: 700;
}
.mission-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.mission-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d85722, #e8733a);
  border-radius: 100px;
  transition: width 1s ease;
}

/* Mission mini stats */
.mission-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.mission-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.mission-stat-val {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}
.mission-stat-lbl {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.mission-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(216,87,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-fine { font-size: 13px; color: var(--text-dim); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-card);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.6; }
.footer-cols { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Reveal animations ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-right { transform: translateX(32px); }
.reveal-right.visible { transform: translateX(0); }

.reveal-left { transform: translateX(-32px); }
.reveal-left.visible { transform: translateX(0); }

/* Bento stagger */
.bento-card { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s; }
.bento-card.visible { opacity: 1; transform: translateY(0); }
.bento-card:nth-child(2) { transition-delay: 0.06s; }
.bento-card:nth-child(3) { transition-delay: 0.12s; }
.bento-card:nth-child(4) { transition-delay: 0.06s; }
.bento-card:nth-child(5) { transition-delay: 0.04s; }
.bento-card:nth-child(6) { transition-delay: 0.10s; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-center { display: none; }
  .nav-inner { justify-content: space-between; gap: 0; }
  .nav-end { margin-left: 0; }

  .hero { padding-top: calc(var(--nav-h) + 60px); }
  .hero-headline { font-size: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-phones { gap: 8px; }
  .phone-center { width: 180px; height: 378px; }
  .phone-left, .phone-right { width: 148px; height: 310px; }

  .stat-sep { display: none; }
  .stats-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: transparent; }
  .stat-item { padding: 16px 12px; }

  .section { padding: 80px 0; }
  .section-h2 { font-size: 36px; }
  #how-it-works .section-h2 { margin-bottom: 48px; }

  .bento { grid-template-columns: 1fr; }
  .bento-2 { grid-column: span 1; }
  .bento-tall { grid-row: span 1; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .feature-row .feature-visual      { order: 1; }
  .feature-row .feature-text        { order: 2; }
  .feature-row-flip .feature-visual { order: 1; }
  .feature-row-flip .feature-text   { order: 2; }
  .mockup-glow { display: none; }

  .mockup-wrap {
    max-height: 380px;
    overflow: hidden;
    position: relative;
  }
  .mockup-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
  }

  .compare-grid { grid-template-columns: 1fr 1fr; }
  .pricing-wrap { flex-direction: column; align-items: center; }
  .pricing-card-featured { order: -1; }

  .pricing-pillars { flex-direction: column; gap: 20px; padding: 24px; }
  .pricing-pillar-sep { width: 100%; height: 1px; margin: 0; }
  .pricing-pillar { justify-content: flex-start; }

  .mission-inner { flex-direction: column; gap: 16px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 100px 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-phones { position: relative; justify-content: center; gap: 0; width: 220px; margin: 0 auto; }
  .phone-center { width: 220px; height: auto; z-index: 3; position: relative; }
  .phone-left  { width: 200px; height: auto; position: absolute; left: -110px; bottom: 0; transform: rotate(-8deg) translateY(20px); z-index: 1; opacity: 0.85; filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55)) brightness(0.75); }
  .phone-right { width: 200px; height: auto; position: absolute; right: -110px; bottom: 0; transform: rotate(8deg) translateY(20px); z-index: 1; opacity: 0.85; filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55)) brightness(0.75); }
  .compare-grid { grid-template-columns: 1fr; }
  .stat-val { font-size: 24px; }
}
