/* Skill Lance — deposit-first landing page
   Higgsfield tokens (exact) + web legibility adaptations (marked). */

:root {
  /* Tokens — exact */
  --ink: #0B0B0E;
  --paper: #FFFFFF;
  --lime: #E8FF00;
  --pink: #F7106A;
  --orange: #EE7A45;
  --gold: #E0B830;
  --gray-disc: #E2E2E4;
  --gray-track: #EBEBED;
  --label-gray: #AFAFB5;

  /* Signature gradient: bottom-left → top-right, re-enters pink at the right edge */
  --signature: linear-gradient(to top right, #F0206A 6%, #EE7A45 38%, #E0B830 70%, #F0206A 100%);

  /* Web legibility adaptations (the video-frame grays fail contrast on white) */
  --label-on-light: #6E6E76;   /* 5.1:1 on white — #AFAFB5 is only 2.2:1 */
  --dim-on-light: #75757D;     /* headline value-gradient ends, 4.6:1 */
  --dim-on-dark: #8A8A92;      /* headline value-gradient ends on ink, 5.6:1 */
  --body-on-dark: #D9D9DE;     /* body copy on ink, 14:1 */

  --font: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1120px;
  --gutter: clamp(16px, 5vw, 48px);
  --section-y: clamp(88px, 12vw, 168px);
  --radius: 22px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.02rem + .45vw, 1.3125rem); /* 18px → 21px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 12px 18px; border-radius: 12px; background: var(--lime); color: var(--ink);
  font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

/* ---------- Focus (lime on dark, ink + lime halo on light) ---------- */
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 8px; }
.light :focus-visible { outline-color: var(--ink); box-shadow: 0 0 0 7px rgba(232, 255, 0, .85); }

/* ---------- Scenes: light / dark rhythm ---------- */
/* clip (not hidden) so sticky children still work; hidden is the fallback */
.scene { position: relative; isolation: isolate; overflow: hidden; overflow: clip; padding-block: var(--section-y); }

.light {
  color: var(--ink);
  background:
    radial-gradient(55% 45% at 0% 0%, rgba(232, 255, 0, .30), rgba(232, 255, 0, 0) 70%),
    radial-gradient(50% 40% at 100% 100%, rgba(232, 255, 0, .24), rgba(232, 255, 0, 0) 70%),
    var(--paper);
}
.light.bloom::before { /* soft pink bloom behind the hero element */
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: min(900px, 120vw); aspect-ratio: 1; left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(247, 16, 106, .13), rgba(247, 16, 106, 0));
}

.dark {
  color: var(--paper);
  background:
    radial-gradient(90% 55% at 50% -12%, rgba(232, 255, 0, .30), rgba(232, 255, 0, .08) 45%, rgba(232, 255, 0, 0) 72%),
    var(--ink);
}
.dark p, .dark li { color: var(--body-on-dark); }

/* ---------- Type tiers ---------- */
.eyebrow {
  display: inline-block; margin: 0 0 22px;
  font-size: clamp(.875rem, .82rem + .25vw, 1rem);
  font-weight: 400; letter-spacing: .14em; text-transform: uppercase; line-height: 1.4;
  color: var(--label-gray);
}
.light .eyebrow { color: var(--label-on-light); }
.dark .eyebrow { color: var(--label-gray); }

.headline { font-size: clamp(2.5rem, 1.2rem + 5.6vw, 5.5rem); }
.headline--sm { font-size: clamp(2.125rem, 1.25rem + 3.9vw, 4.25rem); }

/* Signature move: value gradient across the phrase (gray → black → gray).
   Inline spans + slice decoration so the ramp flows through line breaks. */
.vg > span { -webkit-box-decoration-break: slice; box-decoration-break: slice; }
.light .vg .v1 { color: var(--dim-on-light); }
.light .vg .v2 { color: var(--ink); }
.light .vg .v3 { color: var(--dim-on-light); }
.dark .vg .v1 { color: var(--dim-on-dark); }
.dark .vg .v2 { color: var(--paper); }
.dark .vg .v3 { color: var(--dim-on-dark); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .light .vg .v1 { background-image: linear-gradient(90deg, var(--dim-on-light), var(--ink)); }
  .light .vg .v3 { background-image: linear-gradient(90deg, var(--ink), var(--dim-on-light)); }
  .dark .vg .v1 { background-image: linear-gradient(90deg, var(--dim-on-dark), var(--paper)); }
  .dark .vg .v3 { background-image: linear-gradient(90deg, var(--paper), var(--dim-on-dark)); }
  .vg .v1, .vg .v3 { -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
}

.lede { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); line-height: 1.5; max-width: 34ch; }
.light .lede { color: var(--ink); }

