:root {
  --bg: #07111f;
  --bg-2: #0a1628;
  --panel: rgba(17, 27, 46, 0.82);
  --panel-solid: #111b2e;
  --line: rgba(255, 255, 255, 0.1);
  --line-blue: rgba(59, 130, 246, 0.28);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #2563eb;
  --accent-2: #3b82f6;
  --sky: #7dd3fc;
  --teal: #2dd4bf;
  --emerald: #34d399;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.1rem;
  --wrap: 1120px;
  --pad: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(700px 420px at 0% 20%, rgba(45, 212, 191, 0.08), transparent 50%),
    linear-gradient(180deg, #07111f 0%, #0a1628 40%, #07111f 100%);
  overflow-x: hidden;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(37, 99, 235, 0.4); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
h1, h2, h3, p, li, .lead, .intro, .footer-blurb, .form-card-lead {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.accent { color: var(--sky); }
.muted { color: var(--muted); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header.scrolled {
  background: rgba(7, 17, 31, 0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 750; letter-spacing: -0.02em; font-size: 1.1rem;
  min-width: 0;
}
.logo span { color: var(--sky); }
.logo-mark {
  width: 1.7rem; height: 1.7rem; border-radius: 0.45rem;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 800;
}
.nav { display: none; gap: 1.35rem; align-items: center; color: var(--muted); font-size: 0.92rem; font-weight: 550; }
.nav a:hover { color: #fff; }
.actions { display: flex; gap: 0.45rem; align-items: center; flex-shrink: 0; }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 0.65rem;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  color: #fff; cursor: pointer;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block; width: 1rem; height: 1.5px; background: currentColor; position: relative;
}
.menu-btn span::before,
.menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }
.nav .mobile-cta { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.72rem 1.2rem; font-size: 0.92rem; font-weight: 650;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff; box-shadow: 0 12px 30px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(37, 99, 235, 0.4); }
.btn-ghost {
  border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-text { color: var(--muted); padding-inline: 0.5rem; }
.btn-text:hover { color: #fff; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.75rem; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 750; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky);
}
.live-dot {
  width: 0.48rem; height: 0.48rem; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.15rem, 6vw, 4.1rem);
  line-height: 1.12; letter-spacing: -0.035em; font-weight: 750;
  max-width: 100%;
}
.lead {
  margin: 1.2rem 0 0; max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.65; color: var(--muted);
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.8rem;
}
.trust-line {
  margin-top: 1.4rem; color: var(--muted-2); font-size: 0.9rem;
}
.trust-line a { color: var(--sky); font-weight: 650; }

.spotlight {
  position: absolute; width: min(420px, 70vw); height: min(420px, 70vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.28), transparent 70%);
  filter: blur(10px); pointer-events: none;
  top: 8%; right: 0;
  animation: floatSpot 10s ease-in-out infinite;
  z-index: 0;
}
.grid-fade {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 10%, transparent 75%);
}

/* Product mock — keep subtle 3D, padded so it never clips */
.product-stage {
  position: relative;
  padding: 1.25rem 0.75rem 1.75rem;
  perspective: 1400px;
  overflow: visible;
  z-index: 1;
}
.product-glow {
  position: absolute; inset: 10% 5% auto; height: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  filter: blur(24px); pointer-events: none;
}
.product-frame {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,27,46,0.95), rgba(10,18,32,0.98));
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  animation: float3d 7s ease-in-out infinite;
}
.product-frame:hover {
  transform: rotateY(-2deg) rotateX(1deg) translateZ(12px);
  animation: none;
}
.product-top {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.85rem 1rem; background: rgba(13,22,40,0.95); border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 0.35rem; }
.dots span { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: rgba(255,255,255,0.16); }
.product-title { font-size: 0.78rem; color: var(--muted); font-weight: 650; }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.65rem; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.4); background: rgba(16,185,129,0.1);
  color: #6ee7b7; font-size: 0.72rem; font-weight: 750;
}
.product-body { display: grid; gap: 0.75rem; padding: 0.9rem; }
.panel {
  border: 1px solid var(--line); background: var(--panel-solid);
  border-radius: var(--radius); padding: 0.85rem 0.95rem;
}
.panel.answer {
  background: #121c31; border-color: var(--line-blue);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.panel .label {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 750;
}
.panel .q, .panel .a {
  margin: 0.45rem 0 0; font-size: 0.92rem; line-height: 1.5; color: #e2e8f0;
}
.panel .a { color: #cbd5e1; }
.wave {
  display: flex; align-items: flex-end; gap: 3px; height: 1.5rem; margin-top: 0.65rem;
}
.wave i {
  width: 3px; border-radius: 2px; background: var(--teal);
  animation: bars 1.1s ease-in-out infinite;
}
.wave i:nth-child(odd) { height: 40%; }
.wave i:nth-child(even) { height: 85%; }
.wave i:nth-child(3n) { height: 55%; animation-delay: 0.15s; }
.seg {
  display: inline-flex; gap: 0.2rem; margin-top: 0.7rem;
  padding: 0.2rem; border-radius: 999px; background: rgba(0,0,0,0.35);
}
.seg span {
  font-size: 0.68rem; font-weight: 750; padding: 0.28rem 0.55rem;
  border-radius: 999px; color: var(--muted);
}
.seg span.on { background: var(--accent); color: #fff; }
.typing-cursor {
  display: inline-block; width: 2px; height: 0.95em; margin-left: 2px;
  background: var(--sky); vertical-align: text-bottom; animation: blink 1s steps(1) infinite;
}

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section.band {
  border-block: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  letter-spacing: -0.03em; line-height: 1.12; font-weight: 750;
}
.section-head p { margin: 0.85rem 0 0; color: var(--muted); line-height: 1.65; font-size: 1.05rem; }

.proof {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  color: var(--muted); font-size: 0.92rem;
}
.proof strong { color: #e2e8f0; font-weight: 650; }

.flow {
  display: grid; gap: 0.85rem;
}
.flow-step {
  display: grid; gap: 0.35rem;
  border: 1px solid var(--line); background: var(--panel);
  border-radius: 1.15rem; padding: 1.15rem 1.2rem;
}
.flow-step .n { color: var(--sky); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em; }
.flow-step h3 { margin: 0; font-size: 1.1rem; letter-spacing: -0.02em; }
.flow-step p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }

.compare {
  display: grid; gap: 1rem;
}
.compare-tabs {
  display: inline-flex; gap: 0.25rem; padding: 0.25rem;
  border-radius: 999px; background: rgba(0,0,0,0.35); border: 1px solid var(--line);
}
.compare-tabs button {
  border: 0; background: transparent; color: var(--muted);
  padding: 0.55rem 0.95rem; border-radius: 999px; font: inherit; font-weight: 650; cursor: pointer;
}
.compare-tabs button.on { background: var(--accent); color: #fff; }
.compare-card {
  border: 1px solid var(--line); background: var(--panel-solid);
  border-radius: 1.25rem; padding: 1.35rem; min-height: 11rem;
}
.compare-card h3 { margin: 0 0 0.65rem; font-size: 1.05rem; }
.compare-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.compare-card[data-panel="generic"] { display: none; }
.compare-card.show { display: block; }
.compare-card.good { border-color: var(--line-blue); }

.bento {
  display: grid; gap: 1rem;
}
.bento-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,27,46,0.95), rgba(10,18,32,0.8));
  border-radius: 1.25rem; padding: 1.3rem;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.bento-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.35); }
