:root {
  --ink: #071018;
  --ink-soft: #10202b;
  --paper: #f4f1e9;
  --paper-soft: #e7e2d8;
  --coral: #ff5b45;
  --coral-dark: #d63d2d;
  --mint: #a9e6d5;
  --line-dark: rgba(244, 241, 233, 0.16);
  --line-light: rgba(7, 16, 24, 0.16);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Songti SC", "Noto Serif SC", serif;
  --sans: "Aptos", "Avenir Next", "Segoe UI", "PingFang SC", "Noto Sans SC", sans-serif;
  --shell: min(1480px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 48px;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(7, 16, 24, 0.92);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav > a:not(.nav-contact) {
  position: relative;
  padding-block: 8px;
  color: rgba(244, 241, 233, 0.72);
}

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

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper);
}

.nav-contact span {
  color: var(--coral-dark);
  font-size: 18px;
}

.menu-button {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--paper);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  width: 24px;
  gap: 6px;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  background-color: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 77% 36%, rgba(169, 230, 213, 0.12), transparent 24%),
    radial-gradient(circle at 64% 84%, rgba(255, 91, 69, 0.10), transparent 28%);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-position: center;
  background-size: 25vw 25vw;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 241, 233, 0.16);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 14%;
  right: -12vw;
  width: 48vw;
  height: 48vw;
}

.hero-orbit-two {
  top: 30%;
  right: 3vw;
  width: 17vw;
  height: 17vw;
  border-color: var(--coral);
  opacity: 0.45;
}

