:root {
  --ink: #111612;
  --ink-soft: #3e4842;
  --paper: #f4f6f1;
  --white: #ffffff;
  --night: #090d0b;
  --night-soft: #141a16;
  --line: #ced5ce;
  --line-dark: #2a332d;
  --green: #75e86b;
  --green-deep: #245e37;
  --cyan: #45d9f4;
  --red: #ff4e4e;
  --yellow: #f6d64a;
  --max: 1240px;
  --header-height: 76px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--green);
  transform: translateY(-150%);
}

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

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

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

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

.section-paper {
  background: #f8f8f4;
}

.section-label,
.eyebrow,
.feature-index,
.app-type {
  margin: 0 0 24px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label::before,
.eyebrow::before,
.feature-index::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.section-label-bright {
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 78px;
}

h2 {
  margin-bottom: 32px;
  font-size: 54px;
}

h3 {
  font-size: 30px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgb(9 13 11 / 0.94);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1400px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--night);
  background: var(--green);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  place-items: center;
}

.brand-name {
  font-size: 17px;
}

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

.site-nav > a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  gap: 10px;
  padding: 0 18px;
  color: var(--night);
  background: var(--green);
  border-radius: var(--radius);
}

.nav-cta svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  max-height: 920px;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
  place-items: center;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/banners/worlds-made-to-play.png");
  background-position: center center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(4 7 5 / 0.92) 0%, rgb(4 7 5 / 0.68) 34%, rgb(4 7 5 / 0.08) 68%),
    linear-gradient(0deg, rgb(4 7 5 / 0.58) 0%, transparent 35%);
  content: "";
}

.hero-content {
  padding-top: 80px;
}

.eyebrow {
  color: var(--green);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--green);
}

.button-primary:hover {
  background: #98f18f;
}

.button-ghost {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(0 0 0 / 0.18);
}

.button-ghost:hover {
  color: var(--night);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 28px;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 0.7);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
}

.studio {
  padding: 132px 0 112px;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 100px;
  align-items: end;
}

.studio-grid h2 {
  margin: 0;
  font-size: 62px;
}

.studio-statement {
  padding-bottom: 6px;
}

.studio-statement p {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.55;
}

.studio-statement .muted {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.studio-facts {
  display: grid;
  margin-top: 88px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  display: flex;
  min-height: 112px;
  padding: 26px 32px 20px 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.fact + .fact {
  padding-left: 32px;
}

.fact:last-child {
  border-right: 0;
}

.fact-number {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.fact strong {
  font-size: 16px;
  text-align: right;
}

.games-intro {
  padding: 120px 0 160px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.56fr);
  align-items: end;
  gap: 80px;
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 64px;
}

.section-heading > p:last-child {
  margin: 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 18px;
}

.feature {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
}

.feature-art,
.feature-shade {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
}

.feature-art {
  object-fit: cover;
}

.feature-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgb(3 6 4 / 0.9) 0%, rgb(3 6 4 / 0.57) 34%, transparent 68%);
}

.feature-blade .feature-shade {
  background: linear-gradient(270deg, rgb(3 4 6 / 0.96) 0%, rgb(3 4 6 / 0.72) 38%, transparent 72%);
}

.feature-content {
  display: flex;
  min-height: 700px;
  align-items: center;
}

.feature-content-right {
  justify-content: flex-end;
}

.feature-copy {
  width: min(100%, 500px);
}

.feature-copy h2 {
  margin-bottom: 28px;
  font-size: 66px;
}

.feature-copy > p:not(.feature-index) {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 0.72);
  font-size: 18px;
}

.feature-index {
  color: var(--green);
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-meta span {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 3px;
  color: rgb(255 255 255 / 0.75);
  font-size: 12px;
  font-weight: 700;
}

.zoo-feature {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.zoo-art {
  position: absolute;
  inset: 0;
}

.zoo-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(248 248 244 / 0.99) 0%, rgb(248 248 244 / 0.93) 38%, rgb(248 248 244 / 0.28) 72%);
  content: "";
}

.zoo-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoo-grid {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1fr);
  align-items: center;
  gap: 80px;
}

.zoo-copy {
  z-index: 2;
}

.zoo-copy h2 {
  margin-bottom: 28px;
  font-size: 66px;
}