.bento-card .icon {
  width: 2.2rem; height: 2.2rem; border-radius: 0.65rem; margin-bottom: 0.85rem;
  display: grid; place-items: center;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.28);
  color: var(--sky); font-size: 0.8rem; font-weight: 800;
}
.bento-card h3 { margin: 0; font-size: 1.15rem; letter-spacing: -0.02em; }
.bento-card p { margin: 0.55rem 0 0; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
  height: 3.25rem;
  width: 100%;
  max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  position: absolute;
  top: 0; left: 0;
  display: flex; align-items: center; gap: 2rem;
  height: 100%;
  width: max-content;
  max-width: none;
  padding-inline: 1rem;
  animation: marquee 28s linear infinite;
  color: var(--muted); font-weight: 650; letter-spacing: 0.04em;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span {
  flex: 0 0 auto;
  white-space: nowrap;
}
.marquee-track span::after { content: " ·"; margin-left: 2rem; color: var(--muted-2); }

.steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
.step {
  display: flex; flex-direction: column; gap: 0.5rem;
  border: 1px solid var(--line); background: var(--panel);
  border-radius: 1.15rem; padding: 1.2rem 1.25rem;
  min-width: 0; width: 100%;
  box-sizing: border-box;
}
.step .n { color: var(--sky); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
.step h3 { margin: 0; font-size: 1.1rem; max-width: 100%; }
.step p {
  margin: 0; color: var(--muted); line-height: 1.55;
  max-width: 100%; width: 100%;
  overflow-wrap: break-word;
}

.pricing {
  border: 1px solid var(--line-blue);
  background:
    radial-gradient(600px 240px at 100% 0%, rgba(37,99,235,0.22), transparent 60%),
    var(--panel-solid);
  border-radius: 1.5rem; padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  max-width: 420px;
}
.pricing .price {
  margin: 0.35rem 0 0;
  font-size: clamp(2.6rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em;
}
.pricing .price small { font-size: 1rem; color: var(--muted); font-weight: 550; }
.pricing ul {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  display: grid; gap: 0.65rem; color: #cbd5e1; font-size: 0.95rem;
}
.pricing ul li { display: flex; gap: 0.55rem; align-items: flex-start; }
.pricing ul li::before {
  content: ""; width: 0.95rem; height: 0.95rem; margin-top: 0.2rem; flex: none;
  border-radius: 50%; border: 1px solid rgba(59,130,246,0.5);
  background: radial-gradient(circle at center, var(--accent) 35%, transparent 36%);
}

.trust-grid, .faq, .contact-grid, .features-grid, .form-layout {
  display: grid; gap: 1rem;
}
.trust-card, .faq details, .card, .form-card {
  border: 1px solid var(--line); background: var(--panel);
  border-radius: 1.15rem; padding: 1.2rem 1.25rem;
}
.trust-card h3, .card h2, .card h3 { margin: 0; font-size: 1.05rem; }
.trust-card p, .card p { margin: 0.55rem 0 0; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }
.faq details summary {
  cursor: pointer; font-weight: 700; list-style: none;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); line-height: 1.6; }

.final-cta {
  text-align: center;
  border: 1px solid var(--line); border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3.25rem) 1.5rem;
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(37,99,235,0.22), transparent 65%),
    var(--panel-solid);
}
.final-cta h2 {
  margin: 0; font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.03em; font-weight: 750;
}
.final-cta p { margin: 0.85rem auto 0; max-width: 34rem; color: var(--muted); line-height: 1.6; }

