@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../font/Inter-Variable.woff2") format("woff2-variations"),
       url("../font/Inter-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Fallback";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Fallback";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Inter-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Fallback";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Fallback";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Inter-Bold.woff2") format("woff2");
}

:root {
  /* Figma palette mapped to UI roles. */
  --ink-heading: #333333;
  --brand-sky: #4F7FFA;
  --accent-mission: #7ADAAB;
  --accent-cloud: #A9DAFF;
  --ink-muted: #B6BCC9;
  --accent-ground: #EBBB6D;
  --accent-vision: #EE97BC;
  --surface-page: #FFFFFF;
  --flame-outer: #E36018;
  --flame-core: #FCE25E;
  --flame-middle: #FFAE44;

  /* Derived roles keep color values centralized. */
  --ink-body: color-mix(in srgb, var(--ink-heading) 72%, var(--surface-page));
  --ink-soft: color-mix(in srgb, var(--ink-heading) 76%, var(--surface-page));
  --surface-soft: color-mix(in srgb, var(--accent-cloud) 14%, var(--surface-page));
  --surface-wash: color-mix(in srgb, var(--ink-muted) 20%, var(--surface-page));
  --border-soft: color-mix(in srgb, var(--ink-muted) 42%, var(--surface-page));
  --brand-deep: color-mix(in srgb, var(--brand-sky) 68%, var(--ink-heading));
  --brand-pale: color-mix(in srgb, var(--brand-sky) 12%, var(--surface-page));
  --white-muted: color-mix(in srgb, var(--surface-page) 78%, transparent);
  --white-soft: color-mix(in srgb, var(--surface-page) 16%, transparent);
  --shadow-card: 0 12px 32px color-mix(in srgb, var(--ink-heading) 10%, transparent);

  --font-sans: "Inter", "Inter Fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-max: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --radius-card: clamp(1.5rem, 2.3vw, 2.5rem);
  --radius-control: 1rem;
  --header-height: 6.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--ink-body);
  background: var(--surface-page);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--flame-core);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.container,
.site-header__inner,
.hero__inner,
.about__inner,
.vision-mission__inner,
.events__inner,
.insights__inner,
.media__inner,
.faq__inner,
.site-footer__inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container-max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: var(--surface-page);
  color: var(--ink-heading);
  font-weight: 700;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared section typography */
.section-heading {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3.75rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--ink-heading);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.section-description {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.65vw, 1.25rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.button,
.about__cta,
.event-card__button,
.insights__button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: var(--brand-sky);
  color: var(--surface-page);
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.about__cta:hover,
.event-card__button:hover,
.insights__button:hover {
  transform: translateY(-2px);
  background: var(--brand-deep);
}

.button--light,
.about__cta {
  background: var(--surface-page);
  color: var(--brand-deep);
}

.button--light:hover,
.about__cta:hover {
  background: var(--surface-soft);
  color: var(--brand-deep);
}

/* Header and primary navigation */
.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--surface-page);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: center;
}

.site-brand,
.site-header__brand {
  position: absolute;
  z-index: 2;
  left: 50%;
  display: inline-flex;
  width: clamp(8.75rem, 13vw, 10rem);
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.site-brand img,
.site-header__brand img,
.site-brand__logo {
  width: 100%;
  height: auto;
}

.site-nav {
  width: 100%;
}

.site-nav ul,
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 2.75rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li:nth-child(3) {
  margin-left: auto;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  padding-block: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  z-index: 101;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--white-soft);
  border-radius: 0.85rem;
  background: var(--white-soft);
  color: var(--surface-page);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle__line {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line:nth-child(2) {
  top: 0.85rem;
}

.nav-toggle__line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle__line:nth-child(4) {
  bottom: 0.85rem;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2),
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3),
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(4),
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(4) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hero */
.hero__stores {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: clamp(18rem, 24vw, 24rem);
  left: 0;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container-max));
  margin-inline: auto;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__stores-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(8rem, 12.25vw, 11rem) minmax(0, 1fr);
  align-items: center;
}

