:root {
  color-scheme: dark;
  --navy: #070c18;
  --navy-2: #0b1222;
  --graphite: #151923;
  --graphite-2: #1a202d;
  --gold: #d7b465;
  --gold-2: #f0d88f;
  --off-white: #f6f2e8;
  --muted: #b8c0cf;
  --line: rgba(246, 242, 232, 0.13);
  --blue: #67d1ff;
  --purple: #9f7bff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --font-heading: Sora, Montserrat, "Segoe UI", system-ui, sans-serif;
  --font-body: Inter, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 82% 7%, rgba(215, 180, 101, 0.08), transparent 24rem),
    radial-gradient(circle at 16% 34%, rgba(103, 209, 255, 0.06), transparent 22rem),
    linear-gradient(180deg, var(--navy) 0%, #090f1d 48%, #050914 100%);
  color: var(--off-white);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(246, 242, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 232, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
  opacity: 0.32;
}

body::after {
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(215, 180, 101, 0.08) 38.1%, transparent 38.45%),
    linear-gradient(160deg, transparent 0 68%, rgba(246, 242, 232, 0.04) 68.1%, transparent 68.35%);
  opacity: 0.55;
  animation: ambientLineDrift 32s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  font-weight: 760;
}

h1 {
  font-size: clamp(2.65rem, 8vw, 5.9rem);
  max-width: 10.5ch;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--gold);
  color: #14100a;
  padding: 0.75rem 1rem;
  border-radius: 0.35rem;
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 12, 24, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 800;
  transition: color 180ms ease, opacity 180ms ease;
}

.brand span {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: clamp(3.25rem, 15vw, 3.75rem);
  max-width: min(52vw, 13.5rem);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 16px rgba(215, 180, 101, 0.18));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 180, 101, 0.65);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, rgba(215, 180, 101, 0.18), rgba(103, 209, 255, 0.08));
  color: var(--gold-2);
  font-size: 0.82rem;
}

.nav-toggle {
  display: grid;
  gap: 0.28rem;
  width: 2.75rem;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--off-white);
}

.nav-toggle span:not(.sr-only) {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.nav-menu {
  position: fixed;
  inset: 94px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(7, 12, 24, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  padding: 0.85rem;
  border-radius: 0.4rem;
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu .nav-cta {
  color: #111;
  background: var(--gold);
  text-align: center;
}

.legal-nav {
  position: static;
  display: flex;
  flex-direction: row;
  inset: auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.legal-nav a {
  padding: 0.65rem 0.75rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 94px);
  display: grid;
  align-items: center;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 24, 0.98) 0%, rgba(7, 12, 24, 0.86) 42%, rgba(7, 12, 24, 0.42) 100%),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(215, 180, 101, 0.035) 35px, transparent 36px);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 46rem;
  height: 46rem;
  left: -18rem;
  top: 6rem;
  background: radial-gradient(circle, rgba(215, 180, 101, 0.13), rgba(103, 209, 255, 0.04) 42%, transparent 68%);
  filter: blur(10px);
  opacity: 0.82;
  pointer-events: none;
  animation: heroLightDrift 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-subline,
.intro-text,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(215, 180, 101, 0.34);
}

.hero-actions,
.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.45rem;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #12100a;
  box-shadow: 0 12px 30px rgba(215, 180, 101, 0.18);
}

