/* ---------- Design tokens ---------- */
:root {
  --bg: #080E1C;
  --raised-1: #0B1428;
  --raised-2: #101B36;
  --raised-3: #0D1730;
  --gradient-stop: #1B2E55;

  --text: #F2F5FB;
  --text-secondary: #C6D2E8;
  --text-muted: #A9B7D4;
  --text-faint: #5F6E8C;

  --blue: #4A7FD4;
  --blue-light: #6E9BEF;
  --h1-gradient-end: #A9C2F0;

  --border-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(110, 155, 239, 0.25);
  --border-accent-hover: rgba(110, 155, 239, 0.35);

  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--text); }
a:hover { color: var(--blue-light); }
::selection { background: var(--blue); color: #FFFFFF; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 20px;
}
.section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.section__header--tight { margin-bottom: 12px; }
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.section__title {
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 20ch;
  text-wrap: balance;
}
.section__title--narrow { max-width: 14ch; }
.section__subtitle {
  margin: 20px 0 0;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 54ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn--primary {
  background: var(--blue);
  color: #FFFFFF;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(74, 127, 212, 0.35);
}
.btn--primary:hover {
  background: var(--blue-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(74, 127, 212, 0.5);
}
.btn--lg { padding: 16px 34px; border-radius: 12px; font-size: 17px; }
.btn--secondary {
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 17px;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  background: transparent;
}
.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}
.btn--primary.btn--lg:hover { transform: translateY(-3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 14, 28, 0.78);
  backdrop-filter: blur(9px) saturate(1.3);
  -webkit-backdrop-filter: blur(9px) saturate(1.3);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo-link { display: inline-flex; line-height: 0; }
.nav__logo { height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% -10%, var(--gradient-stop) 0%, #101B36 45%, var(--bg) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(110, 155, 239, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 155, 239, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, black 0%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  filter: blur(10px);
}
.hero__glow--a {
  width: 520px; height: 520px; left: -160px; top: -120px;
  background: radial-gradient(circle, rgba(74, 127, 212, 0.22) 0%, rgba(74, 127, 212, 0) 65%);
  animation: di-float 14s ease-in-out infinite;
}
.hero__glow--b {
  width: 440px; height: 440px; right: -140px; bottom: -100px;
  background: radial-gradient(circle, rgba(110, 155, 239, 0.16) 0%, rgba(110, 155, 239, 0) 65%);
  animation: di-float2 18s ease-in-out infinite;
}
.hero__mark { position: absolute; pointer-events: none; will-change: transform; }
.hero__mark--lg {
  right: clamp(-60px, 4vw, 90px); top: 120px; width: 190px; height: 190px; opacity: 0.35;
}
.hero__mark--sm {
  left: clamp(-70px, 3vw, 60px); bottom: 140px; width: 120px; height: 120px; opacity: 0.18;
}
@media (max-width: 640px) {
  .hero__mark--lg { opacity: 0.15; }
  .hero__mark--sm { opacity: 0.08; }
}
.corner { position: absolute; width: 46px; height: 46px; border-color: var(--blue-light); border-style: solid; border-width: 0; }
.hero__mark--sm .corner { width: 30px; height: 30px; border-color: var(--blue-light); }
.corner--tl { left: 0; top: 0; border-left-width: 3px; border-top-width: 3px; }
.corner--tr { right: 0; top: 0; border-right-width: 3px; border-top-width: 3px; }
.corner--bl { left: 0; bottom: 0; border-left-width: 3px; border-bottom-width: 3px; }
.corner--br { right: 0; bottom: 0; border-right-width: 3px; border-bottom-width: 3px; }
.hero__mark--sm .corner--tl, .hero__mark--sm .corner--tr,
.hero__mark--sm .corner--bl, .hero__mark--sm .corner--br { border-width: 0; }
.hero__mark--sm .corner--tl { border-left-width: 2px; border-top-width: 2px; }
.hero__mark--sm .corner--tr { border-right-width: 2px; border-top-width: 2px; }
.hero__mark--sm .corner--bl { border-left-width: 2px; border-bottom-width: 2px; }
.hero__mark--sm .corner--br { border-right-width: 2px; border-bottom-width: 2px; }
.hero__dot {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 24px rgba(74, 127, 212, 0.9);
  animation: di-pulse 3.5s ease-in-out infinite;
}
.hero__dot--sm { width: 14px; height: 14px; margin: -7px 0 0 -7px; box-shadow: none; animation-duration: 4.5s; }
.hero__scan {
  position: absolute; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 155, 239, 0.8), transparent);
  animation: di-scan 5s linear infinite;
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
  padding: clamp(72px, 12vw, 150px) 20px clamp(64px, 10vw, 130px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__badge {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; color: var(--blue-light);
  margin-bottom: 28px;
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  padding: 8px 18px;
  background: rgba(74, 127, 212, 0.08);
  animation: di-hero 0.8s var(--ease) 0.05s both;
}
.hero__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 17ch;
  text-wrap: balance;
  background: linear-gradient(180deg, #FFFFFF 55%, var(--h1-gradient-end) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: di-hero 0.9s var(--ease) 0.18s both;
}
.hero__subtitle {
  margin: 0 0 40px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
  text-wrap: pretty;
  font-weight: 400;
  animation: di-hero 0.9s var(--ease) 0.32s both;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center;
  animation: di-hero 0.9s var(--ease) 0.46s both;
}
.hero__trust {
  margin-top: clamp(56px, 8vw, 90px);
  display: flex; flex-wrap: wrap; gap: 10px 36px; justify-content: center;
  animation: di-hero 0.9s var(--ease) 0.62s both;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.08em;
}

/* ---------- Problem cards ---------- */
.problem__grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.card__icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(74, 127, 212, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__title { font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.card__body { font-size: 15px; line-height: 1.6; color: var(--text-secondary); text-wrap: pretty; }

/* ---------- Hub diagram ---------- */
.hub { position: relative; max-width: 880px; margin: 0 auto; }
.hub__lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hub__grid {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hub__col { display: flex; flex-direction: column; gap: 40px; min-width: 0; }
.hub__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  background: var(--raised-1);
  transition: transform 0.25s, border-color 0.25s;
}
.hub__card:hover { transform: translateY(-4px); border-color: var(--border-accent-hover); }
.hub__card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-weight: 600; font-size: 15px; }
.hub__card p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.hub__center { display: flex; align-items: center; justify-content: center; }
.hub__mark {
  position: relative;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(74, 127, 212, 0.18), rgba(74, 127, 212, 0) 70%);
  display: flex; align-items: center; justify-content: center;
}
.hub__mark .corner { width: 44px; height: 44px; border-color: var(--blue-light); border-width: 0; }
.hub__mark .corner--tl { left: 24px; top: 24px; border-left-width: 3.5px; border-top-width: 3.5px; }
.hub__mark .corner--tr { right: 24px; top: 24px; border-right-width: 3.5px; border-top-width: 3.5px; }
.hub__mark .corner--bl { left: 24px; bottom: 24px; border-left-width: 3.5px; border-bottom-width: 3.5px; }
.hub__mark .corner--br { right: 24px; bottom: 24px; border-right-width: 3.5px; border-bottom-width: 3.5px; }
.hub__mark-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hub__dot {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 44px rgba(74, 127, 212, 1);
  animation: di-pulse 3.5s ease-in-out infinite;
}
.hub__mark-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--blue-light); }

