/* ============================================================
   Olympus Nepal
   ============================================================ */

/* ---- brand display face: OnStage Serial ----
   One family name with the weight pinned per face, because the source
   files' own family names are inconsistent. ASCII-only — see --font-body
   for why body copy stays on Nunito. Only the two weights the page uses
   are shipped; regenerate others with build-fonts.py if needed. */

@font-face {
  font-family: 'OnStage Serial';
  src: url('assets/fonts/onstage-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OnStage Serial';
  src: url('assets/fonts/onstage-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-deep: #2f6bb5;
  --blue: #3f7fd0;
  --blue-ink: #2b6fc4;
  --blue-section: #4a76b8;
  --gold: #ffd93d;
  --white: #ffffff;

  --nav-h: 66px;
  --gutter: clamp(14px, 2.2vw, 40px);
  --radius-pill: 999px;

  /* Brand face for headings, buttons and labels. Nunito sits behind it as
     the fallback so the handful of glyphs OnStage lacks (– ’ and Devanagari)
     render in an already-loaded face rather than a system serif. */
  --font-display: 'OnStage Serial', 'Nunito', system-ui, sans-serif;
  /* Body copy stays on Nunito: OnStage is ASCII-only and cannot render
     Devanagari, which the Nepali version of this page will need. */
  --font-body: 'Nunito', system-ui, sans-serif;

  --shadow-text: 0 1px 0 rgba(12, 38, 90, .65), 0 3px 10px rgba(12, 38, 90, .55), 0 8px 28px rgba(12, 38, 90, .40);
  --shadow-soft: 0 10px 30px rgba(18, 52, 100, .18);
}

/* ---- Nepali ----
   OnStage Serial has zero Devanagari coverage, so the Nepali page falls
   through to Baloo 2, which ships a Devanagari subset and is a rounded
   display face in the same spirit. Latin runs (1xBet, GATE006, $125.00)
   still render in OnStage, so the brand face is kept where it can be.
   Scoped to :lang(ne) so the English page never requests Baloo 2. */
:root:lang(ne) {
  --font-display: 'OnStage Serial', 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', 'Baloo 2', system-ui, sans-serif;
}

/* Devanagari sits on a larger body than Latin at the same px size and its
   matras need vertical room, so ease the leading and trim the display sizes
   a touch. Without this the two-line headings collide. */
:lang(ne) .hero__title {
  font-size: clamp(23px, 3.5vw, 52px);
  line-height: 1.32;
}

:lang(ne) .gold-heading {
  max-width: 12em;
  line-height: 1.34;
}

:lang(ne) .divine__title,
:lang(ne) .partners__title {
  line-height: 1.32;
}

:lang(ne) .dcard__name,
:lang(ne) .feature__name {
  line-height: 1.4;
}

:lang(ne) .dcard__text,
:lang(ne) .feature__text,
:lang(ne) .hero__sub {
  line-height: 1.62;
}

/* Devanagari has no uppercase; forcing it only adds letter-spacing noise */
:lang(ne) .partners__title {
  text-transform: none;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--blue-deep);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  background: var(--white);
  color: var(--blue-ink);
  font-weight: 800;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   HERO SHELL
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  /* fixed height (not min-height) so hero__inner can shrink its children to fit */
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  /* fallback sky if the bg image ever fails to load */
  background: linear-gradient(180deg, #3d7ac4 0%, #5b9ad8 45%, #a9cbe9 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* soft blue wash over the background so the art blends back
   and the white type keeps its contrast */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* bottom fade into the next section's blue, so the hero art
       doesn't end on a hard horizontal seam. First layer = topmost. */
    linear-gradient(180deg,
      rgba(74, 118, 184, 0) 74%,
      rgba(74, 118, 184, .35) 86%,
      rgba(74, 118, 184, .78) 94%,
      var(--blue-section) 100%),
    radial-gradient(125% 95% at 50% 42%,
      rgba(126, 178, 226, .06) 0%,
      rgba(52, 106, 178, .34) 62%,
      rgba(38, 84, 148, .50) 100%),
    linear-gradient(180deg,
      rgba(55, 114, 188, .52) 0%,
      rgba(84, 145, 210, .34) 48%,
      rgba(146, 192, 230, .30) 100%);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex: none;
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-h);
  padding: 8px clamp(10px, 1.2vw, 18px) 8px clamp(14px, 1.6vw, 26px);
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.nav__logo img {
  width: clamp(88px, 8vw, 128px);
  height: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

/* --- language dropdown --- */

.lang {
  position: relative;
}

.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  color: #2a3f5c;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  white-space: nowrap;
}

.lang__toggle svg {
  transition: transform .22s ease;
}

.lang__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang__list {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 158px;
  padding: 8px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(18, 52, 100, .22);
  transform: translate(-50%, -8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.lang__list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lang__list a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #2a3f5c;
  font-weight: 700;
  font-size: 15px;
  transition: background .18s ease, color .18s ease;
}

.lang__list a:hover,
.lang__list a:focus-visible {
  background: #eef4fb;
  color: var(--blue-ink);
}

.lang__list a.is-current {
  color: var(--blue-ink);
}

/* --- burger --- */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
}

.nav__burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-ink);
  transition: transform .25s ease, opacity .2s ease;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--nav {
  padding: 13px clamp(20px, 2vw, 32px);
  font-size: clamp(12px, 1vw, 14px);
  color: var(--white);
  background: linear-gradient(180deg, #5b9ae4 0%, #2f6bc0 100%);
  box-shadow: 0 6px 16px rgba(47, 107, 192, .38);
}

.btn--nav:hover {
  box-shadow: 0 10px 24px rgba(47, 107, 192, .5);
}

.btn--cta {
  width: min(100%, 640px);
  padding: clamp(16px, 1.5vw, 22px) clamp(24px, 3vw, 46px);
  font-size: clamp(15px, 1.5vw, 26px);
  color: var(--blue-ink);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 45, 90, .3);
}

.btn--cta:hover {
  box-shadow: 0 20px 44px rgba(15, 45, 90, .4);
}

/* white pill, sentence case (not uppercase like the hero CTA) */
.btn--light {
  align-self: flex-start;
  padding: clamp(13px, 1.1vw, 17px) clamp(34px, 3.4vw, 54px);
  font-size: clamp(17px, 1.45vw, 23px);
  letter-spacing: .01em;
  text-transform: none;
  color: var(--blue-ink);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(15, 45, 90, .22);
}

.btn--light:hover {
  box-shadow: 0 18px 36px rgba(15, 45, 90, .32);
}

/* ============================================================
   HERO CONTENT
   ============================================================ */

.hero__inner {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.4vh, 22px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 4.5vh, 60px) 0 clamp(10px, 2vh, 26px);
  text-align: center;
}

