:root {
  --bg: #0d0d0d;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f6efe8;
  --muted: rgba(246, 239, 232, 0.72);
  --primary: #f2913d;
  --primary-deep: #f27649;
  --accent: #d94436;
  --rose: #8c4659;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: min(1380px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 145, 61, 0.18), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(217, 68, 54, 0.2), transparent 26%),
    linear-gradient(180deg, #1a0f0d 0%, #0d0d0d 46%, #130d0c 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}

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

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

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

#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: 8%;
  left: -10%;
  background: var(--primary);
}

.page-glow-right {
  top: 44%;
  right: -14%;
  background: var(--accent);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(13, 13, 13, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(242, 145, 61, 0.25));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-toggle:hover {
  border-color: rgba(242, 145, 61, 0.55);
  background: rgba(242, 145, 61, 0.08);
  transform: translateY(-1px);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.main-nav,
.nav-actions,
.hero-actions,
.cta-actions,
.footer-shell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.main-nav {
  gap: 16px;
}

.main-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 55%, var(--accent) 100%);
  box-shadow: 0 18px 34px rgba(242, 118, 73, 0.28);
  color: #fff6ee;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(242, 145, 61, 0.55);
  box-shadow: 0 16px 28px rgba(242, 145, 61, 0.12);
}

.hero {
  padding: 72px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(760px, 1.65fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.feature-band h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero h1 {
  display: grid;
  gap: 0.12em;
  margin-top: 16px;
  font-size: clamp(3.35rem, 5.2vw, 5.25rem);
  max-width: 14ch;
  text-wrap: unset;
}

.hero-line {
  display: block;
}

.hero-line-top {
  white-space: nowrap;
}

.hero h1 em {
  color: var(--primary);
  text-shadow: 0 0 28px rgba(242, 145, 61, 0.18);
  font-style: normal;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-kicker-line {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-text,
.feature-band-text,
.cta-panel p,
.hero-card-content p,
.info-card p,
.rules-list,
.site-footer {
  color: var(--muted);
}

.hero-text {
  max-width: 72ch;
  font-size: 1.08rem;
  line-height: 1.86;
  margin: 24px 0 0;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article,
.info-card,
.rules-card,
.cta-panel,
.feature-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  padding: 20px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 430px);
  padding: 34px 0;
}

.hero-card {
  position: relative;
  width: min(100%, 402px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(242, 145, 61, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(11, 11, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.56);
  transform-style: preserve-3d;
  transition: transform 160ms ease;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 242, 228, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(140, 70, 89, 0.28), rgba(13, 13, 13, 0.1));
  padding: 12px;
}

.card-noise {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orbit-one {
  width: 360px;
  height: 360px;
  top: -40px;
  right: -70px;
}

.hero-orbit-two {
  width: 200px;
  height: 200px;
  bottom: 86px;
  left: -70px;
}

.hero-card-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.14), rgba(13, 13, 13, 0.88));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 12px;
  background: rgba(242, 145, 61, 0.16);
  color: #ffe4cc;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #84e953;
  box-shadow: 0 0 12px var(--primary);
}

.hero-card-content h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.82rem);
  line-height: 1.15;
  max-width: none;
  white-space: nowrap;
}

.hero-card-content p {
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.hero-floating strong {
  display: block;
  font-size: 0.9rem;
}

.hero-floating span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-floating-top {
  top: 0;
  left: -18px;
  max-width: 190px;
}

.hero-floating-bottom {
  right: 0;
  bottom: 0;
  max-width: 200px;
}

.hero-floating-players strong {
  line-height: 1.3;
}

.floating-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(242, 145, 61, 0.14);
  color: #ffd8b7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-band,
.cta-panel {
  padding: 32px;
  border-radius: 32px;
}

.feature-band {
  margin: 24px auto 0;
}

.feature-band-grid,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.45fr);
  gap: 42px;
  align-items: start;
}

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

.feature-intro h2 {
  max-width: 9ch;
  line-height: 1.02;
}

.feature-band-content {
  display: grid;
  gap: 26px;
  align-content: center;
  min-height: 100%;
}

.feature-band-text {
  max-width: 68ch;
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.88;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: end;
}

.feature-point {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.feature-point-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-point h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.feature-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section {
  padding: 110px 0 0;
}

.section-contrast {
  padding-bottom: 10px;
}

.section-heading {
  margin-bottom: 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.rules-card {
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.info-card::after,
.rules-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 145, 61, 0.16), transparent 68%);
  pointer-events: none;
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.info-card h3,
.rules-card h3 {
  margin: 0 0 14px;
  font-size: 1.24rem;
}

.info-card p {
  margin: 0;
  line-height: 1.75;
}

.rules-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rules-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.site-footer {
  padding: 36px 0 46px;
}

.footer-shell {
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .cards-grid,
  .rules-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-visual-shell {
    width: min(100%, 430px);
  }

  .feature-band-grid {
    grid-template-columns: 1fr;
  }

  .feature-intro h2 {
    max-width: none;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }

  .feature-band-content {
    align-content: start;
  }

  .hero-line-top {
    white-space: normal;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9vw, 4.5rem);
    max-width: 12ch;
  }

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

  .hero-floating {
    position: static;
    max-width: none;
  }

  .hero-visual-shell {
    display: grid;
    gap: 14px;
    padding: 0;
    width: min(100%, 420px);
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .brand {
    justify-content: flex-start;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(31, 20, 17, 0.96), rgba(13, 13, 13, 0.94));
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 220ms ease,
      padding 220ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 320px;
    opacity: 1;
    padding: 18px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 8px 0;
    font-size: 1rem;
  }

  .nav-actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-copy {
    text-align: center;
  }

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

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 100%);
  }

  .nav-shell {
    gap: 12px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.8rem);
    max-width: none;
  }

  .hero-line-top {
    white-space: normal;
  }

  .feature-band,
  .cta-panel,
  .info-card,
  .rules-card,
  .hero-card {
    border-radius: 24px;
  }

  .hero-card-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .hero-floating-top,
  .hero-floating-bottom {
    left: auto;
    right: auto;
    max-width: none;
  }

  .hero-card img {
    padding: 10px;
  }

  .hero-card-content h2 {
    font-size: 1.8rem;
  }

  .feature-band h2,
  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-stats article,
  .feature-band,
  .cta-panel,
  .info-card,
  .rules-card {
    padding: 20px;
  }

  .site-footer,
  .footer-shell {
    text-align: center;
  }

  .footer-shell {
    flex-direction: column;
  }
}
