@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg-main: #090909;
  --bg-main-2: #101010;
  --surface: #141414;
  --surface-2: #1d1d1d;
  --ink: #f8fafc;
  --ink-soft: rgba(226, 232, 240, 0.86);
  --ink-muted: rgba(161, 161, 170, 0.9);
  --card-stroke: rgba(255, 255, 255, 0.09);
  --pill: #a60505;
  --pill-ink: #f8fafc;
  --brand: #a60505;
  --brand-light: #d91a1a;
  --brand-dark: #730202;
  --hero-shadow: 0 26px 72px rgba(0, 0, 0, 0.6);
  --card-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #070707 0%, #0b0b0b 42%, #070707 100%);
  color: var(--ink);
  line-height: 1.45;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("./assets/images/imgi_120_664f212b9e15d13d199dd448_Texture 2.webp");
  background-repeat: repeat;
  background-size: 920px auto;
  opacity: 0.06;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 8% 14%, rgba(217, 26, 26, 0.15), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(166, 5, 5, 0.13), transparent 28%),
    radial-gradient(circle at 30% 78%, rgba(255, 68, 68, 0.08), transparent 36%);
  z-index: -1;
}

body.mobile-nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 96px 0 56px;
  overflow: hidden;
}

.hero__bg,
.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg {
  background-image: linear-gradient(180deg, rgba(6, 6, 6, 0.88), rgba(8, 8, 8, 0.94)),
    radial-gradient(circle at 12% 18%, rgba(166, 5, 5, 0.2), transparent 44%),
    radial-gradient(circle at 78% 10%, rgba(115, 2, 2, 0.18), transparent 40%),
    url("./assets/images/imgi_25_6634cb38dc3cb7acca8fa801_BKG.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.98;
  filter: saturate(0.28) hue-rotate(150deg) brightness(0.4) contrast(1.08);
}

.hero__stars {
  background-image: url("./assets/images/imgi_120_664f212b9e15d13d199dd448_Texture 2.webp");
  background-size: 900px auto;
  background-repeat: repeat;
  opacity: 0.05;
}

.top-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(217, 26, 26, 0.24);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.brand img {
  height: 24px;
  width: auto;
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.92);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.95;
  color: #ffd7d7;
}

.nav-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-with-icon img {
  width: 12px;
  height: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn--light {
  background: var(--pill);
  color: var(--pill-ink);
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(115, 2, 2, 0.38);
}

.btn--brand {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border: 1px solid rgba(248, 250, 252, 0.28);
}

.btn--light:hover {
  background: var(--brand-light);
}

.btn--brand:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(248, 250, 252, 0.5);
}

.btn--pill {
  padding: 9px 17px;
  font-size: 12px;
}

.hero-layout {
  position: relative;
  z-index: 3;
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy p {
  margin: 18px 0 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 34ch;
}

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

.hero-platforms {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.hero-cta-block {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-cta-block .hero-actions {
  margin-top: 0;
  justify-content: center;
}

.hero-cta-block .hero-platforms {
  margin-top: 0;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(217, 26, 26, 0.38);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 8px 24px rgba(166, 5, 5, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-platforms__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 208, 208, 0.94);
}

.hero-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(248, 250, 252, 0.95);
  font-size: 14px;
  font-weight: 700;
}

.hero-platform img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.hero-platform:hover {
  color: #ffffff;
}

.hero-scene {
  position: relative;
  min-height: 500px;
}

.hero-scene__main {
  width: min(100%, 820px);
  margin-left: auto;
  filter: drop-shadow(var(--hero-shadow));
}

.hero-scene__girl,
.hero-scene__boy,
.hero-scene__wumpus {
  position: absolute;
  pointer-events: none;
}

.hero-scene__girl {
  width: clamp(120px, 17vw, 190px);
  right: 9%;
  top: 3%;
}

.hero-scene__boy {
  width: clamp(118px, 15vw, 182px);
  left: 5%;
  top: 18%;
}

.hero-scene__wumpus {
  width: clamp(90px, 10vw, 140px);
  right: 0;
  bottom: 8%;
}

.feature-zone {
  position: relative;
  padding: 38px 0 56px;
}

.zone-stars {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/imgi_123_664f212db01d13abd533fda6_Texture 3.webp");
  background-size: 760px auto;
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
}

.stack-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 38px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 44%) minmax(280px, 1fr);
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(166, 5, 5, 0.28);
  background: #ffffff;
  color: var(--brand);
  padding: clamp(20px, 2.4vw, 34px);
  box-shadow: 0 14px 32px rgba(166, 5, 5, 0.18);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: none;
}