.zoo-copy > p:not(.feature-index) {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 18px;
}

.feature-index-dark {
  color: var(--green-deep);
}

.steps {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  padding: 14px 12px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.steps li span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 11px;
}

.phone-gallery {
  position: relative;
  min-height: 620px;
}

.phone {
  position: absolute;
  width: 270px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #141715;
  border-radius: 34px;
  background: #141715;
  box-shadow: 0 28px 60px rgb(18 34 24 / 0.24);
}

.phone img {
  width: 100%;
  aspect-ratio: 1179 / 2556;
  object-fit: cover;
  border-radius: 25px;
}

.phone-back {
  top: 20px;
  right: 0;
  transform: rotate(5deg);
}

.phone-front {
  z-index: 1;
  top: 65px;
  right: 240px;
  transform: rotate(-5deg);
}

.portfolio {
  padding: 136px 0;
}

.portfolio-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 60px;
}

.portfolio-heading h2 {
  margin: 0;
}

.portfolio-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.app-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef5eb;
}

.app-card h3 {
  max-width: 280px;
  margin: 54px 0 18px;
}

.app-card p {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
}

.app-type {
  color: var(--green-deep);
}

.app-arrow {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgb(17 22 18 / 0.3);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.app-card-dark {
  color: var(--white);
  background: #151a17;
}

.app-card-red {
  background: #ffb1a5;
}

.app-card-blue {
  background: #b5e5f1;
}

.app-card-yellow {
  background: #f2df82;
}

.app-card-green {
  background: #b4e0b1;
}

.app-card-dark p,
.app-card-dark .app-type {
  color: rgb(255 255 255 / 0.66);
}

.app-card-dark .app-arrow {
  color: rgb(255 255 255 / 0.16);
}

.company {
  padding: 140px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1fr);
  gap: 110px;
}

.company-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.company-heading h2 {
  max-width: 500px;
}

.company-heading > p:last-child {
  max-width: 470px;
  color: rgb(255 255 255 / 0.58);
  font-size: 18px;
}

.credentials {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.credentials > div {
  display: grid;
  min-height: 96px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
}

.credentials dt {
  color: rgb(255 255 255 / 0.46);
  font-size: 13px;
  font-weight: 650;
}

.credentials dd {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

.office {
  padding: 128px 0;
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.6fr);
  align-items: center;
  gap: 84px;
}

.office-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.office-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.office-copy h2 {
  margin-bottom: 28px;
}

.office-copy address {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 18px;
  font-style: normal;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #172019;
}

.contact-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgb(10 16 12 / 0.95) 0%, rgb(10 16 12 / 0.72) 55%, rgb(10 16 12 / 0.36) 100%),
    url("assets/banners/worlds-made-to-play.png");
  background-position: center, center right;
  background-size: cover;
  filter: saturate(0.7);
}

.contact-inner {
  position: relative;
  padding-block: 130px;
}

