/* Tolyfit landing — tokens match lib/theme/toly_colors.dart */

:root {
  --primary: #CBFA5D;
  --primary-dark: #A2D247;
  --primary-light: #E4FF9E;
  --primary-muted: rgba(203, 250, 93, 0.1);
  --primary-border: rgba(203, 250, 93, 0.27);
  --on-primary: #000;
  --bg: #050505;
  --bg-alt: #0D0D0D;
  --surface: #151515;
  --surface-alt: #1E1E1E;
  --text: #FFF;
  --text-secondary: #B3B3B3;
  --text-muted: #888;
  --border: #262626;
  --border-strong: #3A3A3A;
  --pr: #00E676;
  --ai: #378ADD;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --header-h: 72px;
  --font: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  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, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.7rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.03em; }

h1 em, h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--primary) 10%, var(--pr) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container.narrow { max-width: 760px; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .site-footer, .cta-band, .sticky-cta {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 5, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(203, 250, 93, 0.28);
}
.brand-mark svg { width: 19px; height: 19px; }

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s;
}
.nav > a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 8px 28px rgba(203, 250, 93, 0.25);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 12px 36px rgba(203, 250, 93, 0.38);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; font-size: 0.88rem; border-radius: 10px; }

.btn-store {
  gap: 12px;
  padding: 12px 22px;
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  text-align: left;
}
.btn-store:hover {
  border-color: var(--primary-border);
  background: var(--surface-alt);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.btn-store span { display: flex; flex-direction: column; line-height: 1.15; }
.btn-store small { font-size: 0.68rem; font-weight: 500; color: var(--text-muted); }
.btn-store strong { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.store-icon { width: 24px; height: 24px; flex: none; }

.btn-store-invert {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--on-primary);
}
.btn-store-invert small { color: rgba(0, 0, 0, 0.6); }
.btn-store-invert:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn-store-invert:hover small { color: var(--text-muted); }

/* Shared */

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 15px 7px 12px;
  background: var(--primary-muted);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(203, 250, 93, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(203, 250, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(203, 250, 93, 0); }
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 680px;
  background:
    radial-gradient(46% 48% at 18% 30%, rgba(203, 250, 93, 0.18) 0%, transparent 70%),
    radial-gradient(40% 42% at 88% 8%, rgba(55, 138, 221, 0.14) 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.lede {
  max-width: 540px;
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-cta.center { justify-content: center; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 28px;
}
.hero-trust li {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-trust li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--pr);
  font-weight: 700;
}

/* Phones */

.hero-visual {
  position: relative;
  min-height: 620px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 572px;
  padding: 11px;
  background: linear-gradient(160deg, #2A2A2A, #101010);
  border: 1px solid var(--border-strong);
  border-radius: 44px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75);
}

.phone-front {
  right: 28px;
  top: 24px;
  z-index: 2;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.75),
    0 0 70px -18px rgba(203, 250, 93, 0.35);
  animation: float 7s ease-in-out infinite;
}

.phone-back {
  left: 0;
  top: 72px;
  transform: rotate(-8deg) scale(0.9);
  opacity: 0.92;
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 20px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 42px 14px 14px;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
}

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

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-kicker {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.app-title { font-family: var(--display); font-size: 1.2rem; }

.app-ring { position: relative; width: 44px; height: 44px; }
.app-ring svg { transform: rotate(-90deg); }
.app-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--primary);
}

.app-pr {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 12px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.app-pr svg { width: 14px; height: 14px; color: var(--pr); flex: none; }
.app-pr strong { color: var(--pr); }

.app-list { display: flex; flex-direction: column; gap: 7px; }

.app-ex {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
}
.app-ex-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--surface-alt);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
}
.app-ex-check svg { width: 14px; height: 14px; }
.app-ex-body { display: flex; flex-direction: column; min-width: 0; }
.app-ex-body strong {
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-ex-body small { font-size: 0.66rem; color: var(--text-muted); }
.app-ex.done .app-ex-check { background: rgba(0, 230, 118, 0.15); color: var(--pr); }
.app-ex.active {
  background: var(--primary-muted);
  border-color: var(--primary-border);
}
.app-ex.active .app-ex-check { background: var(--primary); color: var(--on-primary); }
.app-ex-timer {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.app-cta {
  margin-top: auto;
  padding: 12px;
  background: var(--primary);
  border-radius: 12px;
  color: var(--on-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.quiz-screen { gap: 8px; }
.quiz-option {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
}
.quiz-option.selected {
  background: var(--primary-muted);
  border-color: var(--primary-border);
  color: var(--primary);
}
.quiz-footer {
  margin-top: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

.float-card {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  background: rgba(21, 21, 21, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  animation: float 7s ease-in-out infinite;
}
.float-card-1 { top: 8%; left: -2%; animation-delay: -1.8s; }
.float-card-2 { bottom: 2%; right: -10%; animation-delay: -3.6s; }
.float-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.float-value {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--primary);
}
.float-value span { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.float-delta { margin-top: 2px; font-size: 0.7rem; font-weight: 600; color: var(--pr); }

/* Stats + marquee */

.stats-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-block: 36px;
}
.stat {
  padding: 8px 12px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-block: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-track span::before {
  content: "●";
  margin-right: 40px;
  color: var(--primary);
  font-size: 0.55rem;
  vertical-align: middle;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Bento */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.bento-wide { grid-column: span 2; }

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: var(--primary-muted);
  border: 1px solid var(--primary-border);
  border-radius: 13px;
  color: var(--primary);
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon-pr {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--pr);
}

.bento-card h3 { margin-bottom: 10px; }
.bento-card p { font-size: 0.94rem; color: var(--text-secondary); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip-row span {
  padding: 6px 12px;
  background: var(--primary-muted);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.94rem; color: var(--text-secondary); }
.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: var(--primary);
  border-radius: 12px;
  color: var(--on-primary);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(203, 250, 93, 0.25);
}

/* Split / chart */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.check-list { margin: 28px 0 34px; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.97rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: var(--primary-muted) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CBFA5D'%3E%3Cpath d='m9.6 16.2-3.8-3.8-1.4 1.4 5.2 5.2L20.2 8.4l-1.4-1.4z'/%3E%3C/svg%3E") center / 14px no-repeat;
  border: 1px solid var(--primary-border);
  border-radius: 6px;
}

.chart-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.chart-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chart-value {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.7rem;
}
.chart-delta {
  margin-left: 8px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pr);
}
.chart { width: 100%; height: auto; margin-top: 22px; }
.chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw 2s ease-out forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Quotes */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stars { margin-bottom: 14px; color: var(--primary); letter-spacing: 3px; }
.quote blockquote {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--text);
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  background: var(--primary-muted);
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

/* FAQ */

.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq details[open] { border-color: var(--primary-border); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-icon::before { inset: 7px 0 7px 0; }
.faq-icon::after  { inset: 0 7px 0 7px; }
.faq details[open] .faq-icon::after { transform: scaleY(0); }
.faq details p {
  padding: 0 22px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* CTA / footer */

.cta-band {
  padding: clamp(64px, 9vw, 104px) 0;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, var(--pr) 130%);
  color: var(--on-primary);
  text-align: center;
}
.cta-inner { max-width: 760px; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.cta-band p {
  margin-top: 18px;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
}

.site-footer {
  padding-top: 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 260px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 56px; }
.footer-links h4 {
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.18s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  background: rgba(21, 21, 21, 0.94);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Reveal */

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js .reveal.visible { opacity: 1; transform: none; }

/* Responsive */

@media (max-width: 1020px) {
  .bento, .quote-grid, .stats-inner, .steps { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 960px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-copy, .split-copy { text-align: center; }
  .lede, .section-head { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .eyebrow { margin-inline: auto; }
  .check-list { display: inline-grid; text-align: left; }
  .hero-visual { order: -1; min-height: 540px; }
  .phone-front { right: 50%; transform: translateX(42%); }
  .phone-back { left: 50%; transform: translateX(-118%) rotate(-8deg) scale(0.82); }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav > a:not(.btn) { padding: 14px 0; font-size: 1.05rem; color: var(--text); }
  .nav > .btn { margin-top: 12px; }
  .nav-toggle { display: flex; }

  .bento, .quote-grid, .stats-inner, .steps { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .phone-back, .float-card { display: none; }
  .phone-front {
    position: relative;
    right: auto;
    top: auto;
    margin-inline: auto;
    animation: none;
    transform: none;
  }
  .hero-visual { min-height: 0; display: grid; place-items: center; }
  .sticky-cta.visible { display: flex; }
  body { padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
