/* ===================================
   MyCoach Landing Page — Production CSS
   Brand: dark theme, teal primary, Inter
   =================================== */

:root {
  --bg: #0D1520;
  --surface-1: #162230;
  --surface-2: #1B2E3A;
  --surface-3: #2A3548;
  --nav-bar: #0F1923;
  --primary: #2DD4A8;
  --primary-muted: #1A8A6E;
  --coral-start: #E84069;
  --coral-end: #F0607A;
  --gold: #F59E0B;
  --text-primary: #FFFFFF;
  --text-body: #A8B4CC;
  --text-muted: #5A6880;
  --border-subtle: #1E3A4A;
  --border-card: #1C2E3E;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Shared ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label.teal { color: var(--primary); }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ---------- Background glow ---------- */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-glow {
  background:
    radial-gradient(60% 45% at 75% 15%, rgba(45, 212, 168, 0.15) 0%, transparent 60%),
    radial-gradient(45% 35% at 15% 70%, rgba(232, 64, 105, 0.08) 0%, transparent 60%);
}

main { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
nav.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(13, 21, 32, 0.72);
  border-bottom: 1px solid var(--border-subtle);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(45, 212, 168, 0.35);
}
.logo-mark svg {
  width: 18px;
  height: 18px;
  fill: white;
}
.logo-word {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo-word .dot { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-body);
}
.nav-links a:hover { color: var(--text-primary); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover { border-color: var(--primary); }
.nav-cta .dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Hero ---------- */
section.hero {
  padding: 64px 0 100px;
  position: relative;
}
@media (min-width: 960px) {
  section.hero { padding: 96px 0 140px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 48px; }
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.08);
  border: 1px solid rgba(45, 212, 168, 0.25);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.soon-badge-pill {
  background: var(--primary);
  color: #062019;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

h1.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 20px 0 24px;
  text-wrap: balance;
}
.hero-title .teal { color: var(--primary); }

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 520px;
  text-wrap: pretty;
  margin-bottom: 36px;
}
@media (min-width: 960px) {
  .hero-sub { font-size: 19px; }
}

/* ---------- Email signup form ---------- */
.signup {
  display: flex;
  gap: 10px;
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 8px;
  max-width: 520px;
  transition: border-color 0.2s;
}
.signup:focus-within { border-color: var(--primary); }
.signup input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  padding: 12px;
  min-width: 0;
}
.signup input::placeholder { color: var(--text-muted); }

.btn-coral {
  background: linear-gradient(135deg, var(--coral-start), var(--coral-end));
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 rgba(232, 64, 105, 0);
  white-space: nowrap;
}
.btn-coral:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 64, 105, 0.3);
}
.btn-coral:active { transform: translateY(0); }

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}
.hero-meta .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 8px;
  vertical-align: middle;
}

/* ---------- Hero visual (phone mockup) ---------- */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 620;
  background: #05080d;
  border: 2px solid #1a2332;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(45, 212, 168, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #0a0d12;
  border-radius: 4px;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 32px 16px 16px;
}

/* Floating stat chips around phone */
.float-chip {
  position: absolute;
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}
.float-chip.c1 { top: 8%; left: -6%; animation-delay: 0s; }
.float-chip.c2 { bottom: 14%; right: -12%; animation-delay: -2s; }
.float-chip.c3 { top: 48%; right: -14%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 960px) {
  .float-chip.c1 { left: 2%; }
  .float-chip.c2 { right: 2%; }
  .float-chip.c3 { display: none; }
}
.float-chip .fk {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.float-chip .fv {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-chip .fv .ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(45, 212, 168, 0.15);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* Phone screen content */
.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}
.ps-back { color: var(--text-body); font-size: 18px; }
.ps-video {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a2418, #3a321f);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.ps-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 6px);
}
.ps-video .play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  position: relative;
}
.ps-video .play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 9px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.ps-video .timecode {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: white;
}

.ps-score {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 75%, rgba(45, 212, 168, 0.15) 75% 100%);
  display: grid;
  place-items: center;
  position: relative;
  animation: ringGlow 3s ease-in-out infinite;
}
@keyframes ringGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(45, 212, 168, 0.3)); }
  50% { filter: drop-shadow(0 0 16px rgba(45, 212, 168, 0.55)); }
}
.score-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg);
}
.score-num {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.score-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 12px;
}

.ps-tags {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.ps-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.1);
  color: var(--primary);
  border: 1px solid rgba(45, 212, 168, 0.2);
}

