/* ============================================================
   ASAKI — shared stylesheet
   Pre-dawn night sky → sunrise. Trust first, quietly magical.
   No framework, no build. CSS-only motion + reduced-motion fallback.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Night palette */
  --night-ink: #080A14;
  --night-ink-2: #0E1326;
  --night-panel: #161D33;
  --night-panel-border: #26304F;

  /* Text */
  --starlight: #EDEFFA;
  --starlight-dim: #8B93B4;

  /* Brand accents */
  --ember: #FDA396;
  --ember-soft: #FECDB4;
  --gold: #F7B267;

  /* Dawn ramp */
  --dawn-night: #1A1535;
  --dawn-indigo: #3A2A66;
  --dawn-mauve: #8A4A73;
  --dawn-coral: #FD8A73;
  --dawn-peach: #FEC2A4;
  --dawn-horizon: #FFE3CB;

  /* Gradients */
  --grad-night: linear-gradient(180deg, #080A14, #0E1326 55%, #080A14);
  --grad-dawn: linear-gradient(135deg, #1A1535, #3A2A66, #8A4A73, #FD8A73, #FEC2A4, #FFE3CB);

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 144px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Type */
  --font-display: "Bungee", system-ui, sans-serif;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index scale */
  --z-base: 0;
  --z-sticky: 20;
  --z-overlay: 40;
  --z-toast: 50;

  --maxw: 1120px;
  --measure: 68ch;
}

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

* { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.65;
  color: var(--starlight);
  background-color: var(--night-ink);
  background-image: var(--grad-night);
  background-attachment: fixed;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Starfield — pure CSS, fixed behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(237, 239, 250, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 75% 18%, rgba(237, 239, 250, 0.7), transparent),
    radial-gradient(1px 1px at 50% 60%, rgba(237, 239, 250, 0.6), transparent),
    radial-gradient(1px 1px at 88% 72%, rgba(247, 178, 103, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 33% 85%, rgba(237, 239, 250, 0.6), transparent),
    radial-gradient(1px 1px at 12% 65%, rgba(237, 239, 250, 0.5), transparent),
    radial-gradient(2px 2px at 64% 42%, rgba(254, 205, 180, 0.6), transparent),
    radial-gradient(1px 1px at 5% 15%, rgba(237, 239, 250, 0.7), transparent),
    radial-gradient(1px 1px at 95% 45%, rgba(237, 239, 250, 0.5), transparent);
  background-repeat: repeat;
  background-size: 100% 100%;
  animation: twinkle 9s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.9rem + 3.4vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 1.5rem + 2vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); }

p { text-wrap: pretty; }

a { color: var(--ember); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--ember); color: var(--night-ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.display { font-family: var(--font-display); letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--starlight);
  max-width: var(--measure);
}

.muted { color: var(--starlight-dim); }
.coral { color: var(--ember); }
.measure { max-width: var(--measure); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section { padding-block: clamp(var(--space-8), 6vw, var(--space-10)); }
.section--tight { padding-block: clamp(var(--space-7), 4vw, var(--space-8)); }

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100%;
  background: var(--ember);
  color: var(--night-ink);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: var(--z-toast);
  transition: top 0.2s var(--ease-out-quart);
}
.skip-link:focus { top: var(--space-4); text-decoration: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out-quart),
              box-shadow 0.3s var(--ease-out-quart),
              background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--ember);
  color: var(--night-ink);
  box-shadow: 0 6px 24px -8px rgba(253, 163, 150, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(253, 163, 150, 0.7);
}

.btn--ghost {
  background: rgba(237, 239, 250, 0.04);
  color: var(--starlight);
  border-color: var(--night-panel-border);
}
.btn--ghost:hover {
  border-color: var(--ember-soft);
  background: rgba(237, 239, 250, 0.08);
}

.btn__icon { width: 20px; height: 20px; flex: none; }

/* ---- Cards ---- */
.card {
  background: rgba(22, 29, 51, 0.55);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.card--gold { border-color: rgba(247, 178, 103, 0.3); }
.card--ember { border-color: rgba(253, 163, 150, 0.5); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(8, 10, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 48, 79, 0.6);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 64px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--starlight);
}
.nav__brand:hover { text-decoration: none; }
.nav__mark { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav__links { display: flex; align-items: center; gap: var(--space-5); }
.nav__links a:not(.btn) { color: var(--starlight-dim); font-size: 0.95rem; font-weight: 500; }
.nav__links a:not(.btn):hover { color: var(--starlight); text-decoration: none; }
.nav__cta { padding: var(--space-2) var(--space-4); min-height: 40px; }
@media (max-width: 640px) {
  .nav__links .nav__hide { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-8), 9vw, var(--space-10));
}
/* Dawn glow at the horizon — dawn earns its moment */
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -45%;
  transform: translateX(-50%);
  width: 140%;
  height: 90%;
  background: radial-gradient(ellipse at center,
    rgba(253, 138, 115, 0.45) 0%,
    rgba(138, 74, 115, 0.28) 32%,
    rgba(58, 42, 102, 0.12) 55%,
    transparent 72%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-6), 5vw, var(--space-9));
  align-items: center;
}
.hero__title { margin-bottom: var(--space-4); }
.hero__title .row { display: block; }
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-weight: 600;
  color: var(--ember-soft);
}
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.hero__note {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--starlight-dim);
}