.hero__store-badge {
  display: block;
  width: min(clamp(11rem, 18.6vw, 16.75rem), 100%);
  transform-origin: center;
  animation: hero-cloud-drift 6.5s ease-in-out infinite;
  will-change: transform;
}

.hero__store-badge--play {
  grid-column: 1;
  justify-self: center;
  animation-delay: -1.6s;
}

.hero__store-badge--appstore {
  grid-column: 3;
  justify-self: center;
  animation-delay: -4.2s;
}

.hero__store-badge img {
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-rocket-launched .hero__store-badge img {
  transform: scale(1.16);
}

@keyframes hero-cloud-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(0.45rem, -0.3rem, 0) rotate(1deg);
  }

  50% {
    transform: translate3d(-0.35rem, -0.75rem, 0) rotate(-0.8deg);
  }

  75% {
    transform: translate3d(-0.55rem, -0.2rem, 0) rotate(0.5deg);
  }
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(47.5rem, 66.5vw, 60rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-sky) 43%, var(--accent-cloud) 100%);
  color: var(--surface-page);
}

.hero::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(3.5rem, 9vw, 6rem);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--accent-cloud) 65%, var(--surface-page)) 25%,
    color-mix(in srgb, var(--accent-cloud) 30%, var(--surface-page)) 60%,
    var(--surface-page) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: "";
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: inherit;
  place-items: start center;
  padding-top: clamp(10.5rem, 16vw, 14.5rem);
  text-align: center;
}

.hero__content {
  max-width: 70rem;
  transform-origin: center;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__eyebrow,
.hero__brand-name {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero__title {
  max-width: 66rem;
  margin: 0 auto;
  color: var(--surface-page);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.5;
  text-wrap: balance;
  transform-origin: center;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__clouds {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero__rocket {
  position: absolute;
  z-index: 2;
  bottom: clamp(6.5rem, 10vw, 9.5rem);
  left: 50%;
  width: clamp(8rem, 12.25vw, 11rem);
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transform: translateX(-50%);
}

.hero__rocket:focus-visible {
  border-radius: 45% 45% 1rem 1rem;
}

.hero.is-rocket-launched .hero__rocket {
  pointer-events: none;
  animation: hero-rocket-takeoff 1.2s cubic-bezier(0.62, 0, 0.78, 0.2) forwards;
}

.hero.is-rocket-launched .rocket {
  animation-play-state: paused;
}

.hero.is-rocket-launched .rocket-flame {
  opacity: 1;
  animation-duration: 0.18s;
  animation-play-state: running;
}

.hero.is-rocket-launched .hero__content,
html.motion-ready .hero.is-rocket-launched .hero__content[data-animate="scale"].is-visible {
  transform: translateY(clamp(5rem, 10vw, 8.5rem)) scale(1.06);
}

.hero.is-rocket-launched .hero__title {
  transform: scale(1.12);
}

@keyframes hero-rocket-takeoff {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  14% {
    opacity: 1;
    transform: translate(-50%, 0.75rem) scale(1.02);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -125vh) scale(0.72);
  }
}

html.motion-ready .hero__rocket[data-animate="rocket-launch"] {
  transform: translate(-50%, 4rem);
}

html.motion-ready .hero__rocket[data-animate="rocket-launch"].is-visible {
  transform: translate(-50%, 0);
}

.rocket {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 176 / 290;
  animation: rocket-float 3.5s ease-in-out infinite;
}

@keyframes rocket-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.85rem);
  }
}

.rocket-body-clip {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 78.3%;
  overflow: hidden;
}

.rocket__body {
  width: 100%;
  max-width: none;
  height: auto;
}

/* Crop x=66, y=227, w=44.01, h=62.86 from the same 176x290 rocket asset. */
.rocket-flame {
  position: absolute;
  z-index: 1;
  top: 78.3%;
  left: 37.5%;
  width: 25.006%;
  height: 21.68%;
  background-image: url("../images/rocket.webp");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 399.91% 461.19%;
  opacity: 0.92;
  transform: scaleY(1);
  transform-origin: bottom center;
  animation: flame-flicker 0.4s ease-in-out infinite;
  animation-play-state: paused;
  pointer-events: none;
}

