:root {
  color-scheme: dark;
  --ink: #101014;
  --paper: #f5f5f7;
  --paper-bright: #ffffff;
  --night: #050507;
  --white: #f7f7fa;
  --line-light: rgba(16, 16, 20, 0.1);
  --blue: #2997ff;
  --green: #7bf1a8;
  --radius: 34px;
  --shell: min(1240px, calc(100vw - 48px));
  --shadow-soft: 0 30px 90px rgba(24, 24, 35, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--night);
  font-size: 16px;
  line-height: 1.5;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: #646cff;
}

a {
  color: inherit;
}

svg {
  display: block;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero h1,
.statement,
.section-heading h2,
.work-heading h2,
.bento-copy h3,
.project-copy h3,
.philosophy h2,
.closing h2 {
  text-wrap: balance;
}

.hero-lead,
.story-copy,
.section-heading,
.work-heading,
.bento-copy,
.project-copy,
.process-list p,
.closing-shell > p {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

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

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

:focus-visible {
  outline: 3px solid #147ce5;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: calc(16px + env(safe-area-inset-top)) 0 0;
  pointer-events: none;
}

.nav-shell {
  width: var(--shell);
  height: 54px;
  margin: 0 auto;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(11, 11, 16, 0.76);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  pointer-events: auto;
  transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.js .site-header:not(.is-scrolled) .nav-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(11, 11, 16, 0.72);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.js .site-header.is-on-light .nav-shell {
  border-color: rgba(16, 16, 20, 0.08);
  background: rgba(247, 247, 249, 0.78);
  box-shadow: 0 12px 46px rgba(24, 24, 32, 0.11);
}

.js .site-header.is-on-light .brand {
  color: var(--ink);
}

.js .site-header.is-on-light .nav-links a {
  color: #6d6d75;
}

.js .site-header.is-on-light .nav-links a:hover,
.js .site-header.is-on-light .nav-links a.is-active {
  color: var(--ink);
}

.js .site-header.is-on-light .nav-links a::after {
  background: var(--ink);
}

.js .site-header.is-on-light .nav-cta {
  color: #fff;
  background: var(--ink);
}

.js .site-header.is-on-light .nav-cta:hover {
  background: #303036;
}

.brand {
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: #e9e9ee;
  transform: scale(1.035);
}

.nav-cta:active {
  background: #dadade;
  transform: scale(0.97);
}

.nav-cta svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: 140px 0 50px;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 44%, rgba(77, 65, 186, 0.18), transparent 28%),
    linear-gradient(180deg, #050507 0%, #07070b 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 70%, transparent 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -42%;
  width: 70vw;
  height: 64vw;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.glow-one {
  top: 6%;
  right: 15%;
  width: 320px;
  height: 320px;
  background: #263fff;
}

.glow-two {
  right: 36%;
  bottom: 0;
  width: 260px;
  height: 240px;
  background: #8a2be2;
}

.hero-shell {
  width: var(--shell);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 3vw;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

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

.eyebrow {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(123, 241, 168, 0.09), 0 0 18px rgba(123, 241, 168, 0.65);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(66px, 7.4vw, 116px);
  font-weight: 710;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(94deg, #f5f7ff 5%, #8abfff 37%, #aa83ff 70%, #ff8ad8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(17px, 1.45vw, 21px);
  letter-spacing: -0.015em;
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:active {
  transform: scale(0.97);
}

.button-primary {
  color: #fff;
  background: #147ce5;
  box-shadow: 0 15px 38px rgba(20, 124, 229, 0.22);
}

.button-primary:hover {
  background: #2997ff;
  box-shadow: 0 18px 44px rgba(20, 124, 229, 0.34);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.text-link:active {
  opacity: 0.7;
}

.orb-stage {
  position: relative;
  width: min(46vw, 590px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.orb {
  position: relative;
  z-index: 4;
  width: 58%;
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, 0.95) 0, rgba(168, 221, 255, 0.62) 5%, transparent 18%),
    radial-gradient(circle at 34% 28%, #91ecff 0, #3877ff 26%, #5734d6 51%, #111322 72%);
  box-shadow:
    inset -34px -42px 74px rgba(0, 0, 0, 0.52),
    inset 18px 20px 45px rgba(255, 255, 255, 0.18),
    0 0 70px rgba(58, 95, 255, 0.36),
    0 0 170px rgba(119, 63, 255, 0.22);
  animation: orb-breathe 8s ease-in-out 3;
}

.orb::before,
.orb::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  mix-blend-mode: screen;
}

.orb::before {
  width: 128%;
  height: 42%;
  background: linear-gradient(90deg, transparent, rgba(135, 237, 255, 0.72), rgba(255, 109, 221, 0.45), transparent);
  filter: blur(14px);
  transform: rotate(-28deg) translateY(12px);
  animation: current-shift 10s ease-in-out 2 alternate;
}

.orb::after {
  right: -8%;
  bottom: 6%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 93, 198, 0.55), transparent 68%);
  filter: blur(14px);
}

.orb-sheen {
  position: absolute;
  top: 5%;
  left: 18%;
  width: 64%;
  height: 40%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent);
  filter: blur(18px);
  transform: rotate(-25deg);
}

.orb-depth {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.12);
}

.orb-mark {
  position: relative;
  z-index: 4;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 680;
  letter-spacing: -0.06em;
  text-shadow: 0 2px 20px rgba(9, 9, 20, 0.25);
}

.orb-ring,
.orb-halo {
  position: absolute;
  border-radius: 50%;
}

.orb-ring {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.ring-one {
  width: 83%;
  height: 83%;
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: ring-spin 13s linear 3;
}

.ring-two {
  width: 68%;
  height: 68%;
  border-color: rgba(111, 204, 255, 0.22);
  transform: rotateY(66deg) rotateZ(22deg);
  animation: ring-spin-reverse 16s linear 3;
}

.orb-halo {
  filter: blur(30px);
  opacity: 0.4;
}

.halo-one {
  width: 76%;
  height: 76%;
  background: rgba(50, 99, 255, 0.26);
}

.halo-two {
  width: 54%;
  height: 54%;
  background: rgba(208, 67, 255, 0.22);
  transform: translate(28%, 26%);
}

.orbit-label {
  position: absolute;
  z-index: 6;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(9, 9, 14, 0.58);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.18em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.label-think {
  top: 18%;
  left: 8%;
}

.label-build {
  top: 48%;
  right: 2%;
}

.label-verify {
  bottom: 15%;
  left: 19%;
}

.hero-principles {
  width: var(--shell);
  margin: 40px auto 0;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.hero-principles span:nth-child(2) {
  text-align: center;
}

.hero-principles span:last-child {
  text-align: right;
}

.hero-principles b {
  margin-right: 9px;
  color: rgba(255, 255, 255, 0.22);
  font-variant-numeric: tabular-nums;
}

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

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

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

.section-kicker {
  color: #686870;
}

.story {
  position: relative;
  padding: clamp(120px, 14vw, 220px) 0;
  overflow: hidden;
  overflow: clip;
}

.story::after {
  position: absolute;
  top: 9%;
  right: -8%;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(80, 65, 190, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(80, 65, 190, 0.025), 0 0 0 128px rgba(80, 65, 190, 0.015);
  content: "";
}

.statement {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 36px 0 0;
  font-size: clamp(52px, 7.4vw, 108px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.99;
}

.statement span {
  color: #85858e;
}

.statement-compact-break {
  display: none;
}

.story-grid {
  margin-top: clamp(90px, 12vw, 170px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.story-profile {
  position: sticky;
  top: 116px;
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 16, 20, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 18%, rgba(80, 85, 255, 0.11), transparent 27%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 80px rgba(24, 24, 40, 0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.profile-orbit {
  position: relative;
  min-height: 270px;
  margin: -2px -2px 30px;
  display: grid;
  place-items: center;
}

.profile-orbit::before,
.profile-orbit::after,
.profile-orbit i {
  position: absolute;
  border: 1px solid rgba(56, 67, 180, 0.11);
  border-radius: 50%;
  content: "";
}

.profile-orbit::before {
  width: 210px;
  height: 210px;
}

.profile-orbit::after {
  width: 150px;
  height: 150px;
  border-color: rgba(71, 91, 220, 0.18);
  box-shadow: 0 0 54px rgba(72, 83, 220, 0.1);
}

.profile-orbit i {
  width: 220px;
  height: 82px;
  transform: rotate(-19deg);
}

.profile-core {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(145deg, #3189ff, #6b4ce6 66%, #a554c5);
  box-shadow: 0 22px 45px rgba(63, 73, 196, 0.22);
  font-size: 33px;
  font-weight: 740;
  letter-spacing: -0.06em;
}

.profile-orbit b {
  position: absolute;
  z-index: 3;
  color: #9999a3;
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.profile-orbit b:nth-of-type(1) { top: 18%; left: 6%; }
.profile-orbit b:nth-of-type(2) { top: 38%; right: 1%; }
.profile-orbit b:nth-of-type(3) { right: 13%; bottom: 15%; }

.profile-label {
  margin: auto 0 12px;
  color: #707079;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.profile-focus {
  max-width: 330px;
  margin: 0;
  color: #25252c;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.profile-meta {
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(16, 16, 20, 0.08);
}

.profile-meta span {
  color: #696972;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.profile-meta strong {
  color: #696972;
  font-size: 11px;
  font-weight: 700;
}

.story-copy {
  max-width: 760px;
}

.story-copy p {
  margin: 0 0 28px;
  color: #62626b;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.7;
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.focus-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.focus-list > div {
  min-height: 170px;
  padding: 24px 22px 0;
  border-right: 1px solid var(--line-light);
}

.focus-list > div:first-child {
  padding-left: 0;
}

.focus-list > div:last-child {
  border-right: 0;
}

.focus-list span {
  display: block;
  margin-bottom: 48px;
  color: #707079;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.focus-list strong,
.focus-list small {
  display: block;
}

.focus-list strong {
  color: #232329;
  font-size: 17px;
  font-weight: 680;
}

.focus-list small {
  margin-top: 8px;
  color: #707079;
  font-size: 12px;
  line-height: 1.55;
}

.approach {
  padding: 0 0 clamp(120px, 14vw, 210px);
}

.section-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.work-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p,
.work-heading > p:last-child {
  margin: 0;
  color: #6b6b74;
  font-size: 17px;
  line-height: 1.65;
}

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

.bento-wide,
.bento-accent {
  grid-column: span 7;
}

.bento-tall,
.bento-card:nth-child(3) {
  grid-column: span 5;
}

.bento-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 16, 20, 0.06);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: var(--shadow-soft);
}

.bento-dark {
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(49, 100, 255, 0.25), transparent 27%),
    #0a0a0e;
}

.bento-accent {
  color: #fff;
  background:
    radial-gradient(circle at 77% 20%, rgba(255, 255, 255, 0.3), transparent 14%),
    linear-gradient(145deg, #2b54dd 0%, #6044d9 56%, #8f53c9 100%);
}

.card-number {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 3;
  color: currentColor;
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.14em;
  opacity: 0.42;
}

.bento-copy {
  position: relative;
  z-index: 3;
  max-width: 510px;
  margin-top: auto;
}

.mini-label {
  margin-bottom: 14px;
  color: currentColor;
  opacity: 0.6;
}

.bento-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.bento-copy > p:last-child {
  max-width: 500px;
  margin: 17px 0 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.62;
}

.bento-accent .mini-label,
.bento-accent .bento-copy > p:last-child {
  opacity: 0.78;
}

.signal-visual {
  position: relative;
  height: 210px;
  margin: 12px -20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.signal-line {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(100, 210, 255, 0.95), rgba(82, 86, 255, 0.18));
  box-shadow: 0 0 20px rgba(68, 159, 255, 0.22);
}

.line-a { height: 42%; opacity: 0.28; }
.line-b { height: 68%; opacity: 0.55; }
.line-c { height: 92%; }
.line-d { height: 54%; opacity: 0.4; }

.signal-focus {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(118, 192, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(64, 92, 255, 0.03), 0 0 70px rgba(64, 105, 255, 0.18);
}

.prototype-visual {
  position: relative;
  height: 230px;
  margin: 8px 0 30px;
  display: grid;
  place-items: center;
}

.prototype-window {
  position: relative;
  z-index: 2;
  width: min(84%, 360px);
  padding: 17px;
  border: 1px solid rgba(16, 16, 20, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 55px rgba(27, 30, 48, 0.14);
  transform: rotate(2deg);
}

.window-dots {
  margin-bottom: 28px;
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4da;
}

.window-row {
  width: 84%;
  height: 8px;
  margin: 11px 0;
  border-radius: 8px;
  background: #e4e4e9;
}

.window-row.row-strong {
  width: 52%;
  height: 13px;
  background: #22222a;
}

.window-row.row-short {
  width: 66%;
}

.window-action {
  width: 58px;
  margin-top: 25px;
  padding: 8px 0;
  border-radius: 8px;
  color: #fff;
  background: #267cf2;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-align: center;
}

.prototype-pulse {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(52, 121, 255, 0.14);
  filter: blur(26px);
}

.metric-visual {
  height: 180px;
  margin: 22px 0 34px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 13px;
}

.metric-visual span {
  color: #8b8b94;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.metric-visual i {
  height: 1px;
  background: linear-gradient(90deg, #d7d7dd, #8d83ff, #d7d7dd);
}

.metric-visual strong {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #dad9e3;
  border-radius: 50%;
  color: #6b55de;
  background: #f9f8ff;
  font-size: 32px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(88, 67, 210, 0.12);
}

.human-loop {
  position: relative;
  height: 180px;
  margin: 22px 0 34px;
  display: grid;
  place-items: center;
}

.human-loop svg {
  position: absolute;
  width: 72%;
  max-width: 300px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-dasharray: 5 6;
  stroke-width: 1;
}

.loop-node {
  position: absolute;
  left: 16%;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.09);
  font-size: 21px;
  font-weight: 680;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.loop-ai {
  right: 16%;
  left: auto;
  color: #5c46bd;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(40, 22, 120, 0.18);
  font-size: 18px;
}

.work {
  position: relative;
  padding: clamp(120px, 14vw, 210px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 75, 150, 0.13), transparent 32%),
    var(--night);
}

.work::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: clamp(36px, 4vw, 58px);
  background: linear-gradient(rgba(255, 255, 255, 0.28), transparent);
  box-shadow: 0 0 22px rgba(100, 126, 255, 0.18);
  content: "";
}

.work-transition {
  position: absolute;
  top: clamp(44px, 5vw, 70px);
  left: 50%;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.2em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.work > .section-shell {
  position: relative;
  z-index: 1;
}

.work-heading {
  max-width: 880px;
  margin-bottom: 90px;
}

.work-heading .section-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.work-heading > p:last-child {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
}

.project-list {
  display: grid;
  gap: 28px;
}

.project-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(450px, 1.1fr);
  grid-template-rows: auto 1fr;
  column-gap: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 35px 100px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: border-color 300ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.project-card::before {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(50, 82, 255, 0.1);
  filter: blur(40px);
  content: "";
}

.project-topline {
  z-index: 2;
  grid-column: 1 / -1;
  padding-bottom: 26px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.project-topline span:last-child {
  overflow-wrap: anywhere;
  text-align: right;
}

.project-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding: 70px 10px 12px 0;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 670;
  letter-spacing: -0.06em;
  line-height: 1;
}

.project-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
  line-height: 1.7;
}

.project-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.project-visual {
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-self: center;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.025);
}

.project-card:nth-child(2)::before {
  right: auto;
  left: -8%;
  background: rgba(136, 67, 255, 0.11);
}

.project-card:nth-child(3)::before {
  top: auto;
  right: 4%;
  bottom: -40%;
  background: rgba(43, 185, 255, 0.1);
}

@media (min-width: 1081px) {
  .project-card:nth-child(even) .project-copy {
    grid-column: 2;
    padding-right: 0;
    padding-left: 10px;
  }

  .project-card:nth-child(even) .project-visual {
    grid-column: 1;
  }
}

@media (max-width: 1080px) {
  .project-card {
    min-height: 820px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .project-copy {
    grid-row: 2;
    padding-top: 50px;
  }

  .project-visual {
    min-height: 400px;
    grid-column: 1;
    grid-row: 3;
  }
}

.cloud-visual {
  background: radial-gradient(circle, rgba(64, 105, 255, 0.17), transparent 63%);
}

.cloud-core {
  position: relative;
  z-index: 4;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(51, 118, 255, 0.9), rgba(105, 50, 216, 0.86));
  box-shadow: 0 35px 70px rgba(35, 62, 200, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 29px;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.cloud-core::after {
  position: absolute;
  inset: -42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 54px;
  content: "";
}

.cloud-node {
  position: absolute;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.045);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.12em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.node-one { top: 18%; left: 12%; }
.node-two { top: 14%; right: 10%; }
.node-three { right: 14%; bottom: 17%; }
.node-four { bottom: 14%; left: 17%; }

.capture-visual {
  background: radial-gradient(circle at 55% 45%, rgba(118, 77, 255, 0.12), transparent 62%);
}

.capture-frame {
  width: min(80%, 430px);
  padding: 56px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.26);
}

.capture-frame::before {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 38px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.capture-row {
  height: 52px;
  margin-top: 11px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.capture-row i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}

.capture-row b {
  width: 45%;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.capture-row.active {
  border-color: rgba(104, 163, 255, 0.48);
  background: rgba(63, 113, 255, 0.09);
}

.capture-row.active i,
.capture-row.active b {
  background: rgba(106, 166, 255, 0.46);
}

.capture-cursor {
  position: absolute;
  z-index: 3;
  top: 60%;
  right: 17%;
  width: 19px;
  height: 25px;
  background: #fff;
  clip-path: polygon(0 0, 100% 68%, 57% 72%, 37% 100%);
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
}

.capture-label {
  position: absolute;
  right: 9%;
  bottom: 12%;
  padding: 9px 12px;
  border: 1px solid rgba(116, 245, 168, 0.25);
  border-radius: 999px;
  color: #98edb7;
  background: rgba(40, 150, 85, 0.11);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.evidence-visual {
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(0, 199, 255, 0.1), transparent 62%);
}

.evidence-stack {
  position: absolute;
  width: 260px;
  height: 160px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.evidence-stack span {
  display: block;
  width: 88%;
  height: 7px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.evidence-stack span:nth-child(2) { width: 64%; }
.evidence-stack span:nth-child(3) { width: 76%; }

.stack-one {
  margin: -45px 0 0 -100px;
  transform: rotate(-8deg);
}

.stack-two {
  margin: 65px 0 0 120px;
  transform: rotate(7deg);
}

.evidence-badge {
  position: relative;
  z-index: 4;
  padding: 15px 19px;
  border: 1px solid rgba(89, 222, 255, 0.34);
  border-radius: 14px;
  color: #87eaff;
  background: rgba(15, 96, 126, 0.32);
  box-shadow: 0 18px 55px rgba(25, 160, 215, 0.18);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.philosophy {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 142, 225, 0.28), transparent 28%),
    radial-gradient(circle at 22% 64%, rgba(92, 212, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #133dce 0%, #4940d0 43%, #913db2 100%);
}

.philosophy::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  -webkit-mask-image: radial-gradient(circle, #000 0, transparent 76%);
  mask-image: radial-gradient(circle, #000 0, transparent 76%);
}

.philosophy-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.018);
  transform: translate(-50%, -50%);
}

.philosophy-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  text-align: center;
}

.philosophy .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.philosophy h2 {
  margin: 34px auto 0;
  font-size: clamp(49px, 7.6vw, 110px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.03;
}

.philosophy h2 span {
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.35);
}

.philosophy-compact-break {
  display: none;
}

.process {
  padding: clamp(120px, 14vw, 210px) 0;
}

.process .section-heading {
  grid-template-columns: 1.5fr 0.5fr;
}

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

.process-list li {
  min-height: 330px;
  padding: 30px 28px 0;
  border-right: 1px solid var(--line-light);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  border-right: 0;
}

.process-number {
  color: #707079;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin: 100px 0 15px;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 680;
  letter-spacing: -0.045em;
}

.process-list p {
  margin: 0;
  color: #6f6f77;
  font-size: 14px;
  line-height: 1.65;
}

.closing {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 130px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 95%, rgba(39, 102, 255, 0.22), transparent 32%),
    #050507;
}

.closing::before {
  position: absolute;
  right: -15%;
  bottom: -52%;
  left: -15%;
  height: 80%;
  border: 1px solid rgba(115, 138, 255, 0.17);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(44, 76, 255, 0.08), 0 0 130px rgba(44, 76, 255, 0.08);
  content: "";
}

.closing-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
}

.closing .section-kicker {
  color: rgba(255, 255, 255, 0.52);
}

.closing h2 {
  margin: 30px auto 0;
  font-size: clamp(47px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.closing h2 span {
  color: #777780;
}

.closing-shell > p:not(.section-kicker) {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 18px;
}

.button-light {
  margin-top: 38px;
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  background: #ededf2;
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.13);
}

.button-light svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-footer {
  width: 100%;
  padding: 34px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  background: #050507;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

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

.footer-brand {
  justify-self: start;
  font-size: 16px;
}

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

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

.js .process-list .reveal:nth-child(2) { transition-delay: 80ms; }
.js .process-list .reveal:nth-child(3) { transition-delay: 160ms; }
.js .process-list .reveal:nth-child(4) { transition-delay: 240ms; }

.js .hero .orb-stage.reveal { transition-delay: 120ms; }
.js .hero .hero-principles.reveal { transition-delay: 220ms; }
.js .story-grid .story-copy.reveal { transition-delay: 100ms; }
.js .bento-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.js .bento-grid .reveal:nth-child(3) { transition-delay: 110ms; }
.js .bento-grid .reveal:nth-child(4) { transition-delay: 170ms; }

@media (hover: hover) and (pointer: fine) {
  .js .bento-card.reveal.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 100px rgba(24, 24, 35, 0.15);
  }
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.025); filter: saturate(1.12); }
}

@keyframes current-shift {
  0% { transform: rotate(-28deg) translate(-9%, 8px); }
  100% { transform: rotate(-21deg) translate(8%, 18px); }
}

@keyframes ring-spin {
  from { transform: rotateX(68deg) rotateZ(-18deg); }
  to { transform: rotateX(68deg) rotateZ(342deg); }
}

@keyframes ring-spin-reverse {
  from { transform: rotateY(66deg) rotateZ(22deg); }
  to { transform: rotateY(66deg) rotateZ(-338deg); }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 860px);
    --radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow {
    margin-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(62px, 12vw, 96px);
  }

  .orb-stage {
    width: min(76vw, 520px);
    margin-top: 35px;
  }

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

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

  .process .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .story-profile {
    position: relative;
    top: auto;
    min-height: 450px;
  }

  .profile-focus {
    max-width: 520px;
  }

  .bento-wide,
  .bento-tall,
  .bento-card:nth-child(3),
  .bento-accent {
    grid-column: span 6;
  }

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

  .process-list li {
    border-bottom: 1px solid var(--line-light);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .process-list li:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide,
  .bento-tall,
  .bento-card:nth-child(3),
  .bento-accent {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius: 24px;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    padding-top: calc(10px + env(safe-area-inset-top));
  }

  .nav-shell {
    height: 56px;
    padding-left: 15px;
  }

  .nav-cta {
    height: 44px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 34px;
  }

  .hero::before {
    background-size: 58px 58px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 74px);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    min-height: 48px;
  }

  .orb-stage {
    width: min(96vw, 430px);
    margin-top: 22px;
  }

  .orbit-label {
    font-size: 7px;
  }

  .hero-principles {
    padding-top: 19px;
    grid-template-columns: 1fr;
    gap: 9px;
    text-align: center;
  }

  .hero-principles span,
  .hero-principles span:nth-child(2),
  .hero-principles span:last-child {
    text-align: center;
  }

  .story {
    padding: 110px 0;
  }

  .statement {
    margin-top: 28px;
    font-size: clamp(46px, 13.5vw, 68px);
    line-height: 1.02;
  }

  .statement-compact-break {
    display: block;
  }

  .story-grid {
    margin-top: 80px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-profile {
    min-height: 440px;
    padding: 24px;
  }

  .profile-orbit {
    min-height: 230px;
    margin-bottom: 24px;
  }

  .profile-orbit::before {
    width: 190px;
    height: 190px;
  }

  .profile-orbit::after {
    width: 136px;
    height: 136px;
  }

  .profile-orbit i {
    width: 200px;
    height: 74px;
  }

  .story-copy p {
    font-size: 17px;
  }

  .story-copy .story-lead {
    font-size: 27px;
  }

  .focus-list {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .focus-list > div,
  .focus-list > div:first-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .focus-list > div:last-child {
    border-bottom: 0;
  }

  .focus-list span {
    margin-bottom: 20px;
  }

  .approach {
    padding-bottom: 110px;
  }

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

  .section-heading h2,
  .work-heading h2 {
    font-size: 48px;
  }

  .section-heading > p,
  .work-heading > p:last-child {
    font-size: 16px;
  }

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

  .bento-wide,
  .bento-tall,
  .bento-card:nth-child(3),
  .bento-accent {
    grid-column: 1;
  }

  .bento-card {
    min-height: 430px;
    padding: 25px;
  }

  .card-number {
    top: 25px;
    right: 25px;
  }

  .bento-copy h3 {
    font-size: 32px;
  }

  .metric-visual {
    gap: 7px;
  }

  .metric-visual strong {
    width: 60px;
    height: 60px;
  }

  .metric-visual span {
    font-size: 6px;
  }

  .loop-node {
    left: 9%;
  }

  .loop-ai {
    right: 9%;
    left: auto;
  }

  .work {
    padding: 110px 0;
  }

  .work-heading {
    margin-bottom: 58px;
  }

  .project-list {
    gap: 18px;
  }

  .project-card {
    min-height: 730px;
    padding: 25px;
    border-radius: 28px;
  }

  .project-copy {
    padding: 38px 0 0;
  }

  .project-copy h3 {
    font-size: 43px;
  }

  .project-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .project-visual {
    min-height: 330px;
    margin-top: 20px;
  }

  .cloud-core {
    width: 112px;
    height: 112px;
    border-radius: 29px;
  }

  .cloud-node {
    font-size: 7px;
  }

  .capture-frame {
    width: 94%;
  }

  .evidence-stack {
    width: 210px;
    height: 140px;
  }

  .stack-one {
    margin-left: -80px;
  }

  .stack-two {
    margin-left: 85px;
  }

  .philosophy {
    min-height: 80vh;
    min-height: 80svh;
  }

  .philosophy h2 {
    font-size: clamp(43px, 13vw, 65px);
  }

  .philosophy-compact-break {
    display: block;
  }

  .process {
    padding: 110px 0;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3) {
    min-height: auto;
    padding: 25px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list h3 {
    margin-top: 50px;
  }

  .closing {
    min-height: 76vh;
    min-height: 76svh;
  }

  .closing h2 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .site-footer {
    padding: 30px 18px calc(30px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }

  .site-footer p:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 340px) {
  .statement {
    font-size: 13vw;
  }
}

@supports not (overflow: clip) {
  .story-profile {
    position: static;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }
}