/* Hero alarm card (the product moment) */
.alarm {
  position: relative;
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  background:
    linear-gradient(180deg, rgba(8,10,20,0.2), rgba(8,10,20,0.65)),
    var(--grad-dawn);
  border: 1px solid rgba(254, 205, 180, 0.35);
  box-shadow: 0 30px 80px -40px rgba(253, 138, 115, 0.6);
  text-align: center;
  color: var(--night-ink);
}
.alarm__label {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a1f1a;
}
.alarm__time {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 6vw, 4.6rem);
  line-height: 1;
  color: var(--night-ink);
  margin-block: var(--space-2) var(--space-4);
}
.alarm__mascot {
  width: clamp(120px, 26vw, 168px);
  height: auto;
  margin: 0 auto var(--space-3);
  display: block;
  filter: drop-shadow(0 12px 24px rgba(58, 31, 26, 0.35));
}
.alarm__phrase {
  display: inline-block;
  background: rgba(8, 10, 20, 0.82);
  color: var(--ember-soft);
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
}
.alarm__phrase b { color: var(--starlight); font-weight: 600; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .alarm { order: -1; max-width: 460px; margin-inline: auto; }
}

/* ---- Section heads ---- */
.shead { max-width: 56ch; margin-bottom: var(--space-7); }
.shead h2 { margin-bottom: var(--space-3); }
.shead .lead { color: var(--starlight-dim); }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .lead { margin-inline: auto; }

/* ---- Privacy proof: data path ---- */
.privacy { position: relative; }
.pitch {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}
.pitch b { font-weight: 600; color: var(--ember); }

.path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: var(--space-3);
  margin-top: var(--space-7);
}
.path__node {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-5) var(--space-4);
  background: rgba(22, 29, 51, 0.55);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-lg);
}
.path__node--device { border-color: rgba(253, 163, 150, 0.5); }
.path__icon {
  width: 34px; height: 34px; margin: 0 auto var(--space-1);
  color: var(--gold);
}
.path__node--device .path__icon { color: var(--ember); }
.path__node h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.path__node p { font-size: 0.86rem; color: var(--starlight-dim); }
.path__arrow {
  align-self: center;
  color: var(--starlight-dim);
  width: 26px; height: 26px;
}
.path__device-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ember);
  background: rgba(253, 163, 150, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin: 0 auto;
}
.path__caption {
  margin-top: var(--space-5);
  text-align: center;
  color: var(--starlight-dim);
  font-size: 0.92rem;
}
.path__caption code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--gold);
  background: rgba(247, 178, 103, 0.1);
  padding: 1px 7px;
  border-radius: 6px;
  font-size: 0.86em;
}
@media (max-width: 760px) {
  .path { grid-template-columns: 1fr; }
  .path__arrow { transform: rotate(90deg); margin: calc(var(--space-2) * -0.5) auto; }
}

