:root {
  --paper: #F7FAFD; --paper-sunk: #ECF2F7;
  --ink: #101010; --ink-soft: #43464A; --ink-mute: #6E7175;
  --line: #DBE3EB; --line-strong: #C2CCD6; --line-field: #A3A8AD;
  --ice: #C3E1F8; --ice-deep: #4E7E9E;
  --salmon: #FF756C; --salmon-ink: #C4483F;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)' opacity='.042'/%3E%3C/svg%3E");
  --f-display: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Host Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "Fragment Mono", "SFMono-Regular", Consolas, monospace;
  --t-display: clamp(32px, 3.3vw, 46px); --t-lead: clamp(26px, 2.6vw, 36px);
  --t-sub: clamp(18px, 1.45vw, 22px); --t-body: 16px; --t-small: 14px; --t-meta: 13px; --t-micro: 12px;
  --gutter: clamp(22px, 3vw, 54px); --dock-gutter: 62px;
  --measure: min(calc(100vw - 2 * (var(--gutter) + var(--dock-gutter))), 1320px);
  --chrome-h: 72px;
  --e-out: cubic-bezier(.22, .78, .22, 1); --e-soft: cubic-bezier(.4, 0, .2, 1); --e-roll: cubic-bezier(.36, .02, .18, 1);
  --t-fast: .2s; --t-move: .42s; --t-sig: .56s;
  color: var(--ink); background: var(--paper); font-family: var(--f-body);
  font-synthesis: none; -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, ol, ul { margin: 0; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 500; letter-spacing: -.015em; }
:focus-visible { outline: 2px solid var(--ice-deep); outline-offset: 3px; }

.skip-link { position: fixed; z-index: 200; left: 16px; top: 12px; padding: 10px 15px; background: var(--ink); color: var(--paper); font-size: var(--t-small); transform: translateY(-180%); transition: transform .22s var(--e-out); }
.skip-link:focus { transform: translateY(0); }

.atmosphere { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: var(--paper); pointer-events: none; }
.atmosphere:empty { background: radial-gradient(ellipse at 30% 30%, #d8ebf9, transparent 65%), var(--paper); }
.fluid { position: absolute; left: 50%; top: 50%; width: 116%; height: 116%; transform: translate(-50%, -50%); filter: blur(26px); mix-blend-mode: multiply; opacity: .92; }
.frost { display: none; }
.has-fluid .frost { display: block; position: fixed; inset: 0; z-index: 1; pointer-events: none; background: rgba(247, 250, 253, .4); }
.grain { position: fixed; inset: 0; z-index: 2; pointer-events: none; background: var(--grain) repeat; background-size: 140px 140px; }

.site-header, main, .site-footer { position: relative; z-index: 3; }
.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: var(--chrome-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 var(--gutter); pointer-events: none; transition: opacity .8s var(--e-out), filter .9s var(--e-out); }
.site-header > *, .site-header__actions > * { pointer-events: auto; }
.site-header__left { display: flex; align-items: center; height: 100%; }
.site-header__logo { display: inline-flex; align-items: center; width: 100px; min-height: 44px; overflow: hidden; }
.site-header__logo img { display: block; width: 100px; height: auto; transition: transform .7s var(--e-out); }
.site-header__logo:hover img { transform: scaleX(1.012); }
.site-header__divider { width: 1px; height: 22px; margin-inline: 16px; background: var(--line-strong); }
.site-header__language { color: var(--ink-mute); font: var(--t-micro)/1 var(--f-mono); letter-spacing: .02em; }
.site-header__actions { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }

.link { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; font-size: var(--t-body); }
.link > span:first-child { position: relative; }
.link > span:first-child::after { content: ""; position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: var(--line-field); transform-origin: right center; transition: background-color var(--t-fast) var(--e-soft); }
.link__arrow { display: inline-block; transition: transform .3s var(--e-out); }
.site-header__back { color: var(--ink-soft); }
.cta-link { font-family: var(--f-display); white-space: nowrap; }
@media (hover: hover) and (pointer: fine) {
  .link:hover > span:first-child::after { background: var(--salmon); animation: tension var(--t-sig) var(--e-roll) both; }
  .link:hover .link__arrow { transform: translateX(5px); transition-delay: 200ms; }
}
@keyframes tension { 0%, 14% { transform: scaleX(1); } 46% { transform: scaleX(.82); } 100% { transform: scaleX(1); } }

.wrap { width: var(--measure); margin-inline: auto; }
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--chrome-h) + 72px) 0 86px; }
.hero .wrap { display: grid; grid-template-columns: minmax(190px, 300px) minmax(0, 1fr); column-gap: clamp(28px, 4vw, 64px); align-items: start; }
.breadcrumb { grid-column: 1 / -1; display: flex; gap: 9px; margin-bottom: clamp(48px, 8vh, 84px); font: var(--t-micro)/1.4 var(--f-mono); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.breadcrumb a { position: relative; transition: color var(--t-fast) var(--e-soft); }
.breadcrumb a::after { content: ""; position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; background: var(--line-field); transform-origin: right center; }
.breadcrumb a:hover { color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .breadcrumb a:hover::after { background: var(--salmon); animation: tension var(--t-sig) var(--e-roll) both; } }
.eyebrow, .section-label { font: var(--t-meta)/1.4 var(--f-mono); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); padding-top: 8px; }
.hero h1 { max-width: 900px; font-size: clamp(38px, 5vw, 64px); line-height: 1.03; }
.hero__intro { grid-column: 2; max-width: 760px; margin-top: clamp(30px, 5vh, 52px); font: 500 var(--t-sub)/1.38 var(--f-display); color: var(--ink); }
.hero__note { grid-column: 2; max-width: 620px; margin-top: 18px; color: var(--ink-soft); font-size: var(--t-body); line-height: 1.55; }

