:root {
  --navy-950: #030a1f;
  --navy-900: #07122e;
  --navy-850: #0a1738;
  --navy-800: #10204a;
  --ink: #111a35;
  --muted: #66708b;
  --purple: #7138f2;
  --purple-bright: #8c5cff;
  --purple-soft: #eee9ff;
  --blue: #3478f6;
  --white: #ffffff;
  --surface: #f6f7fb;
  --line: #dfe3ee;
  --success: #22c58b;
  --shadow: 0 24px 70px rgba(3, 10, 31, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(113, 56, 242, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 10, 31, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex: 0 1 340px;
  align-items: center;
}

.brand img {
  width: min(100%, 315px);
  height: auto;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--purple);
}

.site-nav .nav-cta:hover {
  background: var(--purple-bright);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(113, 56, 242, 0.35), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(52, 120, 246, 0.25), transparent 30%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 684px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding-block: 88px 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--purple-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.1rem, 6.7vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 .accent {
  display: block;
  color: var(--purple-bright);
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 35px rgba(113, 56, 242, 0.35);
}

.button-primary:hover {
  background: var(--purple-bright);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.button-outline {
  color: var(--navy-950);
  border-color: var(--line);
  background: var(--white);
}

.button-disabled {
  position: relative;
  color: #7f879d;
  border-color: #e1e3e9;
  background: #f0f1f5;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: #6e7180;
  background: #dedfe5;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  min-width: 0;
}

.studio-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background: #101f47;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.45);
}

.studio-visual img {
  width: 100%;
  height: auto;
}

.hero-strip {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.hero-strip .container {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.hero-strip strong {
  color: var(--white);
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-categories span {
  position: relative;
}

.hero-categories span + span::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple-bright);
  content: "";
}

.section {
  padding-block: 110px;
}

.section-tinted {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(113, 56, 242, 0.24), transparent 30%),
    var(--navy-950);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.78fr;
  gap: 52px;
  margin-bottom: 52px;
}

.section-heading h2,
.about-lead h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading p,
.about-lead p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.section-dark .contact-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.about-lead p {
  margin-top: 26px;
}

.principles {
  display: grid;
  gap: 14px;
}

.principle {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.principle-number {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.principle h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-showcase {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(113, 56, 242, 0.17), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

.service-kicker {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 34% 72%, rgba(140, 92, 255, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(52, 120, 246, 0.15), transparent 60%);
}

.service-kicker span {
  color: rgba(255, 255, 255, 0.3);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.service-copy {
  padding: 64px;
}

.service-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-copy > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.06rem;
}

.service-types {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.service-types span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.83rem;
  font-weight: 750;
}

.service-copy .button {
  margin-top: 34px;
}

.work-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1b41;
}

.work-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 31, 0.18), transparent 62%);
  content: "";
}

.collage-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-guide {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: 5%;
  width: 46%;
  height: auto;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(3, 10, 31, 0.46);
}

.game-icon-float {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 28px;
  width: 104px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(3, 10, 31, 0.38);
}

.work-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 34px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-dark {
  color: #536079;
  background: #edf0f5;
}

.work-content h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.work-content p {
  max-width: 690px;
  margin: 10px 0 0;
  color: var(--muted);
}

.work-content .card-actions {
  min-width: 290px;
  justify-content: flex-end;
  margin-top: 0;
}

.pipeline-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.pipeline-note strong {
  display: block;
  font-size: 1.05rem;
}

.pipeline-note p {
  margin: 2px 0 0;
  color: var(--muted);
}

.pipeline-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pipeline-types span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4e5872;
  font-size: 0.84rem;
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.contact-copy > p {
  margin-top: 24px;
}

.direct-email {
  display: inline-block;
  margin-top: 28px;
  color: var(--purple-bright);
  font-weight: 800;
  word-break: break-word;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field select option {
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-bright);
  background: rgba(255, 255, 255, 0.1);
}

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

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.contact-card .button {
  margin-top: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #020716;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  padding-block: 54px 38px;
}

.footer-brand img {
  width: min(100%, 330px);
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand .sister-brand {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.sister-brand a {
  color: var(--purple-bright);
  font-weight: 800;
}

.sister-brand a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  align-content: start;
}

.footer-links a {
  padding-block: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

/* Policy and support pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 90px 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 10%, rgba(113, 56, 242, 0.32), transparent 27%),
    var(--navy-950);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.02),
    0 0 0 120px rgba(255, 255, 255, 0.015);
  content: "";
}

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

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 72px;
  align-items: start;
  padding-block: 72px 110px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--purple);
}

.legal-content {
  min-width: 0;
}

.legal-content .notice {
  margin: 0 0 36px;
  padding: 20px 22px;
  border-left: 4px solid var(--purple);
  border-radius: 0 14px 14px 0;
  color: #48516b;
  background: var(--purple-soft);
}

.legal-content h2 {
  margin: 52px 0 16px;
  color: var(--navy-950);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #4e5870;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.legal-content th,
.legal-content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--navy-950);
  background: var(--surface);
}

.legal-content .callout {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.legal-content .callout h2,
.legal-content .callout h3 {
  margin-top: 0;
}

.form-page-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
  padding-block: 80px 110px;
}

.form-page-copy h2 {
  margin: 0;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.form-page-copy p {
  color: var(--muted);
}

.warning-box {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #f0d9a4;
  border-radius: 16px;
  color: #6e5515;
  background: #fff8e7;
}

.light-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.light-form .field input,
.light-form .field select,
.light-form .field textarea {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}

.light-form .field input::placeholder,
.light-form .field textarea::placeholder {
  color: #9299aa;
}

.light-form .field input:focus,
.light-form .field select:focus,
.light-form .field textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}

.light-form .form-note {
  color: var(--muted);
}

.support-shell {
  padding-block: 78px 110px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 78px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-list details[open] {
  border-color: rgba(113, 56, 242, 0.3);
  box-shadow: 0 16px 42px rgba(3, 10, 31, 0.08);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--navy-950);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--purple);
  content: "+";
  font-size: 1.6rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.support-contact {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
}

.support-contact h2 {
  margin: 0;
  font-size: 2.35rem;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.support-contact p {
  color: rgba(255, 255, 255, 0.62);
}

.support-contact .direct-email {
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(3, 10, 31, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease, visibility 180ms ease;
  }

  .menu-open .site-nav {
    max-height: calc(100vh - 76px);
    padding-block: 16px 26px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 76px 140px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .section-heading,
  .about-grid,
  .contact-grid,
  .footer-main,
  .form-page-shell,
  .support-contact,
  .service-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .work-content {
    grid-template-columns: 1fr;
  }

  .service-kicker {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .work-content .card-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-toc {
    position: static;
  }
}

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

  .brand {
    flex-basis: 245px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-grid {
    padding-block: 58px 138px;
  }

  .hero-strip .container {
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .hero-categories {
    gap: 14px;
    font-size: 0.8rem;
  }

  .hero-categories span + span::before {
    left: -9px;
  }

  .section {
    padding-block: 80px;
  }

  .about-grid {
    gap: 44px;
  }

  .principle {
    grid-template-columns: 46px 1fr;
    padding: 20px;
  }

  .principle-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .work-visual {
    aspect-ratio: 16 / 10;
  }

  .collage-guide {
    right: 4%;
    bottom: 6%;
    width: 55%;
    border-width: 2px;
    border-radius: 12px;
  }

  .game-icon-float {
    bottom: 18px;
    left: 18px;
    width: 78px;
    border-radius: 20px;
  }

  .work-content {
    padding: 24px;
  }

  .pipeline-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-types {
    justify-content: flex-start;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact-card,
  .light-form {
    padding: 22px;
  }

  .service-kicker,
  .service-copy {
    padding: 28px 24px;
  }

  .service-kicker {
    min-height: 220px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 18px;
  }

  .page-hero {
    padding-block: 64px 60px;
  }

  .legal-shell,
  .form-page-shell,
  .support-shell {
    padding-block: 52px 80px;
  }

  .legal-content table {
    display: block;
    overflow-x: auto;
  }

  .support-contact {
    padding: 28px 22px;
  }
}

@media (max-width: 430px) {
  .brand {
    flex-basis: 225px;
  }

  .brand img {
    width: 225px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-actions .button,
  .card-actions .button {
    width: 100%;
  }

  .hero-categories {
    gap: 11px;
  }

  .hero-categories span + span::before {
    display: none;
  }
}
