@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --ink: #080808;
  --ink-soft: #111111;
  --ink-raised: #171717;
  --paper: #f3efe8;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-bright: #ff8a2a;
  --orange-ink: #b94700;
  --muted: #a7a29a;
  --muted-ink: #625f5a;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(8, 8, 8, 0.16);
  --focus: #ff9d57;
  --container: min(1240px, calc(100% - 48px));
  --section-space: clamp(88px, 12vw, 168px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  color: inherit;
}

svg,
video {
  display: block;
}

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

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
a {
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  background: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.announcement {
  position: relative;
  z-index: 70;
  height: 38px;
  color: var(--ink);
  background: var(--orange);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.announcement > a {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(8, 8, 8, 0.11);
}

.announcement-action {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 200ms var(--ease);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  height: 76px;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: fit-content;
  font-size: 1.04rem;
  font-weight: 820;
  letter-spacing: 0.19em;
  line-height: 1;
}

.brand span {
  color: var(--orange);
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.3vw, 52px);
}

.desktop-nav a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.79rem;
  font-weight: 570;
  letter-spacing: 0.04em;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right 220ms var(--ease);
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 760;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.header-cta:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}

.header-cta:hover .arrow-icon,
.button:hover .arrow-icon,
.footer-contact a:hover .arrow-icon {
  transform: translate(3px, -3px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100svh - 38px));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-fallback,
.hero-video,
.hero-overlay,
.hero-noise,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: var(--ink);
}

.hero-fallback {
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 42%, rgba(255, 106, 0, 0.13), transparent 30%),
    radial-gradient(circle at 80% 48%, rgba(255, 106, 0, 0.05), transparent 52%),
    linear-gradient(130deg, #080808 0%, #0a0908 55%, #030303 100%);
}

.gravity-core {
  position: absolute;
  top: 47%;
  right: clamp(-120px, 4vw, 70px);
  width: min(49vw, 720px);
  min-width: 460px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  filter: saturate(1.08);
}

.gravity-core > span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
}

.core-glow {
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.42), rgba(255, 106, 0, 0.08) 34%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(24px);
  animation: core-pulse 6s ease-in-out infinite;
}

.orbit {
  border: 1px solid rgba(255, 125, 36, 0.38);
  border-radius: 50%;
  transform-origin: center;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 7%;
  left: 23%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 18px var(--orange);
}

.orbit-one {
  width: 74%;
  height: 34%;
  transform: translate(-50%, -50%) rotate(-17deg);
  animation: orbit-one 22s linear infinite;
}

.orbit-two {
  width: 88%;
  height: 48%;
  opacity: 0.52;
  transform: translate(-50%, -50%) rotate(27deg);
  animation: orbit-two 29s linear infinite reverse;
}

.orbit-three {
  width: 60%;
  height: 84%;
  opacity: 0.34;
  transform: translate(-50%, -50%) rotate(54deg);
  animation: orbit-three 34s linear infinite;
}

.accretion {
  width: 62%;
  height: 15%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 2%, rgba(255, 106, 0, 0.75) 20%, #ffc08f 47%, rgba(255, 106, 0, 0.92) 65%, transparent 98%);
  box-shadow:
    0 0 24px rgba(255, 106, 0, 0.65),
    0 0 80px rgba(255, 106, 0, 0.25);
  transform: translate(-50%, -50%) rotate(-9deg);
  filter: blur(1px);
}

.core-hole {
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 0 0 3px rgba(255, 208, 173, 0.34),
    0 0 28px rgba(255, 106, 0, 0.84),
    inset 0 0 22px #000;
  transform: translate(-50%, -50%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-video.is-ready {
  opacity: 0.66;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.88) 39%, rgba(8, 8, 8, 0.42) 70%, rgba(8, 8, 8, 0.64) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.06) 50%, rgba(8, 8, 8, 0.88) 100%);
}

