:root {
  --bg: #050805;
  --panel: #0a130d;
  --panel-2: #0d1d12;
  --green: #15d968;
  --green-2: #09a84a;
  --gold: #d9b35a;
  --text: #f4fff8;
  --muted: #b8c9bd;
  --line: rgba(121, 255, 174, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: normal;
  overflow-wrap: normal;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(5, 8, 5, 0.82);
  border-bottom: 1px solid rgba(121, 255, 174, 0.14);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #041006;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(21, 217, 104, 0.35);
}

.brand-text {
  font-size: clamp(1.05rem, 3.8vw, 1.45rem);
  font-weight: 850;
  letter-spacing: 0;
}

.nav-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), #b8ff68);
  color: #041006;
  box-shadow: 0 0 34px rgba(21, 217, 104, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-dark {
  border-color: rgba(217, 179, 90, 0.42);
  background: rgba(6, 14, 9, 0.9);
  color: var(--text);
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 126px 0 76px;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 52%, rgba(21, 217, 104, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(5, 8, 5, 0.96) 0%, rgba(5, 8, 5, 0.74) 42%, rgba(5, 8, 5, 0.2) 82%),
    linear-gradient(0deg, var(--bg), rgba(5, 8, 5, 0.12) 34%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.45rem, 6.2vw, 4.15rem);
}

h2 {
  font-size: clamp(1.85rem, 4.6vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.age-note {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  max-width: 560px;
  margin: 22px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(217, 179, 90, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.44);
  color: #e7f6eb;
  font-size: 0.93rem;
}

.age-note strong {
  color: var(--gold);
}

.section {
  padding: 88px 0;
}

.intro-band {
  padding: 30px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(11, 58, 29, 0.32), rgba(8, 16, 10, 0.84), rgba(79, 61, 18, 0.24));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-grid > div {
  min-width: 0;
}

.stat-value {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(21, 217, 104, 0.12);
  pointer-events: none;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.info-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 44, 25, 0.8), rgba(7, 13, 8, 0.92));
}

.info-card h3 {
  color: #effff4;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-live {
  background:
    linear-gradient(180deg, rgba(10, 29, 18, 0.55), rgba(5, 8, 5, 0.95)),
    var(--bg);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(21, 217, 104, 0.22);
  border-radius: 8px;
  background: rgba(21, 217, 104, 0.07);
  color: #dfffe8;
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-section {
  padding: 58px 0;
}

.legal-box {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(217, 179, 90, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(35, 30, 13, 0.52), rgba(8, 18, 11, 0.92));
}

.legal-box h2 {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
}

.legal-copy p {
  margin: 0 0 12px;
  color: #dbe9df;
  font-size: 0.98rem;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.final-cta {
  padding: 86px 0 96px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 217, 104, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(5, 8, 5, 1), rgba(8, 22, 12, 1));
}

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

.final-inner p {
  margin: 18px auto 26px;
  max-width: 620px;
  color: var(--muted);
}

.center {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .hero-inner,
  .split,
  .split-reverse,
  .legal-box {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 12ch;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .nav {
    min-height: 68px;
    gap: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 8, 5, 0.96), rgba(5, 8, 5, 0.72)),
      linear-gradient(0deg, var(--bg), rgba(5, 8, 5, 0.18) 40%);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.18rem, 11vw, 3.2rem);
  }

  .hero-text {
    margin-top: 18px;
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .btn {
    flex: 1 1 150px;
  }

  .age-note {
    align-items: flex-start;
  }

  .section {
    padding: 58px 0;
  }

  .stat-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 28px;
  }

  .info-card {
    min-height: 0;
  }

  .legal-box {
    padding: 22px;
  }

  .final-cta {
    padding: 64px 0 72px;
  }
}
