:root {
  --bg: #030303;
  --panel: #090a0b;
  --panel-2: #111214;
  --text: #f7f3ea;
  --muted: #a3a3a3;
  --faint: #5f6268;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(216, 180, 90, .42);
  --gold: #d8b45a;
  --gold-2: #f0d587;
  --blue: #7682d8;
  --green: #62f27c;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, #050505 0%, #090909 48%, #030303 100%);
  background-size: 74px 74px, 74px 74px, auto;
  font-family: Geist, "Segoe UI", system-ui, sans-serif;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 36px));
  height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(3,3,3,.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240,213,135,.95), rgba(140,104,38,.88)),
    #161616;
  box-shadow: 0 0 0 1px rgba(216,180,90,.28), 0 10px 26px rgba(216,180,90,.14);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.nav-cta {
  padding: 8px 12px;
  margin-top: -8px;
  border: 1px solid rgba(216,180,90,.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(216,180,90,.07);
}

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-link svg,
.discord-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 72px;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font: 800 12px Geist Mono, ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .91;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -.02em;
}

.lead {
  max-width: 700px;
  color: #c8c4bb;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}

.button.primary {
  color: #080808;
  background: linear-gradient(180deg, var(--gold-2), #c6993d);
  border-color: rgba(216,180,90,.7);
  box-shadow: 0 18px 44px rgba(216,180,90,.16);
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.14);
}

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

.button.is-loading {
  pointer-events: none;
  opacity: .72;
}

.hero-visual {
  position: relative;
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font: 800 12px Geist Mono, ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-topline {
  margin-bottom: 12px;
  padding: 0 4px;
}

.visual-topline strong {
  color: var(--gold-2);
}

.device-frame {
  position: relative;
  border: 1px solid rgba(216,180,90,.26);
  border-radius: 14px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(216,180,90,.08), rgba(255,255,255,.018)),
    #070707;
  box-shadow: 0 34px 90px rgba(0,0,0,.56), inset 0 0 0 1px rgba(255,255,255,.025), 0 0 42px rgba(216,180,90,.055);
  overflow: hidden;
}

.device-frame img {
  border-radius: 10px;
}

.strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d8d1bf;
  font: 800 12px Geist Mono, ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.strip span {
  padding-left: 12px;
  border-left: 1px solid rgba(216,180,90,.35);
}

.section {
  padding: 108px 0 42px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.download-card,
.requirements,
details {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.014)),
    var(--panel);
  box-shadow: 0 22px 68px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.018);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease;
}

.feature-grid.four .feature-card {
  min-height: 250px;
}

.feature-card:hover,
.flow-step:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216,180,90,.34);
}

.feature-card p,
.panel-copy p,
.download-section p,
.engine-section p,
details p {
  color: var(--muted);
  line-height: 1.65;
}

.index {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font: 900 12px Geist Mono, ui-monospace, monospace;
}

.flow-section {
  padding: 72px 0 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engine-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 26px;
  align-items: stretch;
  padding: 38px 0 96px;
}

.engine-copy,
.engine-card {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.014)),
    var(--panel);
  box-shadow: 0 22px 68px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.018);
}

.engine-copy {
  padding: 28px;
}

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

.engine-card {
  min-height: 220px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease;
}

.engine-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216,180,90,.34);
}

.engine-card span {
  color: var(--gold);
  font: 900 12px Geist Mono, ui-monospace, monospace;
}

.engine-card strong {
  display: block;
  margin: 54px 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.engine-card p {
  margin: 0;
}

.section-head.center {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head.center p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow-step {
  position: relative;
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.014)),
    var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
  transition: transform .18s ease, border-color .18s ease;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216,180,90,.55), transparent);
}

.flow-step span {
  color: var(--gold);
  font: 900 12px Geist Mono, ui-monospace, monospace;
}

.flow-step strong {
  display: block;
  margin: 52px 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: center;
  margin: 56px 0 58px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(216,180,90,.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 18%, rgba(216,180,90,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 48%, rgba(216,180,90,.045));
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

.split::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(216,180,90,.15), transparent 38%, rgba(216,180,90,.10));
  opacity: .5;
}

.split > * {
  position: relative;
  z-index: 1;
}

.panel-copy {
  padding-right: 18px;
  border-right: 1px solid rgba(216,180,90,.16);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: #d8d8d8;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.image-stack {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0,0,0,.48);
}

.shot-main {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0;
  border-color: rgba(216,180,90,.26);
}

.shot-float {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 52%;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-card {
  padding: 22px;
  border-color: rgba(216,180,90,.22);
}

.download-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
  color: var(--muted);
}

.download-meta strong {
  color: var(--text);
  font-size: 30px;
}

.download-points {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #dcd6c7;
  font-size: 13px;
  font-weight: 700;
}

.download-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 14px rgba(216,180,90,.24);
}

.wide {
  width: 100%;
}

.small {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.download-status {
  min-height: 16px;
  margin: 12px 0 0;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
}

.small strong {
  color: var(--gold-2);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 58px 0 18px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 5px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(216,180,90,.28);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.018);
  transition: transform .18s ease, border-color .18s ease;
}

.contact-card span {
  grid-column: 2;
  color: var(--muted);
  font: 800 12px Geist Mono, ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card strong {
  grid-column: 2;
  color: var(--text);
  font-size: 26px;
  letter-spacing: -.04em;
}

.contact-card svg {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  color: var(--gold-2);
}

.contact-card:hover {
  border-color: rgba(216,180,90,.55);
  transform: translateY(-1px);
}

.requirements {
  margin: 86px 0 20px;
  padding: 24px;
  border-radius: 12px;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.req-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #d8d8d8;
  background: rgba(255,255,255,.025);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(98,242,124,.24);
}

.faq {
  padding-bottom: 110px;
}

details {
  padding: 18px 20px;
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .download-section,
  .contact-section,
  .engine-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: .96;
    letter-spacing: -.045em;
  }

  .feature-grid,
  .feature-grid.four,
  .flow-grid,
  .engine-grid,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .strip {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .image-stack {
    min-height: auto;
  }

  .split {
    gap: 18px;
    margin: 38px 0;
    padding: 18px;
  }

  .panel-copy {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(216,180,90,.15);
    padding-bottom: 16px;
  }

  .shot-main,
  .shot-float {
    position: static;
    width: 100%;
    margin: 0 0 12px;
  }

  .device-frame {
    padding: 8px;
  }
}