.hero-noise {
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-grid {
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-inner {
  position: relative;
  min-height: inherit;
  padding: clamp(96px, 13vh, 148px) 0 42px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}

.hero-copy {
  grid-column: 1 / 10;
  padding-bottom: 150px;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: clamp(0.7rem, 0.8vw, 0.78rem);
  font-weight: 720;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
}

.hero-eyebrow span::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.hero h1 {
  max-width: 1100px;
  margin: 30px 0 28px;
  color: var(--paper);
  font-size: clamp(3.45rem, 7.3vw, 7.1rem);
  font-weight: 680;
  letter-spacing: -0.067em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-description {
  max-width: 630px;
  margin: 0;
  color: rgba(243, 239, 232, 0.71);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  transition:
    color 200ms var(--ease),
    background 200ms var(--ease),
    border-color 200ms var(--ease),
    transform 200ms var(--ease);
}

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

.button-primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-promise {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.promise-line {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--orange);
}

.hero-promise p {
  margin: 0;
  color: rgba(243, 239, 232, 0.63);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-pillars {
  position: absolute;
  bottom: 38px;
  left: 0;
  width: min(720px, calc(100% - 310px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-pillar {
  min-height: 74px;
  padding: 16px 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.hero-pillar + .hero-pillar {
  padding-left: 18px;
}

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

.hero-pillar span {
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.hero-pillar strong {
  color: rgba(243, 239, 232, 0.74);
  font-size: 0.81rem;
  font-weight: 560;
}

.trust-rail {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #0b0b0b;
  border-bottom: 1px solid var(--line);
}

.trust-rail::before,
.trust-rail::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 12vw;
  pointer-events: none;
}

.trust-rail::before {
  left: 0;
  background: linear-gradient(90deg, #0b0b0b, transparent);
}

.trust-rail::after {
  right: 0;
  background: linear-gradient(-90deg, #0b0b0b, transparent);
}

.trust-track {
  width: max-content;
  display: flex;
  animation: trust-scroll 32s linear infinite;
}

.trust-rail:hover .trust-track {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
}

.trust-group span {
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.78rem;
  font-weight: 690;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-group i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.7);
}

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

.section-light .eyebrow {
  color: var(--orange-ink);
}

.services,
.work-section,
.process-section,
.difference-section {
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.section-heading > .eyebrow {
  grid-column: 1 / 4;
  padding-top: 12px;
}

.section-heading > div {
  grid-column: 4 / 13;
}

.section-heading h2,
.difference-heading h2,
.cta-inner h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.9rem, 6.2vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.061em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading h2 span,
.difference-heading h2 span,
.cta-inner h2 span {
  display: block;
  color: var(--orange);
}

.section-heading > div > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.heading-dark h2 {
  color: var(--ink);
}

.heading-dark h2 span {
  color: var(--orange-ink);
}

.heading-dark > div > p {
  color: var(--muted-ink);
}

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

.service-card {
  min-height: 430px;
  padding: clamp(26px, 3.3vw, 44px);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.2);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    color 260ms var(--ease),
    background 260ms var(--ease),
    transform 260ms var(--ease);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-index {
  color: var(--orange-ink);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.service-icon {
  width: 54px;
  height: 54px;
  color: var(--orange-ink);
}

.service-card-copy {
  margin-top: auto;
  padding-top: 70px;
}

.service-card h3 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.service-card p {
  max-width: 490px;
  margin: 19px 0 0;
  color: var(--muted-ink);
  font-size: 0.97rem;
  line-height: 1.65;
}

.service-card ul,
.case-card ul {
  margin: 32px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.service-card li {
  display: inline-flex;
  align-items: center;
  margin: 0 18px 8px 0;
  color: rgba(8, 8, 8, 0.67);
  font-size: 0.75rem;
  font-weight: 630;
}

.service-card li::before {
  content: "+";
  margin-right: 6px;
  color: var(--orange-ink);
}

@media (hover: hover) {
  .service-card:hover {
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-4px);
  }

  .service-card:hover p,
  .service-card:hover li {
    color: rgba(243, 239, 232, 0.66);
  }

  .service-card:hover ul {
    border-color: var(--line);
  }
}

.result-section {
  position: relative;
  padding: clamp(80px, 9vw, 122px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 30%, rgba(255, 106, 0, 0.13), transparent 25%),
    var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  align-items: end;
}

.result-intro {
  grid-column: 1 / 5;
}

.result-intro h2 {
  margin: 22px 0 20px;
  font-size: clamp(2.4rem, 4.3vw, 4.5rem);
  font-weight: 630;
  letter-spacing: -0.057em;
  line-height: 0.96;
}

.result-intro > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.result-metric {
  grid-column: 5 / 10;
  padding: 0 0 4px clamp(16px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.result-metric > span {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 690;
}

.result-metric strong {
  display: block;
  color: var(--paper);
  font-size: clamp(4.5rem, 9vw, 8.9rem);
  font-weight: 660;
  letter-spacing: -0.085em;
  line-height: 0.82;
  white-space: nowrap;
}

.result-metric p {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.result-note {
  grid-column: 10 / 13;
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--orange);
  border-radius: 14px;
}

.result-note p {
  margin: 30px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.result-orbit {
  position: relative;
  width: 68px;
  height: 34px;
  border: 1px solid rgba(8, 8, 8, 0.55);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.result-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

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

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  min-height: 520px;
  padding: clamp(26px, 3.5vw, 46px);
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
}

.case-card:nth-child(1) {
  grid-column: span 7;
}

.case-card:nth-child(2) {
  grid-column: span 5;
}

.case-card:nth-child(3) {
  grid-column: span 12;
  min-height: 470px;
}

.case-orange {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    var(--orange);
}

.case-paper {
  color: var(--ink);
  background:
    linear-gradient(135deg, transparent 70%, rgba(255, 106, 0, 0.12)),
    var(--paper);
}

.case-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 38%, rgba(255, 106, 0, 0.22), transparent 18%),
    linear-gradient(135deg, #141414, #0d0d0d);
  border: 1px solid var(--line);
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-dark .case-topline,
.case-dark .case-client span,
.case-dark > p {
  color: rgba(243, 239, 232, 0.57);
}

.case-client {
  margin-top: auto;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-client strong {
  font-size: 0.82rem;
  font-weight: 740;
  letter-spacing: 0.03em;
}

.case-client span {
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.73rem;
}

.case-card h3 {
  max-width: 600px;
  margin: 24px 0 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.45rem);
  font-weight: 640;
  letter-spacing: -0.061em;
  line-height: 0.95;
  text-wrap: balance;
}

.case-card:nth-child(2) h3 {
  font-size: clamp(2.1rem, 3.8vw, 3.75rem);
}

.case-card:nth-child(3) h3 {
  max-width: 780px;
}

.case-card > p {
  max-width: 660px;
  margin: 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 0.92rem;
  line-height: 1.65;
}

.case-card.case-dark > p {
  color: rgba(243, 239, 232, 0.57);
}

.case-footer {
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.case-card ul {
  flex: 1;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card li {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 650;
  opacity: 0.7;
}

.case-dark ul {
  border-color: var(--line);
}

.case-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 220ms var(--ease);
}

.case-card:hover .case-arrow {
  transform: rotate(8deg) scale(1.04);
}

.process-heading {
  margin-bottom: clamp(70px, 8vw, 112px);
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: var(--line-dark);
}

.process-list li {
  position: relative;
  padding-top: 42px;
}

.process-node {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange-ink);
  box-shadow: 0 0 0 1px var(--orange-ink);
}

.process-number {
  color: var(--orange-ink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.process-list h3 {
  margin: 20px 0 15px;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1;
}

.process-list p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.difference-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.95%, var(--line) 50%, transparent 50.05%),
    var(--ink);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
}

.difference-heading {
  grid-column: 1 / 6;
  align-self: start;
  position: sticky;
  top: 116px;
}

.difference-heading h2 {
  margin-top: 32px;
  font-size: clamp(3.4rem, 6.6vw, 6.5rem);
}

.difference-list {
  grid-column: 7 / 13;
}

.difference-list article {
  min-height: 230px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.difference-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.difference-list article > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.difference-list h3 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.5vw, 2.55rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.difference-list p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.cta-section {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
}

.cta-section .eyebrow {
  color: rgba(8, 8, 8, 0.82);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  max-width: 920px;
  margin-top: 28px;
  color: var(--ink);
  font-size: clamp(3.5rem, 8.3vw, 8rem);
  letter-spacing: -0.075em;
}

.cta-inner h2 span {
  color: rgba(8, 8, 8, 0.55);
}

.cta-bottom {
  margin-top: clamp(50px, 8vw, 94px);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  border-top: 1px solid rgba(8, 8, 8, 0.32);
}

.cta-bottom p {
  max-width: 600px;
  margin: 0;
  color: rgba(8, 8, 8, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.6;
}

.button-dark {
  min-height: 58px;
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  color: var(--white);
  background: #1c1c1c;
}

.cta-orbit {
  position: absolute;
  top: -42%;
  right: -10%;
  width: min(55vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 50%;
}

.cta-orbit::before,
.cta-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(8, 8, 8, 0.15);
  border-radius: 50%;
}

.cta-orbit::after {
  inset: 34%;
  background: var(--ink);
  border: 0;
  box-shadow: 0 0 60px rgba(8, 8, 8, 0.3);
}

.cta-orbit span {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 9%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 10px rgba(8, 8, 8, 0.08);
}

.site-footer {
  padding: 72px 0 28px;
  color: var(--paper);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 72px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.site-footer nav > span,
.footer-contact > span {
  margin-bottom: 5px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer nav a,
.footer-contact a {
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.85rem;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom {
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  color: rgba(243, 239, 232, 0.58);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.footer-bottom a {
  justify-self: end;
  color: rgba(243, 239, 232, 0.64);
}

@keyframes core-pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes orbit-one {
  to {
    transform: translate(-50%, -50%) rotate(343deg);
  }
}

@keyframes orbit-two {
  to {
    transform: translate(-50%, -50%) rotate(387deg);
  }
}

@keyframes orbit-three {
  to {
    transform: translate(-50%, -50%) rotate(414deg);
  }
}

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

@media (max-width: 1099px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 76px 0 auto;
    height: calc(100svh - 76px);
    padding: 0 24px 30px;
    display: block;
    color: var(--paper);
    background: rgba(8, 8, 8, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 260ms var(--ease);
  }

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

  .mobile-menu nav {
    width: min(100%, 720px);
    margin: 0 auto;
    padding-top: 36px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav > a {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line);
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .mobile-menu nav > a > span {
    color: var(--orange);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .mobile-menu .mobile-contact {
    min-height: 56px;
    margin-top: 28px;
    padding: 0 18px;
    justify-content: space-between;
    color: var(--ink);
    background: var(--orange);
    border: 0;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 760;
    letter-spacing: 0;
  }

  .hero-copy {
    grid-column: 1 / 11;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 8.8vw, 6.9rem);
  }

  .gravity-core {
    right: -170px;
    opacity: 0.78;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.87) 50%, rgba(8, 8, 8, 0.45) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.12) 50%, rgba(8, 8, 8, 0.9) 100%);
  }

  .result-intro {
    grid-column: 1 / 6;
  }

  .result-metric {
    grid-column: 6 / 13;
  }

  .result-note {
    grid-column: 8 / 13;
    margin-top: 24px;
  }

  .case-card:nth-child(1),
  .case-card:nth-child(2) {
    grid-column: span 6;
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: 820px;
  }

  .hero-inner {
    padding-top: 100px;
  }

  .hero-copy {
    grid-column: 1 / 13;
  }

  .hero h1 {
    max-width: 810px;
  }

  .hero-promise {
    display: none;
  }

  .hero-pillars {
    width: 100%;
  }

  .gravity-core {
    top: 38%;
    right: -210px;
    opacity: 0.57;
  }

  .section-heading > .eyebrow {
    grid-column: 1 / 13;
    padding-top: 0;
  }

  .section-heading > div {
    grid-column: 1 / 13;
  }

  .section-heading h2 {
    margin-top: 25px;
  }

  .service-card {
    min-height: 400px;
  }

  .result-grid {
    align-items: start;
  }

  .result-intro {
    grid-column: 1 / 13;
  }

  .result-intro > p:last-child {
    max-width: 600px;
  }

  .result-metric {
    grid-column: 1 / 9;
    margin-top: 58px;
    padding-left: 0;
    border-left: 0;
  }

  .result-note {
    grid-column: 9 / 13;
    margin-top: 58px;
  }

  .case-card:nth-child(1),
  .case-card:nth-child(2),
  .case-card:nth-child(3) {
    grid-column: span 12;
    min-height: 470px;
  }

  .case-card:nth-child(2) h3 {
    font-size: clamp(2.15rem, 7vw, 4.45rem);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 32px;
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    padding: 32px 0 0 24px;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .process-node {
    top: -6px;
    left: -6px;
  }

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

  .difference-heading {
    grid-column: 1 / 13;
    position: static;
    margin-bottom: 70px;
  }

  .difference-list {
    grid-column: 1 / 13;
  }

  .cta-orbit {
    top: -20%;
    right: -32%;
    width: 80vw;
  }

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

@media (max-width: 639px) {
  :root {
    --container: calc(100% - 32px);
  }

  .announcement {
    height: 34px;
  }

  .announcement > a {
    gap: 9px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .announcement-action {
    display: none;
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    inset: 68px 0 auto;
    height: calc(100svh - 68px);
    padding-inline: 16px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner {
    padding: 74px 0 30px;
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 210px;
  }

  .hero-eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-eyebrow span::after {
    width: 24px;
  }

  .hero h1 {
    margin: 24px 0 22px;
    font-size: clamp(3.05rem, 14.2vw, 4.7rem);
    letter-spacing: -0.065em;
    line-height: 0.92;
  }

  .hero-description {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .button {
    min-height: 52px;
  }

  .gravity-core {
    top: 31%;
    right: -285px;
    min-width: 520px;
    opacity: 0.48;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.66)),
      linear-gradient(180deg, rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.18) 55%, rgba(8, 8, 8, 0.95) 100%);
  }

  .hero-grid {
    background-size: 54px 54px;
  }

  .hero-pillars {
    bottom: 26px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-pillar {
    min-height: 62px;
    padding-top: 11px;
    border-bottom: 1px solid var(--line);
  }

  .hero-pillar:nth-child(2) {
    border-right: 0;
  }

  .hero-pillar:nth-child(3),
  .hero-pillar:nth-child(4) {
    border-bottom: 0;
  }

  .hero-pillar strong {
    font-size: 0.75rem;
  }

  .trust-rail {
    height: 68px;
  }

  .trust-group {
    gap: 24px;
    padding-right: 24px;
  }

  .trust-group span {
    font-size: 0.69rem;
  }

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

  .section-heading h2,
  .difference-heading h2 {
    font-size: clamp(2.65rem, 12.2vw, 4rem);
  }

  .section-heading > div > p {
    margin-top: 22px;
    font-size: 0.96rem;
  }

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

  .service-card {
    min-height: 390px;
    padding: 26px;
  }

  .service-card-copy {
    padding-top: 58px;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

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

  .result-intro h2 {
    font-size: 2.85rem;
  }

  .result-metric {
    grid-column: 1 / 13;
    margin-top: 52px;
  }

  .result-metric strong {
    font-size: clamp(4.6rem, 22vw, 7rem);
  }

  .result-note {
    grid-column: 1 / 13;
    min-height: 170px;
    margin-top: 28px;
  }

  .case-card:nth-child(1),
  .case-card:nth-child(2),
  .case-card:nth-child(3) {
    min-height: 500px;
    padding: 26px;
  }

  .case-card h3,
  .case-card:nth-child(2) h3 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .case-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .case-footer {
    align-items: flex-start;
  }

  .case-arrow {
    width: 46px;
    height: 46px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-list h3 {
    font-size: 2rem;
  }

  .difference-heading {
    margin-bottom: 54px;
  }

  .difference-list article {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .difference-list h3 {
    font-size: 1.75rem;
  }

  .cta-section {
    padding: 84px 0;
  }

  .cta-inner h2 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .cta-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-bottom .button {
    width: 100%;
  }

  .cta-orbit {
    top: -2%;
    right: -48%;
    width: 120vw;
    opacity: 0.56;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 24px;
  }

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

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

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 419px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.82rem, 13.8vw, 3.8rem);
  }

  .case-footer {
    flex-direction: column;
  }
}

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

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

  .trust-track {
    transform: none;
  }
}