.hero__rocket.is-visible .rocket-flame,
html:not(.motion-ready) .rocket-flame {
  animation-play-state: running;
}

@keyframes flame-flicker {
  0%,
  100% {
    opacity: 0.88;
    transform: scaleY(0.94);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.14);
  }
}

/* About */
.about {
  padding-block: var(--section-space);
}

.about__card,
.about-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(29rem, 38.6vw, 34.8125rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(13rem, 0.55fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  padding: clamp(2rem, 7vw, 6.25rem) clamp(1.5rem, 8.5vw, 8rem);
  border-radius: 1.5625rem;
  background: var(--brand-sky);
  color: var(--surface-page);
}

.about__card::before,
.about__card::after {
  position: absolute;
  z-index: -1;
  width: clamp(20rem, 52vw, 42rem);
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--white-soft), transparent 78%);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.about__card::before {
  top: -42%;
  right: -16%;
}

.about__card::after {
  right: 18%;
  bottom: -76%;
  opacity: 0.55;
}

.about__content {
  display: grid;
  min-height: clamp(18rem, 23vw, 22rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(13rem, 0.65fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.about__copy {
  max-width: 36rem;
}

.about-card__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.about-card .section-kicker {
  color: var(--white-muted);
}

.about-card .section-title {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  color: var(--surface-page);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 500;
}

.about__title {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  color: var(--surface-page);
  font-size: clamp(2rem, 3.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.about__description,
.about-card__description {
  margin: 0;
  color: var(--white-muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.5;
}

.about__actions {
  align-self: end;
  justify-self: end;
}

.about-card__cta {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
}

.about-card__medal {
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 7.5vw, 6rem);
  z-index: 2;
  width: clamp(11rem, 22vw, 18rem);
  pointer-events: none;
  user-select: none;
  transform-origin: top center;
  animation: medal-float 4s ease-in-out infinite;
}

@keyframes medal-float {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(2.5deg) translateY(-0.35rem);
  }

  50% {
    transform: rotate(0deg) translateY(-0.75rem);
  }

  75% {
    transform: rotate(-2.5deg) translateY(-0.35rem);
  }
}

.about-card__medal img {
  width: 100%;
  height: auto;
  display: block;
}

.about-card__shape {
  position: absolute;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--white-soft), transparent 78%);
  pointer-events: none;
  transform: rotate(45deg);
}

.about-card__shape--one {
  top: -48%;
  right: -16%;
  width: clamp(22rem, 52vw, 42rem);
}

.about-card__shape--two {
  right: 17%;
  bottom: -78%;
  width: clamp(20rem, 48vw, 37rem);
  opacity: 0.6;
}

.about-card__shape--three {
  top: 16%;
  right: 2%;
  width: clamp(10rem, 20vw, 17rem);
  opacity: 0.32;
}

/* Vision and mission */
.vision-mission {
  padding-bottom: var(--section-space);
}

.vision-mission__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.vision-card,
.mission-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(27rem, 39vw, 32.75rem);
  overflow: hidden;
  padding: clamp(2rem, 4.5vw, 4rem);
  border-radius: var(--radius-card);
  color: var(--surface-page);
}

.vision-card {
  background: var(--accent-vision);
}

.mission-card {
  background: var(--accent-mission);
}

.vision-card__label,
.mission-card__label {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.25rem 1.65rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  border-radius: 999px;
  background: var(--white-soft);
  color: var(--ink-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
}

.vision-card h3 {
  position: relative;
  z-index: 2;
  max-width: 31rem;
  margin: 0;
  color: var(--ink-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

.vision-card__text,
.mission-card__text,
.vision-card > p,
.mission-card > p,
.mission-card li {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  color: var(--ink-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.mission-card ul,
.mission-card__list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  padding-left: 1.4rem;
  margin-bottom: 0;
}

.mission-card__accent {
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: -1rem;
  width: min(52%, 17.5rem);
  height: auto;
  opacity: 0.52;
  pointer-events: none;
}

.vision-card__ornament {
  position: absolute;
  right: -9%;
  bottom: -14%;
  width: min(68%, 22rem);
  aspect-ratio: 1;
  border: clamp(2rem, 4vw, 3.5rem) solid var(--white-soft);
  border-radius: 50%;
  pointer-events: none;
}

.vision-card__ornament::before,
.vision-card__ornament::after {
  position: absolute;
  background: var(--white-soft);
  content: "";
}

.vision-card__ornament::before {
  width: 60%;
  height: 60%;
  top: -34%;
  left: -34%;
  border-radius: 0.5rem;
}

.vision-card__ornament::after {
  width: 36%;
  height: 36%;
  right: -28%;
  bottom: 2%;
  border-radius: 0.5rem;
}

/* Events */
.events {
  position: relative;
  isolation: isolate;
  padding-block: var(--section-space);
  background: var(--surface-wash);
}

.events::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.events__list,
.event-list {
  display: grid;
  width: min(100%, 72.5rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-inline: auto;
}

.events__heading {
  width: min(100%, 72.5rem);
  max-width: 72.5rem;
  margin-inline: auto;
}

.event-card {
  display: grid;
  min-height: 20rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink-muted) 20%, transparent);
  border-radius: 2rem;
  background: var(--surface-page);
  box-shadow: var(--shadow-card);
}

.event-card__content {
  min-width: 0;
}

.event-card__title,
.event-card__content h3 {
  margin-bottom: 0.8rem;
  color: var(--ink-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.event-card__description,
.event-card__content > p:not(.event-card__status) {
  max-width: 34rem;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.event-card__status {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--brand-pale);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.event-card__meta,
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.event-card__badge,
.event-meta span {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-wash);
  color: var(--ink-heading);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}

.event-card__meta > div {
  display: grid;
  gap: 0.18rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.85rem;
  background: var(--surface-wash);
}

.event-card__meta dt,
.event-card__meta dd {
  margin: 0;
}

.event-card__meta dt {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-card__meta dd {
  color: var(--ink-heading);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.event-card__button {
  min-width: 10.75rem;
}

.button--disabled,
.button--disabled:hover {
  border-color: var(--border-soft);
  background: var(--surface-wash);
  color: var(--ink-soft);
  cursor: default;
  pointer-events: none;
  transform: none;
}

.event-card__visual,
.visual-placeholder {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  aspect-ratio: 374 / 207;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, var(--accent-cloud), var(--brand-sky));
}

.visual-placeholder > span {
  position: relative;
  z-index: 2;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--white-soft);
  color: var(--surface-page);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card:nth-child(3n + 2) .event-card__visual,
.event-card:nth-child(3n + 2) .visual-placeholder {
  background: linear-gradient(135deg, var(--accent-mission), var(--accent-cloud));
}

.event-card:nth-child(3n) .event-card__visual,
.event-card:nth-child(3n) .visual-placeholder {
  background: linear-gradient(135deg, var(--accent-vision), var(--accent-ground));
}

.event-card__visual img,
.visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-placeholder::before,
.visual-placeholder::after {
  position: absolute;
  border: 1px solid var(--white-muted);
  border-radius: 50%;
  content: "";
}

.visual-placeholder::before {
  width: 62%;
  aspect-ratio: 1;
  top: -24%;
  right: -8%;
}

.visual-placeholder::after {
  width: 44%;
  aspect-ratio: 1;
  bottom: -26%;
  left: 4%;
}

/* Insights */
.insights {
  padding-block: var(--section-space);
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.25rem, 2.6vw, 2rem);
}

.insight-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--surface-page);
  transition: transform 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-sky);
}

.insight-card__visual,
.insight-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 5;
  background: linear-gradient(145deg, var(--brand-pale), var(--accent-cloud));
}

.insight-card--short .insight-card__visual,
.insight-card--short .insight-card__media {
  aspect-ratio: 9 / 4;
}

.insight-card--tall .insight-card__visual,
.insight-card--tall .insight-card__media {
  aspect-ratio: 6 / 5;
}

.insight-card:nth-child(3n + 2) .insight-card__visual,
.insight-card:nth-child(3n + 2) .insight-card__media {
  background: linear-gradient(145deg, var(--accent-mission), var(--surface-soft));
}

.insight-card:nth-child(3n) .insight-card__visual,
.insight-card:nth-child(3n) .insight-card__media {
  background: linear-gradient(145deg, var(--accent-vision), var(--accent-ground));
}

.insight-card__visual img,
.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.insight-card:hover .insight-card__visual img,
.insight-card:hover .insight-card__media img {
  transform: scale(1.025);
}

.insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.insight-card__title,
.insight-card__body h3 {
  margin-bottom: 0.65rem;
  color: var(--ink-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.insight-card__text,
.insight-card__description,
.insight-card__body > p:not(.insight-card__meta) {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.insight-card__meta {
  margin-bottom: 0.55rem;
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.insights__actions,
.insights__action {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.insights__button {
  border-color: var(--ink-heading);
  background: var(--surface-page);
  color: var(--ink-heading);
}

.insights__button:hover {
  background: var(--ink-heading);
  color: var(--surface-page);
}

/* Media partners */
.media {
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--surface-soft);
}

.media__viewport {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.media__track,
.media__grid {
  --media-gap: clamp(1rem, 2.6vw, 2rem);
  display: flex;
  width: max-content;
  gap: var(--media-gap);
  animation: media-marquee 25s linear infinite;
}

.media__track:hover {
  animation-play-state: paused;
}

@keyframes media-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-33.333333% - (var(--media-gap) / 3)));
  }
}

.media-card {
  display: flex;
  width: clamp(14rem, 18vw, 16rem);
  min-height: clamp(7.5rem, 11vw, 9rem);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 4px solid var(--border-soft);
  border-radius: 999px;
  background: var(--surface-page);
  color: var(--ink-heading);
  scroll-snap-align: center;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.media-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-sky);
}

.media-card img {
  max-width: min(10rem, 75%);
  max-height: 4.5rem;
  object-fit: contain;
}

.media-card__name {
  font-weight: 700;
}

.media-card__mark {
  width: 2.8rem;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border-radius: 55% 45% 42% 58%;
  background: linear-gradient(145deg, var(--brand-sky), var(--accent-vision));
}

/* FAQ */
.faq {
  position: relative;
  padding-block: var(--section-space);
  background: var(--surface-wash);
}

.faq-list,
.faq__list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-sky) 34%, transparent);
  border-radius: var(--radius-control);
  background: var(--surface-page);
}

