:root {
  --bg: #09070b;
  --bg-soft: #17101a;
  --panel: rgba(20, 13, 20, 0.78);
  --panel-strong: rgba(31, 18, 25, 0.92);
  --line: rgba(242, 202, 124, 0.2);
  --gold: #f2ca7c;
  --gold-bright: #ffde9b;
  --ember: #d7643f;
  --crimson: #761b28;
  --mist: #f7efe4;
  --muted: #c2b6aa;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 100, 63, 0.25), transparent 28%),
    linear-gradient(180deg, #160d11 0%, #09070b 45%, #120c13 100%);
  color: var(--mist);
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 3, 7, 0.78);
  backdrop-filter: blur(12px);
  transition: opacity 900ms ease, visibility 900ms ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen.is-loading .intro-screen__content {
  opacity: 0;
  transform: translateY(-24px) scale(0.96);
  pointer-events: none;
}

.intro-screen__backdrop,
.intro-screen__noise,
.hero__glow,
.hero__sigil {
  position: absolute;
  inset: 0;
}

.intro-screen__backdrop {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 222, 155, 0.18), transparent 20%),
    radial-gradient(circle at 50% 45%, rgba(215, 100, 63, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(12, 8, 10, 0.88), rgba(6, 4, 8, 0.98));
  animation: pulseGlow 5s ease-in-out infinite;
}

.intro-screen__noise {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.intro-screen__content {
  position: relative;
  max-width: 42rem;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(32, 17, 23, 0.75), rgba(12, 8, 12, 0.92));
  box-shadow: var(--shadow);
  transition: opacity 500ms ease, transform 700ms ease;
}

.intro-logo {
  display: block;
  width: min(30rem, 72vw);
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 0 22px rgba(242, 202, 124, 0.24)) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.intro-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.intro-screen.is-loading .intro-loading {
  opacity: 1;
  visibility: visible;
}

.intro-loading__logo,
.intro-loading__sigil,
.intro-loading__core {
  grid-area: 1 / 1;
}

.intro-loading__logo {
  position: relative;
  z-index: 2;
  width: min(24rem, 52vw);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 28px rgba(242, 202, 124, 0.22)) drop-shadow(0 12px 36px rgba(0, 0, 0, 0.52));
  animation: loadingLogoRise 3.2s ease-in-out infinite;
}

.intro-loading__sigil,
.intro-loading__core {
  place-self: center;
  border-radius: 50%;
}

.intro-loading__sigil {
  border: 1px solid rgba(255, 222, 155, 0.14);
}

.intro-loading__sigil--outer {
  width: min(31rem, 62vw);
  height: min(31rem, 62vw);
  box-shadow:
    0 0 0 20px rgba(255, 222, 155, 0.04),
    0 0 0 48px rgba(215, 100, 63, 0.03);
  animation: loadingSpin 14s linear infinite;
}

.intro-loading__sigil--inner {
  width: min(21rem, 44vw);
  height: min(21rem, 44vw);
  border-color: rgba(215, 100, 63, 0.18);
  animation: loadingSpinReverse 8.5s linear infinite;
}

.intro-loading__core {
  width: min(12rem, 24vw);
  height: min(12rem, 24vw);
  background: radial-gradient(circle, rgba(255, 222, 155, 0.28), rgba(215, 100, 63, 0.16) 46%, transparent 74%);
  filter: blur(8px);
  animation: loadingCorePulse 2.8s ease-in-out infinite;
}

.intro-loading__title,
.intro-loading__copy,
.intro-loading__bar {
  position: relative;
  z-index: 2;
}

.intro-loading__title {
  margin: 0;
  padding-top: min(18rem, 34vw);
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  letter-spacing: 0.08em;
}

.intro-loading__copy {
  width: min(32rem, 72vw);
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.intro-loading__bar {
  width: min(22rem, 56vw);
  height: 0.5rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 222, 155, 0.12);
}

.intro-loading__progress {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(242, 202, 124, 0.9), rgba(215, 100, 63, 0.92), rgba(255, 222, 155, 0.95));
  box-shadow: 0 0 22px rgba(215, 100, 63, 0.42);
}

.intro-screen.is-loading .intro-loading__progress {
  animation: loadingProgress 2.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-bright);
}

h1,
h2,
h3,
.brand {
  font-family: "Cinzel", serif;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.intro-copy,
.hero__text,
.news-card p,
.feature-panel__copy p,
.topup-card p,
.hero-card p {
  color: var(--muted);
  line-height: 1.7;
}

.start-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, border-color 250ms ease;
}

