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

:root {
  color-scheme: light;
  --ink: #121816;
  --night: #111b19;
  --night-2: #1a2724;
  --paper: #f3f6f4;
  --white: #ffffff;
  --mist: #dce5e1;
  --line: #c6d1cd;
  --muted: #52615d;
  --teal: #16736b;
  --teal-dark: #0d504b;
  --coral: #de634e;
  --coral-deep: #b94332;
  --yellow: #f0c84f;
  --blue: #4467c4;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 850;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 16px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #31413d;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 720;
  transition: color .18s ease, background .18s ease;
}

.nav-links a:hover {
  color: var(--teal-dark);
  background: var(--mist);
}

.nav-games {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-games-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #31413d;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

.games-chevron {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.nav-games:hover .nav-games-toggle,
.nav-games:focus-within .nav-games-toggle,
.nav-games.is-open .nav-games-toggle {
  background: #e5f4f7;
  color: #087ca6;
}

.nav-games.is-open .games-chevron {
  transform: translateY(4px) rotate(225deg);
}

.games-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 90;
  min-width: 196px;
  display: grid;
  padding: 8px;
  border: 1px solid #293d51;
  border-radius: 6px;
  background: #1e293b;
  box-shadow: 0 18px 30px rgba(18, 24, 22, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-games:hover .games-menu,
.nav-games:focus-within .games-menu,
.nav-games.is-open .games-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links .games-menu a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  color: #f7fafc;
  font-size: 16px;
  font-weight: 680;
}

.nav-links .games-menu a:hover,
.nav-links .games-menu a:focus-visible {
  background: rgba(14, 165, 233, .18);
  color: #38bdf8;
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--teal);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.nav-links .lang-switch a {
  min-width: 42px;
  min-height: 30px;
  justify-content: center;
  padding: 0 8px;
  border: 0;
  border-radius: 3px;
  font-size: 12px;
}

.nav-links .lang-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.site-header.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  height: min(760px, calc(100svh - 92px));
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 61%;
  background: rgba(17, 27, 25, .96);
}

.hero-scene {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -2;
  overflow: hidden;
  background: #27312d;
}

.hero-shot {
  position: absolute;
  width: 40%;
  min-width: 340px;
  height: 82%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .42);
}

.hero-shot.progression {
  top: 11%;
  left: 3%;
  object-position: center top;
  opacity: .68;
}

.hero-shot.reward {
  top: 5%;
  left: 33%;
  z-index: 2;
  object-position: center top;
}

.hero-shot.commerce {
  top: 17%;
  left: 67%;
  object-position: center top;
  opacity: .78;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(620px, 58%);
  padding: 54px 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--coral);
}

.hero h1 {
  margin: 0;
  font-size: 84px;
  line-height: .98;
  font-weight: 900;
}

.hero-title {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 31px;
  line-height: 1.3;
  font-weight: 780;
}

.hero-text {
  max-width: 570px;
  margin: 18px 0 0;
  color: #c6d3cf;
  font-size: 17px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .8);
}

.button.primary {
  border-color: var(--coral-deep);
  background: var(--coral-deep);
  color: var(--white);
}

