


:root {
  color-scheme: light dark;

  
  --brand-300: #93c5fd;
  --brand-400: #60a5fa;

  
  --bg: #f4f7fd;
  --surface: #ffffff;
  --surface-2: #eef3fb;
  --ink: #16233a;
  --ink-2: #46556e;
  --ink-3: #5d6d87;
  --line: #dbe6f7;
  --accent: #1d5fd4;        
  --accent-bg: #2e70e6;     
  --accent-ink: #ffffff;    
  --accent-wash: #e3ecfd;   

  
  --sand: #fdf3e7;
  --sand-line: #f0dcc2;

  
  --shadow-sm: 0 2px 8px -2px rgb(22 35 58 / 0.10);
  --shadow-md: 0 14px 30px -14px rgb(22 35 58 / 0.20);
  --shadow-lg: 0 40px 80px -40px rgb(22 35 58 / 0.34);

  --r-card: 20px;
  --r-inner: 12px;
  --r-pill: 999px;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  --fs-display: clamp(2.5rem, 5.6vw, 4.1rem);
  --fs-h2: clamp(1.85rem, 3.5vw, 2.9rem);
  --fs-h3: clamp(1.1rem, 1.5vw, 1.3rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  --font-display: "Outfit", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  
  --z-bg: 0;
  --z-content: 10;
  --z-phone: 20;
  --z-header: 60;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1524;
    --surface: #151f33;
    --surface-2: #1b2740;
    --ink: #e8eef9;
    --ink-2: #a8b8d0;
    --ink-3: #93a5c0;
    --line: #263349;
    --accent: #8ab8ff;      
    --accent-bg: #4f93ff;
    --accent-ink: #06101f;  
    --accent-wash: #16243d;
    --sand: #1e2536;
    --sand-line: #2c3547;
    --shadow-sm: 0 2px 8px -2px rgb(0 0 0 / 0.40);
    --shadow-md: 0 14px 30px -14px rgb(0 0 0 / 0.60);
    --shadow-lg: 0 40px 80px -40px rgb(0 0 0 / 0.75);
  }
}



@font-face {
  font-family: "Outfit";
  src: url("fonts/outfit-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2190-21BB, U+2212;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2190-21BB, U+2212;
}


*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }

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


.tnum { font-variant-numeric: tabular-nums; }


.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -140%;
  z-index: 100;
  padding: 0.7rem 1.25rem;
  background: var(--accent-bg);
  color: var(--accent-ink);
  border-radius: 0 0 var(--r-inner) var(--r-inner);
  font-weight: 600;
  text-decoration: none;
  transition: translate 0.18s var(--ease);
}
.skip-link:focus-visible { translate: -50% 0; }


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; z-index: var(--z-content); }
.section--tint { background: var(--surface-2); }
.section--surface { background: var(--surface); }


.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 62ch;
}

.lead { font-size: var(--fs-lead); color: var(--ink-2); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  fill: currentColor;
}
.icon--sm { width: 1.15rem; height: 1.15rem; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  
  white-space: nowrap;
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent-bg); color: var(--accent); }

.btn--on-photo {
  background: rgb(255 255 255 / 0.14);
  color: #ffffff;
  border-color: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--on-photo:hover { background: rgb(255 255 255 / 0.24); border-color: #ffffff; }
.btn:active { transform: translateY(1px) scale(0.985); }


.play-badge { display: inline-block; transition: transform 0.2s var(--ease); }
.play-badge img { height: 3.25rem; width: auto; }
.play-badge--lg img { height: 4rem; }
.play-badge--sm img { height: 2.5rem; }
.play-badge:hover { transform: translateY(-2px); }
.play-badge:active { transform: translateY(0) scale(0.985); }



.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: 68px;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header[data-stuck="true"] {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand svg { height: 30px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color 0.18s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
@media (max-width: 860px) {
  
  .site-nav { display: none; }
}


.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, 100svh);
  display: flex;
  align-items: center;
  
  padding-block: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgb(8 18 34 / 0.86) 0%, rgb(8 18 34 / 0.62) 44%, rgb(8 18 34 / 0.24) 72%, rgb(8 18 34 / 0.34) 100%),
    linear-gradient(180deg, rgb(8 18 34 / 0.34) 0%, transparent 34%);
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero__copy { max-width: 34rem; }
.hero__copy .eyebrow { color: var(--brand-300); }
.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.02;
  color: #ffffff;
  text-shadow: 0 2px 20px rgb(6 14 26 / 0.45);
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-400);
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: var(--fs-lead);
  color: #e4ecf8;
  max-width: 34ch;
  text-shadow: 0 1px 10px rgb(6 14 26 / 0.5);
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}


