/* ============================================================
   Ephemeral — design system
   Inspired by deep-navy / glow-accent landing aesthetics.
   Theme motif: the temporary — fading glows, dissolving light.
   ============================================================ */

:root {
  /* surfaces */
  --bg-0: #05060f;
  --bg-1: #080a18;
  --bg-2: #0c0f22;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* text */
  --text: #eef1fb;
  --text-soft: #c3c9e4;
  --muted: #8b93b8;
  --faint: #5b6488;

  /* accents */
  --ice: #56e1d8;       /* cyan / newness */
  --blue: #6d8bff;      /* electric blue */
  --violet: #b08bff;    /* violet / privacy */
  --ember: #ffb27a;     /* warm / parent care */

  /* gradients */
  --grad-hero: linear-gradient(110deg, #eef1fb 0%, #9fb4ff 38%, #7be4dd 70%, #c5a8ff 100%);
  --grad-line: linear-gradient(90deg, transparent, var(--border-strong), transparent);

  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ambient page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 50vh at 15% -5%, rgba(109, 139, 255, 0.16), transparent 60%),
    radial-gradient(55vw 45vh at 95% 8%, rgba(176, 139, 255, 0.13), transparent 60%),
    radial-gradient(50vw 50vh at 50% 110%, rgba(86, 225, 216, 0.10), transparent 60%),
    var(--bg-0);
}
/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(109, 139, 255, 0.35); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.8)} }

.grad-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #fff, #d9defc);
  color: #0a0c1a;
  box-shadow: 0 8px 30px rgba(159, 180, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(159, 180, 255, 0.42); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); border-color: rgba(255,255,255,.3); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 7, 16, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font); font-weight: 600; font-size: 18.5px; letter-spacing: -0.01em; }
.brand .mark {
  width: 26px; height: 26px;
  position: relative; display: inline-grid; place-items: center;
}
.brand .mark span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--ice);
  opacity: .9;
}
.brand .mark span:nth-child(2) { transform: scale(.66); border-color: var(--violet); opacity: .7; }
.brand .mark span:nth-child(3) { transform: scale(.32); border-color: var(--blue); background: var(--blue); opacity: .6; box-shadow: 0 0 12px var(--blue); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.lnk { font-size: 14.5px; color: var(--muted); transition: color .2s; font-weight: 450; }
.nav-links a.lnk:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 168px 0 90px; text-align: center; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; pointer-events: none; animation: drift 16s ease-in-out infinite; }
.orb.a { width: 420px; height: 420px; background: radial-gradient(circle, rgba(109,139,255,.7), transparent 70%); top: -60px; left: -80px; }
.orb.b { width: 380px; height: 380px; background: radial-gradient(circle, rgba(176,139,255,.6), transparent 70%); top: 40px; right: -60px; animation-delay: -5s; }
.orb.c { width: 460px; height: 460px; background: radial-gradient(circle, rgba(86,225,216,.45), transparent 70%); bottom: -160px; left: 40%; animation-delay: -9s; }
@keyframes drift { 0%,100%{transform:translate(0,0)} 33%{transform:translate(30px,-26px)} 66%{transform:translate(-22px,20px)} }

.hero .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(40px, 7.2vw, 84px);
  margin: 26px auto 0;
  max-width: 14ch;
}
.hero .sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-soft);
  max-width: 60ch;
  margin: 26px auto 0;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-meta { margin-top: 26px; font-size: 13.5px; color: var(--muted); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .tick { color: var(--ice); }

/* word that "dissolves" */
.fade-word { position: relative; }
.fade-word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--violet));
  opacity: .5;
  filter: blur(1px);
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 52px); margin-top: 18px; }
.section-head p { color: var(--text-soft); font-size: 17.5px; margin-top: 18px; line-height: 1.6; }
.divider { height: 1px; background: var(--grad-line); margin: 0 auto; max-width: var(--maxw); }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.stat {
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative; overflow: hidden;
}
.stat::before { content:""; position:absolute; top:-40px; right:-40px; width:120px; height:120px; border-radius:50%; background: radial-gradient(circle, rgba(109,139,255,.22), transparent 70%); }
.stat .num { font-family: var(--font); font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.03em; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.4; }
.stat:nth-child(2) .num { color: var(--ice); }
.stat:nth-child(3) .num { color: var(--violet); }
.stat:nth-child(4) .num { color: var(--ember); }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   Beliefs (three column)
   ============================================================ */