@media (max-width: 900px) {
  .hub__grid { grid-template-columns: 1fr; }
  .hub__lines { display: none; }
}

/* ---------- How it works ---------- */
.section--how { background: linear-gradient(180deg, var(--bg) 0%, var(--raised-3) 50%, var(--bg) 100%); }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 32px;
}
.timeline__line {
  position: absolute; top: 26px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, rgba(110, 155, 239, 0.1), rgba(110, 155, 239, 0.5), rgba(110, 155, 239, 0.1));
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--raised-2);
  border: 1px solid rgba(110, 155, 239, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(74, 127, 212, 0.25);
  animation: di-step-float 5s ease-in-out infinite;
}
.step__title { margin: 0 0 10px; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.step__body { font-size: 15px; line-height: 1.6; color: var(--text-muted); max-width: 32ch; text-wrap: pretty; }

@media (max-width: 760px) { .timeline__line { display: none; } }

/* ---------- Results ---------- */
.results__note { margin: 0 0 48px; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.06em; }
.results__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.stat {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  background: radial-gradient(100% 100% at 50% 0%, rgba(74, 127, 212, 0.12), rgba(74, 127, 212, 0) 70%);
  transition: transform 0.25s, border-color 0.25s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--border-accent-hover); }
.stat__number {
  font-size: clamp(44px, 6vw, 64px); font-weight: 700; letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFFFFF, #8FB2EC);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--text-muted); }

/* ---------- Founders ---------- */
.section--founders { background: linear-gradient(180deg, var(--bg) 0%, var(--raised-3) 100%); }
.founders__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 6vw, 80px); align-items: start; }
.founders__copy { margin-top: 20px; font-size: clamp(16px, 2vw, 18px); line-height: 1.6; color: var(--text-muted); max-width: 50ch; text-wrap: pretty; }
.placeholder { color: var(--text-faint); font-style: italic; }
.founders__photos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; min-width: 0; }
.founder { display: flex; flex-direction: column; gap: 14px; }
.founder__photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 18px;
  object-fit: cover; object-position: center top;
  border: 1px solid var(--border);
}
.founder__name { font-weight: 600; font-size: 17px; }
.founder__role { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 4px; letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 5vw, 64px); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 24px;
  transition: border-color 0.25s, background 0.25s;
}
.faq:hover { border-color: var(--border-accent-hover); background: rgba(255, 255, 255, 0.05); }
.faq > summary { list-style: none; }
.faq > summary::-webkit-details-marker { display: none; }
.faq__question {
  cursor: pointer; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 16px;
}
.faq__plus { font-weight: 300; font-size: 24px; color: var(--blue-light); transition: transform 0.15s; flex-shrink: 0; }
.faq[open] .faq__plus { transform: rotate(45deg); }
.faq__answer { margin: 0; padding: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--text-muted); text-wrap: pretty; }
.faq[open] .faq__answer { animation: di-acc 0.4s var(--ease); }

