:root {
  --ink: #12263a;
  --ink-soft: #516172;
  --teal: #0e5960;
  --teal-bright: #14736e;
  --copper: #e17b4a;
  --copper-dark: #c45b35;
  --sand: #f5f0e8;
  --sand-deep: #eae1d3;
  --white: #fffefa;
  --line: rgba(18, 38, 58, 0.11);
  --shadow: 0 28px 68px rgba(18, 38, 58, 0.13);
  --radius-lg: 34px;
  --radius-md: 24px;
  --container: min(1200px, calc(100% - 48px));
  --font-sans: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --font-display: "Avenir Next", "Helvetica Neue", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

p {
  margin: 0;
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

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

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 254, 250, 0.9);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

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

.brand-logo {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.brand .brand-company-name {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.25em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #354658;
  font-size: 14px;
  font-weight: 500;
}

.nav-links > a:not(.nav-action) {
  position: relative;
}

.nav-links > a:not(.nav-action)::after {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-action:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  border-radius: 12px;
  background: var(--sand);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 94px;
  background:
    radial-gradient(circle at 73% 20%, rgba(225, 123, 74, 0.12), transparent 28%),
    radial-gradient(circle at 10% 40%, rgba(14, 89, 96, 0.07), transparent 25%),
    var(--white);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  top: 106px;
  right: -208px;
  width: 468px;
  height: 468px;
  background: rgba(14, 89, 96, 0.06);
}

.hero-orb-two {
  right: 420px;
  bottom: 72px;
  width: 85px;
  height: 85px;
  background: rgba(225, 123, 74, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  gap: 60px;
}

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

.hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5.2vw, 55px);
  line-height: 1.34;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-intro {
  max-width: 487px;
  color: var(--ink-soft);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--copper);
  box-shadow: 0 12px 28px rgba(196, 91, 53, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 16px 32px rgba(196, 91, 53, 0.3);
}

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

.hero-pillars {
  display: flex;
  gap: 32px;
  margin-top: 58px;
}

.hero-pillars div {
  padding-left: 15px;
  border-left: 2px solid var(--copper);
}

.hero-pillars strong,
.hero-pillars span {
  display: block;
}

.hero-pillars strong {
  margin-bottom: 7px;
  font-size: 17px;
}

.hero-pillars span {
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-media {
  position: relative;
  height: 606px;
}

.commerce-preview {
  position: absolute;
  top: 8px;
  right: 0;
  width: min(100%, 614px);
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 39px;
  padding: 0 16px;
  background: #f4f4f2;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d2d0;
}

.browser-bar label {
  margin-left: 10px;
  color: #81909b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.commerce-preview img {
  width: 100%;
  height: 362px;
  object-fit: cover;
  object-position: center top;
}

.game-phone {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 184px;
  margin: 0;
  padding: 5px;
  border-radius: 25px;
  background: #162430;
  box-shadow: 0 24px 50px rgba(18, 38, 58, 0.28);
}

.phone-camera {
  position: absolute;
  top: 9px;
  left: calc(50% - 22px);
  z-index: 1;
  width: 44px;
  height: 10px;
  border-radius: 99px;
  background: #162430;
}

.game-phone img {
  aspect-ratio: 9 / 16;
  border-radius: 21px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  bottom: 112px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px 22px;
  border: 1px solid rgba(14, 89, 96, 0.11);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 14px 38px rgba(18, 38, 58, 0.09);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45ab80;
  box-shadow: 0 0 0 5px rgba(69, 171, 128, 0.13);
}

.section-heading {
  max-width: 674px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.28;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 16px;
}

.business {
  background: #faf8f3;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.business-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 43px 44px;
  border-radius: var(--radius-lg);
}

.business-card h3 {
  margin: 21px 0 15px;
  font-size: 32px;
}

.business-card p {
  position: relative;
  z-index: 1;
  max-width: 398px;
  color: var(--ink-soft);
  font-size: 15px;
}

.card-number {
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.commerce-card {
  background: #eef4f3;
}

.game-card {
  background: #f7ede3;
}

.service-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 8px 14px;
  border: 1px solid rgba(18, 38, 58, 0.09);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.68);
  color: #46596b;
  font-size: 13px;
}

.business-card img {
  position: absolute;
}

.commerce-card img {
  right: 24px;
  bottom: -16px;
  width: 66%;
  height: 187px;
  border-radius: 22px 22px 0 0;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 34px rgba(18, 38, 58, 0.12);
}

.game-card img {
  right: 32px;
  bottom: -118px;
  width: 178px;
  border-radius: 22px;
  box-shadow: 0 15px 34px rgba(104, 51, 31, 0.2);
}

.commerce-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 72px;
}

.commerce-copy h2 {
  margin-bottom: 21px;
  font-size: clamp(33px, 3.7vw, 43px);
  line-height: 1.33;
}

.commerce-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 25px;
  margin-top: 46px;
}

