:root {
  --brand-blue: #00338D;
  --ui-blue: #2563EB;
  --gold: #EAB308;
  --gold-2: #FACC15;
  --turquoise: #14B8A6;
  --turquoise-light: #5EEAD4;
  --ai-purple: #6C63E0;
  --ai-purple-light: #AFA9EC;
  --bg-dark: #0B0F17;
  --bg-secondary: #101827;
  --bg-card: #111827;
  --bg-card-soft: #151F2E;
  --border: #1E293B;
  --border-soft: rgba(148, 163, 184, 0.16);
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-premium: 0 30px 90px rgba(0, 0, 0, 0.36);
  --shadow-glow-blue: 0 0 70px rgba(37, 99, 235, 0.28);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 8% 5%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(234, 179, 8, 0.12), transparent 24%),
    radial-gradient(circle at 70% 70%, rgba(20, 184, 166, 0.10), transparent 30%),
    var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: #111827;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.section-pad {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 23, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(37, 99, 235, 0.28));
}

.brand-word {
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 27px;
  line-height: 1;
}

.brand-word strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
  transition: color .2s ease, opacity .2s ease;
}
.nav-links a:hover { opacity: 1; color: var(--text-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 14px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.42);
  color: #FDE68A;
  font-weight: 900;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  padding: 10px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: -140%;
  z-index: 200;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  transition: bottom 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.cookie-banner.show { bottom: 16px; opacity: 1; }

.cookie-head { display: flex; align-items: flex-start; gap: 13px; }
.cookie-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 198, 0, 0.14);
  color: var(--gold);
}
.cookie-title { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: var(--text-primary); }
.cookie-banner p { margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.cookie-banner button {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: #111827;
  border-radius: 13px;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 14px;
  font-family: inherit;
}
.cookie-banner button.secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 700;
}
.cookie-banner button.ghost {
  flex: 0 0 auto;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  padding: 10px 12px;
}
.cookie-banner button.ghost:hover,
.cookie-banner button.secondary:hover { color: var(--text-primary); }

.cookie-chevron { display: inline-flex; transition: transform 0.25s ease; }
.cookie-banner button[aria-expanded="true"] .cookie-chevron { transform: rotate(180deg); }

.cookie-options {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.cookie-option + .cookie-option { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.cookie-option h3 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.cookie-option.is-locked h3,
.cookie-option.is-locked p { color: var(--text-secondary); opacity: 0.75; }

/* Accessible switch: the checkbox stays focusable but visually hidden. */
.cookie-switch { position: relative; flex: 0 0 auto; cursor: pointer; }
.cookie-switch input {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie-switch input:disabled { cursor: not-allowed; }
.cookie-switch-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cookie-slider {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease;
  position: relative;
}
.cookie-slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.cookie-switch input:checked + .cookie-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-slider::after { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider { background: rgba(255, 198, 0, 0.35); }
.cookie-switch input:disabled + .cookie-slider::after { background: rgba(255, 255, 255, 0.6); }
.cookie-switch input:focus-visible + .cookie-slider {
  outline: 3px solid rgba(255, 198, 0, 0.6);
  outline-offset: 3px;
}

.cookie-save-row { display: flex; justify-content: flex-end; margin-top: 14px; }
.cookie-save-row button { flex: 0 0 auto; }

@media (max-width: 520px) {
  .cookie-banner { padding: 18px 16px; }
  .cookie-actions button { flex: 1 1 100%; }
  .cookie-banner button.ghost { flex: 1 1 100%; }
}

.footer-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.footer-cookie-link:hover { color: var(--gold); }

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 72px;
}

.hero-content { position: relative; z-index: 2; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  color: #CBD5E1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.pill.gold, .tag.gold { color: #FDE68A; border-color: rgba(234,179,8,.36); background: rgba(234,179,8,.10); }
.tag.purple { color: #DDD6FE; border-color: rgba(108,99,224,.42); background: rgba(108,99,224,.14); }
.tag.teal { color: #99F6E4; border-color: rgba(20,184,166,.44); background: rgba(20,184,166,.12); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 7px;
}
p {
  color: var(--text-secondary);
  line-height: 1.65;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 640px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 12px;
}
.teal-text { color: var(--turquoise-light); }
.gold-text { color: var(--gold); }
.purple-text { color: var(--ai-purple-light); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111827; box-shadow: 0 18px 44px rgba(234,179,8,.20); }
.btn-secondary { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,.13); color: var(--text-primary); }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 12px;
}
.hero-metrics div, .strip-card, .tool-grid div, .trust-grid article, .waitlist-card, details {
  background: linear-gradient(145deg, rgba(17,24,39,0.92), rgba(21,31,46,0.76));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 52px rgba(0,0,0,.20);
}
.hero-metrics div { padding: 18px; }
.hero-metrics strong { display: block; font-size: 21px; letter-spacing: -0.035em; }
.hero-metrics span { display: block; color: var(--text-secondary); font-size: 13px; margin-top: 3px; }

.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 0;
  background: radial-gradient(circle, rgba(37,99,235,.25), transparent 58%);
  filter: blur(26px);
  z-index: -1;
}
.hero-visual img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow-premium), var(--shadow-glow-blue);
  border: 1px solid rgba(255,255,255,.08);
}