.button.primary:hover {
  border-color: #a9362a;
  background: #a9362a;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 580px;
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof div {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt {
  color: #90a49e;
  font-size: 11px;
  font-weight: 750;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 760;
}

.intro {
  background: var(--yellow);
  border-bottom: 1px solid #d7ae35;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  min-height: 118px;
}

.intro-item {
  display: grid;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid rgba(18, 24, 22, .22);
}

.intro-item:first-child {
  padding-left: 0;
}

.intro-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.intro-item strong {
  font-size: 17px;
  line-height: 1.35;
}

.intro-item span {
  margin-top: 4px;
  color: #584a1e;
  font-size: 12px;
  font-weight: 690;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 54px;
  align-items: start;
}

.section-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 780px;
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.section-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-index {
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 850;
}

.service-item h3 {
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.service-item p {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.games {
  background: #e6ece9;
}

.game-grid {
  max-width: 912px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 24px;
  margin-left: 268px;
}

.game-card {
  min-width: 0;
  margin: 0;
}

.game-card-link {
  position: relative;
  isolation: isolate;
  min-height: 400px;
  aspect-ratio: 1024 / 500;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 22, .28);
  border-radius: 8px;
  background: #21183f;
  color: var(--white);
  box-shadow: 0 24px 54px rgba(18, 24, 22, .16);
}

.game-card-link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(17, 27, 25, .12);
  content: "";
  transition: background .24s ease;
}

.game-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

.game-card-summary {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  min-height: 84px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  background: rgba(17, 27, 25, .94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
  transition: opacity .2s ease, transform .24s ease;
}

.game-card-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: var(--white);
}

.game-card-title {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.game-card-title span,
.game-card-kicker {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.game-card-title h3 {
  margin: 7px 0 0;
  font-size: 23px;
  line-height: 1.1;
}

.game-card-domain {
  color: #d8e3df;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.game-card-detail {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: rgba(17, 27, 25, .91);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .28s ease;
}

.game-card-detail strong {
  max-width: 620px;
  margin-top: 12px;
  font-size: 32px;
  line-height: 1.2;
}

.game-card-detail p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #d8e3df;
  font-size: 14px;
  line-height: 1.75;
}

.game-card-action {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.game-card-link:hover::after,
.game-card-link:focus-visible::after {
  background: rgba(17, 27, 25, .24);
}

.game-card-link:hover .game-card-media,
.game-card-link:focus-visible .game-card-media {
  transform: scale(1.025);
}

.game-card-link:hover .game-card-summary,
.game-card-link:focus-visible .game-card-summary {
  opacity: 0;
  transform: translateY(10px);
}

.game-card-link:hover .game-card-detail,
.game-card-link:focus-visible .game-card-detail {
  opacity: 1;
  transform: translateY(0);
}

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

.case-list {
  border-top: 1px solid var(--line);
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.case:nth-child(even) .case-visual {
  order: 2;
}

.case-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.case:nth-child(2) .case-visual {
  background: #291f18;
}

.case:nth-child(3) .case-visual {
  background: #dce2ec;
}

.case-visual img {
  width: min(72%, 520px);
  height: 440px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(18, 24, 22, .25);
  border-radius: 8px;
  box-shadow: 0 26px 54px rgba(18, 24, 22, .22);
}

.case:nth-child(1) .case-visual img {
  width: min(76%, 560px);
}

.case-number {
  position: absolute;
  top: 24px;
  left: 24px;
  min-width: 42px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.case:nth-child(even) .case-number {
  left: auto;
  right: 24px;
  background: var(--yellow);
  color: var(--ink);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  background: var(--white);
}

.case-status {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 9px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.25;
}

.case-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.deliverables {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.deliverables li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #26332f;
  font-size: 14px;
  font-weight: 680;
}

.deliverables span {
  color: var(--coral-deep);
  font-weight: 900;
}

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

.capabilities .section-label {
  color: var(--yellow);
}

.capabilities .section-title p {
  color: #b9c8c3;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #3c4b47;
  border-bottom: 1px solid #3c4b47;
}

.cap-item {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid #3c4b47;
}

.cap-item:first-child {
  padding-left: 0;
}

.cap-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.cap-index {
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
}

.cap-item h3 {
  margin: 34px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.cap-item p {
  margin: 15px 0 0;
  color: #b9c8c3;
  font-size: 14px;
  line-height: 1.8;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.cap-tags span {
  padding: 5px 8px;
  border: 1px solid #50615c;
  border-radius: 4px;
  color: #d8e3df;
  font-size: 11px;
  font-weight: 720;
}

.process {
  background: var(--paper);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 92px 260px minmax(0, 1fr);
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-row > span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.process-row h3 {
  margin: 0;
  font-size: 19px;
}

.process-row p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.markets {
  background: var(--mist);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aebdb7;
  border-bottom: 1px solid #aebdb7;
}

.market-item {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid #aebdb7;
}

.market-item:first-child {
  padding-left: 0;
}

.market-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.market-item span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.market-item h3 {
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.market-item p {
  margin: 14px 0 0;
  color: #40504b;
  font-size: 14px;
  line-height: 1.8;
}

.market-note {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact {
  padding: 88px 0;
  background: var(--coral);
  color: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 70px;
  align-items: end;
}

.contact h2 {
  max-width: 700px;
  margin: 0;
  font-size: 46px;
  line-height: 1.15;
}

.contact-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.contact-details {
  margin: 0;
  border-top: 1px solid rgba(18, 24, 22, .45);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 24, 22, .45);
}

.contact-row dt {
  font-size: 12px;
  font-weight: 820;
}

.contact-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.contact-row a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  background: var(--ink);
  color: #b9c8c3;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 14px 24px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-games {
    display: grid;
    border-bottom: 1px solid var(--line);
  }

  .nav-games-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0;
    border-radius: 0;
    text-align: left;
  }

  .nav-games:hover .nav-games-toggle,
  .nav-games:focus-within .nav-games-toggle,
  .nav-games.is-open .nav-games-toggle {
    background: transparent;
  }

  .games-menu {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-games:hover .games-menu,
  .nav-games:focus-within .games-menu,
  .nav-games.is-open .games-menu {
    display: grid;
  }

  .nav-links .games-menu a {
    min-height: 44px;
    padding: 0 12px;
    border-bottom: 0;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links .games-menu a:hover,
  .nav-links .games-menu a:focus-visible {
    background: var(--mist);
    color: var(--teal-dark);
  }

  .nav-links .nav-cta {
    margin: 12px 0 0;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
  }

  .lang-switch {
    width: fit-content;
    margin: 14px 0 0;
  }

  .nav-links .lang-switch a {
    min-height: 34px;
    padding: 0 12px;
    border-bottom: 0;
    border-radius: 3px;
  }

  .hero::before {
    width: 72%;
  }

  .hero-scene {
    left: 45%;
  }

  .hero-copy {
    width: 68%;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-title {
    font-size: 27px;
  }

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

  .intro-item,
  .intro-item:first-child,
  .intro-item:last-child {
    padding: 20px 22px;
    border-right: 1px solid rgba(18, 24, 22, .22);
    border-bottom: 1px solid rgba(18, 24, 22, .22);
  }

  .intro-item:nth-child(even) {
    border-right: 0;
  }

  .game-grid {
    max-width: none;
    margin-left: 0;
  }

  .case {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case:nth-child(even) .case-visual {
    order: 0;
  }

  .case-visual {
    min-height: 500px;
  }

  .case-copy {
    padding: 44px 36px 54px;
  }

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

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

  .market-item,
  .market-item:first-child,
  .market-item:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #aebdb7;
  }

  .market-item:last-child {
    border-bottom: 0;
  }

  .market-item h3 {
    margin-top: 14px;
  }

  .cap-item,
  .cap-item:first-child,
  .cap-item:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #3c4b47;
  }

  .cap-item:last-child {
    border-bottom: 0;
  }

  .cap-item h3 {
    margin-top: 18px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    height: min(680px, calc(100svh - 82px));
    min-height: 560px;
  }

  .hero::before {
    width: 100%;
    background: rgba(17, 27, 25, .88);
  }

  .hero-scene {
    inset: 0;
  }

  .hero-shot {
    min-width: 0;
    width: 72%;
    height: 78%;
    opacity: .48;
  }

  .hero-shot.progression {
    left: -20%;
  }

  .hero-shot.reward {
    left: 35%;
    opacity: .62;
  }

  .hero-shot.commerce {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 44px 0 54px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-title {
    max-width: 340px;
    margin-top: 16px;
    font-size: 24px;
  }

  .hero-text {
    max-width: 370px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .actions {
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    padding-top: 15px;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px;
    padding: 0;
    border-right: 0;
  }

  .hero-proof dd {
    margin: 0;
  }

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

  .intro-item strong {
    font-size: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  .section-title h2 {
    font-size: 31px;
  }

  .section-title p {
    margin-top: 13px;
    font-size: 14px;
  }

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

  .service-item {
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .service-item h3 {
    margin-top: 18px;
    font-size: 21px;
  }

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

  .game-card-link {
    min-height: 0;
    aspect-ratio: auto;
    display: grid;
    background: var(--night);
  }

  .game-card-link::after {
    display: none;
  }

  .game-card-media {
    position: relative;
    aspect-ratio: 1024 / 500;
  }

  .game-card-summary {
    position: relative;
    inset: auto;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    margin-top: -1px;
    padding: 14px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    box-shadow: none;
  }

  .game-card-icon {
    width: 56px;
    height: 56px;
  }

  .game-card-title h3 {
    font-size: 21px;
  }

  .game-card-domain {
    grid-column: 2;
    margin-top: -6px;
  }

  .game-card-detail {
    position: relative;
    inset: auto;
    padding: 4px 14px 24px 82px;
    background: var(--night);
    opacity: 1;
    transform: none;
  }

  .game-card-detail strong {
    margin-top: 10px;
    font-size: 24px;
  }

  .game-card-detail p {
    margin-top: 11px;
    font-size: 13px;
  }

  .game-card-action {
    min-height: 42px;
    margin-top: 18px;
  }

  .game-card-link:hover .game-card-media,
  .game-card-link:focus-visible .game-card-media,
  .game-card-link:hover .game-card-summary,
  .game-card-link:focus-visible .game-card-summary {
    opacity: 1;
    transform: none;
  }

  .case-visual {
    min-height: 350px;
  }

  .case-visual img,
  .case:nth-child(1) .case-visual img {
    width: min(80%, 430px);
    height: 290px;
  }

  .case-number {
    top: 14px;
    left: 14px;
  }

  .case:nth-child(even) .case-number {
    right: 14px;
  }

  .case-copy {
    padding: 34px 14px 46px;
  }

  .case-status {
    margin-bottom: 15px;
  }

  .case-copy h3 {
    font-size: 25px;
  }

  .case-copy > p {
    margin-top: 13px;
    font-size: 14px;
  }

  .deliverables {
    margin-top: 22px;
  }

  .process-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .process-row p {
    grid-column: 2;
  }

  .contact {
    padding: 64px 0;
  }

  .contact h2 {
    font-size: 34px;
  }

  .contact-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .footer-inner {
    min-height: 0;
    padding: 25px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none) and (min-width: 681px) {
  .game-card-detail {
    opacity: 1;
    transform: none;
  }

  .game-card-summary {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* 2026 service-led company site */

.home-hero {
  min-height: 690px;
  height: min(790px, calc(100svh - 72px));
  background: var(--night);
}

.home-hero::before {
  display: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr);
  gap: 54px;
  align-items: center;
}

.home-hero .hero-copy {
  width: auto;
  padding: 62px 0;
}

.home-hero h1 {
  max-width: 700px;
  font-size: 58px;
  line-height: 1.04;
}

.home-hero .hero-text {
  max-width: 660px;
}

.product-stage {
  position: relative;
  width: 100%;
  height: 510px;
  color: var(--ink);
}

.product-browser {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 610px);
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: #f8faf9;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .34);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid #b8c5c0;
  background: #dce5e1;
}

.browser-bar i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar i:nth-child(2) {
  background: var(--yellow);
}

.browser-bar i:nth-child(3) {
  background: var(--teal);
}

.browser-bar span {
  min-width: 0;
  margin-left: 9px;
  color: #52615d;
  font-size: 11px;
  font-style: normal;
  font-weight: 720;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-site {
  height: calc(100% - 42px);
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) 72px;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 1px solid #d2dcd8;
  font-size: 10px;
}

.preview-nav strong {
  color: var(--teal-dark);
  font-size: 12px;
}

.preview-nav span {
  color: var(--muted);
  font-weight: 720;
}

.preview-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 40% 32px 34px;
  background: var(--white);
}

.preview-hero span {
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 850;
}

.preview-hero strong {
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.2;
}

.preview-hero i {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--yellow);
}

.preview-stats span {
  display: grid;
  place-content: center;
  padding: 8px 10px;
  border-right: 1px solid rgba(18, 24, 22, .24);
  font-size: 10px;
  text-align: center;
}

.preview-stats span:last-child {
  border-right: 0;
}

.preview-stats b {
  font-size: 13px;
}

.product-assistant {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 285px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid #bac8c3;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 54px rgba(18, 24, 22, .24);
}

.assistant-head {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.assistant-head small {
  color: var(--teal);
  font-weight: 800;
}

.assistant-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.product-assistant p {
  width: fit-content;
  max-width: 88%;
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--mist);
  color: #2a3834;
  font-size: 12px;
  line-height: 1.5;
}

.product-assistant .visitor-message {
  margin-left: auto;
  background: var(--teal);
  color: var(--white);
}

.assistant-input {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding: 0 8px 0 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #70807a;
  font-size: 11px;
}

.assistant-input span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-three .service-item {
  min-height: 330px;
}

.service-link {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background .18s ease, color .18s ease;
}

.service-link:hover,
.service-link:focus-visible {
  background: var(--night);
  color: var(--white);
}

.service-link:hover p,
.service-link:focus-visible p {
  color: #b9c8c3;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.service-link:hover .text-link,
.service-link:focus-visible .text-link {
  color: var(--yellow);
}

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.price-plan {
  min-width: 0;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8faf9;
}

.price-plan-featured {
  background: var(--yellow);
}

.price-plan-ai {
  background: var(--night);
  color: var(--white);
}

.plan-top {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
}

.plan-top > span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-plan-ai .plan-top > span {
  color: var(--yellow);
}

.plan-top strong {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  font-size: 62px;
  line-height: 1;
}

.plan-top strong small {
  margin-top: 7px;
  font-size: 11px;
}

.plan-top .price-word {
  font-size: 48px;
}

.plan-top em {
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.price-plan > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-plan-ai > p,
.price-plan-ai .plan-note {
  color: #b9c8c3;
}

.plan-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(82, 97, 93, .42);
}

.plan-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid rgba(82, 97, 93, .42);
  font-size: 13px;
  font-weight: 680;
}

.plan-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--teal);
  content: "+";
  font-weight: 900;
}

.price-plan-ai .plan-list li::before {
  color: var(--yellow);
}

.plan-action {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
}

.plan-action:hover {
  background: var(--white);
  color: var(--ink);
}

.plan-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.proof-work {
  background: var(--paper);
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.proof-feature > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.proof-copy > span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-copy h3 {
  margin: 20px 0 0;
  font-size: 34px;
  line-height: 1.2;
}

.proof-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-button {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.contact-button:hover {
  background: var(--white);
  color: var(--ink);
}

.service-page {
  background: var(--white);
}

.service-hero {
  padding: 34px 0 76px;
  background: var(--night);
  color: var(--white);
}

.service-hero-app {
  background: #18233e;
}

.service-hero-ai {
  background: #1f2e29;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 54px;
  color: #9eafaa;
  font-size: 12px;
  font-weight: 700;
}

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

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 70px;
  align-items: end;
}

.service-summary h1 {
  max-width: 800px;
  margin: 0;
  font-size: 58px;
  line-height: 1.06;
}

.service-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c6d3cf;
  font-size: 17px;
  line-height: 1.8;
}

.offer-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 26px 54px rgba(0, 0, 0, .24);
}

.offer-panel > span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-panel > strong {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  font-size: 66px;
  line-height: 1;
}

.offer-panel > strong small {
  margin-top: 8px;
  font-size: 11px;
}

.offer-panel > .offer-word {
  font-size: 48px;
}

.offer-panel > em {
  margin-top: 9px;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.offer-panel dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(18, 24, 22, .42);
}

.offer-panel dl div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 24, 22, .42);
}

.offer-panel dt {
  font-size: 11px;
  font-weight: 820;
}

.offer-panel dd {
  margin: 0;
  font-size: 12px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.ai-offer-panel {
  background: var(--coral);
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  padding-top: 88px;
  padding-bottom: 96px;
}

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

.service-section {
  padding: 0 0 80px;
}

.service-section + .service-section {
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.service-section > h2 {
  max-width: 750px;
  margin: 16px 0 0;
  font-size: 40px;
  line-height: 1.18;
}

.service-section > p:not(.section-label) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-item > span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 900;
}

.feature-item h3 {
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.feature-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.compact-process {
  margin-top: 38px;
}

.compact-process .process-row {
  grid-template-columns: 60px 220px minmax(0, 1fr);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 54px 14px 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  content: "+";
  font-size: 18px;
}

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

.faq-list details p {
  max-width: 730px;
  margin: 0;
  padding: 0 54px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-sidebar {
  min-width: 0;
}

.sidebar-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sidebar-box + .sidebar-box {
  margin-top: 18px;
}

.sidebar-box > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-box h2 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.sidebar-box p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.sidebar-box ul {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sidebar-box li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.sidebar-contact {
  position: sticky;
  top: 92px;
  background: var(--night);
  color: var(--white);
}

.sidebar-contact > span {
  color: var(--yellow);
}

.sidebar-contact p {
  color: #b9c8c3;
}

.sidebar-contact a {
  display: block;
  margin-top: 22px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.service-cta {
  padding: 68px 0;
  background: var(--coral);
}

.service-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-cta span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-cta h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 38px;
  line-height: 1.18;
}

.service-cta .contact-button {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 1080px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
    gap: 36px;
  }

  .home-hero h1,
  .service-summary h1 {
    font-size: 50px;
  }

  .price-plan {
    padding: 28px 24px;
  }

  .service-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-three .service-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: 0;
    height: auto;
  }

  .home-hero-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy {
    width: auto;
    padding: 72px 0 10px;
  }

  .product-stage {
    width: min(100%, 680px);
    margin: 0 auto 70px;
  }

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

  .price-plan {
    min-height: 0;
  }

  .plan-action {
    margin-top: 30px;
  }

  .proof-feature {
    grid-template-columns: 1fr;
  }

  .proof-feature > img {
    min-height: 0;
    aspect-ratio: 1024 / 500;
  }

  .service-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    order: -1;
    margin-bottom: 70px;
  }

  .sidebar-box + .sidebar-box {
    margin-top: 0;
  }

  .sidebar-contact {
    position: static;
  }

  .service-hero {
    padding-bottom: 64px;
  }

  .offer-panel {
    width: min(100%, 520px);
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .home-hero .hero-copy {
    padding-top: 54px;
  }

  .home-hero h1,
  .service-summary h1 {
    max-width: none;
    font-size: 39px;
    line-height: 1.08;
  }

  .home-hero .hero-text,
  .service-lead {
    font-size: 15px;
  }

  .product-stage {
    display: none;
  }

  .product-browser {
    height: 340px;
  }

  .browser-site {
    grid-template-rows: 48px minmax(0, 1fr) 62px;
  }

  .preview-nav {
    padding: 0 14px;
  }

  .preview-nav span {
    display: none;
  }

  .preview-hero {
    padding: 22px 35% 22px 18px;
  }

  .preview-hero strong {
    font-size: 19px;
  }

  .product-assistant {
    right: 8px;
    width: 235px;
    min-height: 230px;
    padding: 14px;
  }

  .product-assistant p {
    margin-top: 12px;
    padding: 8px 10px;
  }

  .assistant-input {
    margin-top: 12px;
  }

  .service-grid-three {
    grid-template-columns: 1fr;
  }

  .service-grid-three .service-item:last-child {
    grid-column: auto;
  }

  .service-grid-three .service-item {
    min-height: 0;
  }

  .price-plan {
    padding: 26px 20px 30px;
  }

  .plan-top {
    min-height: 150px;
  }

  .plan-top strong {
    font-size: 54px;
  }

  .proof-copy {
    padding: 30px 22px 36px;
  }

  .proof-copy h3 {
    font-size: 27px;
  }

  .breadcrumb {
    margin-bottom: 36px;
  }

  .service-hero {
    padding-top: 26px;
  }

  .offer-panel {
    display: none;
  }

  .offer-panel > strong {
    font-size: 58px;
  }

  .service-body {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .service-sidebar {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .service-section {
    padding-bottom: 58px;
  }

  .service-section + .service-section {
    padding-top: 56px;
  }

  .service-section > h2 {
    font-size: 30px;
  }

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

  .feature-item {
    min-height: 0;
    padding: 24px 20px;
  }

  .compact-process .process-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .compact-process .process-row p {
    grid-column: 2;
  }

  .service-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-cta h2 {
    font-size: 30px;
  }
}