/* Display numerals — Bold, enormous, signature gradient */
.numeral {
  display: inline-block;
  font-weight: 700; line-height: .82; letter-spacing: -0.06em;
  font-variant-numeric: lining-nums;
  color: var(--pink); /* fallback */
  padding-inline-end: .04em;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .numeral { background-image: var(--signature); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 60px; padding: 16px 30px; border: 0; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: 1.125rem; letter-spacing: -0.01em; line-height: 1.2;
  text-decoration: none; text-align: center; text-wrap: balance; color: var(--ink);
  background: var(--signature); background-size: 140% 140%; background-position: 0% 100%;
  box-shadow: 0 10px 34px -10px rgba(240, 32, 106, .55);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-position .5s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); background-position: 100% 0%; box-shadow: 0 14px 40px -10px rgba(240, 32, 106, .7), 0 0 0 4px rgba(232, 255, 0, .35); }
.btn:active { transform: translateY(0) scale(.99); }
.btn .arrow { transition: transform .2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--bar { /* the CTA bar */
  display: flex; width: 100%; min-height: 76px; border-radius: 20px;
  font-size: clamp(1.1875rem, 1.05rem + .6vw, 1.5rem);
}
@media (max-width: 480px) { .btn--bar { padding-inline: 20px; } }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 1rem; white-space: nowrap; box-shadow: none; }
@media (max-width: 419px) { .hide-xs { display: none; } }

.link-quiet {
  display: inline-flex; align-items: center; min-height: 44px; font-weight: 500;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px;
  text-decoration-color: var(--lime);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 14, .72);
  -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); text-decoration: none; font-weight: 600; font-size: 1.125rem; letter-spacing: -0.02em; }
.brand svg { width: 28px; height: 28px; flex: none; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(64px, 10vw, 128px); padding-bottom: clamp(200px, 28vw, 340px); text-align: center; }
.hero .wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero .headline { max-width: 15ch; }
.hero .lede { margin: 30px auto 0; max-width: 36ch; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; }
.hero-proof { margin: 26px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 1rem; }
.hero-proof li { display: inline-flex; align-items: center; gap: 9px; color: var(--paper); }
.hero-proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.dome { position: absolute; inset: auto 0 0 0; height: clamp(260px, 42vw, 520px); width: 100%; z-index: 0; pointer-events: none; }

/* ---------- Old way vs done-for-you ---------- */
.contrast-head { max-width: 900px; }
.contrast-head .lede { margin-top: 28px; max-width: 40ch; }
.versus { display: grid; gap: 20px; margin-top: clamp(48px, 7vw, 80px); }
@media (min-width: 860px) { .versus { grid-template-columns: 1fr 1fr; gap: 28px; } }
.way { border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); }
.way h3 { font-size: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem); margin-bottom: 26px; }
.way .eyebrow { margin-bottom: 14px; }
.way li { position: relative; padding: 14px 0 14px 44px; border-top: 1px solid; line-height: 1.45; }
.way li::before { position: absolute; left: 0; top: .725em; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: .95rem; font-weight: 700; }
.way--old { background: var(--gray-track); }
.way--old li { border-color: var(--gray-disc); color: var(--ink); }
.way--old li::before { content: "\2715"; background: var(--gray-disc); color: var(--ink); }
.way--new { background: var(--ink); color: var(--paper); box-shadow: 0 30px 80px -30px rgba(240, 32, 106, .45); position: relative; overflow: hidden; }
.way--new::after { content: ""; position: absolute; inset: -40% -20% auto; height: 70%; background: radial-gradient(closest-side, rgba(232, 255, 0, .22), rgba(232, 255, 0, 0)); pointer-events: none; }
.way--new .eyebrow { color: var(--label-gray); }
.way--new li { border-color: rgba(255, 255, 255, .12); color: var(--paper); }
.way--new li::before { content: "\2713"; background: var(--lime); color: var(--ink); }

/* ---------- What you get ---------- */
.get-grid { display: grid; gap: clamp(48px, 7vw, 88px); align-items: center; }
@media (min-width: 960px) { .get-grid { grid-template-columns: 5fr 6fr; } }
.stat { display: flex; flex-direction: column; align-items: flex-start; }
.stat .eyebrow { margin-bottom: 6px; }
.stat .numeral { font-size: clamp(9rem, 5rem + 22vw, 17.5rem); }
.stat .stat-label { margin-top: 14px; font-size: clamp(1rem, .9rem + .4vw, 1.25rem); letter-spacing: .14em; text-transform: uppercase; color: var(--paper); font-weight: 500; }
.get-copy .headline--sm { margin-bottom: 26px; }
.checks { margin-top: 30px; display: grid; gap: 4px; }
.checks li { position: relative; padding: 14px 0 14px 42px; border-top: 1px solid rgba(255, 255, 255, .12); }
.checks li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.checks li::before { content: ""; position: absolute; left: 4px; top: calc(14px + .8em - 9px); width: 18px; height: 18px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px rgba(232, 255, 0, .6); }
.checks strong { color: var(--paper); font-weight: 600; }