.hero__shot { justify-self: center; position: relative; }
.device {
  position: relative;
  width: clamp(200px, 25vw, 268px);
  padding: 10px;
  background: linear-gradient(150deg, #2b3242 0%, #0b0e14 45%, #1d2230 100%);
  border-radius: 44px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgb(255 255 255 / 0.18);
}
.device img { width: 100%; border-radius: 34px; display: block; }

.hero__shot .device { rotate: -3deg; }

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__sub { max-width: 46ch; }
  .hero__shot { display: none; }
}



.assurances {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 1.5rem;
  position: relative;
  z-index: var(--z-content);
}
.assurances ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.75rem;
}
.assurances li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
}
.assurances .icon { color: var(--accent); }
@media (max-width: 760px) {
  .assurances ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


.story {
  position: relative;
  z-index: var(--z-content);
  
  min-height: 100svh;
  display: grid;
  overflow: hidden;
}
.story__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  perspective: 2200px;
  perspective-origin: 50% 40%;
  z-index: var(--z-phone);
}
.story__rig {
  position: relative;
  width: 300px;
  height: 610px;
  transform-style: preserve-3d;
}
.phone {
  position: absolute;
  inset: 0;
  border-radius: 48px;      
  padding: 9px;
  background: linear-gradient(150deg, #2b3242 0%, #0b0e14 45%, #1d2230 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgb(255 255 255 / 0.2);
  
  backface-visibility: hidden;
  will-change: transform;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: var(--surface-2);
  clip-path: inset(0 round 40px);
}

.phone__track { position: absolute; top: 0; left: 0; width: 100%; height: 400%; will-change: transform; }
.phone__track img {
  width: 100%;
  height: 25%;
  object-fit: cover;
  object-position: top center;
}


.satellite {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 152px;
  height: auto;
  aspect-ratio: 560 / 942;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  box-shadow: var(--shadow-md);
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.satellite img { width: 100%; height: 100%; object-fit: cover; }
.satellite[data-sat="2"] { aspect-ratio: 560 / 778; }
.satellite[data-sat="3"] { aspect-ratio: 560 / 941; }
.satellite[data-sat="5"] { aspect-ratio: 560 / 941; }

.satellite[data-sat="4"] { width: 236px; aspect-ratio: 560 / 339; }
.satellite[data-sat="6"] { width: 236px; aspect-ratio: 560 / 347; }


.story__panels { position: relative; width: 100%; height: 100%; align-self: stretch; }
.story__panel {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: min(38%, 27rem);
  opacity: 0;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-md);
}

.story__panel--right { right: var(--gutter); }
.story__panel--left { left: var(--gutter); }
.story__panel h2 { font-size: clamp(1.4rem, 2.2vw, 1.95rem); margin-bottom: 0.75rem; }
.story__panel p { color: var(--ink-2); font-size: var(--fs-sm); }

@media (max-width: 900px) {
  .story__rig { width: 210px; height: 428px; }
  .phone { border-radius: 36px; padding: 7px; }
  .phone__screen { border-radius: 30px; clip-path: inset(0 round 30px); }
  .satellite { width: 94px; border-radius: 14px; }
  .satellite[data-sat="4"], .satellite[data-sat="6"] { width: 138px; }
  .story__panel {
    width: calc(100% - 2 * var(--gutter));
    left: var(--gutter);
    right: var(--gutter);
    top: auto;
    bottom: 3vh;
    translate: 0;
  }
}


.story[data-static="true"] {
  min-height: 0;
  display: block;
  padding-block: var(--section-y);
}
.story[data-static="true"] .story__stage {
  position: relative;
  inset: auto;
  height: 640px;
  margin-bottom: 3rem;
}
.story[data-static="true"] .story__panels {
  height: auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.story[data-static="true"] .story__panel {
  position: static;
  opacity: 1;
  width: auto;
  inset: auto;
  translate: none;
  transform: none;
}
.story[data-static="true"] .satellite { display: none; }
@media (max-width: 900px) {
  .story[data-static="true"] .story__stage { height: 470px; }
}




.steps { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); max-width: 56rem; }
.step {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}

.step:nth-child(2) { margin-inline-start: clamp(0rem, 6vw, 5rem); }
.step:nth-child(3) { margin-inline-start: clamp(0rem, 12vw, 10rem); }
.step__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--r-inner);
  background: var(--accent-wash);
  color: var(--accent);
}
.step h3 { font-size: var(--fs-h3); margin-bottom: 0.45rem; }
.step p { color: var(--ink-2); font-size: var(--fs-sm); max-width: 52ch; }
@media (max-width: 760px) {
  .step { grid-template-columns: 1fr; gap: 1rem; }
  .step:nth-child(2), .step:nth-child(3) { margin-inline-start: 0; }
}



.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}
.tile {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              border-color 0.22s var(--ease);
}
.tile:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-bg) 55%, var(--line));
  box-shadow: var(--shadow-md);
}
.tile .icon { color: var(--accent); }
.tile h3 { font-size: var(--fs-h3); }
.tile p { color: var(--ink-2); font-size: var(--fs-sm); }

.tile--a { grid-column: span 3; }
.tile--b { grid-column: span 3; }

