/* ============================================================
   THEO — Motion Portfolio
   Palette: near-black / white / electric blue → violet accents
   ============================================================ */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/SpaceGrotesk-var.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --bg: #07070d;
  --bg-2: #0a0a12;
  --white: #f4f5f7;
  --dim: #8a8f9c;
  --dim-2: #4a4e5c;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --grad: linear-gradient(100deg, var(--blue), var(--violet));
  --line: rgba(244, 245, 247, 0.08);
  --font: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Cascadia Mono', 'Roboto Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --rx: 0deg;
  --ry: 0deg;
  --gx: 0px;
  --gy: 0px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #1c1e2a var(--bg);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

::selection { background: var(--violet); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1c1e2a; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #2a2d3e; }

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

a { color: var(--white); text-decoration: none; }

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 300;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--violet);
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus { top: 12px; }

.grad {
  background: linear-gradient(100deg, var(--blue), var(--violet), var(--blue));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: grad-shift 7s ease-in-out infinite alternate;
}

@keyframes grad-shift {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

em.grad { font-style: normal; }

/* custom cursor active */
html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }

/* ============ film grain ============ */
#grain {
  position: fixed;
  inset: -12px;
  z-index: 40;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-jitter 0.9s steps(6) infinite;
}

@keyframes grain-jitter {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-6px, 4px); }
  40% { transform: translate(4px, -6px); }
  60% { transform: translate(-5px, -3px); }
  80% { transform: translate(6px, 4px); }
  100% { transform: translate(0, 0); }
}

/* ============ cursor ============ */
#cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

html.has-cursor #cursor { opacity: 1; }

.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--white);
}

.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 1px solid rgba(244, 245, 247, 0.35);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background-color 0.25s;
}

#cursor.is-hover .cursor-ring {
  transform: scale(1.55);
  border-color: var(--violet);
  background: rgba(139, 92, 246, 0.08);
}

#cursor.is-down .cursor-ring { transform: scale(0.8); }

/* ============ intro ============ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #05050a;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0% 0% 0% 0%);
}

body.intro-done #intro { display: none; }

.intro-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 245, 247, 0.07);
  pointer-events: none;
}

.intro-letter {
  position: absolute;
  font-size: clamp(120px, 30vw, 420px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  opacity: 0;
}

.intro-word {
  position: relative;
  font-size: clamp(64px, 14vw, 200px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0;
}

.intro-word-ghost {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.intro-word-ghost--b { color: var(--blue); transform: translate(-5px, 3px); }
.intro-word-ghost--v { color: var(--violet); transform: translate(5px, -3px); }
.intro-word-base { position: relative; z-index: 1; color: var(--white); }

.intro-tc {
  position: absolute;
  left: 28px; bottom: 26px;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.intro-tag {
  position: absolute;
  right: 28px; bottom: 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--dim-2);
}

.intro-skip {
  position: absolute;
  top: 26px; right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--dim);
  text-transform: uppercase;
}

.intro-flash {
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
}

/* ============ aurora ============ */
#aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 55vw; height: 55vw;
  min-width: 420px; min-height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  will-change: transform;
}

.orb--blue {
  top: 60vh; right: -18vw;
  background: radial-gradient(circle at 40% 40%, var(--blue), transparent 65%);
}

.orb--violet {
  top: 72vh; left: -20vw;
  background: radial-gradient(circle at 60% 50%, var(--violet), transparent 65%);
}

/* ============ topbar ============ */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: linear-gradient(to bottom, rgba(7, 7, 13, 0.9) 20%, rgba(7, 7, 13, 0));
}

.playhead-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(244, 245, 247, 0.06);
}

.playhead-bar {
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}

.brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-dim { color: var(--dim-2); font-weight: 400; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.tc {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--dim);
}

.topbar-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color 0.3s, background-color 0.3s;
}

.topbar-link:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.08);
}

/* ============ layout ============ */
main { position: relative; z-index: 1; }

section {
  position: relative;
  padding: 160px max(6vw, 28px);
  max-width: 1400px;
  margin: 0 auto;
}

/* ============ hero ============ */
#hero {
  height: 100vh;
  height: 100svh;
  max-width: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#ball {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 70vmin; height: 70vmin;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10), rgba(139, 92, 246, 0.05) 45%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

body.no-webgl .hero-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), rgba(139, 92, 246, 0.12) 45%, transparent 70%);
}

.hero-type {
  position: relative;
  text-align: center;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

.hero-stage { position: relative; z-index: 2; }

.hero-title {
  position: relative;
  transform-style: preserve-3d;
  font-size: clamp(88px, 17vw, 260px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero-letters { display: inline-block; white-space: nowrap; }

.hl {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hl-i {
  display: inline-block;
  transform: translateY(115%);
}

.hero-ghost {
  position: absolute;
  inset: 0;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

body.hero-in .hero-ghost { opacity: 0.4; }

.hero-ghost--b {
  color: transparent;
  -webkit-text-stroke: 1px rgba(59, 130, 246, 0.55);
  transform: translate3d(calc(var(--gx) * -1), var(--gy), -60px);
}

.hero-ghost--v {
  color: transparent;
  -webkit-text-stroke: 1px rgba(139, 92, 246, 0.55);
  transform: translate3d(var(--gx), calc(var(--gy) * -1), -120px);
}

.hero-ghost .hollow { -webkit-text-stroke: 1px rgba(244, 245, 247, 0.3); }

.hero-sub {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.38em;
  color: var(--dim);
  text-indent: 0.38em;
}

.dot-sep {
  display: inline-block;
  margin: 0 1.2em;
  font-size: 0.5em;
  vertical-align: middle;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--dim-2);
}

.hero-meta--tl { top: 92px; left: 32px; }
.hero-meta--bl { bottom: 30px; left: 32px; }
.hero-meta--br { bottom: 30px; right: 32px; }

[data-hero-fade] { opacity: 0; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dim-2);
  text-indent: 0.3em;
}

.scroll-cue-track {
  position: relative;
  width: 1px;
  height: 44px;
  background: var(--line);
  overflow: hidden;
}

.scroll-cue-head {
  position: absolute;
  top: -14px; left: -2px;
  width: 5px; height: 14px;
  border-radius: 3px;
  background: var(--grad);
  animation: cue-slide 2.2s var(--ease-out) infinite;
}

@keyframes cue-slide {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  70%, 100% { transform: translateY(60px); opacity: 0; }
}

/* ============ marquee strip ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}

.mq-set {
  display: inline-flex;
  align-items: center;
  gap: 3em;
  padding-right: 3em;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--dim-2);
}

.mq-dot {
  font-size: 0.55em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ layer headers ============ */
.layer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.layer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
  flex: none;
}

.layer-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--dim);
  white-space: nowrap;
}

