:root {
  color-scheme: dark;
  --bg: #05060a;
  --bg-2: #0b0d13;
  --ink: #f7f4ea;
  --muted: #b8bdc8;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #ffd45e;
  --gold-2: #b97918;
  --red: #e2342f;
  --cyan: #31c6ff;
  --violet: #9a52ff;
  --panel: rgba(12, 15, 23, 0.82);
  --panel-2: rgba(18, 21, 31, 0.92);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 212, 94, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(226, 52, 47, 0.16), transparent 28%),
    linear-gradient(245deg, rgba(49, 198, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #05060a, #080a10 52%, #030407);
  content: "";
}

.site-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, transparent, rgba(255, 212, 94, 0.08), transparent);
  mix-blend-mode: screen;
}

img {
  display: block;
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 52px;
  filter: drop-shadow(0 9px 20px rgba(255, 212, 94, 0.18));
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px 20px 64px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/kof/hero-daimon.jpg");
  background-position: center right;
  background-size: cover;
  filter: brightness(1.18) saturate(1.08);
  transform: scale(1.02);
  animation: hero-bg-intro 1400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.94) 0%, rgba(5, 6, 10, 0.78) 36%, rgba(5, 6, 10, 0.26) 70%, rgba(5, 6, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.08), rgba(5, 6, 10, 0.82) 96%);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 212, 94, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 34px;
  align-items: end;
  width: min(100%, var(--max));
  min-height: calc(100vh - 190px);
  margin: 0 auto;
}

.hero-copy {
  padding: 2vh 0 0;
}

.intro-item {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-item-intro 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-item:nth-child(1) {
  animation-delay: 120ms;
}

.intro-item:nth-child(2) {
  animation-delay: 240ms;
}

.intro-item:nth-child(3) {
  animation-delay: 420ms;
}

.intro-item:nth-child(4) {
  animation-delay: 590ms;
}

.intro-item:nth-child(5) {
  animation-delay: 760ms;
}

@keyframes hero-item-intro {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(26px) scale(0.985);
  }

  65% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-bg-intro {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.eyebrow,
.terminal-kicker,
.panel-tag,
.roadmap-status {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(100%, 760px);
  margin-bottom: 22px;
}

h1 img {
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.7));
}

.lead {
  position: relative;
  width: fit-content;
  max-width: 690px;
  margin-bottom: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffe58d 38%, #ffffff 64%, #ffd45e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
  font-weight: 1000;
  line-height: 1.12;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(255, 212, 94, 0.28));
}

.lead::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.86) 46%, transparent 58%);
  content: "";
  mix-blend-mode: screen;
  transform: translateX(-130%);
  animation: text-shine 4.2s ease-in-out infinite;
}

@keyframes text-shine {
  0%,
  42% {
    transform: translateX(-130%);
  }

  70%,
  100% {
    transform: translateX(130%);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 172px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 1000;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background:
    linear-gradient(135deg, #fff09a 0%, var(--gold) 38%, #c47c12 100%);
  color: #11110e;
  box-shadow:
    0 18px 40px rgba(255, 212, 94, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 22px 54px rgba(255, 212, 94, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(49, 198, 255, 0.56);
  background: rgba(49, 198, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.hero-feature-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 680px);
  margin: 42px 0 0;
}

.feature-button {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 212, 94, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 212, 94, 0.1), transparent 42%),
    rgba(8, 11, 17, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.hero-feature-buttons.intro-item .feature-button {
  opacity: 0;
  transform: translateY(14px);
  animation: feature-button-intro 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-feature-buttons.intro-item .feature-button:nth-child(1) {
  animation-delay: 920ms;
}

.hero-feature-buttons.intro-item .feature-button:nth-child(2) {
  animation-delay: 1020ms;
}

.hero-feature-buttons.intro-item .feature-button:nth-child(3) {
  animation-delay: 1120ms;
}

.hero-feature-buttons.intro-item .feature-button:nth-child(4) {
  animation-delay: 1220ms;
}

@keyframes feature-button-intro {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.feature-button:hover,
.feature-button:focus-visible {
  border-color: rgba(255, 212, 94, 0.58);
  box-shadow:
    0 18px 44px rgba(255, 212, 94, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  outline: none;
  transform: translateY(-2px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  filter: drop-shadow(0 0 12px rgba(255, 212, 94, 0.42));
}

.feature-button span:last-child {
  font-size: 0.8rem;
  font-weight: 1000;
  line-height: 1.08;
}

.download-terminal {
  border: 1px solid rgba(255, 212, 94, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 212, 94, 0.12), transparent 32%),
    rgba(8, 10, 16, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  gap: 8px;
  min-height: 42px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: var(--cyan);
}

.download-carousel {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #05060a;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 720ms ease,
    transform 1200ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.38), transparent 48%, rgba(5, 6, 10, 0.42)),
    linear-gradient(180deg, transparent 46%, rgba(5, 6, 10, 0.78));
  content: "";
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide:nth-child(1) img {
  object-position: 56% center;
}

.carousel-slide:nth-child(2) img {
  object-position: 52% 34%;
}

.carousel-slide:nth-child(3) img {
  object-position: 58% 36%;
}

.carousel-slide:nth-child(4) img {
  object-position: center;
}

.terminal-body {
  padding: 24px;
}

.terminal-body h2 {
  margin: 9px 0 10px;
  font-size: clamp(1.42rem, 2.7vw, 1.95rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.terminal-body p {
  color: var(--muted);
}

.download-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
}

.download-specs span {
  min-height: 54px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f3fa;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.checksum-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.fighter-panel h2,
.final-content h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.offer-art {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #05060a;
  box-shadow: var(--shadow);
}

.offer-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5, 6, 10, 0.82)),
    linear-gradient(90deg, rgba(255, 212, 94, 0.14), transparent 40%);
  content: "";
}

.offer-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card,
.roadmap-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 170px;
  padding: 24px;
}

.feature-card span {
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 1000;
}

.feature-card h3,
.roadmap-card h3 {
  margin: 12px 0 9px;
  font-size: 1.35rem;
  line-height: 1.14;
}

.feature-card p,
.roadmap-card p,
.final-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.versus-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  padding: 24px 0 74px;
}

.fighter-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 212, 94, 0.1), transparent 36%),
    #05060a;
  box-shadow: var(--shadow);
}

.fighter-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 6, 10, 0.92)),
    linear-gradient(90deg, rgba(5, 6, 10, 0.18), rgba(5, 6, 10, 0.76));
  content: "";
}

