:root {
  --ink: #0a0a0b;
  --paper: #f1efe9;
  --paper-soft: #e7e4dc;
  --white: #fbfaf6;
  --blue: #3157ff;
  --acid: #d8ff45;
  --orange: #ff633d;
  --line-dark: rgba(10, 10, 11, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --pad: clamp(24px, 5vw, 76px);
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    height 240ms ease,
    background 240ms ease,
    border-color 240ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(10, 10, 11, 0.88);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.brand-name small {
  font-size: 8px;
  letter-spacing: 0.2em;
  opacity: 0.58;
}

.site-nav {
  display: flex;
  gap: clamp(24px, 3.5vw, 54px);
  align-items: center;
  font-size: 13px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

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

.nav-cta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--acid);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--white);
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  min-height: 100svh;
  padding: 145px var(--pad) 92px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: auto auto -18vw -10vw;
  width: 40vw;
  height: 40vw;
  content: "";
  background: radial-gradient(circle, rgba(49, 87, 255, 0.24), transparent 68%);
  filter: blur(10px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.signal {
  position: absolute;
  z-index: 0;
  width: 8px;
  height: 8px;
  background: var(--acid);
  box-shadow: 0 0 22px 6px rgba(216, 255, 69, 0.28);
}

.signal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  content: "";
  border: 1px solid rgba(216, 255, 69, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: signal 2.4s ease-out infinite;
}

.signal-one {
  top: 24%;
  left: 38%;
}

.signal-two {
  right: 7%;
  bottom: 21%;
  width: 5px;
  height: 5px;
  background: var(--orange);
  box-shadow: 0 0 22px 6px rgba(255, 99, 61, 0.25);
}

.signal-two::after {
  border-color: rgba(255, 99, 61, 0.4);
  animation-delay: 1.2s;
}

@keyframes signal {
  from {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.2);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--acid);
}

.hero h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(54px, 7.1vw, 116px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.accent-text {
  position: relative;
  color: var(--acid);
}

.accent-text::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.06em;
  left: 0.08em;
  height: 0.07em;
  content: "";
  background: currentColor;
  transform: rotate(-2deg);
}

.hero-intro {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  min-width: 218px;
  padding: 18px 20px;
  font-size: 14px;
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button-primary:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-3px);
}

.button-arrow {
  font-size: 20px;
}

.text-link {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.text-link span {
  margin-left: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  margin-left: auto;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 20px 3px rgba(49, 87, 255, 0.65);
}

.orbit-outer {
  inset: 4%;
  animation: spin 26s linear infinite;
}

.orbit-inner {
  inset: 21%;
  border-style: dashed;
  animation: spin 18s linear infinite reverse;
}

.orbit-inner::before {
  background: var(--acid);
  box-shadow: 0 0 20px 3px rgba(216, 255, 69, 0.48);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 31%;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--acid);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(216, 255, 69, 0.18);
}

.visual-core span {
  font-family: Georgia, serif;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.9;
}

.visual-core small {
  margin-top: 10px;
  font-size: 7px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
}

