@charset "UTF-8";
:root {
  --gray-50: #fafaf9;
  --gray-100: #f4f4f3;
  --gray-200: #e7e7e5;
  --gray-300: #d4d4d1;
  --gray-400: #a3a3a0;
  --gray-500: #737370;
  --gray-600: #525250;
  --gray-700: #3f3f3e;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --brand-50: #eef2ff;
  --brand-100: #e0e7ff;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --accent-500: #b45309;
  --accent-600: #92400e;
  --surface: #ffffff;
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-500);
  --border-subtle: var(--gray-200);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1120px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(24, 24, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(24, 24, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background:
    radial-gradient(1100px 520px at 88% 4%, var(--brand-50), transparent 62%),
    radial-gradient(900px 420px at -8% 18%, rgba(180, 83, 9, 0.06), transparent 62%),
    radial-gradient(900px 480px at 92% 62%, rgba(180, 83, 9, 0.05), transparent 65%),
    radial-gradient(1000px 520px at -4% 88%, var(--brand-50), transparent 62%),
    var(--surface);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-600);
  text-decoration: none;
}

a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────── Header ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand-tag {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.brand:hover {
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--gray-50);
  text-decoration: none;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 16px;
}

/* ───────── Hero ───────── */
.hero {
  padding: 96px 0 72px;
  background: radial-gradient(1200px 480px at 80% -10%, var(--brand-50), transparent 60%), radial-gradient(800px 320px at -10% 10%, #fff7ed, transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  font-weight: 700;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.hero-art {
  --split: 50%;
  border-radius: var(--radius);
  background: var(--gray-100);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.hero-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-art-before {
  /* full-bleed; the "after" image sits on top and is clipped */
  z-index: 0;
}

.hero-art-after {
  z-index: 1;
  clip-path: inset(0 0 0 var(--split));
}

.hero-art-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(24, 24, 27, 0.18), 0 1px 6px rgba(24, 24, 27, 0.18);
  z-index: 2;
  pointer-events: none;
}

.hero-art-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.25), 0 0 0 1px rgba(24, 24, 27, 0.08);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  pointer-events: auto;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.hero-art-handle:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.hero-art-handle:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 3px;
}
.hero-art.is-dragging .hero-art-handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(24, 24, 27, 0.32), 0 0 0 1px rgba(24, 24, 27, 0.1);
}

.hero-art-handle-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  display: block;
}
.hero-art-handle-arrow-left {
  border-right: 7px solid var(--brand-700);
}
.hero-art-handle-arrow-right {
  border-left: 7px solid var(--brand-700);
}

.hero-art-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  z-index: 2;
}

.hero-art-label span {
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 8px;
}

/* ───────── Examples grid ───────── */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.example-art {
  aspect-ratio: 4/3;
}

.example {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.example-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-caption h3 {
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
}

.example-meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.example-meta strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .examples-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ───────── Sections ───────── */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0;
}

.bg-soft {
  background: var(--gray-50);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

/* ───────── How it works ───────── */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.step:last-child {
  border-bottom: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--text-secondary);
}

/* ───────── FAQ ───────── */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: var(--surface);
}

.faq details[open] {
  border-color: var(--brand-200, #c7d2fe);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  color: var(--text-primary);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > p,
.faq details > div {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ───────── CTA ───────── */
.cta-band {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin: 40px 0;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 24px;
  opacity: 0.9;
  font-size: 18px;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--brand-700);
}

.cta-band .btn-primary:hover {
  background: var(--gray-100);
  color: var(--brand-700);
}

/* ───────── Footer ───────── */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  color: var(--text-tertiary);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 36ch;
  margin: 8px 0 0;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-secondary);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

/* ───────── Article pages ───────── */
.page-hero {
  padding: 72px 0 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-50), transparent);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.02em;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--gray-800);
}

.prose h2 {
  margin-top: 48px;
  font-size: 26px;
  letter-spacing: -0.015em;
}

.prose h3 {
  margin-top: 32px;
  font-size: 19px;
}