/* ---------- Contact ---------- */
.section--contact { background: radial-gradient(120% 120% at 50% 110%, var(--gradient-stop) 0%, #101B36 50%, var(--bg) 100%); }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 5vw, 80px); }
.contact__copy { margin-top: 20px; font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 44ch; text-wrap: pretty; }
.contact__details {
  margin-top: 32px;
  font-family: var(--font-mono); font-size: 14px; color: var(--text-faint);
  display: flex; flex-direction: column; gap: 6px;
}
.contact__details a { text-decoration: none; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form__field-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form input, .form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  min-height: 44px;
  width: 100%;
}
.form textarea { resize: vertical; min-height: unset; }
.form input::placeholder, .form textarea::placeholder { color: var(--text-faint); }
.form input:focus, .form textarea:focus { border-color: var(--blue); outline: none; }
.form button { min-height: 44px; padding: 16px 28px; border-radius: 12px; font-size: 16px; }
.form button:disabled { opacity: 0.6; cursor: default; transform: none; }
.form__status { margin: 0; font-size: 13px; min-height: 1.4em; }
.form__status[data-state="error"] { color: #f0a8a0; }
.form__status[data-state="ok"] { color: var(--blue-light); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-soft); }
.footer__inner {
  max-width: 1120px; margin: 0 auto; padding: 28px 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
}
.footer__logo { height: 18px; opacity: 0.7; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4, 7, 15, 0.65);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: di-fade-in 0.25s ease;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--raised-1);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px);
  width: 100%; max-width: 520px; max-height: 90vh; overflow: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: di-modal-in 0.35s var(--ease);
}
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }
.modal__heading { margin: 0 0 10px; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.modal__copy { margin: 0 0 26px; font-size: 15px; line-height: 1.55; color: var(--text-muted); }
.modal__footer { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); text-align: center; }
.modal__footer a { color: var(--text-muted); text-decoration: none; }
.modal__footer a:hover { color: var(--blue-light); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
[data-reveal="2"] { transition-delay: 0.15s; }
[data-reveal="3"] { transition-delay: 0.3s; }
[data-reveal="4"] { transition-delay: 0.45s; }
[data-reveal="5"] { transition-delay: 0.7s; }
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .hero__badge, .hero__title, .hero__subtitle, .hero__ctas, .hero__trust { animation: none; }
  .hero__glow, .hero__dot, .hero__scan, .step__icon { animation: none; }
}

/* ---------- Keyframes ---------- */
@keyframes di-float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -24px) scale(1.08); } }
@keyframes di-float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-26px, 20px) scale(1.12); } }
@keyframes di-pulse { 0%, 100% { opacity: 0.9; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.82); } }
@keyframes di-modal-in { 0% { opacity: 0; transform: translateY(36px) scale(0.9); filter: blur(12px); } 60% { opacity: 1; transform: translateY(-6px) scale(1.015); filter: blur(0); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes di-acc { from { opacity: 0; transform: translateY(-10px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes di-hero { from { opacity: 0; transform: translateY(28px); filter: blur(12px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes di-step-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes di-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes di-scan { 0% { top: 8%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 92%; opacity: 0; } }