.feature-list div {
  padding-left: 19px;
  border-left: 2px solid var(--sand-deep);
}

.feature-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 16px;
}

.feature-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

.commerce-gallery {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--sand);
}

.commerce-gallery img {
  width: 100%;
  min-height: 435px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.gallery-label {
  position: absolute;
  right: 48px;
  bottom: 50px;
  padding: 17px 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 11px 28px rgba(18, 38, 58, 0.1);
}

.gallery-label span,
.gallery-label strong {
  display: block;
}

.gallery-label span {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.gallery-label strong {
  font-size: 16px;
}

.game-feature {
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
}

.game-feature .eyebrow {
  color: #ffc783;
}

.game-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.game-heading h2 {
  font-size: clamp(42px, 5vw, 54px);
}

.game-title-en {
  margin-top: 10px;
  color: rgba(255, 254, 250, 0.66);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.game-heading > p {
  max-width: 488px;
  color: rgba(255, 254, 250, 0.72);
}

.game-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  align-items: center;
  gap: 42px;
}

.game-info {
  padding: 48px 45px;
  border: 1px solid rgba(255, 254, 250, 0.16);
  border-radius: 28px;
  background: rgba(255, 254, 250, 0.05);
}

.game-label {
  margin-bottom: 22px;
  color: #ffc783;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.game-info h3 {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 1.38;
}

.game-info ul {
  display: grid;
  gap: 17px;
  margin: 0 0 41px;
  padding: 0;
  list-style: none;
  color: rgba(255, 254, 250, 0.77);
  font-size: 14px;
}

.game-info li {
  position: relative;
  padding-left: 21px;
}

.game-info li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #ffc783;
}

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

.screenshots {
  display: flex;
  align-items: center;
  gap: 18px;
}

.screen {
  flex: 1;
  margin: 0;
  padding: 8px;
  border-radius: 29px;
  background: rgba(255, 254, 250, 0.16);
}

.screen img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  object-fit: cover;
}

.screen-a,
.screen-c {
  transform: translateY(30px);
}

.capabilities {
  background: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.capability {
  min-height: 262px;
  padding: 34px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.capability:hover {
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(18, 38, 58, 0.07);
  transform: translateY(-3px);
}

.capability span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.capability h3 {
  margin: 31px 0 14px;
  font-size: 24px;
}

.capability p {
  color: var(--ink-soft);
  font-size: 14px;
}

.vision {
  padding-top: 0;
}

.vision-layout {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 86px;
  padding: 78px 76px;
  border-radius: var(--radius-lg);
  background: var(--sand);
}

.vision-copy h2 {
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.38;
}

.vision-text > p {
  color: var(--ink-soft);
  font-size: 16px;
}

.mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 39px;
}

.mission div {
  padding-top: 22px;
  border-top: 1px solid rgba(18, 38, 58, 0.13);
}

.mission small {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.mission strong {
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  padding: 68px 0 27px;
  background: #102536;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.72fr 1.7fr;
  gap: 40px;
  margin-bottom: 62px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 25px;
  color: rgba(255, 254, 250, 0.62);
  font-size: 14px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 16px;
  font-size: 14px;
}

.footer-links p {
  margin-bottom: 8px;
  color: #ffc783;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 254, 250, 0.62);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: rgba(255, 254, 250, 0.9);
}

.footer-contact span {
  line-height: 1.72;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 254, 250, 0.1);
  color: rgba(255, 254, 250, 0.43);
  font-size: 12px;
}

.copyright-brand,
.filing-links,
.police-record {
  display: flex;
  align-items: center;
}

.copyright-brand {
  flex-shrink: 0;
  gap: 8px;
  color: rgba(255, 254, 250, 0.8);
}

.copyright-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.copyright-brand strong,
.copyright-brand small {
  display: block;
}

.copyright-brand strong {
  font-size: 14px;
  font-weight: 600;
}

.copyright-brand small {
  margin-top: 3px;
  color: rgba(255, 254, 250, 0.48);
  font-size: 11px;
}

.filing-links {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.filing-links a {
  transition: color 180ms ease;
}

.filing-links a:hover {
  color: rgba(255, 254, 250, 0.68);
}

.police-record {
  gap: 5px;
}

.police-record img {
  width: 16px;
  height: 18px;
  object-fit: contain;
}

.legal-main {
  background: #fbf8f1;
}

.legal-hero {
  padding: 156px 0 62px;
  background:
    radial-gradient(circle at 82% 22%, rgba(225, 123, 74, 0.12), transparent 26%),
    radial-gradient(circle at 10% 45%, rgba(14, 89, 96, 0.08), transparent 28%),
    var(--white);
}

.legal-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.18;
}

.legal-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
}