.strip {
  width: min(var(--max), calc(100% - 48px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.strip-card { padding: 20px; min-height: 142px; }
.strip-card span { display: inline-block; color: var(--gold); font-weight: 950; font-size: 12px; margin-bottom: 16px; }
.strip-card strong { display: block; font-size: 20px; letter-spacing: -0.03em; margin-bottom: 8px; }
.strip-card small { display: block; color: var(--text-secondary); line-height: 1.5; font-size: 13px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: 420px 1fr; }
.gradient-panel {
  width: min(calc(var(--max) + 72px), calc(100% - 32px));
  padding: 76px 36px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 12%, rgba(20,184,166,.18), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(37,99,235,.19), transparent 35%),
    rgba(255,255,255,.025);
  border: 1px solid rgba(148,163,184,.13);
}
.copy-block > p:not(.eyebrow) { font-size: 17px; max-width: 680px; }

.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17,24,39,.72);
  border: 1px solid var(--border-soft);
}
.feature-list p { margin-bottom: 0; font-size: 14px; }
.icon-dot {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 950;
}
.icon-dot.blue { color: #BFDBFE; background: rgba(37,99,235,.16); border: 1px solid rgba(37,99,235,.28); }
.icon-dot.gold { color: #FDE68A; background: rgba(234,179,8,.14); border: 1px solid rgba(234,179,8,.28); }
.icon-dot.teal { color: #99F6E4; background: rgba(20,184,166,.14); border: 1px solid rgba(20,184,166,.28); }

.phone-card {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow-premium), 0 0 60px rgba(37,99,235,.18);
  transform: translateZ(0);
}
.phone-card img { width: 100%; }
.floating { animation: floatY 7s ease-in-out infinite; }
.reverse-float { animation-delay: -2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.tool-grid div { padding: 20px; }
.tool-grid strong { display: block; margin-bottom: 8px; font-size: 18px; }
.tool-grid span { color: var(--text-secondary); font-size: 14px; line-height: 1.5; }

.section-head { max-width: 840px; text-align: center; margin: 0 auto 38px; }
.section-head p:not(.eyebrow) { font-size: 17px; }
.compact-head { max-width: 760px; }

.ai-section { padding-top: 116px; }
.ai-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.ai-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(17,24,39,.94), rgba(21,31,46,.78));
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.ai-card.large-card {
  grid-row: span 2;
  display: block;
}
.ai-card img { border-radius: 24px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 18px 48px rgba(0,0,0,.25); }
.ai-card.large-card img { margin-bottom: 20px; }
.ai-card h3 { margin: 12px 0 8px; font-size: 26px; }
.ai-card p { margin-bottom: 0; font-size: 15px; }

.categories { padding-top: 42px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.category-grid span {
  display: grid;
  place-items: center;
  min-height: 62px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border-soft);
  color: #E2E8F0;
  font-weight: 850;
}

.trust-section {
  width: min(calc(var(--max) + 72px), calc(100% - 32px));
  padding: 82px 36px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 10%, rgba(234,179,8,.12), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(37,99,235,.15), transparent 32%),
    rgba(255,255,255,.025);
  border: 1px solid rgba(148,163,184,.13);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-grid article { padding: 24px; }
.trust-grid p { margin-bottom: 0; font-size: 14px; }
.shield {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: rgba(37,99,235,.14);
  border: 1px solid rgba(37,99,235,.24);
  color: #BFDBFE;
  font-weight: 950;
  margin-bottom: 16px;
}

.showcase-section { padding-bottom: 58px; }
.screenshot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.screenshot-row figure {
  margin: 0;
  padding: 16px;
  border-radius: 32px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.screenshot-row img {
  max-height: 680px;
  margin: 0 auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.34));
}
.screenshot-row figcaption {
  color: #E2E8F0;
  font-weight: 900;
  margin-top: 14px;
}

.waitlist-section {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
}
.waitlist-copy h2 { max-width: 720px; }
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
}
.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--turquoise-light);
  font-weight: 950;
}
.waitlist-card {
  padding: 26px;
  display: grid;
  gap: 12px;
}
.waitlist-card label { font-weight: 900; color: #E2E8F0; }
.waitlist-card input, .waitlist-card select {
  width: 100%;
  height: 54px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: #0F172A;
  color: var(--text-primary);
  padding: 0 15px;
  outline: none;
}
.waitlist-card input:focus, .waitlist-card select:focus { border-color: rgba(37,99,235,.8); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.waitlist-btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; margin: 4px 0 0; }
.form-note.success { color: #BBF7D0; }
.form-note.error { color: #FECACA; }

.faq-section { max-width: 980px; }
.faq-list { display: grid; gap: 12px; }
details { padding: 20px 22px; }
summary { cursor: pointer; font-weight: 950; font-size: 18px; letter-spacing: -0.02em; }
details p { margin: 14px 0 0; }
details a { color: var(--gold); text-decoration: underline; }

.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 1px solid rgba(148,163,184,.13);
  color: var(--text-secondary);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-top p { max-width: 520px; margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 18px;
}
.footer-links a { color: #CBD5E1; }
.footer-links a:hover { color: var(--text-primary); }
.copyright { color: var(--text-muted); font-size: 13px; margin: 0; }

@media (max-width: 1080px) {
  .hero, .split-section, .split-section.reverse, .waitlist-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero-content { max-width: 820px; }
  .hero-visual { max-width: 900px; margin: 0 auto; }
  .split-section .phone-card { max-width: 520px; margin: 0 auto; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-card.large-card { grid-row: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .section-pad { width: min(100% - 32px, var(--max)); padding: 72px 0; }
  .nav { width: min(100% - 32px, var(--max)); }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(11,15,23,.98);
    box-shadow: var(--shadow-premium);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .nav-cta { display: none; }
  .strip { grid-template-columns: repeat(2, 1fr); width: min(100% - 32px, var(--max)); margin-top: 0; }
  .hero-metrics { grid-template-columns: 1fr; }
  .tool-grid, .screenshot-row { grid-template-columns: 1fr; }
  .ai-card { grid-template-columns: 130px 1fr; }
  .gradient-panel, .trust-section { width: min(100% - 24px, var(--max)); padding: 58px 20px; border-radius: 30px; }
  .footer-top { display: block; }
  .footer-top p { margin-top: 18px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(42px, 13vw, 58px); letter-spacing: -0.055em; }
  h2 { font-size: clamp(32px, 10vw, 44px); letter-spacing: -0.045em; }
  .brand-word { font-size: 24px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding-top: 46px; }
  .hero-actions .btn { width: 100%; }
  .strip { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .ai-card { display: block; }
  .ai-card img { width: 100%; margin-bottom: 16px; }
  .phone-card { border-radius: 26px; }
  .screenshot-row img { max-height: none; }
  .cookie-banner { display: block; }
  .cookie-actions { width: 100%; flex-direction: column; gap: 0; }
  .cookie-banner button { width: 100%; margin-top: 12px; }
  .footer { width: min(100% - 32px, var(--max)); }
}

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