:root {
  --bg-900: #030514;
  --bg-800: #050820;
  --bg-700: #0c1030;
  --bg-600: #131844;
  --bg-500: #1e2560;
  --bg-400: #2d337b;
  --fg-100: #f6f7fb;
  --fg-200: rgba(246, 247, 251, 0.85);
  --muted: rgba(208, 214, 245, 0.82);
  --accent-iris: #8ac6ff;
  --accent-rose: #ff8ad8;
  --accent-gold: #ffd479;
  --accent-lime: #72ffc8;
  --gradient-aurora: linear-gradient(120deg, #5d5dff 0%, #8ac6ff 35%, #72ffc8 65%, #ffb0f4 100%);
  --gradient-midnight: radial-gradient(circle at 20% 20%, rgba(114, 255, 200, 0.18), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(255, 138, 216, 0.18), transparent 50%),
    linear-gradient(145deg, #030514, #090b1e);
  --card-overlay: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  --shadow-lg: 0 40px 80px rgba(3, 5, 20, 0.55);
  --shadow-md: 0 25px 55px rgba(6, 8, 30, 0.45);
  --shadow-sm: 0 15px 35px rgba(9, 11, 32, 0.4);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  background: var(--gradient-midnight);
  color: var(--fg-100);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(138, 198, 255, 0.6), transparent 70%);
}

body::after {
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 138, 216, 0.5), transparent 72%);
}

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

a {
  color: var(--accent-iris);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent-rose);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -200%);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #ffffff;
  color: #050514;
  z-index: 999;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 1rem);
}

.container {
  width: min(1180px, 100% - 3rem);
  margin: 0 auto;
}

.surface {
  position: relative;
  margin: clamp(3rem, 8vw, 5rem) auto;
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-radius: var(--radius-lg);
  background: rgba(4, 7, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(138, 198, 255, 0.08), rgba(255, 138, 216, 0.08));
  opacity: 0.8;
  pointer-events: none;
}

.surface > .container,
.surface > .container:first-child {
  position: relative;
  z-index: 1;
}

.scg-scheme-92cfa,
.scg-scheme-6b1da,
.scg-scheme-e7a3f,
.scg-scheme-43c2d,
.scg-scheme-bd81e,
.scg-scheme-f6a21,
.scg-scheme-a0e3c {
  position: relative;
  isolation: isolate;
}

.scg-scheme-92cfa::after,
.scg-scheme-6b1da::after,
.scg-scheme-e7a3f::after,
.scg-scheme-43c2d::after,
.scg-scheme-bd81e::after,
.scg-scheme-f6a21::after,
.scg-scheme-a0e3c::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(138, 198, 255, 0.08), rgba(255, 138, 216, 0.08));
  opacity: 0.7;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.scg-scheme-6b1da::after { background: linear-gradient(135deg, rgba(114, 255, 200, 0.09), rgba(93, 93, 255, 0.08)); }
.scg-scheme-e7a3f::after { background: linear-gradient(135deg, rgba(255, 138, 216, 0.09), rgba(255, 212, 121, 0.08)); }
.scg-scheme-43c2d::after { background: linear-gradient(135deg, rgba(93, 93, 255, 0.08), rgba(255, 180, 244, 0.08)); }
.scg-scheme-bd81e::after { background: linear-gradient(135deg, rgba(255, 212, 121, 0.08), rgba(114, 255, 200, 0.08)); }
.scg-scheme-f6a21::after { background: linear-gradient(135deg, rgba(138, 198, 255, 0.09), rgba(255, 212, 121, 0.08)); }
.scg-scheme-a0e3c::after { background: linear-gradient(135deg, rgba(255, 180, 244, 0.1), rgba(114, 255, 200, 0.08)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  background: rgba(3, 5, 20, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(3, 5, 20, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--fg-100);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--gradient-aurora);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.brand-icon img {
  width: 32px;
  height: 32px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.brand-line {
  font-size: 0.76rem;
  color: var(--muted);
}

.brand-tag {
  font-size: 0.66rem;
  color: var(--accent-gold);
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--fg-200);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--accent-lime);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  background: var(--gradient-aurora);
}

.hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-iris);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 3px solid var(--accent-rose);
  padding-left: 1rem;
  margin: 0;
}

.hero-visual {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  opacity: 0.5;
}

.hero-visual img {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--gradient-aurora);
  color: #050514;
  box-shadow: 0 18px 45px rgba(138, 198, 255, 0.35);
}

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

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--fg-100);
}

.button.glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg-100);
}

.button.glass:hover,
.button.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
}

.pill strong {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.experience-cards {
  display: grid;
  gap: 1.4rem;
}

.experience-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(21, 26, 58, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.experience-card h3 {
  margin: 0 0 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent-iris);
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.community-intro,
.story-grid,
.contact-panels {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.community-pillars,
.community-moments {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pillar,
.community-card,
.story-panel,
.resource-card,
.contact-panel {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(18, 22, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.pillar-title,
.community-card h3,
.story-panel h3,
.contact-panel h3 {
  margin: 0 0 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-iris);
}

.community-card p,
.pillar p,
.story-panel p,
.contact-panel p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.community-quote blockquote {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fg-100);
  font-size: 1.2rem;
  line-height: 1.8;
}

.community-quote cite {
  display: block;
  margin-top: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.story-pillars {
  display: grid;
  gap: 0.9rem;
}

.story-pillars li {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.story-pillars strong {
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.section-header {
  max-width: 720px;
  display: grid;
  gap: 0.6rem;
}

.section-eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent-gold);
  margin: 0;
}

.section-lead {
  margin: 0;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.callout {
  padding: clamp(2rem, 6vw, 3.2rem);
  border-radius: var(--radius-md);
  background: rgba(19, 24, 60, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.callout h2 {
  margin-top: 0;
}

.contact-panel--primary {
  background: rgba(255, 255, 255, 0.05);
}

.contact-lines {
  display: grid;
  gap: 1rem;
}

.contact-line {
  display: flex;
  gap: 0.9rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--accent-lime);
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-note {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--muted);
}

.contact-actions--secondary {
  justify-items: start;
}

.contact-tips {
  display: grid;
  gap: 0.7rem;
}

.muted {
  color: var(--muted);
}

.scg-featured-arcade-9f2a7 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scg-featured-arcade-9f2a7::before {
  background: none;
}

.scg-arcade-wrap-5b21d {
  display: grid;
  gap: 1rem;
}

.scg-kicker-4cd1a {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-rose);
}

.scg-arcade-title-881cf {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
}

.scg-intro-8a3d9 {
  color: var(--muted);
}

.scg-grid-51be7 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.scg-card-7e8da {
  background: rgba(12, 14, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.scg-card-head-1a92e {
  margin: 0 0 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-iris);
}

.scg-outro-3c7af {
  margin-top: 2rem;
  max-width: 760px;
  color: var(--muted);
}

.site-footer {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding: clamp(3rem, 8vw, 4rem) 0;
  background: rgba(3, 5, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-rose);
}

.footer-brand {
  font-size: 1.5rem;
  margin: 0.3rem 0;
}

.footer-list {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

@media (max-width: 960px) {
  .site-nav {
    justify-content: flex-end;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 4rem;
  }
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .experience-grid,
  .community-intro,
  .story-grid,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .surface {
    margin: 2.5rem auto;
    padding: 2.5rem 0;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-visual {
    padding: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