.hero-content {
  display: grid;
  min-height: calc(100svh - 80px);
  align-content: center;
  gap: clamp(40px, 6vh, 78px);
  padding-block: 132px 110px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(244, 241, 233, 0.56);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta p,
.hero-kicker,
.hero-intro,
.section-index,
.manifesto-copy p,
.manifesto-note,
.section-heading p,
.service-description,
.technology-lead,
.contact-action p,
.footer-bottom p {
  margin: 0;
}

.hero-title-wrap {
  display: grid;
  gap: 8px;
}

.hero-kicker {
  margin-left: 4px;
  color: var(--mint);
  font-size: clamp(14px, 1.2vw, 19px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  margin: 0;
  font-size: clamp(64px, 10.2vw, 182px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line-two {
  justify-self: end;
}

.hero-title em {
  color: var(--paper);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
}

.hero-title strong {
  color: var(--coral);
  font-weight: inherit;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 500px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.hero-intro {
  color: rgba(244, 241, 233, 0.7);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.55;
}

.circle-link {
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(244, 241, 233, 0.5);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  transform: rotate(-6deg);
}

.circle-link i {
  color: var(--coral);
  font-size: 18px;
  font-style: normal;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding-block: 15px;
  color: var(--ink);
  background: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  width: 6px;
  height: 6px;
  background: var(--ink);
  transform: rotate(45deg);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

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

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

.section-coral {
  color: var(--ink);
  background: var(--coral);
}

.section-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto {
  padding-block: clamp(110px, 14vw, 220px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 3fr 1.25fr;
  align-items: start;
  gap: 48px;
}

.manifesto-copy {
  display: grid;
  gap: 28px;
}

.manifesto-copy p {
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto-copy h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.manifesto-note {
  align-self: end;
  max-width: 320px;
  color: rgba(7, 16, 24, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.services {
  padding-block: 0 clamp(110px, 12vw, 190px);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr minmax(240px, 0.8fr);
  align-items: end;
  gap: 48px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-light);
}

.section-heading > div {
  display: grid;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 86px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-heading > p {
  max-width: 430px;
  color: rgba(7, 16, 24, 0.62);
  line-height: 1.7;
}

.service-list {
  display: grid;
}

.service-item {
  display: grid;
  grid-template-columns: 0.35fr 1.2fr 1.1fr 0.8fr;
  align-items: start;
  gap: 36px;
  padding-block: 58px;
  border-bottom: 1px solid var(--line-light);
  transition: padding-inline 220ms ease, background 220ms ease;
}

.service-item:hover {
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.34);
}

.service-number {
  margin: 8px 0 0;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 28px;
}

.service-title {
  display: grid;
  gap: 14px;
}

.service-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 3.2vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.service-title p {
  margin: 0;
  color: rgba(7, 16, 24, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.service-description {
  max-width: 430px;
  color: rgba(7, 16, 24, 0.68);
  line-height: 1.72;
}

.service-tags {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding-bottom: 9px;
  color: rgba(7, 16, 24, 0.66);
  border-bottom: 1px solid rgba(7, 16, 24, 0.12);
  font-size: 12px;
}

.approach {
  padding-block: clamp(110px, 13vw, 200px);
}

.approach-sticky {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: start;
  gap: clamp(70px, 10vw, 170px);
}

.approach-intro {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 34px;
}

.approach-intro h2 {
  margin: 0;
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.approach-intro h2 em {
  color: var(--mint);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
}

.approach-intro > p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(244, 241, 233, 0.62);
  line-height: 1.72;
}

.approach-steps {
  display: grid;
}

.approach-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 30px;
  padding-block: 48px 70px;
  border-top: 1px solid var(--line-dark);
}

.approach-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.approach-step span {
  grid-row: span 2;
  color: var(--coral);
  font-family: var(--display);
  font-size: 34px;
}

.approach-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.approach-step p {
  max-width: 540px;
  margin: 15px 0 0;
  color: rgba(244, 241, 233, 0.58);
  line-height: 1.7;
}

.technology {
  padding-block: clamp(100px, 12vw, 180px);
}

.technology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 170px);
}

.technology-heading {
  display: grid;
  align-content: start;
  gap: 32px;
}

.technology-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.technology-copy {
  display: grid;
  gap: 54px;
}

.technology-lead {
  max-width: 650px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 16, 24, 0.35);
}

.principle-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 24px 0 0;
  border-right: 1px solid rgba(7, 16, 24, 0.22);
}

.principle-grid article:not(:first-child) {
  padding-left: 24px;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-grid p {
  margin: 0;
  color: rgba(7, 16, 24, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span {
  font-size: 20px;
}

.company {
  overflow: hidden;
  padding-block: clamp(110px, 13vw, 200px);
}

.company-grid {
  display: grid;
  gap: clamp(90px, 13vw, 190px);
}

.company-wordmark {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: clamp(94px, 20vw, 330px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.62;
}

.company-wordmark span:nth-child(4) {
  color: var(--coral);
  font-family: var(--display);
  font-weight: 400;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 170px);
}

.company-heading {
  display: grid;
  gap: 30px;
}

.company-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 38px 32px;
}

.company-details > div {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.detail-label {
  margin: 0 0 12px;
  color: rgba(7, 16, 24, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.company-details p:not(.detail-label),
.company-details address {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.contact {
  padding-block: clamp(100px, 12vw, 180px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.contact-heading {
  display: grid;
  gap: 34px;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 130px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.contact-heading h2 em {
  color: var(--coral);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
}

.contact-action {
  display: grid;
  gap: 26px;
  padding-bottom: 8px;
}

.contact-action > p {
  max-width: 440px;
  color: rgba(244, 241, 233, 0.58);
  line-height: 1.7;
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-block: 1px solid var(--line-dark);
  font-size: clamp(18px, 1.6vw, 25px);
}

.email-link span {
  color: var(--coral);
  font-size: 24px;
}

.copy-button {
  width: fit-content;
  padding: 0 0 6px;
  color: var(--mint);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--paper);
  background: var(--ink-soft);
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 42px;
}

.footer-links {
  display: flex;
  gap: 32px;
  color: rgba(244, 241, 233, 0.64);
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-block: 26px;
  color: rgba(244, 241, 233, 0.38);
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom p:last-child {
  text-align: right;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  position: static;
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.legal-header .menu-button {
  color: var(--ink);
}

.legal-back {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(90px, 11vw, 160px);
}

.legal-title {
  position: sticky;
  top: 50px;
  align-self: start;
}

.legal-title h1 {
  margin: 20px 0 28px;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.legal-title > p:last-child {
  color: rgba(7, 16, 24, 0.52);
  font-size: 13px;
}

.legal-content {
  display: grid;
  gap: 52px;
}

.legal-content section {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: rgba(7, 16, 24, 0.68);
  line-height: 1.75;
}

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

.legal-contact {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 24px 40px;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-contact) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: clamp(36px, 8vw, 64px);
    letter-spacing: -0.03em;
  }

  .nav-contact {
    margin-top: 30px;
    justify-content: space-between;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-title {
    font-size: clamp(64px, 11.4vw, 116px);
  }

  .manifesto-grid {
    grid-template-columns: 1fr 3fr;
  }

  .manifesto-note {
    grid-column: 2;
  }

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

  .service-tags {
    grid-column: 2 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-sticky,
  .technology-grid,
  .company-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-intro {
    position: static;
  }

  .company-wordmark {
    font-size: 21vw;
  }

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

  .legal-title {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header {
    padding: 16px 18px;
  }

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

  .hero-content {
    min-height: 100svh;
    gap: 48px;
    padding-block: 116px 106px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-title {
    gap: 10px;
    font-size: clamp(54px, 17.5vw, 88px);
    line-height: 0.82;
  }

  .title-line {
    white-space: normal;
  }

  .title-line-two {
    justify-self: start;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .circle-link {
    width: 90px;
    height: 90px;
    justify-self: end;
  }

  .hero-grid {
    background-size: 50vw 50vw;
  }

  .hero-orbit-one {
    top: 24%;
    right: -48vw;
    width: 98vw;
    height: 98vw;
  }

  .hero-orbit-two {
    top: 35%;
    right: -10vw;
    width: 48vw;
    height: 48vw;
  }

  .manifesto-grid,
  .section-heading,
  .service-item,
  .company-details,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 42px;
  }

  .manifesto-note {
    grid-column: auto;
  }

  .section-heading {
    align-items: start;
  }

  .service-item {
    gap: 22px;
  }

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

  .service-item:hover {
    padding-inline: 0;
    background: transparent;
  }

  .approach-step {
    grid-template-columns: 48px 1fr;
    gap: 8px 18px;
  }

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

  .principle-grid article,
  .principle-grid article:not(:first-child) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 24, 0.22);
  }

  .company-wordmark {
    font-size: 20.5vw;
    line-height: 0.8;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child {
    text-align: left;
  }

  .legal-main {
    padding-top: 72px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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