:root {
  --bg: #071118;
  --bg-soft: #0d1822;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #eef5f9;
  --text-soft: #b6c7d3;
  --accent: #e11d48;
  --accent-strong: #ff4d6d;
  --accent-red: #ee2222;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(225, 29, 72, 0.18), transparent 32%),
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 24%),
    linear-gradient(180deg, #091018 0%, #05090d 100%);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.page-shell > * + * {
  margin-top: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p,
ul {
  margin: 0 0 16px;
}

p,
li,
h1,
h2,
h3,
a {
  overflow-wrap: anywhere;
}

.lede {
  font-size: 1.15rem;
  color: var(--text);
}

.panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-media,
.media-panel > *,
.split-panel > *,
.brand-lockup > div {
  min-width: 0;
}

.compact-hero {
  padding: 22px 24px;
}

.brand-lockup {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.brand-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.18);
}

.hero-actions,
.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

.early-access-callout {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(238, 34, 34, 0.38);
  border-radius: 18px;
  background: rgba(238, 34, 34, 0.1);
}

.early-access-callout p:last-child {
  margin-bottom: 0;
}

.social-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image,
.panel-side-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.3);
}

.media-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

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

.feature-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-strong);
}

.showcase-panel {
  display: grid;
  gap: 22px;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.image-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.image-card-square {
  display: flex;
  align-items: center;
}

.guide-container {
  max-width: 1100px;
}

.guide-toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.guide-toc a,
.links a {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.guide-section {
  margin: 0;
  padding-top: 6px;
}

.guide-section + .guide-section {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.guide-section ul {
  padding-left: 1.25rem;
}

.guide-section li + li,
.panel li + li {
  margin-top: 6px;
}

a {
  color: var(--accent-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.26);
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 860px) {
  .hero-panel,
  .media-panel,
  .showcase-gallery,
  .feature-grid,
  .split-panel,
  .screenshot-grid-home,
  .screenshot-pair,
  .screenshot-triptych,
  .screenshot-grid-guide.screenshot-grid-two,
  .screenshot-grid-guide.screenshot-grid-three,
  .screenshot-grid-guide.screenshot-grid-four {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 20px 16px 40px;
  }

  .panel {
    padding: 20px;
    border-radius: 20px;
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .brand-icon {
    width: 60px;
    height: 60px;
  }
}


.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.screenshot-grid,
.screenshot-pair,
.screenshot-triptych {
  display: grid;
  gap: 16px;
}

.screenshot-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.screenshot-grid-guide.screenshot-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screenshot-grid-guide.screenshot-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screenshot-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.screenshot-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.35);
}

.screenshot-card figcaption {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.guide-section .screenshot-grid {
  margin-top: 18px;
}

.release-heading {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.release-list {
  padding-left: 1.25rem;
}

@media (max-width: 860px) {
  .hero-panel,
  .media-panel,
  .showcase-gallery,
  .feature-grid,
  .split-panel,
  .screenshot-grid-home,
  .screenshot-pair,
  .screenshot-triptych,
  .screenshot-grid-guide.screenshot-grid-two,
  .screenshot-grid-guide.screenshot-grid-three,
  .screenshot-grid-guide.screenshot-grid-four {
    grid-template-columns: minmax(0, 1fr);
  }
}