/* top block: brand + title + sub. never shrinks */
.hero__copy {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.4vh, 22px);
}

.hero__brand {
  width: clamp(150px, 14vw, 250px);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4.1vw, 62px);
  line-height: 1.12;
  text-shadow: var(--shadow-text);
  text-wrap: balance;
}

.hero__code {
  color: var(--gold);
  /* gold on light sky — dark shadow anchors it */
  text-shadow: 0 1px 0 rgba(12, 38, 90, .7), 0 3px 12px rgba(12, 38, 90, .55);
}

.hero__sub {
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 20px);
  /* subtitle sits on the bright mid-sky — needs a firm shadow to pop */
  text-shadow: 0 1px 0 rgba(12, 38, 90, .65), 0 2px 8px rgba(12, 38, 90, .55), 0 6px 20px rgba(12, 38, 90, .40);
  text-wrap: balance;
}

/* stage = zeus + cta, pinned to the bottom of the hero.
   keeping them in one box makes the overlap below deterministic —
   with space-between on .hero__inner, leftover space would cancel it out. */
.hero__stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

/* Grows into whatever height is left, capped by max-width, so Zeus stays as
   large as the viewport allows. The asset is trimmed to its alpha bounds, so
   the box bottom IS the artwork bottom — that's what makes the CTA overlap exact. */
.hero__zeus {
  flex: 0 1 auto;
  min-height: 0;
  width: auto;
  height: 100%;
  max-width: clamp(240px, 30vw, 560px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 38px rgba(12, 40, 84, .38));
}