.faq-item summary {
  display: flex;
  min-height: 7.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 6.25rem);
  background: var(--brand-deep);
  color: var(--surface-page);
  cursor: pointer;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  transition: background-color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: color-mix(in srgb, var(--brand-deep) 82%, var(--ink-heading));
}

.faq-icon {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer,
.faq-item > p,
.faq-item > div:not(.faq-icon) {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.25rem, 5vw, 6.25rem);
  color: var(--ink-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.faq-answer > :last-child,
.faq-item > div:not(.faq-icon) > :last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  min-height: 32rem;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7rem) 0 12rem;
  background: var(--accent-cloud);
  color: var(--ink-heading);
}

.site-footer::before {
  position: absolute;
  z-index: 5;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(4rem, 9vw, 6.5rem);
  background: linear-gradient(
    to bottom,
    var(--surface-wash) 0%,
    color-mix(in srgb, var(--surface-wash) 70%, var(--accent-cloud)) 30%,
    color-mix(in srgb, var(--surface-wash) 30%, var(--accent-cloud)) 65%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  content: "";
  pointer-events: none;
}

.site-footer__landscape {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: -1px;
  left: -3%;
  height: 35%;
  overflow: hidden;
  background: var(--accent-ground);
  clip-path: polygon(0 18%, 20% 32%, 48% 44%, 72% 39%, 100% 15%, 100% 100%, 0 100%);
  pointer-events: none;
}

.site-footer__landscape::before,
.site-footer__landscape::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.site-footer__landscape::before {
  height: 72%;
  background: var(--flame-middle);
  clip-path: polygon(0 46%, 17% 58%, 40% 45%, 63% 64%, 84% 45%, 100% 54%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.site-footer__landscape::after {
  height: 43%;
  background: var(--flame-outer);
  clip-path: polygon(0 54%, 24% 38%, 47% 58%, 70% 41%, 100% 52%, 100% 100%, 0 100%);
  opacity: 0.3;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(9rem, 0.65fr) minmax(9rem, 0.65fr);
  grid-template-areas:
    "brand nav social"
    "brand download download";
  gap: clamp(2.5rem, 7vw, 7rem);
}

.site-footer__brand {
  grid-area: brand;
  max-width: 26rem;
}

.site-footer__nav {
  grid-area: nav;
}

.site-footer__download {
  display: flex;
  grid-area: download;
  align-items: center;
}

.site-footer__social {
  grid-area: social;
}

.site-footer__logo {
  width: min(12rem, 100%);
  margin-bottom: 0;
}

.site-footer__logo-link {
  display: inline-flex;
  padding: 0.7rem 0.9rem;
  margin-bottom: 1.15rem;
  border-radius: 0.9rem;
  background: var(--brand-deep);
}

.site-footer__description,
.site-footer__brand p {
  color: var(--ink-heading);
  line-height: 1.7;
}

.site-footer__title {
  margin-bottom: 1.2rem;
  color: var(--ink-heading);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-footer ul,
.site-footer__links {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: var(--ink-heading);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--brand-deep);
}

.site-footer__social span {
  color: var(--ink-heading);
}

.site-footer__download-trigger {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--brand-deep);
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--surface-page);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-footer__download-trigger:hover {
  background: var(--surface-page);
  color: var(--brand-deep);
  transform: translateY(-2px);
}

.app-modal[hidden] {
  display: none;
}

.app-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.app-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--brand-deep) 72%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.app-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--border-soft);
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface-page);
  box-shadow: 0 2rem 5rem color-mix(in srgb, var(--ink-heading) 28%, transparent);
  text-align: center;
}

