:root {
  --ink: #15141a;
  --ink-soft: #211f29;
  --paper: #f4f1ee;
  --paper-warm: #eae5e2;
  --lavender: #c9c1ef;
  --lavender-bright: #e1dcff;
  --coral: #ff685f;
  --coral-deep: #bf3732;
  --white: #fffefd;
  --muted: #a6a2ad;
  --line-dark: rgba(21, 20, 26, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --shell: min(100% - 48px, 1240px);
  --radius: 20px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Futura", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

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

.section-pad {
  position: relative;
  padding: 136px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--lavender-bright);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.3;
}

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

.eyebrow.dark {
  color: #615d68;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  color: var(--white);
  transition: height .3s var(--ease), background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(21, 20, 26, .88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  transform: skewY(-12deg);
}

.brand-mark span {
  display: block;
  background: var(--coral);
}

.brand-mark span:nth-child(1) { height: 48%; }
.brand-mark span:nth-child(2) { height: 72%; }
.brand-mark span:nth-child(3) { height: 100%; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: .88rem;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, .76);
  transition: color .2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transition: right .25s var(--ease);
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
  color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  align-items: center;
  gap: 18px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

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

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.hero {
  display: flex;
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 19%, rgba(201, 193, 239, .13), transparent 29%),
    linear-gradient(135deg, #111015 0%, #19171f 54%, #201d27 100%);
  align-items: center;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -28vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(201, 193, 239, .2);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 9vw 9vw;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, .8), transparent 86%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, .8), transparent 86%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  top: 17%;
  right: 13%;
  width: 26vw;
  height: 26vw;
  min-width: 320px;
  min-height: 320px;
  opacity: .68;
  background: radial-gradient(circle at 34% 30%, #eeeaff 0, var(--lavender) 25%, #9f8fdc 48%, rgba(159, 143, 220, .08) 70%);
  box-shadow: 0 0 110px rgba(201, 193, 239, .18);
  animation: orb-float 8s ease-in-out infinite alternate;
}

.orb-two {
  top: 49%;
  right: 8%;
  width: 8vw;
  height: 8vw;
  min-width: 100px;
  min-height: 100px;
  background: var(--coral);
  box-shadow: 0 0 65px rgba(255, 104, 95, .25);
  animation: orb-float 6s 1.2s ease-in-out infinite alternate-reverse;
}

@keyframes orb-float {
  to { transform: translate3d(18px, -24px, 0) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 46px;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 7.6rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .99;
}

.hero h1 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--lavender-bright);
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: .08em;
  left: 2px;
  height: .12em;
  content: "";
  background: var(--coral);
  transform: skewX(-24deg);
}

.hero-bottom {
  display: grid;
  max-width: 830px;
  margin-top: 64px;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 72px;
}

.hero-intro {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.04rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: gap .25s var(--ease), color .25s ease, background .25s ease, transform .25s var(--ease);
}

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

.button-primary {
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 16px 36px rgba(255, 104, 95, .18);
}

.button-primary:hover {
  background: #ff7b73;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  transition: color .2s ease, gap .2s var(--ease);
}

.text-link:hover {
  gap: 22px;
  color: var(--white);
}

.hero-corner {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  color: rgba(255, 255, 255, .17);
  transform: rotate(12deg);
}

.hero-corner svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.scroll-cue {
  display: flex;
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: max(24px, calc((100% - 1420px) / 2));
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .44);
  font-size: .72rem;
  letter-spacing: .12em;
  writing-mode: vertical-lr;
}

.scroll-cue i {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--coral) 50%, rgba(255, 255, 255, .15) 50%);
}

.statement {
  overflow: hidden;
  background: var(--paper);
}

.section-index {
  position: absolute;
  top: 74px;
  right: 4vw;
  color: rgba(21, 20, 26, .045);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
}

.statement-layout {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .74fr);
  gap: 8vw;
}

.section-heading h2,
.approach-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1.08;
}

.statement-copy {
  padding-top: 64px;
}

.statement-copy p {
  margin: 0;
  color: #65616b;
}

.statement-copy .lead {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.72;
}

.marquee {
  width: 100%;
  margin-top: 120px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transform: rotate(-2deg) scale(1.03);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 20px 0;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 0 30px;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1;
}

.marquee i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

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

.services {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.services::before {
  position: absolute;
  top: -75px;
  left: 0;
  width: 100%;
  height: 150px;
  content: "";
  background: var(--paper);
  transform: skewY(-2.8deg);
  transform-origin: 100% 0;
}

.services-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-square {
  position: absolute;
  top: 12%;
  right: -8vw;
  width: 32vw;
  height: 32vw;
  border: 1px solid rgba(201, 193, 239, .09);
  transform: rotate(34deg);
}

.geo-line {
  position: absolute;
  bottom: 7%;
  left: -12vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 104, 95, .09);
  border-radius: 50%;
}

.services-head {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.services-head h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1.04;
}

.services-head > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .58);
}