.start-button,
.button--primary {
  color: #120c0f;
  background: linear-gradient(135deg, var(--gold-bright), var(--ember));
  box-shadow: 0 12px 30px rgba(215, 100, 63, 0.28);
}

.button--ghost {
  border-color: rgba(255, 222, 155, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--mist);
}

.start-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  width: min(1480px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 1.5rem clamp(1.2rem, 4vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(320px, 560px);
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(820px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 222, 155, 0.14);
  border-radius: 999px;
  background: rgba(10, 8, 11, 0.58);
  backdrop-filter: blur(14px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 222, 155, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-bright);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 222, 155, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--mist);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.floating-social {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 222, 155, 0.14);
  border-radius: 999px;
  background: rgba(10, 8, 11, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(1480px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 0 0 clamp(1.2rem, 3vw, 2rem);
}

.site-footer p {
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 222, 155, 0.12);
  border-radius: 999px;
  background: rgba(10, 8, 11, 0.58);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 222, 155, 0.18);
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--mist);
}

.hero__layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__glow--one {
  background: radial-gradient(circle at 22% 40%, rgba(215, 100, 63, 0.25), transparent 25%);
  animation: drift 11s ease-in-out infinite alternate;
}

.hero__glow--two {
  background: radial-gradient(circle at 78% 30%, rgba(242, 202, 124, 0.2), transparent 22%);
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

.hero__sigil {
  inset: auto;
  width: min(48vw, 34rem);
  aspect-ratio: 1;
  right: -6rem;
  top: 9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 222, 155, 0.16);
  box-shadow:
    0 0 0 22px rgba(255, 222, 155, 0.04),
    0 0 0 48px rgba(255, 222, 155, 0.03);
  opacity: 0.42;
  filter: blur(0.2px);
  animation: rotateSigil 24s linear infinite;
}

.hero__content,
.hero-logo,
.hero-card,
.section {
  position: relative;
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 6.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: min(36rem, 76vw);
  aspect-ratio: 16 / 7;
  pointer-events: auto;
}

.hero-logo.reveal {
  transform: translateX(-50%) translateY(28px);
}

.hero-logo.reveal.is-visible {
  transform: translateX(-50%) translateY(0);
}

.hero-logo__image,
.hero-logo__halo,
.hero-logo__ring {
  grid-area: 1 / 1;
}

.hero-logo__image {
  position: relative;
  z-index: 2;
  width: min(28rem, 62vw);
  filter: drop-shadow(0 0 22px rgba(242, 202, 124, 0.28)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  animation: logoFloat 5.8s ease-in-out infinite;
}

.hero-logo__halo {
  width: 64%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 155, 0.26), rgba(215, 100, 63, 0.12) 42%, transparent 72%);
  filter: blur(16px);
  animation: haloPulse 4.8s ease-in-out infinite;
}

.hero-logo__ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 222, 155, 0.16);
  opacity: 0.9;
}

.hero-logo__ring--outer {
  width: 72%;
  height: 72%;
  box-shadow: 0 0 0 16px rgba(255, 222, 155, 0.04);
  animation: arcaneSpin 18s linear infinite;
}

.hero-logo__ring--inner {
  width: 52%;
  height: 52%;
  border-color: rgba(215, 100, 63, 0.2);
  animation: arcaneSpinReverse 11s linear infinite;
}

.hero__content {
  padding-top: 15rem;
  max-width: 38rem;
}

.hero__content h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 33rem);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 222, 155, 0.16);
  background: linear-gradient(180deg, rgba(29, 18, 26, 0.9), rgba(12, 9, 14, 0.92));
  box-shadow: var(--shadow);
}

.hero-card__label,
.news-card span {
  display: inline-block;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.carousel__caption {
  margin-bottom: 0;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.carousel__controls {
  display: inline-flex;
  gap: 0.6rem;
}

.carousel__button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 222, 155, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist);
  font-size: 1rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.carousel__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 222, 155, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
}

.news-carousel .carousel__slide {
  min-width: calc((100% - 2rem) / 3);
}

.hero-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-card__stats strong,
.feature-panel__details strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.hero-card__stats span,
.feature-panel__details span {
  color: var(--muted);
  font-size: 0.88rem;
}

main {
  width: min(1480px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 4vw, 3rem) 5rem;
}

