/* ============================================
   GADZER STUDIO — stylesheet
   ============================================ */

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

:root {
  --bg: #07080b;
  --bg-raised: #0d0f13;
  --bg-card: #0b0d11;
  --cyan: #29d6f2;
  --cyan-bright: #5ce8ff;
  --cyan-dim: rgba(41, 214, 242, 0.14);
  --border: rgba(41, 214, 242, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --white: #f2f5f7;
  --gray: #9aa4ad;
  --gray-dim: #626c75;
  --magenta: #ff3fd8;

  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;

  --cut: 18px;
  --cut-sm: 10px;
  --maxw: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
textarea {
  font-family: inherit;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- background ambience ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      650px 500px at 82% 8%,
      rgba(41, 214, 242, 0.06),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 10% 90%,
      rgba(41, 214, 242, 0.04),
      transparent 60%
    );
}

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan);
  display: block;
}
.eyebrow.center {
  justify-content: center;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}
.accent {
  color: var(--cyan);
}
.accent-magenta {
  color: var(--magenta);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--gray);
  font-size: 16px;
}

section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

/* ---------- corner-cut panel ---------- */
.panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}
.panel::before,
.panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--cyan);
  border-left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.8;
}
.panel::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--cyan);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  opacity: 0.8;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--cyan);
  color: #04141a;
}
.btn-primary:hover {
  background: var(--cyan-bright);
  box-shadow: 0 0 28px rgba(41, 214, 242, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- logo (hexagon G) ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.logo-word span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gray);
}

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 8, 11, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 6px;
  color: var(--gray);
  transition: color 0.18s ease;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a.active {
  color: var(--cyan);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  color: var(--white);
}
.mobile-panel {
  display: none;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-panel.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(7, 8, 11, 0.98);
    border-bottom: 1px solid var(--border-soft);
    padding: 8px 32px 26px;
  }
  .mobile-panel a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 15px;
    color: var(--white);
  }
  .mobile-panel .btn {
    margin-top: 18px;
  }
}

/* ============ HEXAGON GRAPHIC (shared hero/about/privacy visual) ============ */
.hex-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-figure .wire {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.hex-figure .hex-core {
  width: 56%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(41, 214, 242, 0.45))
    drop-shadow(0 0 70px rgba(41, 214, 242, 0.2));
}
.hex-figure .ground {
  position: absolute;
  bottom: 6%;
  width: 82%;
  height: 30%;
  background: radial-gradient(
    ellipse at center,
    rgba(41, 214, 242, 0.16),
    transparent 70%
  );
  filter: blur(2px);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  /* display: flex;
  align-items: center; */
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 8, 11, 0.96) 0%,
      rgba(7, 8, 11, 0.84) 26%,
      rgba(7, 8, 11, 0.4) 54%,
      rgba(7, 8, 11, 0.12) 78%
    ),
    linear-gradient(180deg, rgba(7, 8, 11, 0) 55%, rgba(7, 8, 11, 0.95) 100%);
}
.hero > .wrap {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 600px;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin: 22px 0 24px;
}
.hero p.lead {
  color: var(--gray);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.social-row {
  display: flex;
  gap: 14px;
}
.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  color: var(--gray);
  transition: all 0.18s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.social-icon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.hero-side-labels {
  position: absolute;
  z-index: 2;
  right: 6%;
  top: 24%;
  display: flex;
  flex-direction: column;
  gap: 34px;
  text-align: right;
}
.hero-side-labels .tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.hero-side-labels .val {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--white);
  margin-top: 2px;
}
.hero-side-labels .rule {
  width: 20px;
  height: 2px;
  background: var(--cyan);
  margin: 6px 0 0 auto;
}
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.scroll-cue .pill {
  width: 22px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.scroll-cue .pill::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scrollDot 1.6s infinite ease;
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ============ ABOUT ============ */
#about {
  background:
    radial-gradient(
      700px 550px at 12% -5%,
      rgba(41, 214, 242, 0.07),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 100% 90%,
      rgba(255, 63, 216, 0.045),
      transparent 60%
    );
}
.about .wrap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.about h2 {
  font-size: clamp(38px, 5.6vw, 58px);
  margin-bottom: 22px;
}
.about p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 480px;
}
.about .hex-figure {
  aspect-ratio: 4/3;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 20px;
}
.stat-grid .stat {
  padding: 0 28px;
  border-left: 1px solid var(--border-soft);
}
.stat-grid .stat:first-child {
  border-left: none;
}
.stat-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 18px;
}
.stat-icon svg {
  width: 22px;
  height: 22px;
}
.stat h3 {
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.stat .rule {
  width: 22px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 14px;
}
.stat p {
  color: var(--gray);
  font-size: 14.5px;
  margin: 0;
  max-width: none;
}

/* ============ GAMES ============ */
#games {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      750px 550px at 88% 0%,
      rgba(41, 214, 242, 0.07),
      transparent 60%
    ),
    radial-gradient(
      600px 450px at 5% 100%,
      rgba(255, 63, 216, 0.05),
      transparent 60%
    );
}
#games .section-head {
  position: relative;
}
#games .section-head::before,
#games .section-head::after {
  content: "";
  position: absolute;
  top: -30px;
  width: 1px;
  height: 130px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(41, 214, 242, 0.55),
    transparent
  );
}
#games .section-head::before {
  left: -140px;
}
#games .section-head::after {
  right: -140px;
}
@media (max-width: 900px) {
  #games .section-head::before,
  #games .section-head::after {
    display: none;
  }
}
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}
.game-card {
  padding: 38px;
  display: flex;
  gap: 26px;
}
.game-icon {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.game-icon.neon {
  background: linear-gradient(160deg, #0b1620, #132233);
}
.game-icon.clash {
  background: linear-gradient(160deg, #171022, #210f1c);
}
.game-icon svg {
  width: 100%;
  height: 100%;
}
.game-info h3 {
  font-size: 24px;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.game-info .sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gray-dim);
  margin-bottom: 14px;
}
.game-info p.desc {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 18px;
  max-width: 340px;
}
.platform-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.platform-row .plat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--gray);
}
.platform-row .plat svg {
  width: 16px;
  height: 16px;
}
.platform-row .divider {
  width: 1px;
  height: 14px;
  background: var(--border-soft);
}