.prose ul, .prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose blockquote {
  border-left: 3px solid var(--brand-500);
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  color: var(--text-secondary);
  font-style: italic;
}

/* ───────── Mobile ───────── */
@media (max-width: 860px) {
  .hero {
    padding: 64px 0 48px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .nav {
    display: none;
  }
  section {
    padding: 56px 0;
  }
  .cta-band {
    padding: 40px 24px;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 12px 18px;
  }
  .container {
    padding: 0 18px;
  }
}

/* ═════════════════════════════════════════════════════════
   POLISH LAYER — typography accents, motion, micro-detail
   ═════════════════════════════════════════════════════════ */

:root {
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* Serif italic accent used inside headings */
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  /* Slight optical bump so serif italics don't look small next to Inter */
  font-size: 1.08em;
  background: linear-gradient(180deg, var(--brand-700), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.04em;
}

/* Section kicker — monospace label above the h2 */
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.kicker-light { color: rgba(255, 255, 255, 0.78); }

/* ───────── Hero refinements ───────── */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: aurora 18s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-4%, 3%) scale(1.08); }
  100% { transform: translate(3%, -2%) scale(0.96); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(99, 102, 241, 0.08); }
}

.hero h1 em.serif {
  /* keep the gradient defined above */
  display: inline-block;
  transform: translateY(0.02em);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-tertiary);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span {
  color: var(--brand-600);
  font-weight: 700;
}

/* ───────── Brand mark ───────── */
.brand { gap: 12px; align-items: center; }
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}
.brand-tag em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-700);
  font-weight: 400;
  font-size: 13px;
}

/* ───────── Buttons ───────── */
.btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
  will-change: transform;
}
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 1px 2px rgba(67, 56, 202, 0.35),
    0 8px 24px -8px rgba(67, 56, 202, 0.55);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

/* ───────── Section heads ───────── */
.section-head h2 em.serif { display: inline-block; }

/* ───────── Cards — hover lift + gradient outline ───────── */
.card {
  position: relative;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(24, 24, 27, 0.18), 0 2px 6px rgba(24, 24, 27, 0.05);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.icon-bubble {
  background: linear-gradient(135deg, var(--brand-50), #fff7ed);
  color: var(--brand-700);
  box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.15);
}

/* ───────── Steps — connector line ───────── */
.steps { position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-500), transparent 90%);
  opacity: 0.35;
  border-radius: 2px;
}
.step { position: relative; }
.step-num {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
  box-shadow:
    0 0 0 4px var(--surface),
    0 0 0 5px rgba(99, 102, 241, 0.2),
    0 4px 10px -2px rgba(67, 56, 202, 0.35);
}
.bg-soft .step-num {
  box-shadow:
    0 0 0 4px var(--gray-50),
    0 0 0 5px rgba(99, 102, 241, 0.2),
    0 4px 10px -2px rgba(67, 56, 202, 0.35);
}

/* ───────── CTA band — refined ───────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--brand-600), var(--brand-700) 60%, #312e81);
  box-shadow: 0 30px 60px -30px rgba(67, 56, 202, 0.5);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 em.serif {
  background: linear-gradient(180deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--brand-700);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 24px -8px rgba(0,0,0,0.25);
}

/* ───────── Examples — frame hover ───────── */
.example-art {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.example-art:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -18px rgba(24, 24, 27, 0.28);
}

/* ───────── FAQ — refined open state ───────── */
.faq details {
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details:hover { border-color: var(--gray-300); }
.faq details[open] {
  border-color: rgba(99, 102, 241, 0.35);
  background: linear-gradient(180deg, var(--brand-50), transparent 60%);
}

/* ───────── Reveal animations ───────── */
[data-reveal],
.reveal-child {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed,
.reveal-child.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .reveal-child { opacity: 1; transform: none; transition: none; }
  .eyebrow-dot { animation: none; }
  .hero::after { animation: none; }
}

/* ───────── Mobile tweaks for polish ───────── */
@media (max-width: 860px) {
  .hero-trust { gap: 12px; font-size: 12px; }
  .steps::before { left: 16px; }
}

/*# sourceMappingURL=styles.css.map */