.section {
  padding: 3rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.news-card,
.topup-card,
.feature-panel {
  border: 1px solid rgba(255, 222, 155, 0.14);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.news-card,
.topup-card {
  padding: 1.6rem;
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease;
}

.news-card {
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.news-carousel {
  border: 1px solid rgba(255, 222, 155, 0.14);
  border-radius: 24px;
  padding: 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.news-carousel .carousel__track {
  gap: 1rem;
}

.news-carousel .carousel__viewport {
  padding: 0.2rem 0 0.55rem;
}

.news-card span {
  margin-bottom: 0.9rem;
}

.news-card:hover,
.topup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 222, 155, 0.32);
}

.feature-panel {
  padding: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.4rem;
  background:
    linear-gradient(120deg, rgba(118, 27, 40, 0.25), transparent 36%),
    var(--panel-strong);
}

.feature-panel__details {
  display: grid;
  gap: 1rem;
}

.feature-panel__details div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.download-options {
  align-content: start;
}

.download-option {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 222, 155, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.download-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 222, 155, 0.26);
}

.download-option.is-selected {
  border-color: rgba(255, 222, 155, 0.42);
  background: linear-gradient(135deg, rgba(242, 202, 124, 0.12), rgba(215, 100, 63, 0.08));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.download-notice {
  min-height: 1.6rem;
  margin: 0.85rem 0 0;
  color: var(--gold-bright);
  font-size: 0.92rem;
}

.download-notice.is-error {
  color: #ffb6a2;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes loadingSpin {
  from {
    transform: rotate(0deg) scale(0.96);
  }
  to {
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes loadingSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes loadingCorePulse {
  0%, 100% {
    transform: scale(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes loadingLogoRise {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes loadingProgress {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes rotateSigil {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    transform: translate3d(-1%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -2%, 0) scale(1.06);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes haloPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes arcaneSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes arcaneSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (max-width: 960px) {
  .hero,
  .feature-panel,
  .topup-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
    padding-top: 6rem;
  }

  .hero__sigil {
    width: 20rem;
    right: -5rem;
    top: 8rem;
  }

  .hero-logo {
    top: 7rem;
    width: min(30rem, 80vw);
  }

  .hero__content {
    padding-top: 13rem;
  }

  .hero-card {
    max-width: 38rem;
  }
}

@media (max-width: 1240px), (max-height: 860px) {
  .hero {
    width: min(1100px, calc(100% - 2rem));
    min-height: auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: start;
    padding-top: 5.8rem;
    gap: 1.5rem;
  }

  .hero-logo {
    top: 6rem;
    width: min(27rem, 58vw);
  }

  .hero-logo__image {
    width: min(21rem, 46vw);
  }

  .hero__sigil {
    width: min(28rem, 52vw);
    right: -3rem;
    top: 7rem;
  }

  .hero__content {
    padding-top: 10.5rem;
    max-width: 44rem;
  }

  .hero__content h2 {
    font-size: clamp(2.8rem, 7vw, 5rem);
  }

  .hero-card {
    justify-self: start;
    width: min(100%, 44rem);
  }

  main {
    width: min(1100px, calc(100% - 2rem));
  }

  .site-footer {
    width: min(1100px, calc(100% - 2rem));
  }
}

@media (max-width: 720px) {
  .navbar {
    justify-content: space-between;
    width: min(94vw, calc(100% - 1.2rem));
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .intro-logo {
    width: min(18rem, 72vw);
  }

  .intro-loading__logo {
    width: min(16rem, 64vw);
  }

  .intro-loading__sigil--outer {
    width: min(20rem, 70vw);
    height: min(20rem, 70vw);
  }

  .intro-loading__sigil--inner {
    width: min(13.5rem, 50vw);
    height: min(13.5rem, 50vw);
  }

  .intro-loading__core {
    width: min(8rem, 30vw);
    height: min(8rem, 30vw);
  }

  .intro-loading__title {
    padding-top: min(12rem, 36vw);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 222, 155, 0.16);
    background: rgba(11, 8, 12, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .hero-logo {
    top: 6.8rem;
    width: min(24rem, 86vw);
  }

  .hero-logo__image {
    width: min(18rem, 64vw);
  }

  .hero__content {
    padding-top: 11.5rem;
  }

  main {
    width: min(100%, calc(100% - 1.2rem));
  }

  .site-footer {
    width: min(100%, calc(100% - 1.2rem));
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-card__stats {
    grid-template-columns: 1fr;
  }

  .carousel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-carousel .carousel__slide {
    min-width: 100%;
  }

  .news-carousel .carousel__viewport {
    padding: 0.2rem 0 0.4rem;
  }

  .floating-social {
    right: 1rem;
    bottom: 1rem;
    padding: 0.65rem 0.8rem;
  }
}

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