/* Inner pages / form */
.page { padding: clamp(3rem, 6vw, 4.5rem) 0 5rem; }
.page h1 {
  margin: 0.7rem 0 0; max-width: none;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
}
.page .intro { margin-top: 1rem; max-width: 40rem; color: var(--muted); line-height: 1.65; font-size: 1.05rem; }
.checklist { margin: 1.4rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.7rem; }
.checklist li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: #cbd5e1; font-size: 0.95rem; line-height: 1.45;
  min-width: 0;
}
.checklist li > * { min-width: 0; }
.checklist li::before {
  content: ""; width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent) 35%, transparent 36%), rgba(37,99,235,0.2);
  border: 1px solid rgba(59,130,246,0.45);
}
.form-card-title { margin: 0 0 0.35rem; font-size: 1.2rem; font-weight: 750; }
.form-card-lead { margin: 0 0 1.15rem; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field span { font-size: 0.82rem; font-weight: 700; color: #cbd5e1; }
.field input {
  width: 100%; border: 1px solid var(--line); background: rgba(10,18,32,0.75);
  color: var(--text); border-radius: 0.75rem; padding: 0.85rem 0.95rem; font: inherit;
  outline: none;
}
.field input:focus {
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.form-submit { width: 100%; }
.form-note { margin: 1rem 0 0; text-align: center; color: var(--muted-2); font-size: 0.85rem; }
.form-alert { margin-bottom: 1rem; padding: 0.85rem 1rem; border-radius: 0.85rem; font-size: 0.92rem; }
.form-alert.ok { border: 1px solid rgba(16,185,129,0.35); background: rgba(16,185,129,0.12); color: #a7f3d0; }
.form-alert.err { border: 1px solid rgba(248,113,113,0.35); background: rgba(239,68,68,0.12); color: #fecaca; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.access-card {
  border: 1px solid var(--line-blue);
  background: radial-gradient(500px 220px at 100% 0%, rgba(37,99,235,0.18), transparent 60%), var(--panel-solid);
  border-radius: 1.35rem; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
}
.app-link { display: block; margin-top: 0.35rem; color: var(--sky); font-size: 1.15rem; font-weight: 750; }
.stack { display: grid; gap: 0.55rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13,22,40,0.9), rgba(5,10,18,0.98));
  margin-top: 1rem;
}
.footer-inner { padding: 3rem 0 2rem; display: grid; gap: 2rem; }
.footer-blurb { margin: 0.9rem 0 0; max-width: 28rem; color: var(--muted); line-height: 1.65; font-size: 0.94rem; }
.footer-credit {
  display: inline-flex; align-items: center; gap: 0.65rem; margin-top: 1.2rem;
  padding: 0.7rem 0.9rem; border: 1px solid rgba(59,130,246,0.28);
  background: rgba(37,99,235,0.1); border-radius: 0.9rem;
}
.footer-credit-mark {
  width: 2rem; height: 2rem; border-radius: 0.5rem; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 800;
}
.footer-credit-text { display: grid; gap: 0.1rem; line-height: 1.25; }
.footer-credit-text small {
  color: var(--muted-2); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-credit-text strong { color: #fff; font-size: 0.92rem; }
.footer-credit-text span { color: var(--sky); font-size: 0.82rem; font-weight: 650; }
.footer h3 {
  margin: 0 0 0.85rem; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 750;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; color: var(--muted); font-size: 0.92rem; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.05rem 0 1.35rem; }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
}
.footer-bottom a { color: var(--sky); font-weight: 650; }

/* Motion */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes float3d {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}
@keyframes blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes bars {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.85s var(--ease) both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.34s; }
/* Always visible — entrance animation is optional enhancement */
.reveal { opacity: 1; transform: none; }
html.js:not([data-reduce="1"]) .reveal.in {
  animation: rise 0.75s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal.in { animation: none; }
  .product-frame { transform: none; animation: none; }
  .marquee-track { animation: none; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 2.5rem; }
  .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card.wide { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid, .form-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 2rem; }
  .footer-inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.9fr); }
  .compare { max-width: 640px; }
}

@media (max-width: 859px) {
  .header-inner { flex-wrap: wrap; }
  .nav {
    display: none; order: 3; width: 100%; flex-direction: column; gap: 0;
    padding: 0.35rem 0 0.75rem; border-top: 1px solid var(--line); margin-top: 0.35rem;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 0.85rem 0.2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #e2e8f0; font-size: 1rem;
  }
  .nav .mobile-cta {
    display: inline-flex; margin-top: 0.75rem; width: 100%; justify-content: center;
  }
  .actions .btn-text,
  .actions .btn-primary { display: none; }
  .product-stage { padding: 0.75rem 0.15rem 1.25rem; overflow: visible; }
  .product-frame {
    transform: rotateY(-4deg) rotateX(2deg);
    animation: none;
  }
  .product-frame:hover { transform: rotateY(-1deg) rotateX(1deg); }
  h1 { max-width: 100%; font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .lead, .intro, .page .intro { max-width: 100%; }
  .cta-row .btn { width: 100%; }
  .cta-row .btn-text { width: auto; justify-content: flex-start; }
  .page h1 { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .pricing { max-width: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .form-layout { gap: 1.5rem; }
  .form-card, .bento-card, .step, .panel, .access-card { max-width: 100%; }
  .marquee-track { animation-duration: 36s; }
}