.button-outline {
  border-color: rgba(246, 242, 232, 0.24);
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 4px rgba(103, 209, 255, 0.14), 0 18px 38px rgba(0, 0, 0, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(215, 180, 101, 0.18), 0 20px 44px rgba(215, 180, 101, 0.22);
}

.hero-visual {
  position: relative;
  min-height: clamp(26rem, 84vw, 34rem);
  overflow: visible;
  animation: heroVisualIn 780ms ease-out 180ms both;
}

.hero-slab-stage {
  position: relative;
  min-height: inherit;
  isolation: isolate;
}

.hero-slab-stage::before {
  content: "";
  position: absolute;
  inset: 10% 7% 8%;
  z-index: 0;
  border: 1px solid rgba(246, 242, 232, 0.1);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(215, 180, 101, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(26, 32, 45, 0.54), rgba(7, 12, 24, 0.18));
  box-shadow: inset 0 0 38px rgba(215, 180, 101, 0.05), 0 26px 80px rgba(0, 0, 0, 0.28);
}

.hero-slab {
  position: absolute;
  z-index: 1;
  width: clamp(8.6rem, 34vw, 13.8rem);
  aspect-ratio: 2530 / 4303;
  padding: 0.28rem;
  border: 1px solid rgba(246, 242, 232, 0.14);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, rgba(246, 242, 232, 0.12), rgba(7, 12, 24, 0.72));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), 0 0 28px rgba(215, 180, 101, 0.08);
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-slab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.55rem;
  filter: saturate(0.96) contrast(1.02);
}

.hero-slab-left {
  left: 4%;
  top: 17%;
  transform: rotate(-8deg);
}

.hero-slab-main {
  left: 50%;
  top: 5%;
  z-index: 3;
  width: clamp(10rem, 39vw, 15.6rem);
  transform: translateX(-50%);
}

.hero-slab-right {
  right: 4%;
  top: 19%;
  z-index: 2;
  transform: rotate(7deg);
}

.hero-visual:hover .hero-slab-left {
  transform: translateY(-0.35rem) rotate(-8deg);
}

.hero-visual:hover .hero-slab-main {
  transform: translateX(-50%) translateY(-0.45rem);
}

.hero-visual:hover .hero-slab-right {
  transform: translateY(-0.35rem) rotate(7deg);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-band {
  background: linear-gradient(180deg, rgba(21, 25, 35, 0.52), rgba(11, 18, 34, 0.72));
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  gap: 2rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.card-grid,
.process-list,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  margin-top: 2rem;
}

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(26, 32, 45, 0.92), rgba(15, 19, 29, 0.88));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 180, 101, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.card p,
.trust-grid p,
.process-list p,
.faq-list p,
.site-footer p,
address {
  color: var(--muted);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.legal-page h2 {
  max-width: none;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.legal-page .card {
  margin-top: 1rem;
}

.legal-page a {
  color: var(--gold-2);
  font-weight: 750;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(215, 180, 101, 0.35);
  color: var(--gold-2);
  font-weight: 850;
  font-size: 0.8rem;
  box-shadow: 0 0 18px rgba(215, 180, 101, 0.08);
}

.esports {
  display: grid;
  gap: 1.5rem;
}

.esports-panel {
  border-left: 2px solid var(--gold);
  padding-left: 1.3rem;
}

.signal-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.035);
}

.signal-list span::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(103, 209, 255, 0.7);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  max-width: 13ch;
}

.tcg-marquee {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(26, 32, 45, 0.72), rgba(10, 15, 28, 0.78));
  box-shadow: inset 0 0 34px rgba(215, 180, 101, 0.04);
}

.tcg-marquee::before,
.tcg-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2.75rem, 9vw, 7rem);
  pointer-events: none;
}

.tcg-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 15, 28, 0.98), rgba(10, 15, 28, 0));
}

.tcg-marquee::after {
  right: 0;
  background: linear-gradient(90deg, rgba(10, 15, 28, 0), rgba(10, 15, 28, 0.98));
}

.tcg-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: tcgMarquee 34s linear infinite;
}

.tcg-marquee:hover .tcg-track {
  animation-play-state: paused;
}

.tcg-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: 1rem 0.65rem;
}

