:root {
  --bg: #0a0a0c;
  --bg-elevated: #121216;
  --ink: #f4f1ec;
  --ink-muted: #a8a29a;
  --accent: #e11d2e;
  --accent-soft: #ff4d5a;
  --line: rgba(244, 241, 236, 0.1);
  --font-display: "Syne", "Heebo", sans-serif;
  --font-body: "Heebo", sans-serif;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
  color: var(--ink);
}

code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.9em;
  color: var(--accent-soft);
  background: rgba(225, 29, 46, 0.12);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0));
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-16px);
  animation: header-in 0.8s var(--ease) 0.05s forwards;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: block;
  border-radius: 0.7rem;
  filter: drop-shadow(0 6px 16px rgba(0, 56, 184, 0.45));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
  animation: logo-float 5s ease-in-out infinite;
}

.logo:hover .logo-mark {
  transform: scale(1.07) rotate(-3deg);
  filter: drop-shadow(0 8px 20px rgba(225, 29, 46, 0.4));
  animation: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-muted);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  border-color: rgba(244, 241, 236, 0.35);
  background: rgba(244, 241, 236, 0.06);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5.5rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(225, 29, 46, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(225, 29, 46, 0.1), transparent 50%),
    linear-gradient(180deg, #0a0a0c 0%, #160d10 42%, #0a0a0c 100%);
}

.hero-glow {
  position: absolute;
  width: 70vmax;
  height: 50vmax;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(225, 29, 46, 0.4), transparent 65%);
  filter: blur(50px);
  animation: glow-breathe 8s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(244, 241, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 236, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
  opacity: 0.65;
  animation: grid-drift 28s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-a {
  width: 22rem;
  height: 22rem;
  top: 18%;
  right: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 77, 90, 0.28), transparent 70%);
  animation: float-a 12s ease-in-out infinite;
}

.hero-orb-b {
  width: 14rem;
  height: 14rem;
  top: 28%;
  left: 10%;
  background: radial-gradient(circle, rgba(244, 241, 236, 0.1), transparent 70%);
  animation: float-b 10s ease-in-out infinite;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stage-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.35) 0%, transparent 28%, rgba(10, 10, 12, 0.55) 62%, rgba(10, 10, 12, 0.97) 100%),
    linear-gradient(135deg, rgba(225, 29, 46, 0.5), rgba(50, 8, 14, 0.9) 45%, #0a0a0c 85%);
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  animation: stage-in 1.2s var(--ease) 0.15s forwards;
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgba(255, 255, 255, 0.08), transparent 60%);
  animation: shimmer-sweep 7s ease-in-out infinite;
}

.stage-play {
  position: relative;
  z-index: 1;
  margin-top: -12vh;
  width: clamp(4.5rem, 10vw, 6.5rem);
  height: clamp(4.5rem, 10vw, 6.5rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  animation: play-pulse 2.8s ease-in-out infinite;
}

.stage-play::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 54%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.85rem 0 0.85rem 1.35rem;
  border-color: transparent transparent transparent var(--accent);
}

.play-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: ring-expand 2.8s var(--ease) infinite;
}

.play-ring-delay {
  animation-delay: 0.9s;
}

.stage-wave {
  position: absolute;
  inset-inline: max(1.25rem, 12vw);
  bottom: 38%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 2.8rem;
  opacity: 0.55;
}

.stage-wave i {
  flex: 1;
  max-width: 8px;
  height: 100%;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: bottom;
  animation: eq 1.2s ease-in-out infinite;
}

.stage-wave i:nth-child(odd) { animation-duration: 0.95s; }
.stage-wave i:nth-child(3n) { animation-delay: 0.2s; }
.stage-wave i:nth-child(4n) { animation-delay: 0.35s; }
.stage-wave i:nth-child(5n) { animation-delay: 0.1s; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  width: 100%;
  margin-inline: auto;
}

