:root {
  --bg: #121417;
  --bg-elevated: #171b22;
  --bg-panel: rgba(26, 32, 42, 0.86);
  --bg-soft: #1c2230;
  --surface: rgba(34, 42, 56, 0.78);
  --surface-strong: rgba(42, 51, 68, 0.92);
  --text: #eaeaea;
  --text-muted: #aab2c5;
  --text-soft: #8791a7;
  --line: rgba(198, 167, 94, 0.18);
  --line-strong: rgba(198, 167, 94, 0.35);
  --accent: #c6a75e;
  --accent-bright: #e0c47a;
  --accent-faint: rgba(198, 167, 94, 0.16);
  --blue-panel: rgba(77, 116, 178, 0.18);
  --blue-tile: #5d8be0;
  --blue-tile-soft: rgba(93, 139, 224, 0.22);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 73, 118, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(198, 167, 94, 0.08), transparent 24%),
    linear-gradient(180deg, #13161d 0%, #111319 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

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

button,
.button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(18, 20, 23, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header-compact {
  position: relative;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

.brand-footer .brand-logo {
  height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero-section {
  position: relative;
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.hero-copy,
.hero-panel-frame,
.feature-card,
.step-card,
.download-panel,
.support-card,
.legal-content,
.legal-nav {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  position: relative;
  padding: 30px 30px 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(25, 31, 43, 0.9), rgba(19, 23, 31, 0.88));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(198, 167, 94, 0.08);
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 20px;
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.15rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lead,
.section-subtitle,
.legal-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #d0b06a 0%, #b89349 100%);
  color: #131417;
  box-shadow: 0 18px 40px rgba(198, 167, 94, 0.2);
}

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

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

.hero-point {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-point-label,
.panel-kicker,
.step-index {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.hero-panel-frame {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(28, 34, 48, 0.96), rgba(21, 26, 36, 0.94));
}

.hero-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.panel-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(31, 38, 52, 0.98), rgba(24, 29, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 1180 / 2290;
  object-fit: contain;
  max-height: 500px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
}

.logic-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.logic-point {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.logic-label {
  display: block;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logic-point strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-panel-note {
  margin-top: 18px;
  color: var(--text-muted);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-orb-left {
  top: -40px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(69, 99, 153, 0.34), transparent 64%);
}

.hero-orb-right {
  top: 120px;
  right: -110px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(198, 167, 94, 0.14), transparent 68%);
}

.section {
  padding: 62px 0;
}

.section-grid,
.band-grid,
.download-panel,
.support-layout,
.legal-layout {
  display: grid;
  gap: 28px;
}

.section-grid,
.band-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.section-copy p,
.legal-content p,
.legal-content li,
.support-card p,
.support-card li {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.section-copy p + p,
.legal-content section + section,
.faq-item + .faq-item {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading-centered {
  justify-items: center;
  text-align: center;
}

.section-subtitle {
  max-width: 780px;
  margin: 0;
}

.steps-grid,
.feature-grid,
.screen-grid {
  display: grid;
  gap: 20px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.play-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.step-card,
.feature-card,
.screen-card,
.feature-shot,
.support-card,
.legal-content,
.legal-nav {
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
}

.step-card,
.feature-card,
.support-card {
  padding: 24px;
}

.step-card p,
.feature-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 8px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-shot {
  margin: 0;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(31, 38, 52, 0.98), rgba(24, 29, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-shot img {
  width: 100%;
  aspect-ratio: 1180 / 2290;
  object-fit: contain;
  max-height: 460px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
}

.feature-card {
  min-height: 214px;
}

.section-showcase {
  position: relative;
}

.screen-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.screen-card {
  margin: 0;
  overflow: hidden;
  padding: 14px 14px 0;
  background:
    linear-gradient(180deg, rgba(31, 38, 52, 0.98), rgba(24, 29, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 1180 / 2290;
  object-fit: contain;
  max-height: 340px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
}

.screen-card figcaption {
  padding: 14px 4px 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-band {
  padding-top: 18px;
}

.download-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(27, 33, 46, 0.95), rgba(22, 28, 38, 0.96));
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  color: var(--text-muted);
}

.footer-grid a {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-brand p,
.footer-note {
  max-width: 280px;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
}

.legal-main {
  padding-bottom: 56px;
}

.legal-hero {
  padding: 50px 0 26px;
}

.legal-hero-inner {
  display: grid;
  gap: 16px;
}

.legal-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  color: var(--text-muted);
  font-weight: 600;
}

.legal-content {
  padding: 28px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.legal-content ul,
.support-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

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

.support-card-primary {
  background:
    linear-gradient(180deg, rgba(31, 38, 52, 0.98), rgba(24, 29, 40, 0.98));
}

.faq-item h3 {
  margin-bottom: 6px;
}

[aria-disabled="true"] {
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .band-grid,
  .download-panel,
  .legal-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

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

  .play-visual-grid,
  .feature-grid,
  .screen-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: relative;
    top: 0;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-row,
  .site-nav {
    align-items: flex-start;
  }

  .nav-row {
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    gap: 14px 18px;
  }

  .hero-section {
    padding-top: 40px;
  }

  h1 {
    max-width: none;
  }

  .hero-points,
  .steps-grid,
  .play-visual-grid,
  .feature-grid,
  .screen-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-frame,
  .hero-copy,
  .step-card,
  .feature-card,
  .screen-card,
  .feature-shot,
  .support-card,
  .download-panel,
  .legal-content,
  .legal-nav {
    border-radius: 22px;
  }

  .download-panel {
    padding: 24px;
  }
}