.tcg-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(9rem, 28vw, 12rem);
  height: clamp(4.75rem, 16vw, 6.2rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(246, 242, 232, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tcg-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 180, 101, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(246, 242, 232, 0.08), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.tcg-logo-card img {
  max-width: 76%;
  max-height: 3.6rem;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.86) brightness(0.96);
  transition: opacity 180ms ease, filter 180ms ease;
}

.tcg-logo-card:hover img {
  opacity: 1;
  filter: saturate(0.95) brightness(1.04) drop-shadow(0 0 12px rgba(215, 180, 101, 0.12));
}

.tcg-logo-card-text span {
  color: var(--off-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.82;
}

.tcg-logo-card-text {
  gap: 0.35rem;
}

.tcg-logo-card-text .tcg-status {
  padding: 0.16rem 0.42rem;
  border: 1px solid rgba(215, 180, 101, 0.34);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(215, 180, 101, 0.08);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0.9;
}

.service-card {
  display: grid;
  align-content: start;
}

.service-card a {
  width: fit-content;
  margin-top: 0.6rem;
  color: var(--gold-2);
  font-weight: 850;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--off-white);
  text-shadow: 0 0 18px rgba(215, 180, 101, 0.28);
}

.process-list {
  counter-reset: process;
  padding: 0;
  margin-top: 2rem;
  list-style: none;
}

.process-list li {
  counter-increment: process;
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(7, 12, 24, 0.52);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-2);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 850;
}

.process-list span {
  display: block;
  font-weight: 850;
  margin-bottom: 0.35rem;
}

.process-list p {
  margin-bottom: 0;
}

.trust-grid article {
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background-color 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(215, 180, 101, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

summary {
  cursor: pointer;
  padding: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

details p {
  padding: 0 1.1rem 1.1rem;
  margin: 0;
}

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, rgba(215, 180, 101, 0.12), rgba(103, 209, 255, 0.06));
  border-block: 1px solid var(--line);
}

.final-cta-inner {
  display: grid;
  max-width: 760px;
}

.final-cta h2 {
  max-width: 15ch;
}

.site-footer {
  padding: 2.5rem 0;
  background: #050914;
}

.footer-logo {
  width: auto;
  height: clamp(1.9rem, 9vw, 2.55rem);
  max-width: min(58vw, 9.5rem);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(215, 180, 101, 0.14));
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a,
address a {
  color: var(--gold-2);
  font-weight: 750;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
address a:hover,
address a:focus-visible {
  color: var(--off-white);
  text-shadow: 0 0 16px rgba(215, 180, 101, 0.24);
}

.hero .eyebrow,
.hero h1,
.hero-subline,
.hero-actions {
  animation: heroContentIn 640ms ease-out both;
}

.hero .eyebrow {
  animation-delay: 80ms;
}

.hero h1 {
  animation-delay: 150ms;
}

.hero-subline {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 300ms;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLightDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(4rem, -1.5rem, 0);
  }
}

@keyframes ambientLineDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(1.5rem, -1rem, 0);
  }
}

@keyframes tcgMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 720px) {
  .three {
    grid-template-columns: repeat(3, 1fr);
  }

  .split,
  .esports,
  .footer-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 980px) {
  .nav {
    min-height: 112px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .brand-logo {
    height: 5rem;
    max-width: 18rem;
  }

  .nav-menu a {
    padding: 0.65rem 0.75rem;
    font-size: 0.92rem;
  }

  .nav-menu .nav-cta {
    padding-inline: 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-slab-stage::before {
    inset: 8% 2% 6% 8%;
  }

  .hero-slab {
    width: min(29vw, 14.5rem);
  }

  .hero-slab-left {
    left: 3%;
    top: 21%;
  }

  .hero-slab-main {
    top: 3%;
    width: min(34vw, 17.2rem);
  }

  .hero-slab-right {
    right: 0;
    top: 24%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }
}

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

  .tcg-track,
  .tcg-marquee-group {
    width: 100%;
  }

  .tcg-track {
    flex-wrap: wrap;
  }

  .tcg-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tcg-marquee-group[aria-hidden="true"] {
    display: none;
  }
}