.contact-inner h2 {
  max-width: 760px;
  margin-bottom: 48px;
  font-size: 64px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-links > a {
  display: flex;
  min-width: 330px;
  min-height: 76px;
  padding: 14px 22px 14px 14px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: var(--radius);
  background: rgb(7 10 8 / 0.36);
  backdrop-filter: blur(8px);
  font-size: 15px;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-links > a:hover {
  border-color: var(--green);
  background: rgb(7 10 8 / 0.72);
}

.contact-links small {
  display: block;
  margin-bottom: 2px;
  color: rgb(255 255 255 / 0.5);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--night);
  background: var(--green);
  border-radius: 50%;
  place-items: center;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
}

.site-footer {
  padding: 76px 0 22px;
  color: var(--white);
  background: var(--night);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.2fr 0.5fr 0.6fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid p {
  margin: 0;
  color: rgb(255 255 255 / 0.48);
  font-size: 14px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav a {
  min-height: 34px;
  color: rgb(255 255 255 / 0.7);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-address {
  text-align: right;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: rgb(255 255 255 / 0.38);
  font-size: 12px;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 68px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav > a {
    font-size: 13px;
  }

  .studio-grid,
  .section-heading,
  .portfolio-heading,
  .company-grid,
  .office-grid {
    gap: 56px;
  }

  .zoo-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
    gap: 36px;
  }

  .phone {
    width: 230px;
  }

  .phone-front {
    right: 190px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 44px), var(--max));
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 46px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 22px;
    overflow: hidden;
    background: var(--night);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 240ms ease,
      padding 240ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100dvh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding-block: 18px 26px;
    align-content: start;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a {
    min-height: 50px;
    padding: 0 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 16px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    padding-inline: 18px;
    justify-content: space-between;
    border-bottom: 0;
  }

  .hero {
    min-height: 720px;
  }

  .studio {
    padding: 100px 0 90px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .studio-grid h2 {
    font-size: 54px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading .section-label {
    margin-bottom: 0;
  }

  .section-heading h2 {
    font-size: 54px;
  }

  .feature,
  .feature-content {
    min-height: 650px;
  }

  .zoo-grid {
    min-height: 790px;
    grid-template-columns: minmax(0, 0.8fr) minmax(330px, 1fr);
  }

  .phone-gallery {
    min-height: 540px;
  }

  .phone {
    width: 210px;
  }

  .phone-front {
    right: 140px;
  }

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

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

  .company-heading {
    position: static;
  }

  .office-grid {
    grid-template-columns: 1.1fr 0.7fr;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .studio-grid h2,
  .section-heading h2,
  .feature-copy h2,
  .zoo-copy h2,
  .contact-inner h2 {
    font-size: 42px;
  }

  .hero {
    min-height: 700px;
    max-height: none;
    align-items: end;
  }

  .hero-backdrop {
    background-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgb(4 7 5 / 0.98) 0%, rgb(4 7 5 / 0.72) 54%, rgb(4 7 5 / 0.2) 100%),
      linear-gradient(90deg, rgb(4 7 5 / 0.55), transparent);
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 72px;
  }

  .hero-copy {
    max-width: 450px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .studio,
  .portfolio,
  .company,
  .office {
    padding: 86px 0;
  }

  .studio-statement p {
    font-size: 18px;
  }

  .studio-facts {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 78px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact + .fact {
    padding-left: 0;
  }

  .games-intro {
    padding: 86px 0 104px;
  }

  .feature,
  .feature-content {
    min-height: 660px;
  }

  .feature-art {
    object-position: 62% center;
  }

  .feature-blade .feature-art {
    object-position: 37% center;
  }

  .feature-shade,
  .feature-blade .feature-shade {
    background: linear-gradient(0deg, rgb(3 6 4 / 0.98) 0%, rgb(3 6 4 / 0.64) 54%, transparent 100%);
  }

  .feature-content,
  .feature-content-right {
    align-items: end;
    justify-content: flex-start;
  }

  .feature-copy {
    padding-bottom: 54px;
  }

  .feature-copy > p:not(.feature-index) {
    font-size: 16px;
  }

  .zoo-feature,
  .zoo-grid {
    min-height: 1120px;
  }

  .zoo-art::after {
    background: linear-gradient(0deg, rgb(248 248 244 / 0.99) 0%, rgb(248 248 244 / 0.97) 52%, rgb(248 248 244 / 0.18) 78%);
  }

  .zoo-art img {
    height: 48%;
    object-position: 66% center;
  }

  .zoo-grid {
    display: flex;
    padding-top: 360px;
    padding-bottom: 70px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 42px;
  }

  .zoo-copy > p:not(.feature-index) {
    font-size: 16px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .phone-gallery {
    min-height: 430px;
  }

  .phone {
    width: 185px;
    border-width: 6px;
    border-radius: 28px;
  }

  .phone img {
    border-radius: 20px;
  }

  .phone-back {
    right: 0;
  }

  .phone-front {
    right: auto;
    left: 0;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

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

  .app-card {
    min-height: 250px;
    padding: 28px;
  }

  .app-card h3 {
    margin-top: 40px;
  }

  .credentials > div {
    min-height: 88px;
    grid-template-columns: 120px 1fr;
  }

  .credentials dd {
    font-size: 16px;
  }

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

  .contact-inner {
    padding-block: 92px;
  }

  .contact-links {
    display: grid;
  }

  .contact-links > a {
    min-width: 0;
    width: 100%;
    padding-right: 14px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    padding-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@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-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