/* CTA rides up over the character so its cut-off bottom edge is hidden */
.btn--cta {
  position: relative;
  z-index: 2;
  flex: none;
  margin-top: clamp(-56px, -3.6vh, -24px);
}

/* ============================================================
   WHY PLAY
   ============================================================ */

.why {
  background: var(--blue-section);
  padding: clamp(56px, 7vw, 118px) var(--gutter);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  max-width: 1200px;
  margin: 0 auto;
}

.why__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 2.6vw, 38px);
  min-width: 0;
}

/* shared cream-to-gold section heading */
.gold-heading {
  margin: 0;
  /* holds the two-line break from the designs */
  max-width: 9em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.14;
  background: linear-gradient(180deg, #fffaf0 34%, #ffdf9e 72%, #f2bb62 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(28, 70, 128, .30));
}

.features {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
  width: 100%;
}

.feature__name {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.25;
  color: var(--white);
  /* white on solid blue — light shadow adds subtle depth */
  text-shadow: 0 1px 4px rgba(12, 38, 90, .30);
}

.feature__text {
  margin: 0;
  font-weight: 600;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(12, 38, 90, .22);
}

.why__col--media {
  align-items: center;
}

.why__image {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 26px 44px rgba(12, 40, 84, .28));
}

/* ============================================================
   DIVINE FEATURES
   ============================================================ */

.divine {
  background: var(--blue-section);
  padding: clamp(20px, 3vw, 48px) var(--gutter) clamp(48px, 6vw, 96px);
}

.divine__panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(22px, 2.6vw, 38px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 60px) clamp(18px, 3.4vw, 60px) clamp(26px, 3.4vw, 52px);
  border-radius: clamp(18px, 1.8vw, 30px);
  background: var(--white);
}

.divine__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 50px);
  line-height: 1.16;
  color: var(--blue-section);
  /* gold keyline, built from offsets so it works without paint-order.
     em-based so the stroke keeps its weight as the heading scales. */
  text-shadow:
    -.032em -.032em 0 #e9a93a, .032em -.032em 0 #e9a93a,
    -.032em .032em 0 #e9a93a, .032em .032em 0 #e9a93a,
    0 -.032em 0 #e9a93a, 0 .032em 0 #e9a93a,
    -.032em 0 0 #e9a93a, .032em 0 0 #e9a93a;
}

.divine__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.3vw, 20px);
}

.dcard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(14px, 1.2vw, 20px) clamp(12px, 1vw, 18px) 0;
  border-radius: clamp(12px, 1.1vw, 18px);
  background: var(--blue-section);
  overflow: hidden;
  text-align: center;
}

.dcard__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.25;
  color: var(--white);
}

.dcard__text {
  margin: 0;
  font-weight: 600;
  font-size: clamp(12px, .8vw, 14px);
  line-height: 1.42;
  color: rgba(255, 255, 255, .93);
}

/* pushed to the card floor so the characters share a baseline */
.dcard__img {
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
}

.divine__note {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.4;
  color: var(--blue-ink);
}

/* the note pair sits tighter than the panel's default gap */
.divine__note + .divine__note {
  margin-top: clamp(-16px, -1.2vw, -8px);
}

.btn--wide {
  width: 100%;
  padding: clamp(14px, 1.35vw, 21px) clamp(20px, 2vw, 34px);
  font-size: clamp(16px, 1.5vw, 26px);
  color: var(--white);
  background: linear-gradient(180deg, #4f86cf 0%, #3a6fbb 100%);
  box-shadow: 0 10px 26px rgba(47, 107, 192, .32);
}

.btn--wide:hover {
  box-shadow: 0 16px 36px rgba(47, 107, 192, .44);
}

/* ============================================================
   JACKPOT / VIDEO
   ============================================================ */

.jackpot {
  background: var(--blue-section);
  padding: clamp(48px, 6vw, 104px) var(--gutter);
}

.jackpot__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  max-width: 1200px;
  margin: 0 auto;
}

.jackpot__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 2.8vw, 40px);
  min-width: 0;
}

.jackpot__col--media {
  align-items: center;
}

/* --- phone mockup --- */