.soon-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.soon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 34px;
}
.soon-card .left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.soon-card .hex-mini {
  width: 40px;
  height: 46px;
  object-fit: contain;
  opacity: 0.55;
}
.soon-card h4 {
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.soon-card .tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.soon-card p {
  color: var(--gray);
  font-size: 13.5px;
  margin: 0;
}
.soon-card svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ============ TEAM ============ */
#team {
  background:
    radial-gradient(
      700px 550px at 8% 100%,
      rgba(41, 214, 242, 0.06),
      transparent 60%
    ),
    radial-gradient(
      550px 420px at 95% 0%,
      rgba(41, 214, 242, 0.05),
      transparent 60%
    );
}
.future-band {
  position: relative;
  overflow: hidden;
}
.future-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    rgba(41, 214, 242, 0.35) 1px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(
    500px 260px at 100% 100%,
    rgba(0, 0, 0, 0.9),
    transparent 75%
  );
  mask-image: radial-gradient(
    500px 260px at 100% 100%,
    rgba(0, 0, 0, 0.9),
    transparent 75%
  );
  pointer-events: none;
}
.future-band > * {
  position: relative;
  z-index: 1;
}
.team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}
.founder-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}
.founder-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1116, #04070a);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.founder-photo svg.silhouette {
  width: 62%;
  opacity: 0.9;
}
.founder-photo .hexwatermark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 62px;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
}
.founder-info .role {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.founder-info h3 {
  font-size: 38px;
  margin-bottom: 14px;
}
.founder-info .rule {
  width: 26px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 16px;
}
.founder-info p {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--gray);
}
.tag-pill svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}
.tags-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.values-card {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
}
.value-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.value-row:last-child {
  border-bottom: none;
}
.value-row .v-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.value-row .v-icon svg {
  width: 20px;
  height: 20px;
}
.value-row h4 {
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.value-row p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

.future-band {
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}
.future-figures {
  width: 190px;
  height: 120px;
  opacity: 0.9;
}
.future-band .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.future-band h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
.future-band p {
  color: var(--gray);
  font-size: 14.5px;
  max-width: 520px;
  margin: 0;
}

/* ============ CONTACT ============ */
#contact {
  position: relative;
  overflow: hidden;
}
.contact-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.starfield {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1.4px 1.4px at 8% 15%,
      rgba(255, 255, 255, 0.85),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 18% 42%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1.6px 1.6px at 27% 8%,
      rgba(255, 255, 255, 0.9),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 38% 60%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1.4px 1.4px at 47% 22%,
      rgba(255, 255, 255, 0.8),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 58% 38%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      1.6px 1.6px at 66% 12%,
      rgba(255, 255, 255, 0.9),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 74% 48%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1.4px 1.4px at 83% 20%,
      rgba(255, 255, 255, 0.8),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 92% 55%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1.6px 1.6px at 12% 72%,
      rgba(255, 255, 255, 0.7),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 64% 78%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1.4px 1.4px at 88% 82%,
      rgba(255, 255, 255, 0.75),
      transparent 60%
    );
  background-repeat: no-repeat;
  opacity: 0.85;
}
.contact-logo {
  position: absolute;
  top: 6%;
  right: 2%;
  width: min(46vw, 620px);
  height: auto;
  opacity: 0.32;
  filter: drop-shadow(0 0 60px rgba(41, 214, 242, 0.35));
  transform: rotate(2deg);
}
.earth-glow {
  position: absolute;
  left: 50%;
  bottom: -46%;
  transform: translateX(-50%);
  width: 150%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(41, 214, 242, 0.28),
    rgba(6, 10, 15, 0.85) 45%,
    transparent 68%
  );
  filter: blur(3px);
}
.earth-rim {
  position: absolute;
  left: 50%;
  bottom: -52%;
  transform: translateX(-50%);
  width: 150%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border-top: 1.5px solid rgba(41, 214, 242, 0.55);
  box-shadow: 0 -4px 40px rgba(41, 214, 242, 0.35);
}
.contact .wrap {
  position: relative;
  z-index: 1;
}