.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.belief {
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), transparent);
}
.belief .ix { font-family: var(--font); font-size: 13px; color: var(--faint); letter-spacing: .2em; }
.belief h3 { font-size: 21px; margin: 16px 0 12px; line-height: 1.2; }
.belief p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px){ .beliefs { grid-template-columns: 1fr; } }

/* ============================================================
   Pillars
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.pillar {
  position: relative;
  padding: 36px 34px 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.pillar::before {
  content: "";
  position: absolute; top: -60px; left: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: .5; transition: opacity .5s; pointer-events: none;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.pillar:hover::before { opacity: .9; }
.pillar .pnum { font-family: var(--font); font-size: 13px; letter-spacing: .18em; color: var(--faint); position: relative; }
.pillar .picon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  position: relative;
}
.pillar h3 { font-size: 25px; margin: 14px 0 6px; position: relative; }
.pillar .tag { font-family: var(--font); font-size: 13px; color: var(--accent); position: relative; }
.pillar p { color: var(--text-soft); font-size: 15.5px; margin: 16px 0 0; position: relative; }
.pillar ul { list-style: none; margin: 18px 0 0; position: relative; display: grid; gap: 10px; }
.pillar li { color: var(--muted); font-size: 14.5px; padding-left: 24px; position: relative; line-height: 1.45; }
.pillar li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.pillar .later { display:inline-block; margin-top:18px; font-size:12px; color:var(--faint); border:1px solid var(--border); padding:4px 11px; border-radius:100px; position:relative; }

.pillar.p1 { --glow: rgba(86,225,216,.4); --accent: var(--ice); }
.pillar.p2 { --glow: rgba(176,139,255,.4); --accent: var(--violet); }
.pillar.p3 { --glow: rgba(109,139,255,.4); --accent: var(--blue); }
.pillar.p4 { --glow: rgba(255,178,122,.4); --accent: var(--ember); }
.pillar.p4 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 44px;
  align-items: center;
  padding: 40px 40px 42px;
}
.pillar.p4 .p4-left { position: relative; }
.pillar.p4 .p4-right { position: relative; }
.pillar.p4 .picon { margin-bottom: 18px; }
.pillar.p4 h3 { margin-top: 12px; }
.pillar.p4 .p4-right p { margin: 0; font-size: 16px; color: var(--text-soft); }
.pillar.p4 .heart { font-size: 13px; color: var(--ember); }
@media (max-width: 980px){ .pillars { grid-template-columns: 1fr; } }
@media (max-width: 980px){ .pillar.p4 { grid-template-columns: 1fr; gap: 16px; } .pillar.p4 .picon { margin-bottom: 12px; } }

/* ============================================================
   Proof / experiments timeline
   ============================================================ */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.exp {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}
.exp .ehead { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.exp .ebadge { font-family: var(--font); font-size: 12px; letter-spacing:.12em; text-transform: uppercase; color: var(--ice); border:1px solid var(--border); padding:5px 11px; border-radius:100px; }
.exp h3 { font-size: 20px; }
.exp p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.exp .pull { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font); font-size: 15px; color: var(--text-soft); line-height: 1.35; }
@media (max-width: 820px){ .proof { grid-template-columns: 1fr; } }

/* ============================================================
   Why now
   ============================================================ */
.whynow { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.why-card {
  padding: 30px 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), transparent);
  display: flex; gap: 18px; align-items: flex-start;
}
.why-card .wn { font-family: var(--font); font-size: 26px; font-weight: 600; color: var(--blue); line-height: 1; min-width: 34px; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px){ .whynow { grid-template-columns: 1fr; } }

/* ============================================================
   Big quote / thesis band
   ============================================================ */
.quote-band { padding: 120px 0; text-align: center; }
.quote-band blockquote {
  font-family: var(--font);
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 18ch;
  margin: 0 auto;
}
.quote-band cite { display: block; margin-top: 28px; font-style: normal; color: var(--muted); font-size: 15px; }

/* ============================================================
   Early access / CTA
   ============================================================ */
.cta-section { padding: 40px 0 110px; }
.cta-card {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(60% 120% at 50% -10%, rgba(109,139,255,.22), transparent 60%),
    radial-gradient(50% 120% at 50% 120%, rgba(176,139,255,.18), transparent 60%),
    var(--bg-1);
}
.cta-card h2 { font-size: clamp(30px, 5vw, 52px); max-width: 16ch; margin: 18px auto 0; }
.cta-card p { color: var(--text-soft); font-size: 17px; max-width: 52ch; margin: 18px auto 0; }