.app-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: var(--surface-page);
  color: var(--ink-heading);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.app-modal__close:hover {
  background: var(--brand-deep);
  color: var(--surface-page);
  transform: rotate(8deg);
}

.app-modal__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-modal__title {
  margin: 0;
  color: var(--ink-heading);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.app-modal__description {
  margin: 0.75rem 0 1.75rem;
  color: var(--ink-soft);
}

.app-modal__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
}

.app-modal__option {
  display: grid;
  min-width: 0;
  justify-items: center;
  padding: 0.65rem;
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  background: var(--surface-soft);
  color: var(--ink-heading);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-modal__option:hover {
  border-color: var(--brand-sky);
  box-shadow: 0 0.8rem 1.75rem color-mix(in srgb, var(--brand-sky) 16%, transparent);
  transform: translateY(-3px);
}

.app-modal__option img {
  width: min(100%, 16.75rem);
  height: auto;
}

body.app-modal-open {
  overflow: hidden;
}
/* One observer drives these one-time entrance states. */
html.motion-ready [data-animate] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

html.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

html.motion-ready [data-animate="up"] {
  transform: translateY(2.5rem);
}

html.motion-ready [data-animate="scale"] {
  transform: scale(0.92);
}

html.motion-ready [data-animate="left"] {
  transform: translateX(-2.5rem);
}

html.motion-ready [data-animate="right"] {
  transform: translateX(2.5rem);
}

html.motion-ready [data-animate="rocket-launch"] {
  transform: translateY(7.5rem);
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html.motion-ready [data-animate-group] > * {
  transition-delay: calc(var(--stagger-index, 0) * 0.08s);
}

@media (min-width: 48rem) {
  .hero.is-rocket-launched .hero__content,
  html.motion-ready .hero.is-rocket-launched .hero__content[data-animate="scale"].is-visible {
    transform: translateY(clamp(2.5rem, 4vw, 3.75rem)) scale(1);
  }

  .hero.is-rocket-launched .hero__title {
    transform: scale(1.06);
  }

  .hero.is-rocket-launched .hero__stores {
    transform: translateY(clamp(1.5rem, 2.5vw, 2.5rem));
  }

  .hero.is-rocket-launched .hero__store-badge img {
    transform: scale(1.06);
  }
}

@media (max-width: 63.99rem) {
  :root {
    --header-height: 5.75rem;
  }

  .about__content {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.45fr);
  }

  .event-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(14rem, 0.9fr);
    gap: 2rem;
  }

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

}