.phone {
  position: relative;
  width: 100%;
  max-width: clamp(240px, 27vw, 375px);
}

.phone__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 26px 44px rgba(12, 40, 84, .34));
}

/* Sized off the frame's transparent screen cut-out.
   width/height are explicit, not derived from `inset`: for an absolutely
   positioned *replaced* element, `width: auto` resolves to the intrinsic
   video width, which ignores the insets and blows out of the frame. */
.phone__video {
  position: absolute;
  z-index: 1;
  top: 2.93%;
  left: 6.84%;
  width: 86.44%;
  /* 100% - 6.84% - 6.72% */
  height: 94.20%;
  /* 100% - 2.93% - 2.87% */
  object-fit: cover;
  border-radius: 6.6% / 3%;
  background: #1a1030;
}

/* ============================================================
   PARTNERS
   ============================================================ */

.partners {
  background: var(--blue-section);
  padding: clamp(20px, 3vw, 44px) var(--gutter) clamp(56px, 7vw, 110px);
}

.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 4vw, 62px);
  max-width: 1200px;
  margin: 0 auto;
}

.partners__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(12, 38, 90, .30);
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4.5vw, 76px);
  width: 100%;
}

.partners__logo {
  width: auto;
  height: clamp(56px, 6.4vw, 104px);
  object-fit: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- tablet & down: collapse nav into burger panel --- */
@media (max-width: 860px) {

  .nav__burger {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 20px 44px rgba(18, 52, 100, .25);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

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

  .lang__toggle {
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 12px;
    background: #f2f6fb;
  }

  /* dropdown becomes inline accordion inside the panel */
  .lang__list {
    position: static;
    min-width: 0;
    padding: 6px 0 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transform: none;
    display: none;
  }

  .lang__list.is-open {
    display: block;
    transform: none;
  }

  .btn--nav {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
  }

  /* 30vw is far too small once the layout narrows — let Zeus take more width */
  .hero__zeus {
    max-width: min(62vw, 420px);
  }

  /* stack the two columns, image below the copy */
  .why__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
  }

  .why__image {
    max-width: 520px;
  }

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

  /* stack, phone below the copy */
  .jackpot__inner {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 48px);
  }

  .phone {
    max-width: 260px;
  }
}

/* --- phones --- */
@media (max-width: 560px) {

  :root {
    --nav-h: 58px;
  }

  .hero {
    padding: 12px 12px 20px;
  }

  .hero__bg {
    object-position: 50% 65%;
  }

  .hero__inner {
    justify-content: space-between;
    gap: 14px;
    padding-top: 26px;
  }

  .hero__title {
    font-size: clamp(22px, 6.6vw, 32px);
  }

  .hero__sub {
    font-size: 14px;
  }

  .hero__zeus {
    max-width: min(82vw, 360px);
  }

  .btn--cta {
    width: 100%;
    font-size: clamp(13px, 3.7vw, 17px);
    letter-spacing: .02em;
  }

  .btn--light {
    align-self: stretch;
    width: 100%;
  }

  /* one card per row — two columns squeezes the copy too hard on phones */
  .divine__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dcard__img {
    width: min(78%, 300px);
    margin-inline: auto;
  }

  /* keep all five on a single row rather than wrapping 4 + 1 */
  .partners__list {
    flex-wrap: nowrap;
    gap: clamp(10px, 3.6vw, 20px);
  }

  .partners__logo {
    height: clamp(34px, 11vw, 46px);
  }
}

/* --- short/landscape phones: keep everything on one screen --- */
@media (max-height: 620px) and (orientation: landscape) {

  .hero__inner {
    padding-top: 18px;
    gap: 8px;
  }

  .hero__brand {
    width: clamp(120px, 12vw, 170px);
  }

  .hero__title {
    font-size: clamp(20px, 3.2vw, 34px);
  }

  .hero__zeus {
    max-width: clamp(150px, 19vw, 270px);
  }
}

/* --- very large screens: stop scaling --- */
@media (min-width: 1800px) {

  .hero__title {
    font-size: 66px;
  }

  .hero__zeus {
    max-width: 600px;
  }
}

/* ============================================================
   MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