.service-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease);
}

.service-card:hover {
  border-color: rgba(201, 193, 239, .45);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-8px);
}

.feature-card {
  background: linear-gradient(150deg, rgba(201, 193, 239, .17), rgba(255, 255, 255, .035) 62%);
  transform: translateY(-18px);
}

.feature-card:hover {
  transform: translateY(-26px);
}

.card-glow {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  opacity: .28;
  background: var(--lavender);
  filter: blur(60px);
}

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

.card-number {
  color: var(--coral);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.card-top svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--lavender);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.service-card h3 {
  max-width: 280px;
  margin: 110px 0 22px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, .57);
}

.service-card ul {
  display: flex;
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  list-style: none;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card li {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(255, 255, 255, .64);
  font-size: .72rem;
  line-height: 1.3;
}

.approach {
  overflow: hidden;
  background: var(--paper);
}

.approach::after {
  position: absolute;
  top: 0;
  right: -15vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(21, 20, 26, .06);
  border-radius: 50%;
  content: "";
}

.approach-layout {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: .76fr 1fr;
  gap: 9vw;
}

.approach-intro {
  align-self: start;
}

.approach-intro > p:last-child {
  max-width: 440px;
  margin: 34px 0 0;
  color: #6c6871;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  display: grid;
  position: relative;
  min-height: 150px;
  padding: 31px 90px 31px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  transition: padding-left .3s var(--ease), background .3s ease;
}

.process-list li:hover {
  padding-left: 18px;
  background: rgba(201, 193, 239, .13);
}

.process-number {
  padding-top: 7px;
  color: var(--coral-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.process-list p {
  margin: 0;
  color: #74707a;
  font-size: .92rem;
}

.process-shape {
  position: absolute;
  top: 45px;
  right: 22px;
  width: 44px;
  height: 44px;
  transition: transform .35s var(--ease), background .35s ease;
}

.process-list li:hover .process-shape {
  transform: rotate(45deg) scale(.88);
}

.shape-circle {
  border: 1px solid var(--lavender);
  border-radius: 50%;
}

.shape-diamond {
  border: 1px solid var(--coral);
  transform: rotate(45deg) scale(.72);
}

.process-list li:hover .shape-diamond {
  background: var(--coral);
  transform: rotate(90deg) scale(.65);
}

.shape-square {
  border: 1px solid #aba2d7;
}

.shape-cross::before,
.shape-cross::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.shape-cross::before {
  top: 21px;
  left: 0;
  width: 44px;
  height: 1px;
}

.shape-cross::after {
  top: 0;
  left: 21px;
  width: 1px;
  height: 44px;
}

.values {
  display: grid;
  min-height: 700px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr 1fr;
}

.value-visual {
  display: grid;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(201, 193, 239, .35), rgba(201, 193, 239, .03)),
    var(--ink-soft);
  place-items: center;
}

.value-visual::before,
.value-visual::after {
  position: absolute;
  content: "";
}

.value-visual::before {
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 72%);
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.value-visual::after {
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(2px);
}

.radar {
  position: relative;
  z-index: 1;
  width: min(62%, 410px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  animation: radar-spin 24s linear infinite;
}

.radar span {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.radar span:nth-child(2) { inset: 33%; }
.radar span:nth-child(3) { inset: 48%; background: var(--coral); border: 0; }

.radar::before,
.radar::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%);
}

.radar::before { width: 140%; height: 1px; }
.radar::after { width: 1px; height: 140%; }

.radar i {
  position: absolute;
  top: 7%;
  left: 66%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lavender-bright);
  box-shadow: 0 0 28px var(--lavender-bright);
}

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

.value-content {
  display: flex;
  padding: clamp(70px, 9vw, 150px) max(40px, 8vw);
  flex-direction: column;
  justify-content: center;
}

.value-content h2 {
  margin: 0 0 32px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1.06;
}

.value-content p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
}

.value-tags {
  display: grid;
  max-width: 560px;
  margin-top: 56px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.value-tags span {
  padding: 18px 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
}

.contact {
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--coral-deep);
}

.contact-lines {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 12.5% 100%;
}

.contact::before {
  position: absolute;
  top: -20%;
  right: -4%;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.contact-shape {
  position: absolute;
  top: 50%;
  right: 9vw;
  width: min(31vw, 440px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, .45);
  transform: translateY(-50%) rotate(18deg);
}

.contact-shape span,
.contact-shape i {
  position: absolute;
  border-radius: 50%;
}

.contact-shape span {
  top: 18%;
  left: 18%;
  width: 64%;
  height: 64%;
  border: 1px solid rgba(255, 255, 255, .7);
}

.contact-shape i {
  top: 43%;
  left: 43%;
  width: 14%;
  height: 14%;
  background: var(--lavender-bright);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, .9);
}

.contact .eyebrow::before {
  background: var(--lavender-bright);
}

.contact h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1;
}