.contact .wrap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 20px;
}
.contact p.lead {
  color: var(--gray);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 34px;
}
.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.contact-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.contact-link .ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-link .ic svg {
  width: 18px;
  height: 18px;
}
.contact-link .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 4px;
}
.contact-link .value {
  font-size: 14.5px;
  color: var(--white);
}

.contact-form {
  padding: 40px;
  position: relative;
}
.contact-form h3 {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.field {
  position: relative;
  margin-bottom: 18px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-soft);
  color: var(--white);
  padding: 15px 44px 15px 16px;
  font-size: 14.5px;
  transition: border-color 0.18s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field .fi {
  position: absolute;
  right: 15px;
  top: 16px;
  width: 17px;
  height: 17px;
  color: var(--gray-dim);
  pointer-events: none;
}
.field textarea + .fi {
  top: auto;
  bottom: 15px;
}
.form-msg {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--cyan);
  min-height: 18px;
}

/* ============ FOOTER ============ */
footer {
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.footer-top {
  padding: 52px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  margin: 16px 0 0;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: var(--gray);
  font-size: 14.5px;
  transition: color 0.18s ease;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-cta p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 14px;
  max-width: 220px;
}
.footer-cta a.get-in-touch {
  color: var(--cyan);
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-cta a.get-in-touch svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  margin-top: 0;
  border-top: 1px solid var(--border-soft);
  padding: 26px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-dim);
  letter-spacing: 0.03em;
}
.footer-bottom .tagline {
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom .tagline::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* ============ PRIVACY PAGE ============ */
.privacy-hero {
  padding: 150px 0 60px;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.privacy-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.privacy-top-grid h1 {
  font-size: clamp(34px, 5vw, 50px);
  margin: 16px 0 18px;
}
.privacy-top-grid .updated {
  color: var(--gray-dim);
  font-size: 13.5px;
  margin-bottom: 14px;
}
.privacy-top-grid p {
  color: var(--gray);
  font-size: 15px;
  max-width: 520px;
}
.privacy-hero .hex-figure {
  aspect-ratio: 1/1;
}

.toc-panel {
  padding: 26px;
  position: sticky;
  top: 104px;
}
.toc-panel h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.toc-panel ol {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  counter-reset: toc;
}
.toc-panel li {
  counter-increment: toc;
  font-size: 14px;
  color: var(--gray);
  padding: 9px 0;
  cursor: pointer;
}
.toc-panel li::before {
  content: counter(toc) ". ";
  color: var(--gray-dim);
}
.toc-panel li.active {
  color: var(--cyan);
}
.toc-note {
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
  display: flex;
  gap: 14px;
}
.toc-note .shield {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--cyan);
}
.toc-note h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.toc-note p {
  color: var(--gray);
  font-size: 13px;
  margin: 0;
}

.policy-body .panel {
  padding: 44px;
}
.policy-block {
  margin-bottom: 36px;
}
.policy-block:last-child {
  margin-bottom: 0;
}
.policy-block h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}
.policy-block h3 .num {
  color: var(--cyan);
}
.policy-block p {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 10px;
}
.policy-block ul {
  margin: 10px 0 0;
}
.policy-block ul li {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.policy-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
}
.policy-block ul li strong {
  color: var(--white);
  font-weight: 600;
}
.read-full {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 6px;
}
.read-full svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .toc-panel {
    position: relative;
    top: 0;
  }
  .privacy-top-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .about .wrap-inner,
  .contact .wrap-inner,
  .founder-card,
  .team-top {
    grid-template-columns: 1fr;
  }
  .hero-side-labels {
    display: none;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .stat-grid .stat:nth-child(2) {
    border-left: 1px solid var(--border-soft);
  }
  .stat-grid .stat:nth-child(odd) {
    border-left: none;
  }
  .games-grid,
  .soon-row {
    grid-template-columns: 1fr;
  }
  .game-card {
    flex-direction: column;
  }
  .founder-card {
    grid-template-columns: 1fr;
  }
  .future-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .future-figures {
    margin: 0 auto;
  }
  .contact-links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 76px 0;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid .stat {
    border-left: none !important;
    border-top: 1px solid var(--border-soft);
    padding-top: 28px;
  }
  .stat-grid .stat:first-child {
    border-top: none;
    padding-top: 0;
  }
  .hero {
    background-position: 65% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(7, 8, 11, 0.55) 0%,
      rgba(7, 8, 11, 0.88) 55%,
      rgba(7, 8, 11, 0.98) 100%
    );
  }
  .contact-logo {
    width: 80vw;
    top: 2%;
    right: -10%;
    opacity: 0.22;
  }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