@media (max-width: 47.99rem) {
  :root {
    --gutter: 1.25rem;
    --section-space: clamp(4.5rem, 17vw, 6rem);
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .site-brand,
  .site-header__brand {
    position: static;
    width: 7rem;
    transform: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
    background: var(--brand-deep);
    box-shadow: -12px 0 32px color-mix(in srgb, var(--ink-heading) 20%, transparent);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav ul,
  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
  }

  .site-nav li:nth-child(3) {
    margin-left: 0;
  }

  .site-nav a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
  }

  .site-nav a:hover {
    background: var(--white-soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: clamp(43.75rem, 178vw, 50rem);
  }

  .hero__inner {
    padding-top: clamp(9rem, 31vw, 11rem);
  }

  .hero__content {
    max-width: 35rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.15;
  }

  .hero__clouds {
    right: auto;
    left: 50%;
    width: max(180%, 48rem);
    transform: translateX(-50%);
  }

  .hero__stores {
    bottom: clamp(12rem, 24vw, 16rem);
    width: calc(100% - 1rem);
  }

  .hero__stores-grid {
    grid-template-columns: minmax(0, 1fr) clamp(7rem, 30vw, 8.75rem) minmax(0, 1fr);
    gap: 0.25rem;
  }

  .hero__store-badge {
    width: min(clamp(7.5rem, 28vw, 9.5rem), 100%);
  }

  .hero.is-rocket-launched .hero__store-badge img {
    transform: scale(1.14);
  }
  .hero__rocket {
    bottom: clamp(5.25rem, 14vw, 6.75rem);
    width: clamp(7rem, 30vw, 8.75rem);
  }

  .about__card,
  .about-card {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
  }

  .about__content {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about__actions {
    justify-self: start;
  }

  .about-card__cta {
    justify-self: start;
  }

  .about-card__medal {
    right: 0.75rem;
    width: clamp(6.5rem, 26vw, 9.5rem);
    opacity: 0.75;
  }

  .vision-mission__grid {
    grid-template-columns: 1fr;
  }

  .vision-card,
  .mission-card {
    min-height: 24rem;
    padding: 2rem 1.5rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .event-card__visual,
  .visual-placeholder {
    grid-row: 1;
  }

  .insights__grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 6.5rem;
  }

  .site-footer {
    padding-bottom: 10rem;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "nav social"
      "download download";
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 31.99rem) {
  .section-title {
    font-size: 1.9rem;
  }

  .media-card {
    width: clamp(10.5rem, 45vw, 13rem);
    min-height: 5.5rem;
    padding: 0.75rem 1rem;
  }

  .faq-item summary {
    gap: 0.75rem;
    padding-inline: 1.1rem;
  }

  .faq-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.7rem;
  }

  .faq-answer,
  .faq-item > p,
  .faq-item > div:not(.faq-icon) {
    padding-inline: 1.1rem;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "nav social"
      "download download";
    gap: 2rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__rocket[data-animate="rocket-launch"] {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    transition: none !important;
  }
  .hero.is-rocket-launched .hero__rocket[data-animate="rocket-launch"] {
    opacity: 0 !important;
    transform: translate(-50%, -125vh) !important;
  }

  .hero.is-rocket-launched .hero__content[data-animate="scale"] {
    transform: translateY(clamp(5rem, 10vw, 8.5rem)) scale(1.06) !important;
  }

  .hero.is-rocket-launched .hero__title {
    transform: scale(1.12);
    transition: none;
  }

  .hero__store-badge img {
    transition: none;
  }

  [data-animate-group] > * {
    transition-delay: 0s;
  }

  .hero__store-badge,
  .rocket-flame,
  .about-card__medal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-footer__download-trigger,
  .app-modal__close,
  .button,
  .about__cta,
  .event-card__button,
  .insights__button,
  .site-nav,
  .nav-toggle__line,
  .insight-card,
  .insight-card__visual img,
  .insight-card__media img,
  .media-card,
  .faq-item summary,
  .faq-icon,
  .skip-link {
    transition: none;
  }
}