.node {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(10, 10, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.node span {
  margin-right: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.node-strategy {
  top: 22%;
  left: 0;
}

.node-design {
  top: 27%;
  right: -1%;
}

.node-tech {
  right: 7%;
  bottom: 15%;
}

.visual-lines {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-dasharray: 3 8;
}

.hero-foot {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  left: var(--pad);
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.scroll-line {
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-line::after {
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: var(--acid);
  animation: scroll 2.2s ease-in-out infinite;
}

@keyframes scroll {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(220%);
  }
}

.section-pad {
  padding: clamp(96px, 12vw, 180px) var(--pad);
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 40px;
  color: var(--ink);
  background: var(--acid);
}

.section-number {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.manifesto-copy {
  max-width: 1100px;
}

.manifesto-text {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.manifesto-text span {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.12em;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 90px;
}

.section-kicker {
  color: rgba(10, 10, 11, 0.48);
}

.section-heading h2,
.approach h2,
.about h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-summary {
  max-width: 420px;
  margin: 0 0 6px;
  color: rgba(10, 10, 11, 0.62);
  font-size: 16px;
  line-height: 1.8;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-card {
  display: grid;
  grid-template-columns: 70px 120px 1fr;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.service-card:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: var(--white);
}

.service-index {
  padding-top: 8px;
  color: rgba(10, 10, 11, 0.42);
  font-size: 11px;
}

.service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.25fr) minmax(180px, 0.7fr);
  gap: 42px;
  align-items: start;
}

.service-content h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.service-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(10, 10, 11, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.service-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(10, 10, 11, 0.72);
  font-size: 12px;
  list-style: none;
}

.service-content li::before {
  margin-right: 10px;
  color: var(--blue);
  content: "—";
}

.approach {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(70px, 10vw, 180px);
  color: var(--white);
  background: var(--blue);
}

.approach .section-kicker {
  color: rgba(255, 255, 255, 0.54);
}

.approach-sticky {
  position: sticky;
  top: 132px;
  align-self: start;
}

.approach-sticky > p:last-child {
  max-width: 470px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 42px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.step-number {
  padding-top: 8px;
  color: var(--acid);
  font-size: 11px;
}

.step h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.step p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  background: var(--paper-soft);
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  overflow: hidden;
  background: var(--ink);
}

.about-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 54px 54px;
}

.about-ring {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.about-ring::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px dashed rgba(216, 255, 69, 0.3);
  border-radius: 50%;
}

.city-gate {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: 58%;
  color: var(--acid);
}

.gate-roof {
  width: 88%;
  height: 42px;
  border-top: 4px solid;
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 8%,
      currentColor 8.5% 9%,
      transparent 9.5% 18%
    );
}

.gate-body {
  position: relative;
  width: 64%;
  height: 180px;
  border: 3px solid;
  border-bottom: 0;
}

.gate-body::before,
.gate-body::after {
  position: absolute;
  top: 28px;
  width: 18px;
  height: 32px;
  content: "";
  background: currentColor;
}

.gate-body::before {
  left: 28px;
}

.gate-body::after {
  right: 28px;
}

.gate-body span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42%;
  height: 82px;
  border: 3px solid;
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  transform: translateX(-50%);
}

.gate-base {
  width: 82%;
  height: 25px;
  border-top: 3px solid;
  border-bottom: 3px solid;
}

.coordinate {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.about-copy {
  max-width: 680px;
}

.about-lead {
  margin: 44px 0 20px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 550;
  line-height: 1.65;
}

.about-copy > p:not(.section-kicker, .about-lead) {
  max-width: 610px;
  margin: 0;
  color: rgba(10, 10, 11, 0.58);
  font-size: 15px;
  line-height: 1.9;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.about-values div {
  display: grid;
  gap: 8px;
}

.about-values span {
  font-size: 17px;
  font-weight: 600;
}

.about-values small {
  color: rgba(10, 10, 11, 0.46);
  font-size: 11px;
}

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

.contact-top {
  display: flex;
  justify-content: space-between;
}

.contact .section-kicker {
  color: rgba(255, 255, 255, 0.45);
}

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

.contact h2 {
  margin: 50px 0 100px;
  font-size: clamp(62px, 10.5vw, 174px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.contact h2 a {
  color: var(--acid);
  border-bottom: 0.055em solid currentColor;
  transition: color 180ms ease;
}

.contact h2 a:hover {
  color: var(--blue);
}

.contact h2 span {
  display: inline-block;
  margin-left: 0.16em;
  font-size: 0.45em;
  vertical-align: top;
  transition: transform 180ms ease;
}

.contact h2 a:hover span {
  transform: translate(6px, -6px);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.contact-meta div {
  display: grid;
  gap: 10px;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact-meta strong {
  font-size: 13px;
  font-weight: 500;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 32px var(--pad);
  color: rgba(255, 255, 255, 0.42);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
}

.back-top {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--acid);
  font-size: 18px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: min(380px, calc(100vw - 48px));
  padding: 16px 18px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero-visual {
    width: 46vw;
  }

  .service-card {
    grid-template-columns: 50px 76px 1fr;
    gap: 22px;
  }

  .service-content {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .service-content ul {
    display: none;
  }

  .about {
    gap: 60px;
  }

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

@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    justify-content: center;
    padding: 90px var(--pad);
    background: var(--blue);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 16px 0;
    color: var(--white);
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 600;
    letter-spacing: -0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 24px;
    padding: 18px;
    font-size: 18px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 148px;
  }

  .hero h1 {
    font-size: clamp(56px, 13vw, 92px);
  }

  .hero-visual {
    width: min(88vw, 590px);
    margin: 70px auto 20px;
  }

  .signal-one {
    top: 38%;
    left: 18%;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 60px;
  }

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

  .service-icon {
    display: none;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .approach,
  .about {
    grid-template-columns: 1fr;
  }

  .approach-sticky {
    position: static;
  }

  .about-visual {
    min-height: min(80vw, 590px);
  }

  .about-copy {
    padding-top: 24px;
  }

  .contact h2 {
    margin-bottom: 70px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 76px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .hero-visual {
    width: 100vw;
    margin-left: calc(var(--pad) * -1);
  }

  .node {
    font-size: 10px;
  }

  .node span {
    margin-right: 10px;
  }

  .hero-foot {
    bottom: 20px;
  }

  .manifesto-text {
    font-size: 32px;
  }

  .section-heading h2,
  .approach h2,
  .about h2 {
    font-size: 46px;
  }

  .service-card {
    padding: 34px 0;
  }

  .service-card:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .step {
    grid-template-columns: 46px 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-values div {
    grid-template-columns: 60px 1fr;
    align-items: center;
  }

  .contact-top {
    display: block;
  }

  .contact-note {
    margin-top: 20px;
  }

  .contact h2 {
    font-size: 17.2vw;
  }

  .contact-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

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