.waitlist { margin: 36px auto 0; max-width: 520px; }
.waitlist .row { display: flex; gap: 10px; }
.waitlist input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 15px 20px;
  border-radius: 100px;
  font-size: 15.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .25s, background .25s;
  min-width: 0;
}
.waitlist input::placeholder { color: var(--faint); }
.waitlist input:focus { border-color: var(--blue); background: rgba(109,139,255,.08); }
.waitlist .note { margin-top: 14px; font-size: 12.5px; color: var(--faint); }
.waitlist .ok {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(86,225,216,.35);
  background: rgba(86,225,216,.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
}
.waitlist.done form { display: none; }
.waitlist.done .ok { display: block; animation: rise .5s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.perks { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.perks span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.perks .tick { color: var(--ice); }

@media (max-width: 540px){ .waitlist .row { flex-direction: column; } .cta-card { padding: 48px 26px; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 48px; }
.footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .blurb { max-width: 320px; }
.footer .blurb p { color: var(--muted); font-size: 14px; margin-top: 16px; }
.footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer .col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer .col a:hover { color: var(--text); }
.footer .base { display: flex; justify-content: space-between; align-items: center; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 14px; }
.footer .base p { color: var(--faint); font-size: 13px; }
.footer .counter { font-family: var(--font); font-size: 13px; color: var(--muted); }
.footer .counter b { color: var(--ice); }

/* ============================================================
   Investor page specifics
   ============================================================ */
.market { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.mk {
  padding: 30px 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); position: relative; overflow: hidden;
}
.mk .maps { font-family: var(--font); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.mk h3 { font-size: 19px; margin: 6px 0 18px; }
.mk .fig { display: flex; align-items: baseline; gap: 12px; }
.mk .fig .from { font-family: var(--font); font-size: 22px; color: var(--muted); }
.mk .fig .arr { color: var(--faint); }
.mk .fig .to { font-family: var(--font); font-size: clamp(26px,3.4vw,34px); font-weight: 600; color: var(--text); }
.mk .cagr { display:inline-block; margin-top:14px; font-size:13px; color: var(--ice); border:1px solid rgba(86,225,216,.3); padding:4px 12px; border-radius:100px; }
@media (max-width: 760px){ .market { grid-template-columns: 1fr; } }

.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 52px; }
.tier {
  padding: 26px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); transition: transform .4s var(--ease), border-color .3s;
}
.tier:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.tier .tname { font-family: var(--font); font-size: 17px; font-weight: 600; }
.tier .pill-ref { font-size: 12px; color: var(--faint); margin: 6px 0 14px; }
.tier p { font-size: 13.5px; color: var(--muted); }
.tier.feat { border-color: var(--border-strong); background: linear-gradient(180deg, rgba(109,139,255,.1), var(--surface)); }
@media (max-width: 920px){ .tiers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .tiers { grid-template-columns: 1fr; } }

.white { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 52px; align-items: start; }
.white .col-list { display: grid; gap: 14px; }
.white .wrow { display:flex; gap:14px; align-items:flex-start; padding: 18px 20px; border:1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.white .wrow .k { color: var(--ice); font-family: var(--font); font-size: 14px; min-width: 92px; }
.white .wrow .v { color: var(--text-soft); font-size: 14.5px; }
@media (max-width: 820px){ .white { grid-template-columns: 1fr; } }

.risks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.risk { padding: 24px 24px; border:1px solid var(--border); border-radius: var(--radius-sm); background: linear-gradient(180deg, var(--surface), transparent); }
.risk h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.risk p { color: var(--muted); font-size: 14px; }
@media (max-width: 760px){ .risks { grid-template-columns: 1fr; } }

.ask-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.ask-card { padding: 30px 26px; border:1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.ask-card .akl { font-family: var(--font); font-size: 12px; letter-spacing:.14em; text-transform: uppercase; color: var(--faint); }
.ask-card h3 { font-size: 22px; margin: 12px 0 8px; }
.ask-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px){ .ask-grid { grid-template-columns: 1fr; } }

.fund { display:flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.fund .chip { font-size: 13px; color: var(--text-soft); border:1px solid var(--border); padding: 8px 16px; border-radius: 100px; background: var(--surface); }

/* page hero variant */
.hero.compact { padding: 150px 0 64px; text-align: left; }
.hero.compact .wrap { max-width: 900px; margin: 0 auto; }
.hero.compact h1 { margin-left: 0; margin-right: 0; max-width: 18ch; }
.hero.compact .sub { margin-left: 0; }
.hero.compact .hero-actions { justify-content: flex-start; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