/* ---- Steps: how it works (the wow reward) ---- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: step;
}
.step {
  padding: var(--space-6);
  background: rgba(22, 29, 51, 0.5);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-lg);
}
.step__n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ember);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.12rem; margin-bottom: var(--space-2); }
.step p { color: var(--starlight-dim); font-size: 0.95rem; }
.step .phrase { color: var(--ember-soft); font-style: italic; }

.fork {
  margin-top: var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  align-items: center; justify-content: center;
  text-align: center; color: var(--starlight-dim);
}
.fork .chip {
  background: rgba(237, 239, 250, 0.05);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  color: var(--starlight);
  font-size: 0.92rem; font-weight: 500;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---- Features bento ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}
.feature {
  background: rgba(22, 29, 51, 0.5);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  grid-column: span 2;
  transition: transform 0.3s var(--ease-out-quart), border-color 0.3s ease;
}
.feature:hover { transform: translateY(-3px); border-color: rgba(247, 178, 103, 0.4); }
.feature--wide { grid-column: span 3; }
.feature--lead { grid-column: span 3; }
.feature__icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: var(--space-3); }
.feature--lead .feature__icon { color: var(--ember); }
.feature h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin-bottom: var(--space-2); }
.feature p { color: var(--starlight-dim); font-size: 0.93rem; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--wide, .feature--lead { grid-column: span 1; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
}

/* ---- Personalities (delight) ---- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}
.persona {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--night-panel-border);
  background: rgba(22, 29, 51, 0.5);
}
.persona__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.persona--polite .persona__tag { background: rgba(247, 178, 103, 0.16); color: var(--gold); }
.persona--normal .persona__tag { background: rgba(237, 239, 250, 0.1); color: var(--starlight); }
.persona--rude .persona__tag { background: rgba(253, 163, 150, 0.16); color: var(--ember); }
.persona blockquote {
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--starlight);
  text-wrap: pretty;
}

/* ---- Final CTA ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-7), 6vw, var(--space-9)) var(--space-6);
  text-align: center;
  border: 1px solid rgba(254, 205, 180, 0.3);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(253, 138, 115, 0.38), transparent 60%),
    rgba(14, 19, 38, 0.7);
}
.cta-band h2 { margin-bottom: var(--space-4); }
.cta-band .lead { margin-inline: auto; margin-bottom: var(--space-6); color: var(--starlight); }
.cta-band__note { margin-top: var(--space-4); font-size: 0.88rem; color: var(--starlight-dim); }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid rgba(38, 48, 79, 0.6);
  padding-block: var(--space-8) var(--space-7);
  margin-top: var(--space-9);
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand { display: flex; align-items: center; gap: var(--space-3); }
.footer__brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer__brand .name { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; }
.footer__brand .jp { color: var(--starlight-dim); font-size: 0.85rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.footer__links a { color: var(--starlight-dim); font-weight: 500; }
.footer__links a:hover { color: var(--starlight); text-decoration: none; }
.footer__legal { width: 100%; margin-top: var(--space-6); color: var(--starlight-dim); font-size: 0.85rem; }

/* ---- Legal pages ---- */
.legal { padding-block: var(--space-8) var(--space-9); }
.legal__head { max-width: var(--measure); margin-bottom: var(--space-7); }
.legal__head h1 {
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);
  margin-bottom: var(--space-3);
}
.legal__updated {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--starlight-dim);
  background: rgba(237, 239, 250, 0.05);
  border: 1px solid var(--night-panel-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}
.legal__body { max-width: var(--measure); }
.legal__body > section { margin-bottom: var(--space-7); }
.legal__body h2 {
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
  margin-bottom: var(--space-3);
  scroll-margin-top: 84px;
}
.legal__body h3 { font-family: var(--font-body); font-size: 1.05rem; margin-block: var(--space-4) var(--space-2); }
.legal__body p { margin-bottom: var(--space-3); color: var(--starlight); }
.legal__body ul { margin: 0 0 var(--space-3) 0; padding-left: var(--space-5); }
.legal__body li { margin-bottom: var(--space-2); color: var(--starlight); }
.legal__body strong { color: var(--starlight); }
.legal__body code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--gold);
  background: rgba(247, 178, 103, 0.1);
  padding: 1px 7px;
  border-radius: 6px;
  font-size: 0.88em;
}
.legal__callout {
  background: rgba(22, 29, 51, 0.55);
  border: 1px solid rgba(253, 163, 150, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-block: var(--space-5);
}
.legal__callout p:last-child { margin-bottom: 0; }
.legal__toc {
  background: rgba(22, 29, 51, 0.4);
  border: 1px solid var(--night-panel-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-7);
}
.legal__toc p { font-weight: 600; margin-bottom: var(--space-2); }
.legal__toc ol { margin: 0; padding-left: var(--space-5); columns: 2; column-gap: var(--space-6); }
.legal__toc li { margin-bottom: var(--space-1); }
@media (max-width: 540px) { .legal__toc ol { columns: 1; } }

/* ============================================================
   Motion — entrance reveals gated behind motion preference.
   Default (reduced-motion / unsupported) = fully visible.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Scroll reveal — JS adds `.js` (before paint) + `.is-in` on intersect via
     IntersectionObserver (cross-browser). No-JS / reduced-motion = always visible. */
  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
    transition-delay: calc(var(--i, 0) * 60ms);
    will-change: opacity, transform;
  }
  .js [data-reveal].is-in,
  .js [data-reveal-group] > .is-in {
    opacity: 1;
    transform: none;
  }

  /* Hero load stagger (above the fold — runs on load, not scroll) */
  .stagger > * {
    opacity: 0;
    animation: reveal-in 0.7s var(--ease-out-expo) both;
  }
  .stagger > *:nth-child(1) { animation-delay: 0.05s; }
  .stagger > *:nth-child(2) { animation-delay: 0.15s; }
  .stagger > *:nth-child(3) { animation-delay: 0.25s; }
  .stagger > *:nth-child(4) { animation-delay: 0.35s; }
  .stagger > *:nth-child(5) { animation-delay: 0.45s; }

  .alarm__mascot { animation: float 6s var(--ease-out-quart) infinite alternate; }
  .alarm { animation: dawn-bloom 1.1s var(--ease-out-expo) both; }
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-9px); }
}
@keyframes dawn-bloom {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Hard stop for users who ask for less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  body::before { animation: none; opacity: 0.8; }
}