.legal-section {
  padding: 72px 0 96px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.legal-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 38, 58, 0.07);
}

.legal-card h2 {
  margin: 34px 0 16px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li,
.contact-list dd {
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-card p + p {
  margin-top: 15px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--teal);
  font-weight: 600;
}

.legal-card a:hover {
  color: var(--copper-dark);
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  line-height: 1.72;
}

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

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 220ms;
}

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

:is(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(400px, 0.94fr) minmax(0, 1fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 4vw, 44px);
  }

  .hero-media {
    height: 532px;
  }

  .commerce-preview {
    border-width: 7px;
  }

  .commerce-preview img {
    height: 302px;
  }

  .game-phone {
    right: 18px;
    width: 164px;
  }

  .media-badge {
    bottom: 90px;
    left: 0;
  }

  .commerce-layout {
    gap: 42px;
  }

  .game-heading {
    gap: 32px;
  }

  .game-showcase {
    grid-template-columns: minmax(294px, 0.86fr) minmax(0, 1.16fr);
    gap: 26px;
  }

  .game-info {
    padding: 38px 28px;
  }

  .game-info h3 {
    font-size: 26px;
  }

  .screenshots {
    gap: 10px;
  }

  .screen {
    padding: 5px;
    border-radius: 22px;
  }

  .vision-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .commerce-layout,
  .game-showcase {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .commerce-copy,
  .game-info {
    max-width: 650px;
  }

  .hero-media {
    height: 610px;
  }

  .commerce-preview {
    left: 0;
  }

  .game-phone {
    right: 56px;
    width: 184px;
  }

  .screenshots {
    max-width: 690px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 36px, 540px);
    --radius-lg: 25px;
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    background: rgba(255, 254, 250, 0.92);
    backdrop-filter: blur(18px);
  }

  .navbar {
    height: 70px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand .brand-company-name {
    display: none;
  }

  .brand small {
    margin-top: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.nav-action) {
    padding: 15px 12px;
  }

  .nav-links > a:not(.nav-action)::after {
    display: none;
  }

  .nav-action {
    margin-top: 9px;
    text-align: center;
  }

  .hero {
    padding: 115px 0 62px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.42;
  }

  .hero-intro {
    font-size: 15px;
  }

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

  .button {
    min-height: 50px;
    padding: 0 25px;
  }

  .hero-pillars {
    gap: 21px;
    margin-top: 42px;
  }

  .hero-pillars span {
    font-size: 12px;
  }

  .hero-media {
    height: 420px;
    margin-top: 10px;
  }

  .commerce-preview {
    border-width: 6px;
    border-radius: 20px;
  }

  .commerce-preview img {
    height: 232px;
  }

  .browser-bar {
    height: 32px;
  }

  .game-phone {
    right: 17px;
    width: 130px;
    padding: 3px;
    border-radius: 19px;
  }

  .phone-camera {
    top: 6px;
    left: calc(50% - 17px);
    width: 34px;
    height: 8px;
  }

  .game-phone img {
    border-radius: 16px;
  }

  .media-badge {
    bottom: 53px;
    left: 4px;
    padding: 13px 15px;
    font-size: 12px;
  }

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

  .section-heading h2,
  .commerce-copy h2 {
    font-size: 31px;
  }

  .business-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 458px;
    padding: 34px 28px;
  }

  .commerce-card img {
    width: calc(100% - 48px);
  }

  .commerce-layout {
    gap: 46px;
  }

  .commerce-gallery {
    padding: 12px;
  }

  .commerce-gallery img {
    min-height: 250px;
  }

  .gallery-label {
    right: 28px;
    bottom: 25px;
  }

  .game-heading {
    display: block;
    margin-bottom: 38px;
  }

  .game-heading h2 {
    margin-bottom: 22px;
    font-size: 42px;
  }

  .game-showcase {
    gap: 42px;
  }

  .game-info {
    padding: 35px 28px;
  }

  .game-info h3 {
    font-size: 26px;
  }

  .screenshots {
    gap: 9px;
  }

  .screen {
    padding: 4px;
    border-radius: 18px;
  }

  .screen img {
    border-radius: 14px;
  }

  .screen-a,
  .screen-c {
    transform: translateY(14px);
  }

  .capability {
    min-height: 0;
  }

  .vision {
    padding-top: 0;
  }

  .vision-layout {
    padding: 42px 28px;
  }

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

  .legal-hero {
    padding: 116px 0 46px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-section {
    padding: 48px 0 70px;
  }

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

  .legal-card {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 26px;
    margin-bottom: 44px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .filing-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

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