.section { position: relative; padding: clamp(86px, 11vh, 128px) 0; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(190px, 300px) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); margin-bottom: clamp(46px, 7vh, 76px); }
.section-head h2 { max-width: 760px; font-size: var(--t-lead); line-height: 1.13; }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.scope-item { min-height: 180px; padding: 28px 28px 38px 0; border-bottom: 1px solid var(--line); }
.scope-item:nth-child(odd) { padding-right: clamp(24px, 5vw, 70px); border-right: 1px solid var(--line); }
.scope-item:nth-child(even) { padding-left: clamp(24px, 5vw, 70px); }
.scope-item h3 { margin-bottom: 14px; font-size: var(--t-sub); line-height: 1.25; }
.scope-item p { max-width: 520px; color: var(--ink-soft); font-size: var(--t-body); line-height: 1.55; }

.process-list { list-style: none; padding: 0; border-top: 1px solid var(--ink); counter-reset: process; }
.process-list li { counter-increment: process; display: grid; grid-template-columns: 70px minmax(180px, .7fr) minmax(0, 1fr); gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li::before { content: "0" counter(process); color: var(--salmon-ink); font: var(--t-meta)/1.4 var(--f-mono); }
.process-list h3 { font-size: var(--t-sub); line-height: 1.3; }
.process-list p { max-width: 560px; color: var(--ink-soft); font-size: var(--t-body); line-height: 1.55; }

.deliverables { background: rgba(236, 242, 247, .62); }
.deliverables__layout { display: grid; grid-template-columns: minmax(190px, 300px) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); }
.deliverables h2 { font-size: var(--t-lead); line-height: 1.13; }
.deliverables ul { padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.deliverables li { padding: 17px 0; border-bottom: 1px solid var(--line-strong); font-size: var(--t-sub); }

.closing { min-height: 82svh; display: flex; align-items: center; padding: clamp(90px, 13vh, 156px) 0; }
.closing p { max-width: 800px; margin-bottom: 36px; font: 500 var(--t-display)/1.12 var(--f-display); letter-spacing: -.015em; }
.related { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px; margin-top: clamp(54px, 8vh, 84px); padding-top: 22px; border-top: 1px solid var(--line); }
.related > span { width: 100%; color: var(--ink-mute); font: var(--t-micro)/1.4 var(--f-mono); letter-spacing: .04em; text-transform: uppercase; }
.related .link { font-size: var(--t-body); }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px var(--gutter); border-top: 1px solid var(--line); color: var(--ink-mute); font-size: var(--t-meta); }

.motion-ready .reveal { opacity: 0; filter: blur(5px); transform: translateY(18px); transition: opacity .72s var(--e-out), filter .82s var(--e-out), transform .82s var(--e-out); }
.motion-ready .reveal.is-visible { opacity: 1; filter: none; transform: none; }
.motion-ready .site-header { animation: chrome-in .8s var(--e-out) both; }
@keyframes chrome-in { from { opacity: 0; filter: blur(7px); } to { opacity: 1; filter: none; } }

@media (max-width: 1080px) { :root { --dock-gutter: 0px; } }

@media (max-width: 767px), (max-width: 950px) and (max-height: 500px) {
  :root { --chrome-h: 56px; --gutter: 20px; }
  .site-header { height: var(--chrome-h); }
  .site-header__logo, .site-header__logo img { width: 86px; }
  .site-header__back { display: none; }
  .link { min-height: 44px; }
  .hero { min-height: auto; padding: 116px 0 72px; }
  .hero .wrap, .section-head, .deliverables__layout { grid-template-columns: 1fr; }
  .breadcrumb { margin-bottom: 42px; }
  .eyebrow, .section-label { padding-top: 0; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(36px, 10.8vw, 52px); }
  .hero__intro, .hero__note { grid-column: 1; }
  .hero__intro { margin-top: 28px; }
  .section { padding: 76px 0; }
  .section-head { gap: 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-item:nth-child(odd), .scope-item:nth-child(even) { padding-inline: 0; border-right: 0; }
  .process-list li { grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
  .process-list p { grid-column: 2; }
  .closing { min-height: auto; padding: 88px 0; }
  .related { align-items: flex-start; flex-direction: column; }
  .site-footer { flex-direction: column; padding-inline: var(--gutter); }
  .fluid { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready .reveal, .motion-ready .site-header { animation: none; opacity: 1; filter: none; transform: none; transition: none; }
}