.project-name {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  letter-spacing: 0.02em;
  color: var(--accent-soft);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.05s forwards;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.1s forwards;
  background: linear-gradient(120deg, #fff 30%, #ff8a93 50%, #fff 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    rise 0.9s var(--ease) 0.1s forwards,
    brand-shine 5s ease-in-out 1.2s infinite;
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 18ch;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: 1.05rem;
  color: var(--ink-muted);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 40px rgba(225, 29, 46, 0.35);
}

.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 16px 48px rgba(225, 29, 46, 0.45);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  animation: cta-glow 2.8s ease-in-out infinite;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: btn-sheen 3.5s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(244, 241, 236, 0.35);
  background: rgba(244, 241, 236, 0.04);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Sections */
.section-inner {
  width: min(920px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.features,
.guide {
  padding: clamp(4.5rem, 10vh, 7rem) 0;
}

.features {
  background:
    linear-gradient(180deg, transparent, rgba(225, 29, 46, 0.04) 40%, transparent),
    var(--bg);
  border-block: 1px solid var(--line);
}

.features h2,
.guide h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-lead {
  margin: 0 0 2.75rem;
  max-width: 36ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.3s;
}

.feature-list li.is-visible {
  opacity: 1;
  transform: none;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list li:hover .feature-num {
  transform: scale(1.12);
  color: var(--accent-soft);
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 0.15rem;
  transition: transform 0.3s var(--ease), color 0.3s;
}

.feature-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 52ch;
}

/* Guide */
.steps {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: none;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.step.is-visible {
  opacity: 1;
  transform: none;
}

.step:first-child {
  border-top: 1px solid var(--line);
}

.step-index {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.step.is-visible .step-index {
  animation: step-pop 0.55s var(--ease) both;
}

.step-body h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-body p {
  margin: 0 0 0.65rem;
  color: var(--ink-muted);
}

.step-body p:last-child {
  margin-bottom: 0;
}

.hint {
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  background: rgba(244, 241, 236, 0.04);
  border-inline-start: 3px solid var(--accent);
  color: var(--ink-muted) !important;
}

.tips {
  margin: 0 0 2.5rem;
  padding: 1.5rem 0 0;
}

.tips h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.tips ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tips li {
  position: relative;
  padding-inline-start: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.tips li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
  border-radius: 50%;
}

.guide-cta {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  filter: drop-shadow(0 6px 14px rgba(0, 56, 184, 0.35));
}

.footer-brand {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
}

.site-footer p:last-child {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Mobile sticky CTA */
.mobile-download {
  display: none;
}

/* Animations */
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes header-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes stage-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45); }
  50% { transform: scale(1.05); box-shadow: 0 20px 56px rgba(225, 29, 46, 0.35); }
}

@keyframes ring-expand {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}

@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, 25px); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes eq {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

@keyframes grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 72px, 0); }
}

@keyframes shimmer-sweep {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes brand-shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 12px 40px rgba(225, 29, 46, 0.35); }
  50% { box-shadow: 0 16px 52px rgba(225, 29, 46, 0.55); }
}

@keyframes btn-sheen {
  0%, 55%, 100% { transform: translateX(-120%); }
  70% { transform: translateX(120%); }
}

@keyframes step-pop {
  0% { transform: scale(0.6); }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(225, 29, 46, 0); }
}

@keyframes bar-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile */
@media (max-width: 700px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .logo {
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .logo-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .nav-cta {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: flex-end;
    padding:
      5.5rem 1.15rem
      calc(5.75rem + var(--safe-bottom));
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stage-play {
    margin-top: -28vh;
    width: 4.1rem;
    height: 4.1rem;
  }

  .stage-play::after {
    border-width: 0.65rem 0 0.65rem 1.05rem;
  }

  .stage-wave {
    bottom: 52%;
    inset-inline: 1.5rem;
    height: 2rem;
    opacity: 0.35;
  }

  .project-name {
    font-size: 0.82rem;
  }

  .brand {
    font-size: clamp(2.55rem, 14vw, 3.4rem);
    margin-bottom: 0.7rem;
  }

  .hero h1 {
    max-width: 20ch;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-inline: auto;
  }

  .lede {
    max-width: 32ch;
    font-size: 0.98rem;
    margin-inline: auto;
    margin-bottom: 1.4rem;
  }

  .cta-row {
    width: 100%;
    flex-direction: column;
    gap: 0.7rem;
  }

  .cta-row .btn {
    width: 100%;
    min-height: 3.1rem;
    font-size: 1.02rem;
  }

  .features,
  .guide {
    padding: 3.5rem 0;
  }

  .section-inner {
    padding-inline: 1.15rem;
  }

  .section-lead {
    max-width: none;
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
  }

  .features h2,
  .guide h2 {
    font-size: 1.65rem;
  }

  .feature-list li {
    gap: 0.9rem;
    padding: 1.35rem 0.15rem;
  }

  .feature-num {
    font-size: 0.95rem;
    min-width: 1.7rem;
  }

  .feature-list h3 {
    font-size: 1.08rem;
  }

  .feature-list p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .step {
    gap: 0.9rem;
    padding: 1.25rem 0;
    transform: translateY(20px);
  }

  .step-index {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.95rem;
  }

  .step-body h3 {
    font-size: 1.05rem;
  }

  .step-body p,
  .tips li {
    font-size: 0.94rem;
  }

  .hint {
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
  }

  .guide-cta {
    display: none;
  }

  .site-footer {
    padding: 2rem 1.15rem calc(5.5rem + var(--safe-bottom));
  }

  .mobile-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    position: fixed;
    inset-inline: 1rem;
    bottom: calc(0.9rem + var(--safe-bottom));
    z-index: 45;
    min-height: 3.15rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow:
      0 12px 36px rgba(225, 29, 46, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: bar-in 0.7s var(--ease) 0.8s both, cta-glow 2.8s ease-in-out 1.5s infinite;
  }

  .mobile-download:active {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .project-name,
  .brand,
  .hero h1,
  .lede,
  .cta-row,
  .stage-frame,
  .site-header,
  .reveal,
  .feature-list li,
  .step {
    opacity: 1;
    transform: none;
  }

  .brand {
    -webkit-text-fill-color: var(--ink);
    background: none;
  }
}