.fighter-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 520ms ease;
}

.panel-left img {
  object-position: center 38%;
}

.panel-right img {
  object-position: center 36%;
}

.fighter-panel:hover img {
  transform: scale(1.025);
}

.fighter-panel div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.fighter-panel h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
  color: #fff7d7;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.9),
    0 0 18px rgba(255, 212, 94, 0.32),
    0 0 34px rgba(226, 52, 47, 0.22);
}

.panel-right::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 6, 10, 0.92)),
    linear-gradient(90deg, rgba(5, 6, 10, 0.76), rgba(5, 6, 10, 0.18));
}

.roadmap-section {
  position: relative;
}

.roadmap-section .section-heading h2 {
  position: relative;
  background:
    linear-gradient(180deg, #fffdf3 0%, #ffd45e 48%, #ffffff 78%),
    linear-gradient(90deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 34px rgba(255, 212, 94, 0.18));
  text-shadow: none;
}

.roadmap-section .section-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(70%, 460px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
  content: "";
  transform: translateX(-50%);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-card {
  position: relative;
  min-height: 246px;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
}

.roadmap-card.active {
  border-color: rgba(255, 212, 94, 0.36);
}

.roadmap-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  opacity: 0.48;
  content: "";
  transform: scale(1.04);
}

.roadmap-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.46), rgba(5, 6, 10, 0.92)),
    linear-gradient(135deg, rgba(255, 212, 94, 0.2), transparent 42%);
  content: "";
}

.roadmap-card:nth-child(1) {
  --card-image: url("assets/kof/roadmap-updater.jpg");
}

.roadmap-card:nth-child(2) {
  --card-image: url("assets/kof/roadmap-ranking.jpg");
}

.roadmap-card:nth-child(3) {
  --card-image: url("assets/kof/roadmap-lobby.jpg");
}

.roadmap-card:nth-child(4) {
  --card-image: url("assets/kof/roadmap-tournaments.jpg");
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 212, 94, 0.28);
  border-radius: 999px;
  background: rgba(255, 212, 94, 0.08);
  font-size: 0.68rem;
}

.final-cta {
  position: relative;
  width: min(100% - 32px, var(--max));
  min-height: 420px;
  margin: 0 auto 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 94, 0.2);
  border-radius: var(--radius);
  background: #05060a;
  box-shadow: var(--shadow);
}

.final-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/kof/energy-stage.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.94), rgba(5, 6, 10, 0.58), rgba(5, 6, 10, 0.94)),
    linear-gradient(180deg, rgba(5, 6, 10, 0.2), rgba(5, 6, 10, 0.85));
  content: "";
}

.final-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  min-height: 420px;
  padding: 44px;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
}

.final-content p {
  max-width: 620px;
  margin: 16px 0 26px;
  font-size: 1.08rem;
}

.final-content .btn {
  align-self: end;
  width: fit-content;
  margin-bottom: 18px;
}

.final-content h2 {
  max-width: 690px;
  background: linear-gradient(180deg, #fffdf5 0%, #ffe58a 36%, #ffffff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 30px rgba(255, 212, 94, 0.18));
  text-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand img {
  height: 52px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer a:not(.brand) {
  color: var(--ink);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-inner,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .download-terminal {
    max-width: 620px;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 28px 16px 50px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.58)),
      linear-gradient(180deg, rgba(5, 6, 10, 0.08), rgba(5, 6, 10, 0.82) 96%);
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 3vh;
  }

  .versus-band {
    grid-template-columns: 1fr;
    padding-bottom: 54px;
  }

  .fighter-panel {
    min-height: 460px;
  }

  .panel-left img {
    object-position: center 34%;
  }

  .panel-right img {
    object-position: center 32%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero-actions .btn,
  .final-content .btn {
    width: 100%;
  }

  .hero-feature-buttons,
  .download-specs,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-button {
    min-height: 92px;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 68px 0;
  }

  .offer-art {
    min-height: 360px;
  }

  .feature-card,
  .terminal-body,
  .roadmap-card {
    padding: 20px;
  }

  .fighter-panel {
    min-height: 420px;
  }

  .download-carousel {
    height: 160px;
  }

  .fighter-panel div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .final-cta {
    width: min(100% - 24px, var(--max));
  }

  .final-content {
    min-height: 390px;
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .intro-item,
  .hero-feature-buttons.intro-item .feature-button {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