.layer-tc {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--dim-2);
  white-space: nowrap;
}

.layer-line {
  height: 1px;
  flex: 1;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
}

/* ============ statements ============ */
.statement {
  font-size: clamp(44px, 8.5vw, 128px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 14em;
}

.statement--sm { font-size: clamp(36px, 6vw, 88px); }

.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.line {
  display: block;
  transform: translateY(115%);
}

/* ============ about ============ */
.about-copy {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--dim);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 7vw, 110px);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.stat dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

.stat dd {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-num { font-variant-numeric: tabular-nums; }

/* ============ work ============ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 80px);
  justify-items: center;
}

.work-grid.is-wide {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 10px;
  transform-style: preserve-3d;
  transition: border-color 0.35s;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.card:hover::before { opacity: 1; }

/* cursor spotlight inside the card */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 18px;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139, 92, 246, 0.13), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.card:hover::after { opacity: 1; }

.card--wide {
  max-width: 800px;
  justify-self: center;
}

/* AE-style preview panel around the live feed */
.card.player { padding: 0; overflow: hidden; }

.player-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #0c0d16;
}

.player-dots { display: flex; gap: 6px; }

.player-dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #23253a;
}

.player-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-rec {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
}

.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  animation: rec-blink 1.6s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.player-body { padding: 12px; }

.card blockquote.tiktok-embed {
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.card iframe { border-radius: 12px; }

/* fallback tile when embed fails */
.fallback-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  aspect-ratio: 9 / 14;
  max-height: 480px;
  width: 100%;
  border-radius: 12px;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(120% 90% at 85% 90%, rgba(139, 92, 246, 0.16), transparent 55%),
    #0c0d16;
}

.fallback-play {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(244, 245, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(244, 245, 247, 0.04);
}

.fallback-tile span.fb-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--dim);
}

/* client card caption + YouTube shorts frame */
.card-cap {
  padding: 12px 8px 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-align: center;
}

.yt-wrap {
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #0c0d16;
}

.yt-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.work-note {
  margin-top: clamp(36px, 4vw, 56px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-align: center;
}

.work-note a {
  color: var(--dim);
  border-bottom: 1px solid var(--dim-2);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.work-note a:hover { color: var(--white); border-color: var(--violet); }

/* ============ contact ============ */
#contact { padding-bottom: 60px; }

.statement--contact { margin-bottom: 0; }

.contact-copy {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--dim);
  max-width: 460px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(40px, 5vw, 64px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 44px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 0 0 rgba(139, 92, 246, 0);
  animation: cta-pulse 3s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out);
  will-change: transform;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(99, 102, 241, 0.18); }
  50% { box-shadow: 0 0 44px rgba(139, 92, 246, 0.4); }
}

.cta-arrow { transition: transform 0.3s var(--ease-out); }
.cta:hover .cta-arrow { transform: translateX(6px); }

.cta--ghost {
  background: transparent;
  border: 1px solid rgba(244, 245, 247, 0.16);
  animation: none;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s;
}

.cta--ghost:hover {
  border-color: rgba(139, 92, 246, 0.65);
  background: rgba(139, 92, 246, 0.07);
}

.cta--ghost:hover .cta-arrow { transform: translate(3px, -3px); }

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(90px, 12vw, 160px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-tc, .footer-dim {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--dim);
}

/* ============ reveal defaults (JS animates in) ============ */
body.js [data-reveal] { opacity: 0; }

/* no-JS / reduced-motion safety: everything visible */
body:not(.js) [data-reveal],
body:not(.js) .line,
body:not(.js) .hl-i,
body:not(.js) [data-hero-fade] {
  opacity: 1;
  transform: none;
}

body:not(.js) .layer-line { transform: scaleX(1); }
body:not(.js) #intro { display: none; }

/* ============ responsive ============ */
@media (max-width: 720px) {
  #topbar { padding: 16px 20px; }
  .tc { display: none; }
  .topbar-link[href^="https://t.me"] { display: none; }
  section { padding: 110px 24px; }
  .hero-meta--tl { top: 78px; left: 20px; }
  .hero-meta--bl { display: none; }
  .hero-meta--br { display: none; }
  .stats { gap: 36px; }
  .stat { min-width: 40%; }
  .orb { filter: blur(60px); opacity: 0.12; }
  .intro-tag { display: none; }
}

@media (pointer: coarse) {
  #cursor { display: none; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #grain { animation: none; }
  .scroll-cue-head { animation: none; top: 0; opacity: 1; }
  .cta { animation: none; box-shadow: 0 0 30px rgba(139, 92, 246, 0.25); }
  .hero-type { transform: none; }
  .hero-ghost { display: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
