:root {
  --black: #050505;
  --white: #ffffff;
  --yellow: #ffd600;
  --gray-900: #1b1b1b;
  --gray-700: #4a4a4a;
  --gray-200: #dedede;
  --shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.landing-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(22px, 4vw, 50px);
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide-from-left 1150ms cubic-bezier(.16, 1, .3, 1) both;
}

.brand-logo {
  width: min(330px, 58vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .1));
}

.hero-copy {
  align-self: center;
  justify-self: center;
  width: min(75vw, 1180px);
  text-align: center;
  padding: clamp(28px, 5vw, 64px) 0 clamp(18px, 3vw, 34px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 9.2vw, 140px);
  line-height: .86;
  font-weight: 900;
  color: var(--black);
  text-wrap: balance;
  animation: slide-from-right 1250ms 120ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero p {
  width: min(980px, 100%);
  margin: clamp(22px, 3vw, 34px) auto 0;
  color: var(--gray-700);
  font-size: clamp(18px, 2.05vw, 28px);
  line-height: 1.34;
  font-weight: 350;
  text-wrap: pretty;
  animation: slide-from-left 1180ms 300ms cubic-bezier(.16, 1, .3, 1) both;
}

.menu {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vw, 96px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.menu-link {
  position: relative;
  display: block;
  aspect-ratio: 1448 / 455;
  min-height: 0;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 26px 54px rgba(0, 0, 0, .22);
  transform: translateX(-190px) scale(.84);
  opacity: 0;
  animation: menu-in-left 1120ms cubic-bezier(.16, 1, .3, 1) both;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .22));
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.menu-link:nth-child(1) { animation-delay: 320ms; }
.menu-link:nth-child(2) {
  animation-delay: 400ms;
  animation-name: menu-in-right;
}
.menu-link:nth-child(3) { animation-delay: 480ms; }
.menu-link:nth-child(4) {
  animation-delay: 560ms;
  animation-name: menu-in-right;
}
.menu-link:nth-child(5) { animation-delay: 640ms; }

.menu-link img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112%;
  height: auto;
  display: block;
  transform: translate(-50%, -50%) scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.menu-link:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 34px 76px rgba(0, 0, 0, .26);
  filter: saturate(1.1) drop-shadow(0 22px 34px rgba(0, 0, 0, .24));
}

.menu-link:hover img {
  transform: translate(-50%, -50%) scale(1.075);
}

.menu-link:active {
  transform: translateY(3px) scale(.965);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
}

.menu-link:focus-visible,
.official-link:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 5px;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 56px);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

.official-cta {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.official-cta p {
  margin: 0;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1;
  font-weight: 850;
  color: var(--white);
}

.official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 20px 34px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(255, 214, 0, .22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.official-link:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 24px 48px rgba(255, 214, 0, .28);
}

.official-link:active {
  transform: translateY(2px) scale(.98);
}

@keyframes slide-from-left {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translateX(-240px) scale(.84);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes slide-from-right {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translateX(240px) scale(.84);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes menu-in-left {
  from {
    opacity: 0;
    filter: blur(20px) drop-shadow(0 18px 28px rgba(0, 0, 0, .12));
    transform: translateX(-240px) scale(.8);
  }

  to {
    opacity: 1;
    filter: blur(0) drop-shadow(0 20px 30px rgba(0, 0, 0, .22));
    transform: translateX(0) scale(1);
  }
}

@keyframes menu-in-right {
  from {
    opacity: 0;
    filter: blur(20px) drop-shadow(0 18px 28px rgba(0, 0, 0, .12));
    transform: translateX(240px) scale(.8);
  }

  to {
    opacity: 1;
    filter: blur(0) drop-shadow(0 20px 30px rgba(0, 0, 0, .22));
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 72vh;
    padding: 22px 18px 14px;
  }

  .hero-copy {
    width: min(92vw, 620px);
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 58px);
    line-height: .92;
  }

  .menu-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .menu-link {
    border-radius: 999px;
  }

  .footer-inner {
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    width: min(260px, 72vw);
  }

  .official-cta {
    justify-items: center;
  }
}

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