.tile--shot {
  grid-column: span 2;
  grid-row: span 2;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(165deg, var(--accent-wash), var(--surface));
}
.tile--shot .tile__cap {
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.35rem, 2.2vw, 1.9rem) clamp(1.35rem, 2.2vw, 1.9rem) 0;
}
.tile--shot img {
  width: 78%;
  
  margin: auto auto 0;
  margin-top: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease);
  
  max-height: 62%;
  object-fit: cover;
  object-position: top center;
}
.tile--shot:hover img { transform: translateY(-6px); }
.tile--c { grid-column: span 4; }
.tile--d { grid-column: span 2; background: var(--sand); border-color: var(--sand-line); }
.tile--e { grid-column: span 2; }
.tile--f {
  grid-column: span 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  overflow: hidden;
}
.tile--f .tile__body { padding: clamp(1.35rem, 2.2vw, 1.9rem); display: grid; gap: 0.65rem; }
.tile--f img { height: 100%; width: 100%; object-fit: cover; min-height: 190px; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile--a, .tile--b, .tile--c, .tile--d, .tile--e, .tile--f { grid-column: span 2; }
  .tile--shot { grid-column: span 2; grid-row: auto; }
  .tile--shot img { width: 58%; max-height: 260px; margin-top: 1.5rem; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .tile--a, .tile--b, .tile--c, .tile--d, .tile--e, .tile--f, .tile--shot { grid-column: span 1; }
  .tile--f { grid-template-columns: 1fr; }
  .tile--f img { min-height: 150px; }
}



.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem) clamp(2rem, 5vw, 4rem);
}
.faq > div { max-width: 46ch; }
.faq h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.faq p { color: var(--ink-2); font-size: var(--fs-sm); }
.faq__foot { margin-top: clamp(2.5rem, 5vw, 3.5rem); color: var(--ink-2); font-size: var(--fs-sm); }
@media (max-width: 760px) { .faq { grid-template-columns: 1fr; } }


.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.closing__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.closing__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(8 18 34 / 0.82), rgb(8 18 34 / 0.9));
}
.closing h2 { font-size: var(--fs-h2); color: #ffffff; }
.closing p {
  margin: 1.25rem auto 2.25rem;
  max-width: 44ch;
  color: #dde7f6;
  font-size: var(--fs-lead);
}

.shimmer {
  background: linear-gradient(90deg, #9cc4ff, #ffffff, #9cc4ff, #ffffff, #9cc4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}


.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  position: relative;
  z-index: var(--z-content);
}
.site-footer .container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: start;
}
.site-footer .brand svg { height: 26px; }
.site-footer p { margin-top: 0.9rem; color: var(--ink-2); font-size: var(--fs-sm); max-width: 44ch; }
.footer__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-self: end; }
.footer__links a { color: var(--ink-2); text-decoration: none; font-size: var(--fs-sm); }
.footer__links a:hover { color: var(--ink); text-decoration: underline; }
.footer__base {
  
  grid-column: 1 / -1;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: var(--fs-xs);
}
@media (max-width: 760px) {
  .site-footer .container { grid-template-columns: 1fr; }
  .footer__links { justify-self: start; }
}



.bg-stage {
  position: fixed;
  inset: -10vh -10vw;
  z-index: var(--z-bg);
  pointer-events: none;
  overflow: hidden;
}
.bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.bg-orb--1 {
  width: min(52vw, 700px);
  aspect-ratio: 1;
  top: -10vh;
  left: -12vw;
  opacity: 0.5;
  background: radial-gradient(circle at 38% 38%, var(--brand-400) 0%, rgb(96 165 250 / 0) 70%);
}
.bg-orb--2 {
  width: min(46vw, 620px);
  aspect-ratio: 1;
  bottom: -12vh;
  right: -10vw;
  opacity: 0.4;
  background: radial-gradient(circle at 58% 42%, var(--brand-300) 0%, rgb(147 197 253 / 0) 70%);
}
@media (prefers-color-scheme: dark) {
  .bg-orb--1, .bg-orb--2 { opacity: 0.16; }
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .bg-orb--1, .bg-orb--2 {
      animation: orb-drift linear both;
      animation-timeline: scroll(root block);
    }
    .bg-orb--2 { animation-name: orb-drift-alt; }
  }
}
@keyframes orb-drift {
  to { transform: translate3d(9vw, 22vh, 0) scale(1.15); }
}
@keyframes orb-drift-alt {
  to { transform: translate3d(-8vw, -20vh, 0) scale(1.1); }
}



@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: reveal-rise both;
      animation-timeline: view();
      animation-range: entry 5% cover 28%;
    }
  }
}
@keyframes reveal-rise {
  from { transform: translateY(24px); }
  to { transform: none; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .bg-orb { animation: none !important; transform: none !important; }
  
  .reveal { animation: none !important; transform: none !important; }
  
  .shimmer {
    animation: none;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
  }
}