.feature-card--one::before {
  background-image: none;
}

.feature-card--two::before {
  background-image: none;
}

.feature-card--three::before {
  background-image: none;
}

.feature-card--four::before {
  background-image: none;
}

.feature-card--five::before {
  background-image: none;
}

.feature-card--six::before {
  background-image: none;
}

.feature-card--flip {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 44%);
}

.feature-card--flip .feature-card__media {
  order: 2;
}

.feature-card__media {
  display: grid;
  place-items: center;
}

.feature-card__media img {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
}

.feature-card__media--tall img {
  width: min(100%, 360px);
}

.feature-card__copy h2 {
  margin: 0;
  max-width: 16ch;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--brand);
}

.feature-card__copy p {
  margin: 16px 0 0;
  max-width: 38ch;
  color: rgba(115, 2, 2, 0.92);
  font-size: 16px;
}

.decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.decor--egg {
  width: clamp(120px, 12vw, 180px);
  left: -50px;
  top: 300px;
}

.decor--cube {
  width: clamp(88px, 8vw, 120px);
  right: 3%;
  top: 170px;
}

.decor--box {
  width: clamp(96px, 9vw, 140px);
  left: 5%;
  bottom: 180px;
}

.ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(217, 26, 26, 0.42);
  border-bottom: 1px solid rgba(217, 26, 26, 0.42);
  background: linear-gradient(180deg, rgba(30, 8, 8, 0.86), rgba(14, 10, 10, 0.9));
  overflow: hidden;
}

.ticker__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker-slide 18s linear infinite;
  will-change: transform;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(31px, 4.4vw, 56px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
  flex-shrink: 0;
}

.ticker__track span {
  display: inline-block;
  width: max-content;
}

.final-cta {
  text-align: center;
  padding: 80px 0 24px;
}

.final-cta h2 {
  margin: 0 0 20px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-footer {
  padding-top: 12px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.5), rgba(8, 8, 8, 0.97));
}

.footer-cast {
  width: min(1080px, 100%);
  margin: 0 auto 26px;
}

.footer-grid {
  border-top: 1px solid rgba(217, 26, 26, 0.34);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 220px));
  justify-content: center;
  gap: 22px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-language {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.72);
}

.footer-brand select {
  margin-top: 8px;
  width: 100%;
  max-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(38, 38, 38, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  padding: 8px 10px;
}

.socials {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.socials a:hover {
  background: rgba(166, 5, 5, 0.28);
}

.socials img {
  width: 14px;
  height: 14px;
}

.footer-col h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 136, 136, 0.95);
}

.footer-col a {
  display: block;
  margin: 6px 0;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
}

.footer-col a:hover {
  text-decoration: underline;
  text-decoration-color: var(--brand-light);
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

.footer-wordmark {
  padding: 30px 12px 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.footer-wordmark img {
  width: min(1765px, 145vw);
  max-width: none;
  margin-left: 0;
  opacity: 0.9;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-copy p,
  .feature-card__copy h2,
  .feature-card__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-platforms {
    justify-content: center;
  }

  .hero-scene {
    min-height: 420px;
  }

  .hero-scene__main {
    margin: 0 auto;
  }

  .hero-scene__boy {
    left: 8%;
    top: 9%;
  }

  .hero-scene__girl {
    right: 9%;
    top: 5%;
  }

  .feature-card,
  .feature-card--flip {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .feature-card--flip .feature-card__media {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(220px, 320px));
    justify-content: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
  }
}

@media (max-width: 860px) {
  .desktop-open {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-block;
  }

  .top-nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px 18px;
    border-radius: 16px;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(217, 26, 26, 0.38);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.54);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-scene {
    min-height: 280px;
  }

  .hero-scene__boy,
  .hero-scene__girl,
  .hero-scene__wumpus {
    display: none;
  }

  .feature-zone {
    padding: 26px 0 46px;
  }

  .ticker__inner {
    min-height: 68px;
  }

  .ticker__track {
    gap: 40px;
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .top-nav {
    width: calc(100% - 12px);
    top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .feature-card {
    border-radius: 26px;
    padding: 18px;
  }

  .feature-card__copy h2 {
    font-size: clamp(26px, 8.8vw, 40px);
  }

  .feature-card__copy p {
    font-size: 14px;
  }

  .decor--egg {
    width: 84px;
    left: -26px;
    top: 420px;
  }

  .decor--cube,
  .decor--box {
    display: none;
  }

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

  .footer-wordmark {
    padding-top: 24px;
  }

  .footer-wordmark img {
    width: 220vw;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .socials a,
  .js .reveal,
  .ticker__inner {
    transition: none;
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