/* Player mock — illustrates the private, watermarked preview */
.player { margin-top: clamp(56px, 8vw, 96px); border-radius: 26px; padding: 12px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 40px 120px -40px rgba(232, 255, 0, .35); }
.player-screen { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: radial-gradient(70% 90% at 70% 110%, rgba(240, 32, 106, .35), rgba(240, 32, 106, 0) 60%), radial-gradient(60% 70% at 20% -10%, rgba(232, 255, 0, .25), rgba(232, 255, 0, 0) 60%), #121217; }
.diagram { position: absolute; inset: 12% 10% 22%; }
.watermark { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.watermark span { transform: rotate(-18deg); font-weight: 700; font-size: clamp(1rem, .6rem + 2.4vw, 2.25rem); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .34); border: 2px solid rgba(255, 255, 255, .3); padding: .35em .8em; border-radius: 12px; white-space: nowrap; }
.player-bar { position: absolute; left: 4%; right: 4%; bottom: 7%; display: flex; align-items: center; gap: 14px; }
.player-bar .play { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--lime); display: grid; place-items: center; }
.player-bar .track { flex: 1; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .22); overflow: hidden; }
.player-bar .track i { display: block; width: 38%; height: 100%; background: var(--lime); border-radius: inherit; }
.player-caption { margin: 18px 6px 4px; font-size: 1rem; color: var(--body-on-dark); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.player-caption b { color: var(--paper); font-weight: 600; }

/* ---------- How it works ---------- */
.steps { margin-top: clamp(48px, 7vw, 80px); display: grid; gap: 16px; }
.step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 8px clamp(20px, 3vw, 40px); align-items: start; padding: clamp(24px, 3.4vw, 36px); border-radius: var(--radius); background: rgba(255, 255, 255, .78); border: 1px solid var(--gray-track); box-shadow: 0 1px 0 rgba(11, 11, 14, .03); }
.step .numeral { font-size: clamp(3.5rem, 2.4rem + 4vw, 5.75rem); min-width: 1.35em; }
.step h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem); letter-spacing: -0.03em; margin-top: .15em; }
.step p { margin: 10px 0 0; max-width: 48ch; }
.step .price { font-weight: 700; white-space: nowrap; }
.step--pay { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step--pay p { color: var(--body-on-dark); }
.step--pay .tag { display: inline-block; margin-top: 16px; font-size: .9375rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 999px; }
.steps-cta { margin-top: 40px; display: flex; justify-content: center; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(6, 1fr); }
  .step { grid-column: span 3; grid-template-columns: 1fr; }
  .step:nth-child(n+3) { grid-column: span 2; }
}