.contact h2 span {
  color: var(--ink);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 570px;
  margin: 46px 0 0;
  color: rgba(255, 255, 255, .92);
}

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

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

.button-light:hover {
  background: var(--lavender-bright);
}

.text-link.light {
  color: rgba(255, 255, 255, .96);
}

.contact :focus-visible {
  outline-color: var(--lavender-bright);
}

.company-signature {
  display: flex;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 35px;
  left: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .32);
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .92);
  font-size: .82rem;
  letter-spacing: .08em;
}

.signature-mark {
  display: flex;
  height: 22px;
  align-items: flex-end;
  gap: 3px;
  transform: skewY(-12deg);
}

.signature-mark i {
  display: block;
  width: 5px;
  background: var(--lavender-bright);
}

.signature-mark i:nth-child(1) { height: 9px; }
.signature-mark i:nth-child(2) { height: 15px; }
.signature-mark i:nth-child(3) { height: 22px; }

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

@media (max-width: 1024px) {
  :root { --shell: min(100% - 44px, 920px); }

  .hero h1 { max-width: 760px; }
  .orb-one { right: 3%; opacity: .5; }
  .orb-two { right: 4%; }

  .statement-layout { gap: 5vw; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  .feature-card { transform: none; }
  .feature-card:hover { transform: translateY(-8px); }

  .approach-layout { gap: 5vw; }
  .values { grid-template-columns: .8fr 1.2fr; }
  .value-content { padding-inline: 6vw; }

  .contact-shape { right: -6vw; opacity: .5; }
}

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

  html { scroll-padding-top: 72px; }
  .section-pad { padding: 92px 0; }

  .site-header { height: 70px; }
  .header-inner { width: calc(100% - 32px); }
  .brand-name { font-size: .92rem; }

  .nav-toggle { display: block; }
  .nav-open .nav-toggle span:nth-child(2) { top: 22px; transform: rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

  .primary-nav {
    display: flex;
    position: fixed;
    z-index: 1;
    inset: 0;
    padding: 118px 28px 54px;
    background: rgba(21, 20, 26, .97);
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
  }

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

  .primary-nav > a:not(.nav-cta) {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -.03em;
  }

  .nav-cta {
    margin-top: auto;
    padding: 15px 24px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero-content { padding-top: 151px; }
  .hero h1 { font-size: clamp(3.35rem, 14vw, 5rem); line-height: 1.03; }
  .hero h1 span::after { right: 0; }

  .hero-bottom {
    display: block;
    max-width: 560px;
    margin-top: 44px;
  }

  .hero-intro { font-size: .96rem; }
  .hero-actions { margin-top: 32px; }
  .hero-actions .text-link { display: none; }
  .scroll-cue { display: none; }
  .hero-corner { width: 210px; height: 210px; }
  .orb-one { top: 23%; right: -30%; min-width: 260px; min-height: 260px; }
  .orb-two { top: 53%; right: -4%; min-width: 78px; min-height: 78px; }

  .section-index { top: 40px; right: 15px; }
  .statement-layout { grid-template-columns: 1fr; gap: 0; }
  .section-heading h2,
  .approach-intro h2 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .statement-copy { padding-top: 45px; }
  .statement-copy .lead { font-size: 1.13rem; }
  .marquee { margin-top: 80px; }

  .services::before { top: -35px; height: 70px; }
  .services-head { display: block; margin-bottom: 48px; }
  .services-head h2 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .services-head > p { margin-top: 28px; }
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card,
  .service-card:last-child { min-height: 450px; grid-column: auto; }
  .service-card h3 { margin-top: 86px; }

  .approach-layout { grid-template-columns: 1fr; gap: 62px; }
  .process-list li { padding-right: 68px; grid-template-columns: 42px 1fr; }
  .process-shape { right: 8px; width: 36px; height: 36px; }
  .shape-cross::before { top: 17px; width: 36px; }
  .shape-cross::after { left: 17px; height: 36px; }

  .values { min-height: auto; grid-template-columns: 1fr; }
  .value-visual { min-height: 440px; }
  .value-visual::after { width: 230px; height: 230px; right: -100px; bottom: -100px; }
  .radar { width: 58%; }
  .value-content { padding: 84px 18px; }
  .value-content h2 { font-size: clamp(2.8rem, 12vw, 4.3rem); }
  .value-tags { margin-top: 44px; }

  .contact { min-height: 760px; }
  .contact h2 { max-width: 650px; font-size: clamp(3.25rem, 14vw, 5rem); }
  .contact-shape { top: auto; right: -80px; bottom: 110px; width: 280px; opacity: .28; transform: rotate(18deg); }
  .contact-inner > p:not(.eyebrow) { max-width: 460px; }
  .company-signature { bottom: 26px; font-size: .72rem; letter-spacing: .03em; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 3.05rem; }
  .button { padding-inline: 20px; gap: 18px; }
  .service-card { padding: 28px; }
  .service-card ul { right: 28px; bottom: 28px; left: 28px; }
  .value-tags { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
