@font-face {
  font-family: "Press Start 2P";
  src: url("PressStart2P-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #06101f;
  --bg-deep: #030814;
  --surface: rgba(9, 20, 40, 0.84);
  --surface-strong: rgba(12, 27, 53, 0.95);
  --surface-soft: rgba(19, 41, 76, 0.7);
  --border: rgba(96, 145, 255, 0.24);
  --border-strong: rgba(96, 145, 255, 0.5);
  --accent: #4b8dff;
  --accent-2: #62d2ff;
  --gold: #ffd15f;
  --green: #4fe28d;
  --red: #ff7d84;
  --text: #ecf3ff;
  --muted: #9aabc9;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top, rgba(76, 141, 255, 0.16), transparent 36%),
    radial-gradient(circle at 80% 18%, rgba(98, 210, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #0a1426 0%, #050c18 54%, #030711 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(78, 128, 224, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 128, 224, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

body::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 82%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 240px 240px, 300px 300px, 180px 180px;
  opacity: 0.6;
  z-index: -1;
}

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

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

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(116, 159, 255, 0.18);
  border-radius: 22px;
  background: rgba(5, 12, 24, 0.72);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  padding: 4px;
  background:
    radial-gradient(circle at top, rgba(98, 210, 255, 0.12), transparent 68%),
    rgba(6, 17, 33, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-wordmark {
  font-family: "Press Start 2P", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  transition: 180ms ease;
}

.site-nav a.nav-download {
  color: #071121;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #ffb629);
  box-shadow: 0 10px 22px rgba(255, 191, 71, 0.22);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(75, 141, 255, 0.12);
  outline: none;
}

.site-nav a.nav-download:hover,
.site-nav a.nav-download:focus-visible {
  color: #071121;
  background: linear-gradient(135deg, #ffe391, #ffbf47);
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 72px;
}

.eyebrow,
.section-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(98, 210, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 31, 56, 0.72);
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot,
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

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

.section-heading h2,
.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-family: "Press Start 2P", monospace;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  max-width: 760px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
}

.lede,
.section-heading p,
.hero-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 720px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions,
.page-hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #2058ff);
  color: white;
  box-shadow: 0 16px 34px rgba(44, 101, 255, 0.34);
}

.button-secondary {
  background: rgba(13, 26, 49, 0.84);
  border-color: rgba(98, 210, 255, 0.22);
  color: var(--text);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.hero-stats,
.metric-row,
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stat,
.metric-card,
.chip {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(128, 167, 255, 0.16);
  background: rgba(10, 22, 43, 0.72);
}

.hero-stat strong,
.metric-card strong {
  display: block;
  font-family: "Press Start 2P", monospace;
  font-size: 0.76rem;
  color: var(--gold);
}

.hero-stat span,
.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(120, 164, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 23, 47, 0.98), rgba(7, 15, 30, 0.96)),
    url("gorseller/shop_tile_bg.png") center/180px;
  box-shadow: var(--shadow);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -12% -26% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(75, 141, 255, 0.2), transparent 68%);
}

.hero-banner {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.92;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0) 0%, rgba(5, 10, 21, 0.1) 38%, rgba(5, 10, 21, 0.84) 100%);
}

.floating-card,
.panel,
.info-card,
.feature-card,
.highlight-card,
.legal-card,
.faq-card,
.contact-card,
.resource-card,
.timeline-card,
.stack-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 29, 56, 0.9), rgba(7, 15, 29, 0.92));
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  padding: 18px;
  backdrop-filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}

.floating-card h3,
.panel h3,
.feature-card h3,
.highlight-card h3,
.legal-card h3,
.faq-card h3,
.resource-card h3,
.stack-card h3,
.timeline-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.78rem;
  line-height: 1.6;
}

.floating-card p,
.panel p,
.feature-card p,
.highlight-card p,
.legal-card p,
.faq-card p,
.contact-card p,
.resource-card p,
.stack-card p,
.timeline-card p,
.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-card strong {
  color: var(--gold);
}

.card-one {
  top: 22px;
  right: 20px;
  width: 240px;
}

.card-two {
  left: -28px;
  bottom: 42px;
  width: 240px;
  animation-delay: -2s;
}

.card-three {
  right: 34px;
  bottom: -24px;
  width: 220px;
  animation-delay: -3.2s;
}

.meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.feature-grid,
.highlight-grid,
.legal-grid,
.resource-grid,
.stack-grid,
.timeline-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.legal-grid {
  grid-template-columns: 1fr;
}

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

.feature-card,
.highlight-card,
.legal-card,
.resource-card,
.timeline-card,
.stack-card,
.contact-card,
.faq-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(74, 141, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-icon img,
.inline-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  image-rendering: pixelated;
}

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

.showcase-copy,
.showcase-panel,
.legal-card,
.resource-card,
.contact-card,
.faq-card,
.stack-card {
  padding: 30px;
}

.showcase-panel {
  overflow: hidden;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.panel-heading h3 {
  margin: 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.82rem;
  line-height: 1.6;
}

.mini-label,
.link-label,
.meta-label {
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.roster-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  min-height: 260px;
  border: 1px solid rgba(128, 167, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(86, 136, 255, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(11, 23, 46, 0.94), rgba(6, 14, 28, 0.98));
}

.roster-card img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.roster-card h4 {
  margin: 18px 0 6px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.72rem;
  line-height: 1.6;
}

.roster-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.86rem;
}

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

.legal-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.legal-callout {
  padding: 30px;
}

.legal-callout h2 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  line-height: 1.8;
}

.legal-callout h2,
.page-hero h1 {
  margin-top: 16px;
}

.legal-hero {
  padding-top: 52px;
}

.page-hero {
  margin-top: 36px;
  padding: 38px;
  border: 1px solid rgba(116, 159, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 23, 46, 0.94), rgba(5, 10, 20, 0.92)),
    url("gorseller/shop_tile_bg.png") center/160px;
  box-shadow: var(--shadow);
}

.page-hero small,
.effective-date {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.toc,
.sidebar-card {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.toc h2,
.sidebar-card h2 {
  margin: 0 0 18px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.76rem;
  line-height: 1.6;
}

.toc a,
.sidebar-card a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.toc a:hover,
.toc a:focus-visible,
.sidebar-card a:hover,
.sidebar-card a:focus-visible {
  color: var(--text);
  outline: none;
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 28px 30px;
}

.legal-section h2 {
  margin: 0 0 18px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.88rem;
  line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
  margin: 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 10px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgba(113, 157, 255, 0.18);
  border-radius: 20px;
  background: rgba(10, 22, 43, 0.76);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: "Press Start 2P", monospace;
  font-size: 0.68rem;
  line-height: 1.8;
}

summary::-webkit-details-marker {
  display: none;
}

details p,
details ul {
  margin: 0;
  padding: 0 22px 22px;
}

.mail-link,
.text-link {
  color: var(--accent-2);
}

.footer {
  padding: 34px 0 56px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(116, 159, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.muted-list {
  display: grid;
  gap: 10px;
}

.muted-list strong {
  color: var(--text);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 226, 141, 0.1);
  border: 1px solid rgba(79, 226, 141, 0.26);
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-pill.warning {
  color: var(--gold);
  background: rgba(255, 209, 95, 0.1);
  border-color: rgba(255, 209, 95, 0.28);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-tech-list {
  display: grid;
  gap: 12px;
}

.app-tech-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.app-tech-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 1100px) {
  .hero,
  .showcase,
  .legal-strip,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-top: 10px;
  }

  .feature-grid,
  .legal-grid,
  .resource-grid,
  .timeline-grid,
  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .toc,
  .sidebar-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    top: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-copy h1,
  .section-heading h2,
  .page-hero h1 {
    line-height: 1.7;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero,
  .showcase-copy,
  .showcase-panel,
  .legal-card,
  .resource-card,
  .contact-card,
  .faq-card,
  .stack-card,
  .legal-section {
    padding: 24px;
  }

  .feature-grid,
  .highlight-grid,
  .legal-grid,
  .resource-grid,
  .stack-grid,
  .timeline-grid,
  .roster {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    height: 280px;
  }

  .card-one,
  .card-two,
  .card-three {
    position: static;
    width: auto;
    margin: 18px;
    animation: none;
  }

  .hero-stage {
    padding-bottom: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-actions,
  .page-hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-wordmark {
    font-size: 0.62rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .section-heading h2,
  .hero-copy h1,
  .page-hero h1 {
    font-size: 1.2rem;
  }
}
