:root {
  color-scheme: dark;
  --ink: #070b16;
  --ink-soft: #0d1324;
  --panel: rgba(15, 22, 40, 0.72);
  --panel-solid: #11192c;
  --text: #f6f7fb;
  --muted: #aeb7cb;
  --faint: #737e95;
  --line: rgba(199, 211, 238, 0.16);
  --violet: #9e8cff;
  --cyan: #78d8ff;
  --blue: #4f79ff;
  --coral: #ff705f;
  --lime: #b9ee54;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  padding: 10px 18px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.inner-header {
  border-color: var(--line);
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(18px);
}

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

.wordmark {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.wordmark-mark {
  width: 27px;
  height: 27px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(158, 140, 255, 0.55);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(120, 216, 255, 0.18), rgba(158, 140, 255, 0.22));
  font-size: 0.7rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: #dce1ec;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.nav-contact {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before { top: 16px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 28px; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 190px 0 110px;
  background:
    radial-gradient(circle at 72% 30%, rgba(78, 111, 255, 0.18), transparent 28%),
    radial-gradient(circle at 64% 18%, rgba(124, 218, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(158, 140, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #080d1b 0%, #070b16 88%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 520px;
  top: 85px;
  right: -110px;
  opacity: 0.48;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 31px, rgba(122, 151, 255, 0.18) 32px 33px),
    radial-gradient(circle at 49% 49%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 58%, var(--violet) 0 3px, transparent 4px);
  transform: rotate(-8deg);
  mask-image: linear-gradient(90deg, transparent 4%, black 28%, black 80%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #bfc8da;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 940px;
  font-weight: 480;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  font-size: clamp(3.45rem, 7.1vw, 7.2rem);
}

.gradient-text {
  background: linear-gradient(100deg, #f8f9fd 5%, #bfe9ff 45%, #b5a7ff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.025);
  color: white;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1.04rem;
}

.button.internal::after { content: "→"; }

.button.primary {
  border-color: transparent;
  background: linear-gradient(105deg, #9bdfff, #a993ff);
  color: #070b16;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  background-color: rgba(255, 255, 255, 0.07);
}

.button.primary:hover {
  background: linear-gradient(105deg, #b7e9ff, #bcaeff);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.hero-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  justify-self: end;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(132, 169, 255, 0.24);
  border-radius: 50%;
}

.orbit-ring:nth-child(2) {
  inset: 22%;
  border-color: rgba(158, 140, 255, 0.36);
}

.orbit-ring:nth-child(3) {
  inset: 36%;
  border-color: rgba(120, 216, 255, 0.45);
}

.orbit-core {
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 30px rgba(120, 216, 255, 0.75);
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 18px currentColor;
}

.orbit-dot.one { top: 14%; left: 52%; color: var(--violet); }
.orbit-dot.two { top: 48%; right: 7%; color: var(--cyan); background: var(--cyan); }
.orbit-dot.three { bottom: 15%; left: 27%; color: var(--blue); background: var(--blue); }

.section {
  position: relative;
  padding: 120px 0;
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.kicker {
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.prose-heading,
.cta-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.venture-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(180, 195, 228, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 30%, rgba(120, 216, 255, 0.1), transparent 35%),
    linear-gradient(135deg, rgba(19, 29, 51, 0.95), rgba(10, 15, 29, 0.98));
  box-shadow: var(--shadow);
}

.venture-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 78px);
}

.project-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9deea;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nuntaro-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(158, 140, 255, 0.38);
  border-radius: 12px;
  background: rgba(158, 140, 255, 0.08);
  color: #c8bcff;
  font-size: 1.08rem;
  text-transform: lowercase;
}

.venture-card h3 {
  margin: 32px 0 17px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.venture-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #c9bfff;
  font-weight: 650;
}

.text-link::after { content: "↗"; transition: transform 180ms ease; }
.text-link.internal::after { content: "→"; }
.text-link:hover::after { transform: translate(3px, -3px); }
.text-link.internal:hover::after { transform: translateX(3px); }

.signal-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.signal-art::before,
.signal-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 216, 255, 0.19);
  border-radius: 50%;
}

.signal-art::before { width: 520px; height: 280px; top: 56px; left: 2%; }
.signal-art::after { width: 350px; height: 190px; top: 101px; left: 18%; border-color: rgba(158, 140, 255, 0.26); }

.message-node {
  position: absolute;
  z-index: 2;
  width: 145px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.message-node::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 26px;
  width: 22px;
  height: 22px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.42);
  background: inherit;
  transform: rotate(-45deg);
}

.message-node.one {
  top: 112px;
  left: 14%;
  background: linear-gradient(135deg, #28749b, #3659a7);
}

.message-node.two {
  top: 190px;
  right: 12%;
  background: linear-gradient(135deg, #6e55c4, #3c2f75);
}

.message-node i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9eaff;
}

.lock-symbol {
  width: 29px;
  height: 25px;
  position: relative;
  border: 2px solid #d5cfff;
  border-radius: 7px;
}

.lock-symbol::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  left: 5px;
  top: -13px;
  border: 2px solid #d5cfff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

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

.game-card {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.game-card.strategy {
  background:
    radial-gradient(circle at 67% 30%, rgba(79, 121, 255, 0.36), transparent 24%),
    linear-gradient(145deg, #101a35, #090e1d 72%);
}

.game-card.casual {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 112, 95, 0.17), transparent 25%),
    radial-gradient(circle at 25% 40%, rgba(158, 140, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #1a1537, #0b0d1b 72%);
}

.game-card h3 {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.game-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
}

.project-number {
  position: relative;
  z-index: 2;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.strategy-map {
  position: absolute;
  inset: -4% -15% 35% 22%;
  opacity: 0.66;
  background-image:
    linear-gradient(30deg, rgba(112, 152, 255, 0.24) 12%, transparent 12.5%, transparent 87%, rgba(112, 152, 255, 0.24) 87.5%, rgba(112, 152, 255, 0.24)),
    linear-gradient(150deg, rgba(112, 152, 255, 0.24) 12%, transparent 12.5%, transparent 87%, rgba(112, 152, 255, 0.24) 87.5%, rgba(112, 152, 255, 0.24)),
    linear-gradient(30deg, rgba(112, 152, 255, 0.24) 12%, transparent 12.5%, transparent 87%, rgba(112, 152, 255, 0.24) 87.5%, rgba(112, 152, 255, 0.24)),
    linear-gradient(150deg, rgba(112, 152, 255, 0.24) 12%, transparent 12.5%, transparent 87%, rgba(112, 152, 255, 0.24) 87.5%, rgba(112, 152, 255, 0.24)),
    linear-gradient(60deg, rgba(120, 216, 255, 0.14) 25%, transparent 25.5%, transparent 75%, rgba(120, 216, 255, 0.14) 75%, rgba(120, 216, 255, 0.14));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
  transform: perspective(400px) rotateX(58deg) rotateZ(-11deg);
}

.map-node {
  position: absolute;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(120, 216, 255, 0.55);
}

.map-node.a { top: 18%; right: 31%; }
.map-node.b { top: 29%; right: 17%; border-color: var(--violet); }
.map-node.c { top: 37%; right: 43%; }

.token {
  position: absolute;
  border-radius: 28%;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34), inset 0 1px 1px rgba(255, 255, 255, 0.48);
}

.token.a {
  width: 128px;
  height: 128px;
  top: 54px;
  right: 17%;
  background: linear-gradient(145deg, #ff806d, #b93656);
  transform: rotate(16deg);
}

.token.b {
  width: 96px;
  height: 96px;
  top: 140px;
  right: 42%;
  border-radius: 50%;
  background: linear-gradient(145deg, #a690ff, #5146c9);
}

.token.c {
  width: 48px;
  height: 48px;
  top: 64px;
  right: 48%;
  border-radius: 50%;
  background: var(--lime);
}

.statement {
  padding: 150px 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(158, 140, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #080c17, #070b16);
}

.statement blockquote {
  max-width: 1040px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5.2vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.statement blockquote span { color: #8e98ad; }

.cta-band {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(95deg, rgba(120, 216, 255, 0.06), rgba(158, 140, 255, 0.08));
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cta-copy {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 34px;
  background: #060912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-intro p {
  max-width: 350px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-heading {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li { margin-top: 10px; }
.footer-links a { color: #ced4e2; font-size: 0.92rem; }
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.8rem;
}

.page-main {
  min-height: 72vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 15%, rgba(158, 140, 255, 0.16), transparent 27%),
    radial-gradient(circle at 65% 25%, rgba(120, 216, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #0a1020, #070b16);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -180px;
  right: -80px;
  border: 1px solid rgba(158, 140, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(120, 216, 255, 0.025), 0 0 0 145px rgba(158, 140, 255, 0.02);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.page-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: 70px;
}

.prose {
  max-width: 780px;
}

.prose-heading {
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.prose h2:not(.prose-heading) {
  margin: 58px 0 15px;
  font-size: 1.35rem;
}

.prose h3 {
  margin: 38px 0 12px;
  font-size: 1.06rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p {
  margin: 18px 0 0;
}

.prose a:not(.button) {
  color: #c9bfff;
  text-decoration: underline;
  text-decoration-color: rgba(201, 191, 255, 0.35);
  text-underline-offset: 4px;
}

.prose ul {
  padding-left: 20px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.detail-item {
  min-height: 180px;
  padding: 28px;
  background: #0b1120;
}

.detail-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.detail-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.games-page-grid {
  display: grid;
  gap: 28px;
}

.games-page-grid .game-card {
  min-height: 580px;
}

.games-page-grid .game-card h2 {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 18px 0 12px;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.games-page-grid .game-card p {
  max-width: 610px;
  font-size: 1.08rem;
}

.status-pill {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: #d5dbea;
  font-size: 0.78rem;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(185, 238, 84, 0.7);
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(36px, 7vw, 82px);
  background: linear-gradient(145deg, rgba(17, 25, 44, 0.92), rgba(9, 13, 25, 0.92));
}

.empty-state h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.empty-state p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 28px 56px 28px 0;
  font-size: 1.16rem;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 22px;
  color: var(--violet);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  max-width: 740px;
  padding: 0 0 30px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.contact-note p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(13, 19, 36, 0.72);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-actions,
.form-status,
.form-consent {
  grid-column: 1 / -1;
}

.field label,
.form-consent {
  color: #dce1ec;
  font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(199, 211, 238, 0.2);
  border-radius: 12px;
  background: rgba(4, 7, 15, 0.62);
  padding: 13px 15px;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 190px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(199, 211, 238, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  background: rgba(4, 7, 15, 0.88);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(120, 216, 255, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--violet);
}

.form-consent a {
  color: #d7cfff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-hint {
  color: var(--faint);
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.success { color: var(--lime); }
.form-status.error { color: #ff9b91; }

[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 160px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-orbit { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .venture-card { grid-template-columns: 1fr; }
  .signal-art { min-height: 320px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-shell { min-height: 70px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 92px 34px 40px;
    background: rgba(7, 11, 22, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--serif); font-size: 2.15rem; }
  .nav-contact { border: 0; padding: 0; }
  .hero { padding: 145px 0 80px; }
  .hero::before { right: -420px; opacity: 0.3; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5.3rem); }
  .section { padding: 84px 0; }
  .venture-copy { padding: 34px 26px; }
  .signal-art { min-height: 260px; }
  .message-node { transform: scale(0.8); }
  .message-node.one { left: 5%; }
  .message-node.two { right: 3%; }
  .project-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 410px; }
  .statement { padding: 100px 0; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; margin-bottom: 15px; }
  .footer-bottom { flex-direction: column; margin-top: 48px; }
  .page-hero { padding: 145px 0 72px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .content-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-list { grid-template-columns: 1fr; }
  .games-page-grid .game-card { min-height: 500px; }
  .contact-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .form-actions { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .wordmark { font-size: 0.82rem; letter-spacing: 0.24em; }
  .wordmark-mark { width: 25px; height: 25px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .signal-art { min-height: 220px; }
  .message-node { transform: scale(0.66); }
  .message-node.one { top: 72px; left: -2%; }
  .message-node.two { top: 124px; right: -4%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .actions { display: none; }
  body { background: white; color: black; }
  .page-hero, .section { padding: 30px 0; }
  .page-hero { background: white; border-bottom: 1px solid #bbb; }
  .page-lead, .prose p, .prose li { color: #333; }
}