/* ---------- Section header ---------- */
section {
  position: relative;
  padding: 80px 0;
}
@media (min-width: 960px) {
  section { padding: 110px 0; }
}
.sec-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.sec-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.sec-head h2 .teal { color: var(--primary); }
.sec-head p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- How it works (pipeline steps) ---------- */
.pipeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 860px) {
  .pipeline { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.step {
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover {
  border-color: rgba(45, 212, 168, 0.4);
  transform: translateY(-2px);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.55;
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.25);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 4px;
}
.step-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-connect {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 16px;
  height: 2px;
  background: var(--border-card);
  transform: translateY(-50%);
}
@media (max-width: 860px) {
  .step-connect { display: none; }
}
.step-connect::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid var(--border-card);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* ---------- Features ---------- */
.features-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .features-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
}

.f {
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.f:hover { border-color: rgba(45, 212, 168, 0.3); }
.f .f-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.f .f-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 12px 0 10px;
  line-height: 1.2;
}
.f .f-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

/* Feature: upload visual */
.f-upload-visual {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.upload-phone {
  width: 130px;
  aspect-ratio: 130/220;
  background: var(--surface-2);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 8px;
  flex-shrink: 0;
  position: relative;
}
.upload-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 12px 8px;
  gap: 6px;
}
.upload-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a3a2e, #0d2a22);
  border: 1px solid rgba(45, 212, 168, 0.2);
  position: relative;
}
.upload-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(45, 212, 168, 0.8);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translate(-40%, -50%);
}
.upload-progress {
  height: 3px;
  border-radius: 2px;
  background: var(--border-card);
  overflow: hidden;
}
.upload-progress::after {
  content: '';
  display: block;
  width: 68%;
  height: 100%;
  background: var(--primary);
  animation: progress 3s ease-in-out infinite;
}
@keyframes progress {
  0% { width: 0; }
  50% { width: 72%; }
  100% { width: 100%; }
}
.upload-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
}
.upload-files { flex: 1; min-width: 180px; }
.upload-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-card);
  margin-bottom: 8px;
  font-size: 12px;
}
.upload-file .uf-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(45, 212, 168, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.upload-file .uf-name { color: var(--text-primary); font-weight: 500; }
.upload-file .uf-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
}
.upload-file .uf-dot {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
}

/* Feature: grade */
.grade-visual {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.grade-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 82%, rgba(45, 212, 168, 0.12) 82% 100%);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.grade-ring::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--surface-1);
}
.grade-ring-num {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.grade-stack { font-size: 13px; color: var(--text-body); }
.grade-stack .row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.grade-stack .row:last-child { border-bottom: none; }
.grade-stack .v {
  color: var(--text-primary);
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

/* Feature: timestamps */
.ts-list { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.ts-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-card);
  font-size: 13px;
}
.ts-row .ts-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(45, 212, 168, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ts-row .ts-chip::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--primary);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.ts-row.weak .ts-chip {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
}
.ts-row.weak .ts-chip::before { border-left-color: var(--gold); }
.ts-row .ts-label { color: var(--text-primary); font-weight: 500; flex: 1; }
.ts-row .ts-kind {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(45, 212, 168, 0.1);
  color: var(--primary);
  font-weight: 500;
}
.ts-row.weak .ts-kind {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold);
}

/* Feature: drills */
.drill {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
}
.drill:first-of-type { border-top: none; padding-top: 0; margin-top: 20px; }
.drill-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #062019;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.drill-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.drill-sub { font-size: 12px; color: var(--text-body); line-height: 1.5; }

/* Feature: 1% detail (gold accent) */
.f.one-pct {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    var(--surface-1);
  border-color: rgba(245, 158, 11, 0.2);
}
.f.one-pct .f-label { color: var(--gold); }
.f.one-pct .f-title .pct { color: var(--gold); }
.insight-card {
  margin-top: 24px;
  padding: 20px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.insight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.insight-quote {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
  font-style: italic;
}
.insight-attr {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 10px;
}

/* Feature: pipeline mini */
.pipeline-mini { margin-top: 24px; display: flex; gap: 6px; flex-wrap: wrap; }
.pipeline-mini .pm {
  flex: 1;
  min-width: 120px;
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pipeline-mini .pm-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.pipeline-mini .pm-t { font-size: 12px; font-weight: 500; }
.pipeline-mini .pm-bar {
  height: 2px;
  border-radius: 1px;
  background: var(--primary);
  margin-top: 4px;
  opacity: 0.6;
}

.icon-lg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.2);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.icon-lg.gold {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--gold);
}
.icon-lg svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Credibility ---------- */
section.cred {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 64px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 860px) {
  .cred-grid { grid-template-columns: 1.2fr 1fr; }
}
.cred-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}
.cred-title .teal { color: var(--primary); }
.cred-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface-1);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-body);
}
.cred-badge .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(45, 212, 168, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.cred-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cred-badge b { color: var(--text-primary); font-weight: 600; }

/* ---------- CTA section ---------- */
section.cta { padding: 100px 0; text-align: center; }
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px;
  border-radius: 24px;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(45, 212, 168, 0.1) 0%, transparent 60%),
    var(--surface-1);
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.cta-box h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 16px 0 12px;
  line-height: 1.1;
  text-wrap: balance;
}
.cta-box h3 .teal { color: var(--primary); }
.cta-box p { color: var(--text-body); font-size: 16px; margin: 0 0 28px; }
.cta-box .signup { margin: 0 auto; }
.cta-counters {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-counter .v {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}
.cta-counter .l {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  color: var(--text-muted);
  font-size: 13px;
}
.foot-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 760px) {
  .foot-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--text-body); }
.foot-links a:hover { color: var(--primary); }
.foot-domain {
  color: var(--text-body);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Scroll reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}