/* ---------- Deposit CTA ---------- */
.deposit { text-align: center; }
.deposit::before { /* hyperspace streaks, behind the numeral only */
  content: ""; position: absolute; z-index: -1; left: 50%; top: 34%; width: 1400px; height: 1400px; transform: translate(-50%, -50%); pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(232, 255, 0, 0) 0deg, rgba(232, 255, 0, .16) .25deg, rgba(232, 255, 0, 0) .6deg, rgba(232, 255, 0, 0) 5deg);
  -webkit-mask: radial-gradient(closest-side, transparent 12%, #000 34%, transparent 62%); mask: radial-gradient(closest-side, transparent 12%, #000 34%, transparent 62%);
}
.deposit .numeral { font-size: clamp(9rem, 4rem + 26vw, 20rem); }
.deposit .headline--sm { margin: 18px auto 0; max-width: 16ch; }
.deposit .lede { margin: 24px auto 0; max-width: 38ch; }
.pay-card { margin: 44px auto 0; max-width: 620px; padding: clamp(20px, 3vw, 28px); border-radius: 28px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); text-align: left; }
.pay-card .terms-line { margin: 18px 4px 0; font-size: 1.0625rem; line-height: 1.55; color: var(--paper); }
.terms-line strong { color: var(--lime); font-weight: 600; }
.pay-meta { margin: 12px 4px 0; font-size: 1rem; color: var(--body-on-dark); }
.pay-card .placeholder-flag { display: none; margin: 16px 4px 0; padding: 10px 14px; border: 2px dashed var(--lime); border-radius: 12px; font-size: .9375rem; font-weight: 500; color: var(--lime); }
html[data-checkout-state="placeholder"] .pay-card .placeholder-flag { display: block; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: clamp(40px, 6vw, 72px); }
@media (min-width: 960px) { .faq-grid { grid-template-columns: 4fr 7fr; align-items: start; } .faq-grid > header { position: sticky; top: 110px; } }
.faq-list { border-top: 1px solid var(--gray-disc); }
.faq-list details { border-bottom: 1px solid var(--gray-disc); }
.faq-list summary { position: relative; display: block; cursor: pointer; padding: 26px 60px 26px 0; font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 36px; height: 36px; margin-top: -18px; border-radius: 50%; background: var(--gray-disc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%230B0B0E' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 18px no-repeat; transition: transform .25s var(--ease-out), background-color .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); background-color: var(--lime); }
.faq-list details p { margin: 0; padding: 0 12px 28px 0; max-width: 60ch; }
.faq-list details[open] p { animation: faq-in .35s var(--ease-out); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Terms + final CTA ---------- */
.terms-grid { display: grid; gap: clamp(44px, 6vw, 72px); align-items: start; }
@media (min-width: 960px) { .terms-grid { grid-template-columns: 1fr 1fr; } }
.terms-list { counter-reset: t; margin-top: 30px; }
.terms-list li { counter-increment: t; position: relative; padding: 18px 0 18px 58px; border-top: 1px solid rgba(255, 255, 255, .12); color: var(--paper); }
.terms-list li::before { content: counter(t, decimal-leading-zero); position: absolute; left: 0; top: 16px; font-weight: 700; font-size: 1.125rem; background: var(--signature); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--body-on-dark); border-top: 1px solid rgba(255, 255, 255, .08); padding: 36px 0 calc(36px + env(safe-area-inset-bottom)); font-size: 1rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.site-footer p { margin: 0; }
.footer-links { display: inline-flex; flex-wrap: wrap; gap: 6px 24px; }
.footer-links a { color: var(--paper); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 2px; font-weight: 500; }
.footer-links a:hover { border-bottom-color: var(--lime); }

/* ---------- Legal pages ---------- */
.legal .wrap { max-width: 900px; }
.legal-doc {
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--gray-track); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 52px);
  box-shadow: 0 24px 80px -40px rgba(11, 11, 14, .25);
}
.legal-doc h2 { font-size: clamp(1.375rem, 1.15rem + .8vw, 1.75rem); letter-spacing: -0.02em; margin: 2.4em 0 .7em; }
.legal-doc h2:first-of-type { margin-top: 1.6em; }
.legal-doc p, .legal-doc li { color: var(--ink); }
.legal-doc ul { list-style: disc; padding-left: 1.4em; margin: 0 0 1em; }
.legal-doc ol { list-style: decimal; padding-left: 1.4em; margin: 0 0 1em; }
.legal-doc li { margin-bottom: .45em; }
.legal-updated { color: var(--label-on-light); font-size: 1rem; margin-bottom: 0; }
.ph { background: rgba(232, 255, 0, .55); padding: .05em .4em; border-radius: 6px; font-weight: 600; }

/* ---------- Mobile sticky CTA ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(11, 11, 14, .86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-top: 1px solid rgba(255, 255, 255, .08); transform: translateY(110%); transition: transform .35s var(--ease-out); }
.dock.is-on { transform: none; }
.dock .btn { width: 100%; min-height: 56px; }
@media (min-width: 900px) { .dock { display: none; } }

/* ---------- Placeholder checkout dialog ---------- */
.modal { width: min(560px, calc(100vw - 32px)); padding: 0; border: 0; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 40px 120px -20px rgba(0, 0, 0, .6); }
.modal::backdrop { background: rgba(11, 11, 14, .72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal-body { padding: 32px; }
.modal .eyebrow { color: var(--label-on-light); margin-bottom: 12px; }
.modal h2 { font-size: 2rem; margin-bottom: 14px; }
.modal code { font-size: .9em; background: var(--gray-track); padding: 2px 6px; border-radius: 6px; }
.modal .btn { margin-top: 10px; }

/* ---------- Entrances: fast, then fully settled (legibility rule) ---------- */
@keyframes settle {
  from { opacity: 0; filter: blur(10px); transform: translateY(14px) scale(.985); text-shadow: -3px 0 rgba(238, 122, 69, .6), 3px 0 rgba(0, 190, 255, .6); }
  to { opacity: 1; filter: none; transform: none; text-shadow: none; }
}
.hero .eyebrow, .hero .headline, .hero .lede, .hero-actions, .hero-proof { animation: settle .45s var(--ease-out) both; }
.hero .headline { animation-delay: .06s; }
.hero .lede { animation-delay: .14s; }
.hero-actions { animation-delay: .2s; }
.hero-proof { animation-delay: .26s; }
.js [data-reveal] { opacity: 0; }
.js [data-reveal].is-in { animation: settle .45s var(--ease-out) both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; }
}
