:root {
  --ink: #111111;
  --ink-2: #3a3632;
  --muted: #6f6862;
  --line: #e7e1da;
  --paper: #ffffff;
  --soft: #faf8f5;
  --cream: #f3eee9;
  --dark: #141210;
  --orange: #f96208;
  --pass: #1f8a4c;
  --warn: #c98a00;
  --fail: #c62d2d;
  --font: -apple-system, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select {
  font-family: var(--font);
}

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

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--dark);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 64px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner,
.footer-inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wordmark img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a,
.header-action,
.back-link,
.footer-links a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.header-action:hover,
.back-link:hover,
.footer-links a:hover {
  color: var(--orange);
}

.header-action {
  justify-self: end;
  font-size: 14px;
  font-weight: 600;
}

.section,
.hero {
  position: relative;
  padding: 200px 32px;
}

.section-white {
  background: var(--paper);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
  color: white;
}

.content {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding-top: 174px;
  padding-bottom: 180px;
  text-align: center;
}

.hero-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.display,
.section-title,
.report-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.display {
  max-width: 980px;
  font-size: clamp(62px, 6vw, 86px);
}

.section-title {
  max-width: 900px;
  font-size: clamp(56px, 5.2vw, 76px);
}

.lead,
.section-copy,
.report-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 21px;
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.hero .lead {
  max-width: 700px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 12px 28px -14px rgba(249, 98, 8, 0.7);
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.hero .button {
  margin-top: 40px;
}

.visual {
  width: min(1200px, 100%);
  margin: 96px auto 0;
}

.visual-hero {
  width: min(980px, 100%);
  margin-top: 112px;
}

.visual-wide {
  width: min(1100px, 100%);
}

.visual-max {
  width: min(1200px, 100%);
}

.visual-production {
  width: min(900px, 100%);
}

.visual img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 40px 90px -30px rgba(20, 18, 16, 0.35);
}

figure.visual {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.diagnosis {
  display: grid;
  gap: 160px;
}

.diagnosis-part {
  min-width: 0;
}

.delivered {
  padding-top: 220px;
  padding-bottom: 220px;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.62);
}

.section-dark .visual img {
  box-shadow: 0 42px 96px -30px rgba(0, 0, 0, 0.72);
}

.phone-stats {
  display: grid;
  width: min(980px, 100%);
  grid-template-columns: repeat(4, 1fr);
  margin: 92px auto 0;
}

.phone-stats div {
  padding: 0 32px;
  text-align: center;
}

.phone-stats div + div {
  border-left: 1px solid var(--line);
}

.phone-stats dt,
.phone-stats dd {
  margin: 0;
}

