:root {
  --paper: #eeeff9;
  --paper-2: #f7f7fb;
  --ink: #0a0b0f;
  --muted: #5f626d;
  --line: rgba(10, 11, 15, 0.16);
  --blue: #3144ff;
  --blue-dark: #111c9d;
  --warm: #df793f;
  --radius-lg: 32px;
  --radius-md: 22px;
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 9%, rgba(49,68,255,.08), transparent 27%),
    linear-gradient(180deg, var(--paper) 0%, #f4f4fa 46%, var(--paper) 100%);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
main, .footer { position: relative; z-index: 1; }
.page-aura { position: fixed; z-index: 0; width: min(70vw, 960px); aspect-ratio: 1; right: -26vw; top: 18vh; pointer-events: none; border-radius: 50%; background: radial-gradient(circle, rgba(49,68,255,.12), rgba(49,68,255,.025) 46%, transparent 70%); filter: blur(30px); opacity: .7; will-change: transform; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: #fff;
  background: #050609;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark { position: absolute; top: 9vh; left: 6vw; font-size: 14px; letter-spacing: .16em; }
.loader__line { width: min(48vw, 320px); height: 3px; overflow: hidden; background: #2d2f37; }
.loader__line span { display: block; width: 100%; height: 100%; background: var(--blue); transform-origin: left; animation: loaderLine 1.05s cubic-bezier(.65,0,.2,1) both; }
.loader__count { position: absolute; left: 5vw; bottom: 3vh; font-size: clamp(64px, 12vw, 140px); font-weight: 300; line-height: .8; }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section-shell { width: min(1440px, 100%); margin: 0 auto; padding-inline: clamp(20px, 5vw, 80px); }
.topbar {
  position: fixed;
  z-index: 80;
  top: calc(14px + var(--safe-top));
  left: clamp(14px, 3vw, 44px);
  right: clamp(14px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.topbar > * { pointer-events: auto; }
.brand { position: relative; isolation: isolate; display: flex; align-items: center; padding: 0; background: transparent; border: 0; box-shadow: none; }
.brand::before { content: ""; position: absolute; z-index: -1; inset: -10px -16px; border-radius: 50%; background: rgba(238,239,249,.9); filter: blur(13px); opacity: 0; transition: opacity .35s ease; }
.topbar.is-compact .brand::before { opacity: .94; }
.topbar.is-compact .brand { padding: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.brand__logo { display: block; width: 170px; height: auto; object-fit: contain; background: transparent; }
.topbar__actions { display: flex; align-items: center; gap: 8px; }
.topbar__link { font-size: 13px; font-weight: 700; padding: 13px 16px; border-radius: 999px; background: rgba(238,239,249,.82); backdrop-filter: blur(14px); }
.pill-button { display: flex; align-items: center; gap: 16px; padding: 12px 13px 12px 18px; color: #fff; background: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; }
.pill-button i { display: grid; place-items: center; width: 24px; height: 24px; font-style: normal; color: var(--ink); background: #fff; border-radius: 50%; transition: transform .3s ease; }
.pill-button:hover i { transform: rotate(45deg); }
.progress-ring { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: conic-gradient(var(--blue) var(--progress, 0%), rgba(238,239,249,.86) 0); }
.progress-ring::after { content: ""; position: absolute; inset: 4px; background: var(--paper); border-radius: inherit; }
.progress-ring span { position: relative; z-index: 1; font-size: 10px; font-weight: 800; }

.hero { min-height: 100svh; padding-top: clamp(110px, 14vh, 160px); padding-bottom: 24px; display: grid; grid-template-rows: auto auto 1fr auto; }
.hero__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero__headline { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: end; gap: 36px; margin-top: 18px; }
.hero h1 { margin: 0; max-width: 920px; font-size: clamp(54px, 7vw, 110px); font-weight: 500; line-height: .94; letter-spacing: -.068em; }
.hero-title > span { display: block; white-space: nowrap; }
.hero-title__accent { color: var(--blue); }
.hero__headline p { max-width: 540px; margin: 0 0 1vw; font-size: clamp(15px, 1.55vw, 22px); line-height: 1.55; color: #373944; }

.hero-stage { position: relative; min-height: clamp(360px, 52vh, 650px); margin-top: 38px; overflow: hidden; isolation: isolate; border-radius: var(--radius-lg); background: #0c0e15; perspective: 1200px; transform-style: preserve-3d; will-change: transform, border-radius; }
.hero-stage::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(5,6,10,.55), transparent 34%, transparent 70%, rgba(5,6,10,.3)); pointer-events: none; }
.hero-stage__glow { position: absolute; z-index: 0; width: 70%; aspect-ratio: 1; left: 12%; top: -54%; border-radius: 50%; background: radial-gradient(circle, rgba(49,68,255,.75), rgba(49,68,255,.1) 48%, transparent 70%); filter: blur(22px); animation: breathe 6s ease-in-out infinite alternate; }
.hero-photo-wrap { position: absolute; inset: 0; z-index: 1; transform: translateZ(10px); }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.9) contrast(1.05); }
.hero-photo-wrap__label { position: absolute; z-index: 4; left: 28px; bottom: 26px; display: flex; flex-direction: column; gap: 3px; color: #fff; }
.hero-photo-wrap__label span { font-size: 17px; font-weight: 800; }
.hero-photo-wrap__label small { color: rgba(255,255,255,.68); }
.orbit { position: absolute; z-index: 3; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transform-style: preserve-3d; pointer-events: none; }
.orbit i { position: absolute; display: block; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 28px rgba(255,255,255,.9); }
.orbit--one { width: min(68vw, 840px); height: min(30vw, 360px); transform: translate(-50%,-50%) rotateX(72deg) rotateZ(-12deg); animation: orbitOne 18s linear infinite; }
.orbit--one i:nth-child(1) { top: 18%; left: 5%; }
.orbit--one i:nth-child(2) { top: 72%; right: 10%; background: var(--blue); }
.orbit--one i:nth-child(3) { top: 2%; left: 63%; width: 8px; height: 8px; }
.orbit--two { width: min(40vw, 520px); height: min(40vw, 520px); transform: translate(-50%,-50%) rotateY(68deg) rotateZ(20deg); animation: orbitTwo 14s linear infinite reverse; }
.orbit--two i:nth-child(1) { left: 8%; top: 26%; background: var(--blue); }
.orbit--two i:nth-child(2) { right: 8%; bottom: 23%; }
.floating-tag { position: absolute; z-index: 6; padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #fff; background: rgba(10,11,16,.38); backdrop-filter: blur(10px); font-size: 11px; letter-spacing: .08em; animation: floatTag 5s ease-in-out infinite alternate; }
.floating-tag--a { left: 9%; top: 18%; }
.floating-tag--b { right: 10%; top: 23%; animation-delay: -1s; }
.floating-tag--c { right: 15%; bottom: 18%; animation-delay: -2s; }
.floating-tag--d { left: 34%; bottom: 12%; animation-delay: -3s; }
@keyframes breathe { to { transform: translate(12%, 8%) scale(1.13); } }
@keyframes orbitOne { to { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(348deg); } }
@keyframes orbitTwo { to { transform: translate(-50%,-50%) rotateY(68deg) rotateZ(380deg); } }
@keyframes floatTag { to { transform: translateY(-12px); } }

.hero__footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 18px; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.hero__footer-line { height: 1px; background: var(--line); }
.hero__footer a { display: flex; gap: 12px; align-items: center; }
.hero__footer b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; }

.manifesto { padding-top: clamp(120px, 16vw, 240px); padding-bottom: clamp(90px, 12vw, 180px); }
.section-index { font-size: 10px; font-weight: 850; letter-spacing: .18em; color: var(--muted); }
.manifesto__statement { margin: 54px 0 clamp(90px, 12vw, 170px); }
.manifesto__statement p { margin: 0; font-size: clamp(58px, 10.4vw, 168px); font-weight: 500; line-height: 1.02; letter-spacing: -.065em; }
.statement-line { overflow: hidden; padding: .06em .04em .08em 0; margin-bottom: -.12em !important; }
.statement-line span { display: block; transform: translate3d(0,118%,0) rotate(1.5deg); transform-origin: left bottom; transition: transform 1.05s cubic-bezier(.16,1,.3,1); will-change: transform; }
.manifesto__statement.is-visible .statement-line span { transform: translate3d(var(--line-drift, 0),0,0) rotate(0); }
.manifesto__statement .statement-line:nth-child(2) span { transition-delay: .09s; }
.manifesto__statement .statement-line:nth-child(3) span { transition-delay: .18s; }
.accent-stroke { color: var(--blue); }
.manifesto__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 8vw, 130px); align-items: center; }
.portrait-card { position: relative; margin: 0; }
.portrait-card img { width: 100%; aspect-ratio: .77; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); clip-path: inset(0 0 100% 0 round var(--radius-lg)); transition: clip-path 1.15s cubic-bezier(.16,1,.3,1), transform 1.2s cubic-bezier(.16,1,.3,1); transform: scale(1.06); }
.portrait-card.is-visible img { clip-path: inset(0 0 0 0 round var(--radius-lg)); transform: scale(1); }
.kicker { display: inline-block; font-size: 11px; font-weight: 850; letter-spacing: .16em; color: var(--blue); text-transform: uppercase; }
.mobile-break { display: none; }
.founder-copy h2 { margin: 24px 0 28px; font-size: clamp(34px, 4vw, 64px); font-weight: 520; line-height: 1.12; letter-spacing: -.045em; }
.founder-copy > p { max-width: 720px; color: #454752; font-size: 16px; line-height: 1.85; }
.founder-principle { position: relative; margin: 34px 0; padding: 24px 26px 24px 30px; overflow: hidden; border: 1px solid rgba(49,68,255,.22); border-radius: 20px; color: var(--blue); background: rgba(49,68,255,.055); font-size: clamp(30px, 3vw, 48px); font-weight: 620; line-height: 1.08; letter-spacing: -.045em; }
.founder-principle::before { content: "CORE BELIEF"; position: absolute; right: 18px; top: 16px; color: rgba(49,68,255,.38); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.founder-path { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); }
.founder-path div { min-height: 126px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: 20px; background: rgba(247,247,251,.88); }
.founder-path b { color: var(--blue); font-size: 11px; letter-spacing: .1em; }
.founder-path span { max-width: 250px; color: #424550; font-size: 13px; line-height: 1.65; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
.stats div { min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.stats strong { font-size: clamp(38px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.stats sup { color: var(--blue); }
.stats span { color: var(--muted); font-size: 12px; }

.resources { position: relative; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(110px, 14vw, 210px); border-top: 1px solid var(--line); }
.resources::before { content: "02"; position: absolute; right: 4vw; top: 3vw; color: rgba(49,68,255,.055); font-size: clamp(160px, 24vw, 360px); font-weight: 700; line-height: .8; letter-spacing: -.1em; pointer-events: none; }
.section-title { display: grid; grid-template-columns: .35fr 1.8fr .65fr; gap: 32px; align-items: end; margin: 34px 0 66px; }
.section-title > span { font-size: 14px; font-weight: 800; }
.section-title h2 { margin: 0; font-size: clamp(58px, 6vw, 88px); font-weight: 500; line-height: 1.02; letter-spacing: -.055em; }
.locked-title > span { display: block; white-space: nowrap; }
.section-title p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.filter-bar { position: sticky; top: 84px; z-index: 30; display: flex; gap: 8px; width: fit-content; max-width: 100%; margin: 0 0 30px; padding: 7px; overflow-x: auto; scrollbar-width: none; border: 1px solid var(--line); border-radius: 999px; background: rgba(238,239,249,.88); backdrop-filter: blur(14px); }
.filter-bar::-webkit-scrollbar { display: none; }
.filter { flex: 0 0 auto; border: 0; border-radius: 999px; padding: 11px 16px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 750; transition: background .25s ease, color .25s ease; }
.filter.is-active { color: #fff; background: var(--ink); }
.resource-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.resource-card { position: relative; grid-column: span 4; min-height: 350px; display: flex; flex-direction: column; padding: 25px; overflow: hidden; border: 1px solid rgba(10,11,15,.15); border-radius: var(--radius-md); background: rgba(255,255,255,.48); box-shadow: 0 22px 70px rgba(10,11,15,.035); transform-style: preserve-3d; transform-origin: center bottom; transition: opacity .7s ease, filter .7s ease, transform .9s cubic-bezier(.16,1,.3,1), background .35s ease; }
.resource-card::before { content: ""; position: absolute; width: 160px; height: 160px; right: -55px; top: -65px; border-radius: 50%; background: radial-gradient(circle, rgba(49,68,255,.28), transparent 68%); transition: transform .5s ease; }
.resource-card::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue), rgba(49,68,255,0)); transform: scaleX(0); transform-origin: left; transition: transform .9s cubic-bezier(.16,1,.3,1) calc(var(--card-index, 0) * 45ms); }
.resource-card.is-visible::after { transform: scaleX(1); }
.resource-card:hover { color: #fff; background: var(--ink); transform: translateY(-7px); }
.resource-card:hover::before { transform: scale(1.6); }
.resource-card.is-hidden { display: none; }
.resource-card__top { position: relative; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.resource-card__type { padding: 8px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; letter-spacing: .12em; opacity: .72; }
.resource-card__number { font-size: 11px; opacity: .46; }
.resource-card h3 { position: relative; margin: auto 0 18px; font-size: clamp(25px, 2.15vw, 38px); font-weight: 570; line-height: 1.06; letter-spacing: -.045em; }
.resource-card p { position: relative; min-height: 48px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.resource-card:hover p { color: rgba(255,255,255,.62); }
.resource-card__actions { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.resource-card__action { font-size: 12px; font-weight: 800; }
.resource-card__arrow { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--blue); transition: transform .3s ease; }
.resource-card:hover .resource-card__arrow { transform: rotate(45deg); }
.resource-card__subaction { font-size: 11px; color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.resource-card__note { position: absolute; right: 25px; bottom: 14px; color: var(--muted); font-size: 9px; letter-spacing: .06em; opacity: .68; }
.resource-card:hover .resource-card__note { color: rgba(255,255,255,.48); }

.case-cover { position: relative; min-height: 95svh; display: grid; grid-template-columns: 1fr 1fr; color: #fff; background: var(--ink); overflow: hidden; }
.case-cover__media { min-height: 95svh; overflow: hidden; }
.case-cover__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.7) contrast(1.05); transform: scale(1.12); will-change: transform; }
.case-cover__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 7vw, 110px); background: linear-gradient(140deg, #11131b 0%, #050608 70%); }
.case-cover__copy .section-index { color: rgba(255,255,255,.45); }
.case-cover__copy h2 { margin: 38px 0 34px; font-size: clamp(48px, 6.8vw, 104px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.case-cover__copy p { max-width: 560px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.8; }
.cases { padding-top: clamp(90px, 11vw, 160px); padding-bottom: clamp(120px, 14vw, 220px); }
.cases__intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.cases__intro p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }
.cases__note { display: grid; gap: 5px; padding-left: 20px; border-left: 2px solid var(--blue); }
.cases__note strong { color: var(--ink); font-size: 16px; font-weight: 760; letter-spacing: -.015em; }
.cases__note span { color: var(--muted); font-size: 14px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-card { appearance: none; width: 100%; min-height: 440px; display: flex; flex-direction: column; padding: 28px; border: 0; border-radius: var(--radius-md); color: #fff; text-align: left; background: #11131a; cursor: pointer; transform-style: preserve-3d; transition: box-shadow .35s ease, filter .35s ease; }
.case-card:hover { box-shadow: 0 28px 80px rgba(10,11,15,.16); filter: brightness(1.04); }
.case-card:focus-visible { outline: 3px solid rgba(49,68,255,.38); outline-offset: 5px; }
.case-card--blue { background: var(--blue); }
.case-card--photo { background: linear-gradient(145deg, #694127, #16100c); }
.case-card > span { font-size: 9px; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.case-card h3 { min-height: 112px; margin: 104px 0 20px; font-size: clamp(27px, 2.55vw, 42px); font-weight: 480; line-height: 1.08; letter-spacing: -.045em; }
.case-card h3 strong { color: #fff; font-weight: 760; }
.case-card p { min-height: 66px; margin: 0; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.7; }
.case-card i { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-style: normal; font-size: 11px; letter-spacing: .08em; }
.case-card i b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--ink); background: #fff; font-size: 15px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.case-card:hover i b { transform: rotate(45deg); }

body.case-dialog-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
.case-dialog { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: clamp(16px, 2.4vw, 36px); visibility: hidden; pointer-events: none; }
.case-dialog.is-open { visibility: visible; pointer-events: auto; }
.case-dialog__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(4,5,9,.68); cursor: pointer; opacity: 0; backdrop-filter: blur(16px) saturate(.72); transition: opacity .35s ease; }
.case-dialog.is-open .case-dialog__backdrop { opacity: 1; }
.case-dialog__panel { position: relative; width: min(1180px, 100%); max-height: calc(100dvh - clamp(32px, 4.8vw, 72px)); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 30px; outline: 0; color: var(--ink); background: #f5f5fb; box-shadow: 0 48px 140px rgba(0,0,0,.38); opacity: 0; transform: translate3d(0,34px,0) scale(.975); transition: opacity .35s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.case-dialog.is-open .case-dialog__panel { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.case-dialog__topbar { position: relative; z-index: 4; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px 14px 26px; border-bottom: 1px solid rgba(10,11,15,.12); background: rgba(245,245,251,.9); backdrop-filter: blur(18px); }
.case-dialog__topbar > div { min-width: 0; display: flex; align-items: baseline; gap: 14px; }
.case-dialog__index { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .15em; white-space: nowrap; }
.case-dialog__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 13px; }
.case-dialog__close { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; border: 0; padding: 7px 7px 7px 15px; border-radius: 999px; color: #fff; background: var(--ink); cursor: pointer; }
.case-dialog__close span { font-size: 12px; font-weight: 760; }
.case-dialog__close b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--ink); background: #fff; font-size: 24px; font-weight: 400; line-height: 1; }
.case-dialog__close:focus-visible { outline: 3px solid rgba(49,68,255,.36); outline-offset: 3px; }
.case-dialog__scroll { flex: 1 1 auto; min-height: 0; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; scrollbar-gutter: stable; }
.case-dialog__content { padding-bottom: 76px; }
.case-detail__hero { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); min-height: 570px; border-bottom: 1px solid var(--line); }
.case-detail__hero-media { position: relative; min-height: 500px; overflow: hidden; background: #12131a; }
.case-detail__hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,6,9,.26)); pointer-events: none; }
.case-detail__hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.case-detail__hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 84px); background: radial-gradient(circle at 85% 16%, rgba(49,68,255,.11), transparent 31%), #f5f5fb; }
.case-detail__eyebrow { margin: 0 0 26px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.case-detail__hero h2 { margin: 0; font-size: clamp(42px, 5.6vw, 78px); font-weight: 520; line-height: .98; letter-spacing: -.055em; }
.case-detail__metric { display: block; margin-top: 22px; color: var(--blue); font-size: clamp(44px, 6.4vw, 86px); font-weight: 820; line-height: .96; letter-spacing: -.06em; }
.case-detail__lead { max-width: 580px; margin: 30px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.case-detail__section { width: min(960px, calc(100% - 56px)); margin: 0 auto; padding: 70px 0; border-bottom: 1px solid var(--line); }
.case-detail__section:last-child { border-bottom: 0; }
.case-detail__section-head { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 34px; margin-bottom: 34px; }
.case-detail__section-head span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.case-detail__section-head h3 { margin: 0; font-size: clamp(30px, 3.7vw, 48px); font-weight: 560; line-height: 1.12; letter-spacing: -.045em; }
.case-detail__body { margin-left: 214px; }
.case-detail__body > p { margin: 0; color: #4e515d; font-size: 17px; line-height: 1.9; }
.case-detail__results { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.case-detail__result { min-height: 154px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.6); }
.case-detail__result b { display: block; margin-bottom: 18px; color: var(--blue); font-size: 11px; letter-spacing: .12em; }
.case-detail__result p { margin: 0; font-size: 18px; font-weight: 650; line-height: 1.52; letter-spacing: -.015em; }
.case-detail__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.case-detail__list li { position: relative; padding: 19px 20px 19px 48px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.46); font-size: 17px; line-height: 1.72; }
.case-detail__list li::before { content: ""; position: absolute; left: 20px; top: 29px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.case-detail__actions { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--line); counter-reset: action; }
.case-detail__action { counter-increment: action; display: grid; grid-template-columns: 82px minmax(0,1fr); gap: 24px; padding: 28px; background: #f9f9fc; }
.case-detail__action::before { content: "0" counter(action); color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.case-detail__action h4 { margin: 0 0 10px; font-size: 22px; font-weight: 720; letter-spacing: -.025em; }
.case-detail__action p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.78; }
.case-detail__gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.case-detail__figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #e8e9f0; }
.case-detail__figure:first-child:last-child { grid-column: 1 / -1; }
.case-detail__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #e8e9f0; }
.case-detail__figure--photo img { object-fit: cover; }
.case-detail__figure figcaption { min-height: 62px; padding: 14px 16px; color: var(--muted); background: rgba(255,255,255,.76); font-size: 13px; line-height: 1.55; }
.case-detail__note { width: min(960px, calc(100% - 56px)); margin: 28px auto 0; color: #777a85; font-size: 13px; line-height: 1.7; }

.enterprise { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 190px); color: #fff; background: var(--blue); max-width: none; }
.enterprise .section-index { color: rgba(255,255,255,.6); }
.enterprise__heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: end; margin: 42px 0 80px; }
.enterprise__heading h2 { margin: 0; font-size: clamp(60px, 6.4vw, 92px); font-weight: 500; line-height: 1.02; letter-spacing: -.05em; }
.enterprise__heading p { max-width: 500px; margin: 0 0 10px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.34); border-left: 1px solid rgba(255,255,255,.34); }
.flow::after { content: ""; position: absolute; z-index: 2; left: 0; top: -1px; width: var(--flow-progress, 0%); height: 3px; background: #fff; box-shadow: 0 0 24px rgba(255,255,255,.55); pointer-events: none; transition: width .12s linear; }
.flow-card { min-height: 260px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid rgba(255,255,255,.34); border-bottom: 1px solid rgba(255,255,255,.34); }
.flow-card b { font-size: 11px; opacity: .58; }
.flow-card span { margin: auto 0 14px; font-size: clamp(24px, 2.5vw, 38px); font-weight: 600; letter-spacing: -.04em; }
.flow-card p { margin: 0; max-width: 330px; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.65; }

.consult { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 190px); display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 130px); }
.consult__copy h2 { margin: 30px 0 26px; font-size: clamp(48px, 6.4vw, 96px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.consult__copy p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.consult-card { align-self: start; padding: clamp(24px, 4vw, 50px); color: #fff; background: var(--ink); border-radius: var(--radius-lg); }
.consult-card label { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .07em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consult-card input, .consult-card textarea, .consult-card select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); outline: 0; border-radius: 0; padding: 12px 0; color: #fff; background: transparent; font-size: 15px; resize: vertical; }
.consult-card select option { color: var(--ink); }
.consult-card input:focus, .consult-card textarea:focus, .consult-card select:focus { border-color: var(--blue); }
.submit-button { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; border: 0; padding: 17px 17px 17px 22px; border-radius: 999px; color: #fff; background: var(--blue); cursor: pointer; font-weight: 800; }
.submit-button i { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--blue); background: #fff; font-style: normal; }
.submit-button:disabled { cursor: wait; opacity: .62; }
.form-note { display: block; margin-top: 14px; color: rgba(255,255,255,.42); line-height: 1.5; }
.form-status { min-height: 20px; margin-top: 13px; color: #9ef0be; font-size: 12px; }
.form-status[data-state="submitting"] { color: rgba(255,255,255,.66); }
.form-status[data-state="error"] { color: #ffb6b6; }
.footer { min-height: 44vh; padding-top: 70px; padding-bottom: calc(38px + env(safe-area-inset-bottom, 0px)); display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 30px; border-top: 1px solid var(--line); }
.footer__brand { display: block; width: 190px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.footer__brand img { display: block; width: 100%; height: auto; object-fit: contain; background: transparent; }
.footer p { max-width: 420px; margin: 0; color: var(--muted); }
.footer a { font-size: 12px; font-weight: 800; }

.reveal { opacity: 0; filter: blur(8px); transform: translate3d(0,54px,0) scale(.985); transition: opacity .75s ease var(--reveal-delay, 0ms), filter .9s ease var(--reveal-delay, 0ms), transform 1s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms); will-change: transform, opacity, filter; }
.reveal.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) scale(1); }
.resource-card.reveal { transform: perspective(900px) translate3d(0,76px,0) rotateX(7deg) scale(.965); }
.resource-card.reveal.is-visible { transform: perspective(900px) translate3d(0,0,0) rotateX(0) scale(1); }

@media (max-width: 1100px) {
  .hero__headline { grid-template-columns: 1fr; }
  .hero__headline p { max-width: 650px; }
}

@media (max-width: 980px) {
  .topbar__link { display: none; }
  .hero__headline { grid-template-columns: 1fr; }
  .hero__headline p { max-width: 650px; }
  .manifesto__grid, .consult { grid-template-columns: 1fr; }
  .section-title { grid-template-columns: 1fr; }
  .section-title > span { display: none; }
  .resource-card { grid-column: span 6; }
  .case-cover { grid-template-columns: 1fr; }
  .case-cover__media { min-height: 64svh; }
  .case-cover__copy { min-height: 70svh; }
  .enterprise__heading { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 360px; }
  .case-card h3 { min-height: 0; margin-top: 92px; }
  .case-detail__hero { grid-template-columns: 1fr; }
  .case-detail__hero-media { min-height: 440px; height: 54svh; }
  .case-detail__hero-copy { min-height: 480px; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 24px; --radius-md: 18px; }
  .page-aura { width: 130vw; right: -72vw; top: 28vh; opacity: .52; filter: blur(24px); }
  .section-shell { padding-inline: 16px; }
  .topbar { top: calc(10px + var(--safe-top)); left: 12px; right: 12px; }
  .brand__logo { width: 132px; }
  .pill-button { padding: 10px 11px 10px 14px; }
  .pill-button span { font-size: 11px; }
  .progress-ring { width: 40px; height: 40px; }
  .hero { padding-top: 96px; }
  .hero__eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(48px, 13.8vw, 62px); line-height: 1; letter-spacing: -.055em; }
  .hero__headline { gap: 20px; }
  .hero__headline p { font-size: 14px; }
  .hero-stage { min-height: 56svh; margin-top: 24px; }
  .hero-photo-wrap img { object-position: 56% center; }
  .hero-photo-wrap__label { left: 18px; bottom: 18px; }
  .hero-photo-wrap__label span { font-size: 14px; }
  .hero-photo-wrap__label small { max-width: 200px; font-size: 9px; }
  .orbit--one { width: 130vw; height: 65vw; }
  .orbit--two { width: 98vw; height: 98vw; }
  .floating-tag { padding: 7px 9px; font-size: 8px; }
  .floating-tag--a { left: 6%; top: 13%; }
  .floating-tag--b { right: 5%; top: 26%; }
  .floating-tag--c { right: 6%; bottom: 20%; }
  .floating-tag--d { left: 28%; bottom: 10%; }
  .hero__footer { grid-template-columns: auto 1fr; }
  .hero__footer a { display: none; }
  .manifesto { padding-top: 104px; }
  .manifesto__statement { margin-top: 38px; margin-bottom: 92px; }
  .manifesto__statement p { font-size: clamp(48px, 13vw, 58px); line-height: 1.1; letter-spacing: -.05em; }
  .statement-line { padding-top: .07em; padding-bottom: .12em; margin-bottom: -.1em !important; }
  .manifesto__statement.is-visible .statement-line span { transform: translate3d(var(--line-drift, 0px),0,0); }
  .founder-copy h2 { font-size: 35px; line-height: 1.16; letter-spacing: -.04em; }
  .mobile-break { display: inline; }
  .founder-copy > p { font-size: 14px; line-height: 1.92; }
  .founder-principle { margin: 28px 0; padding: 23px 20px; font-size: 34px; line-height: 1.14; }
  .founder-principle::before { right: 14px; top: 12px; }
  .founder-path { grid-template-columns: 1fr; }
  .founder-path div { min-height: 108px; padding: 17px 18px; }
  .founder-path span { max-width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats div { min-height: 120px; padding: 16px; }
  .stats strong { font-size: 34px; }
  .resources { padding-top: 110px; }
  .section-title { margin-bottom: 38px; }
  .section-title h2 { font-size: 46px; line-height: 1.06; letter-spacing: -.05em; }
  .filter-bar { position: relative; top: auto; width: calc(100vw - 32px); }
  .resource-grid { display: block; }
  .resource-card { min-height: 320px; margin-bottom: 12px; }
  .resource-card.reveal:nth-child(odd) { transform: perspective(800px) translate3d(-18px,70px,0) rotateX(5deg) scale(.97); }
  .resource-card.reveal:nth-child(even) { transform: perspective(800px) translate3d(18px,70px,0) rotateX(5deg) scale(.97); }
  .resource-card.reveal.is-visible { transform: perspective(800px) translate3d(0,0,0) rotateX(0) scale(1); }
  .reveal { filter: blur(3px); }
  .reveal.is-visible { filter: blur(0); }
  .case-cover { display: block; min-height: 128svh; }
  .case-cover__media { position: sticky; z-index: 0; top: 0; height: 68svh; min-height: 68svh; }
  .case-cover__copy { position: relative; z-index: 2; min-height: 70svh; margin-top: -9svh; padding: 58px 20px 46px; border-radius: 26px 26px 0 0; box-shadow: 0 -28px 70px rgba(5,6,8,.24); }
  .case-cover__copy h2 { font-size: 38px; line-height: 1.1; letter-spacing: -.04em; }
  .cases__intro { align-items: flex-start; flex-direction: column; }
  .case-card { min-height: 370px; padding: 24px; }
  .case-card > span { font-size: 8px; line-height: 1.55; }
  .case-card h3 { margin-top: 72px; font-size: 34px; line-height: 1.08; }
  .case-card p { min-height: 58px; font-size: 14px; }
  .case-dialog { display: block; padding: 0; }
  .case-dialog__backdrop { display: none; }
  .case-dialog__panel { width: 100%; height: 100dvh; max-height: 100dvh; border: 0; border-radius: 0; transform: translate3d(0,28px,0); }
  .case-dialog__topbar { min-height: calc(66px + env(safe-area-inset-top, 0px)); padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 10px 16px; }
  .case-dialog__topbar > div { display: block; }
  .case-dialog__index { display: block; margin-bottom: 3px; font-size: 8px; }
  .case-dialog__name { display: block; max-width: 230px; font-size: 12px; }
  .case-dialog__close { padding: 6px; }
  .case-dialog__close span { display: none; }
  .case-dialog__close b { width: 38px; height: 38px; font-size: 27px; }
  .case-dialog__content { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
  .case-detail__hero { display: block; min-height: 0; }
  .case-detail__hero-media { height: 43svh; min-height: 300px; max-height: 430px; }
  .case-detail__hero-copy { min-height: 0; padding: 36px 20px 44px; }
  .case-detail__eyebrow { margin-bottom: 18px; font-size: 9px; }
  .case-detail__hero h2 { font-size: 36px; line-height: 1.04; }
  .case-detail__metric { margin-top: 15px; font-size: 50px; line-height: 1; }
  .case-detail__lead { margin-top: 22px; font-size: 16px; line-height: 1.72; }
  .case-detail__section { width: calc(100% - 32px); padding: 48px 0; }
  .case-detail__section-head { display: block; margin-bottom: 26px; }
  .case-detail__section-head span { display: block; margin-bottom: 13px; font-size: 9px; }
  .case-detail__section-head h3 { font-size: 31px; line-height: 1.16; }
  .case-detail__body { margin-left: 0; }
  .case-detail__body > p { font-size: 16px; line-height: 1.82; }
  .case-detail__results { grid-template-columns: 1fr; gap: 10px; }
  .case-detail__result { min-height: 0; padding: 20px; }
  .case-detail__result b { margin-bottom: 12px; font-size: 10px; }
  .case-detail__result p { font-size: 17px; line-height: 1.55; }
  .case-detail__list li { padding: 17px 16px 17px 42px; font-size: 16px; line-height: 1.68; }
  .case-detail__list li::before { left: 17px; top: 27px; width: 9px; height: 9px; }
  .case-detail__action { grid-template-columns: 42px minmax(0,1fr); gap: 10px; padding: 22px 17px; }
  .case-detail__action h4 { font-size: 19px; line-height: 1.35; }
  .case-detail__action p { font-size: 16px; line-height: 1.72; }
  .case-detail__gallery { grid-template-columns: 1fr; gap: 12px; }
  .case-detail__figure img { aspect-ratio: auto; max-height: 72svh; }
  .case-detail__figure--photo img { aspect-ratio: 4 / 3; max-height: none; }
  .case-detail__figure figcaption { min-height: 0; padding: 13px 14px; font-size: 13px; }
  .case-detail__note { width: calc(100% - 32px); font-size: 12px; }
  .enterprise { padding-inline: 16px; }
  .enterprise__heading h2 { font-size: 43px; line-height: 1.08; letter-spacing: -.045em; }
  .flow { display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; border: 0; padding-bottom: 8px; }
  .flow::-webkit-scrollbar { display: none; }
  .flow-card { flex: 0 0 82vw; min-height: 300px; border: 1px solid rgba(255,255,255,.36); scroll-snap-align: center; scroll-snap-stop: always; }
  .consult__copy h2 { font-size: 45px; line-height: 1.08; letter-spacing: -.05em; }
  .consult-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer { min-height: 54vh; grid-template-columns: 1fr; align-content: end; }
  .footer__brand { width: 148px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .page-aura { display: none; }
  .statement-line span, .manifesto__statement.is-visible .statement-line span { transform: none; }
}