.phone-stats dd {
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.phone-stats dt {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.compliance-visual {
  position: relative;
}

/* The supplied mock-up's final note is intentionally hidden on the public site. */
.compliance-redaction {
  position: absolute;
  z-index: 2;
  top: 87.7%;
  left: 42.8%;
  width: 35.2%;
  height: 7.2%;
  background: #ffffff;
  pointer-events: none;
}

.steps {
  display: grid;
  width: min(1200px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin: 100px auto 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.steps span {
  color: var(--orange);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.steps h3 {
  margin: 38px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.requirements-section {
  padding-top: 0;
}

.requirements {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 76px 80px;
  border-radius: 18px;
  background: var(--cream);
}

.requirements h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.requirement-list {
  display: grid;
  gap: 0;
  margin-top: 64px;
}

.requirement-list p {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: 42px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(58, 54, 50, 0.13);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.requirement-list strong {
  color: var(--ink);
  font-weight: 600;
}

.price-grid {
  display: grid;
  width: min(1200px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  margin: 100px auto 0;
}

.price-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 42px 34px 38px;
  border-top: 1px solid var(--line);
}

.price-option > p {
  margin: 0;
}

.price-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.price-name span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-option .price {
  margin-top: 36px;
  font-size: clamp(44px, 4.2vw, 58px);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-option .price + p {
  min-height: 82px;
  margin-top: 32px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.price-option .price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-option .button {
  align-self: flex-start;
  margin-top: auto;
  transform: translateY(28px);
}

.price-option .button:hover {
  transform: translateY(27px);
}

.price-featured {
  border-top-color: transparent;
  border-radius: 20px;
  background: var(--dark);
  color: white;
}

.price-featured .price + p,
.price-featured .price-note,
.price-featured small {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-footnote {
  width: min(1120px, 100%);
  margin: 78px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.single-offer {
  display: grid;
  width: min(1000px, 100%);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  margin: 100px auto 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--dark);
  color: white;
}

.offer-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-price p {
  margin: 0;
}

.offer-price .price {
  margin-top: 40px;
  color: var(--orange);
  font-size: clamp(64px, 8vw, 92px);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.offer-price .price + p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.offer-price .button {
  align-self: flex-start;
  margin-top: 42px;
}

.offer-scope {
  display: grid;
  align-content: center;
  padding: 40px 58px;
}

.offer-scope p {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-scope p:first-child {
  border-top: 0;
}

.offer-scope strong,
.offer-scope span {
  display: block;
}

.offer-scope strong {
  font-size: 17px;
  font-weight: 600;
}

.offer-scope span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.faq {
  width: min(900px, 100%);
  margin: 98px auto 0;
  border-bottom: 1px solid var(--line);
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 30px 46px 30px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq details p {
  max-width: 760px;
  margin: -3px 0 32px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}

.ask {
  padding-top: 220px;
  padding-bottom: 220px;
}

.submission-form {
  width: min(820px, 100%);
  margin: 88px auto 0;
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 17px;
}

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

.submission-form .button {
  margin-top: 30px;
}

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

.site-footer {
  padding: 72px 32px 34px;
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-inner p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  color: var(--ink-2);
  font-size: 14px;
}

.legal {
  width: min(1200px, calc(100% - 64px));
  margin: 66px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Submission page */
.report-page {
  min-height: 100vh;
  background: var(--soft);
}

.report-header {
  display: flex;
  width: min(1200px, calc(100% - 64px));
  height: 88px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.back-link {
  font-size: 14px;
  font-weight: 600;
}

.report-main {
  display: grid;
  width: min(1100px, calc(100% - 64px));
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 100px;
  align-items: start;
  margin: 0 auto;
  padding: 150px 0 170px;
}

.kicker {
  margin: 0 0 28px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-title {
  max-width: 580px;
  font-size: clamp(58px, 6vw, 80px);
}

.report-copy {
  max-width: 520px;
}

.report-form {
  display: grid;
  gap: 26px;
  padding: 44px;
  border-radius: 20px;
  background: var(--dark);
  color: white;
}

.report-form .button {
  width: 100%;
  margin-top: 6px;
}

.report-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.report-footer {
  display: flex;
  width: min(1200px, calc(100% - 64px));
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.report-footer p {
  margin: 0;
}

/* Other projects */
.projects-page {
  background: var(--soft);
}

.projects-hero {
  min-height: 100vh;
  padding: 168px 32px 72px;
  background: var(--paper);
}

.projects-hero-copy,
.projects-section,
.projects-contact {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.projects-title {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(64px, 7.4vw, 108px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.projects-intro {
  max-width: 670px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 21px;
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.project-index {
  display: grid;
  width: min(1200px, 100%);
  grid-template-columns: 1fr 1fr;
  margin: 132px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-index a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 18px;
  padding: 28px 34px;
  transition: background-color 180ms ease;
}

.project-index a + a {
  border-left: 1px solid var(--line);
}

.project-index a:hover {
  background: var(--soft);
}

.project-index span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.project-index strong {
  font-size: 17px;
  font-weight: 600;
}

.project-index small {
  color: var(--muted);
  font-size: 13px;
}

.projects-section {
  padding: 190px 32px;
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.25fr);
  gap: 18px 70px;
}

.project-number {
  margin: 7px 0 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.projects-section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.projects-section-copy {
  max-width: 640px;
  grid-column: 2;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.project-card,
.game-studio-card {
  width: min(1100px, 100%);
  margin: 100px 0 0 auto;
  border-radius: 24px;
}

.project-card-light {
  padding: 42px 48px 52px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 36px 90px -66px rgba(20, 18, 16, 0.55);
}

.project-card + .project-card {
  margin-top: 34px;
}

.project-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  padding: 7px 10px;
  border-radius: 999px;
}

.status-live {
  background: rgba(31, 138, 76, 0.1);
  color: var(--pass);
}

.status-building {
  background: rgba(249, 98, 8, 0.14);
  color: #ff7b2e;
}

.project-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 72px;
  margin-top: 92px;
}

.project-eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3,
.game-studio-card h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.project-card-detail > p,
.game-studio-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.project-card-detail ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.project-card-detail li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 34px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.project-note {
  display: flex;
  width: min(1100px, 100%);
  align-items: baseline;
  justify-content: space-between;
  gap: 36px;
  margin: 34px 0 0 auto;
  padding: 22px 4px;
  color: var(--muted);
  font-size: 14px;
}

.project-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.games-section {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1200px) / 2 + 32px));
  padding-left: max(32px, calc((100vw - 1200px) / 2 + 32px));
  background: var(--dark);
  color: white;
}

.games-section .projects-section-copy {
  color: rgba(255, 255, 255, 0.58);
}

.game-studio-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1b1815;
}

.game-studio-mark {
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 50% 38%, rgba(249, 98, 8, 0.18), transparent 45%), #0e0d0c;
}

.game-studio-mark span {
  color: var(--orange);
  font-size: clamp(170px, 24vw, 330px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.7;
  transform: translateX(-0.04em);
}

.game-studio-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 64px;
}

.game-studio-copy .project-eyebrow {
  margin-top: 76px;
}

.game-studio-copy > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
}

.projects-contact {
  padding: 180px 32px;
  text-align: center;
}

.projects-contact .project-number {
  margin-bottom: 28px;
}

.projects-contact h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.projects-contact .button {
  margin-top: 46px;
}

.projects-footer {
  background: var(--paper);
}

/* Motion is an enhancement. Content remains visible without JavaScript. */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .section,
  .hero {
    padding-right: 40px;
    padding-left: 40px;
  }

  .visual-max {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .section,
  .hero {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .display {
    font-size: clamp(56px, 8vw, 72px);
  }

  .section-title {
    font-size: clamp(48px, 7vw, 64px);
  }

  .steps,
  .price-grid,
  .single-offer,
  .report-main {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 56px;
  }

  .steps h3 {
    margin-top: 24px;
  }

  .phone-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .phone-stats div:nth-child(3) {
    border-left: 0;
  }

  .price-grid {
    gap: 44px;
  }

  .offer-price {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .price-option .price + p {
    min-height: auto;
  }

  .price-option .button {
    margin-top: 36px;
    transform: none;
  }

  .price-option .button:hover {
    transform: translateY(-1px);
  }

  .report-main {
    gap: 72px;
    padding-top: 120px;
  }

  .projects-heading,
  .project-card-body,
  .game-studio-card {
    grid-template-columns: 1fr;
  }

  .projects-section-copy {
    grid-column: 1;
  }

  .project-card-body {
    gap: 48px;
    margin-top: 64px;
  }

  .game-studio-mark {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .header-action {
    font-size: 13px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    height: 60px;
  }

  .header-inner,
  .footer-inner,
  .legal,
  .report-header,
  .report-main,
  .report-footer {
    width: calc(100% - 64px);
  }

  .wordmark {
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .wordmark img {
    width: 26px;
    height: 26px;
  }

  .header-action {
    max-width: 130px;
    text-align: right;
  }

  .section,
  .hero {
    padding: 104px 32px;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
    padding-bottom: 112px;
  }

  .display,
  .section-title,
  .report-title {
    font-size: clamp(36px, 11vw, 40px);
    line-height: 1.07;
  }

  .lead,
  .section-copy,
  .report-copy {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero .button {
    margin-top: 32px;
  }

  .visual,
  .visual-hero {
    margin-top: 64px;
  }

  figcaption {
    margin-top: 16px;
    font-size: 12px;
  }

  .diagnosis {
    gap: 120px;
  }

  .delivered,
  .ask {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .phone-stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 64px;
  }

  .phone-stats div {
    padding: 26px 0;
  }

  .phone-stats div + div,
  .phone-stats div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .requirements {
    padding: 48px 30px;
  }

  .requirements h2 {
    font-size: 38px;
  }

  .requirement-list {
    margin-top: 46px;
  }

  .requirement-list p {
    display: block;
    padding: 22px 0;
    font-size: 16px;
  }

  .requirement-list strong {
    display: block;
    margin-bottom: 7px;
  }

  .price-featured {
    order: -1;
  }

  .single-offer {
    margin-top: 64px;
  }

  .offer-price,
  .offer-scope {
    padding: 38px 28px;
  }

  .offer-price .price {
    font-size: 68px;
  }

  .price-option {
    padding: 36px 24px;
  }

  .price-option .price {
    font-size: 46px;
  }

  .pricing-footnote {
    margin-top: 58px;
    text-align: left;
  }

  .faq {
    margin-top: 62px;
  }

  .faq summary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

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

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

  .site-footer {
    padding: 56px 32px 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .legal {
    margin-top: 48px;
  }

  .report-header {
    height: 72px;
  }

  .report-main {
    gap: 56px;
    padding: 96px 0 112px;
  }

  .report-form {
    padding: 30px 24px;
  }

  .report-footer {
    flex-direction: column;
  }

  .projects-hero {
    min-height: auto;
    padding: 132px 32px 64px;
  }

  .projects-title {
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.98;
  }

  .projects-intro {
    margin-top: 28px;
    font-size: 18px;
  }

  .project-index {
    grid-template-columns: 1fr;
    margin-top: 78px;
  }

  .project-index a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-index a {
    padding: 24px 8px;
  }

  .projects-section {
    padding: 108px 32px;
  }

  .projects-heading {
    gap: 24px;
  }

  .projects-section-title {
    font-size: 40px;
  }

  .projects-section-copy {
    margin-top: 4px;
    font-size: 17px;
  }

  .project-card,
  .game-studio-card {
    margin-top: 64px;
  }

  .project-card-light {
    padding: 28px 24px 34px;
  }

  .project-card-body {
    gap: 36px;
    margin-top: 54px;
  }

  .project-card h3,
  .game-studio-card h3 {
    font-size: 36px;
  }

  .project-note {
    display: block;
    margin-top: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  .project-note span {
    display: block;
    margin-top: 8px;
  }

  .game-studio-mark {
    min-height: 250px;
  }

  .game-studio-mark span {
    font-size: 190px;
  }

  .game-studio-copy {
    padding: 38px 26px 44px;
  }

  .game-studio-copy .project-eyebrow {
    margin-top: 52px;
  }

  .projects-contact {
    padding: 108px 32px;
  }

  .projects-contact h2 {
    font-size: 42px;
  }
}

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

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