/* Caven Strategy — site styles
   Single authored stylesheet. Tokens → base → patterns → components → sections.
   Dark instrument ground, amber is the only accent, connectors carry structure. */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@400;450;500&family=Martian+Mono:wght@300;400;500&display=swap');

/* ---------- tokens ---------- */
:root {
  --ink: #0A0D11;
  --ink-raised: #12161C;
  --hairline: #232A33;
  --steel: #8A95A3;
  --bone: #EDF0F3;
  --signal: #F2A93C;
  --signal-deep: #C9831F;
  --signal-12: rgba(242,169,60,.12);
  --signal-22: rgba(242,169,60,.22);
  --signal-45: rgba(242,169,60,.45);

  --bg: var(--ink);
  --border: var(--hairline);
  --text-primary: var(--bone);
  --text-muted: var(--steel);
  --mark: var(--signal); /* connector colour, flips per surface */

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Martian Mono', ui-monospace, 'SF Mono', monospace;
  --fw-mono: 300;

  --fs-display: clamp(2.6rem, 6.8vw, 5.4rem);
  --fs-h1: clamp(2.1rem, 4.6vw, 3rem);
  --fs-h2: clamp(1.9rem, 4.4vw, 2.8rem);

  --gutter: clamp(28px, 5vw, 72px);
  --max-width: 1400px;
  --radius-sharp: 3px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --tex-color: rgba(138,149,163,.14);
  --tex-size: 18px;

  color-scheme: dark;
}

/* surface flips — swap neutrals, never add a hue */
.surface-light { --ink:#ECEEF1; --ink-raised:#FFF; --bone:#0A0D11; --hairline:#D5D9DF; --steel:#5C636E;
  --border:var(--hairline); --text-primary:var(--bone); --text-muted:var(--steel); --mark:var(--signal);
  background:var(--ink); color:var(--bone); }
.surface-raised { --bg:var(--ink-raised); background:var(--ink-raised); color:var(--bone); }
.surface-amber { --bg:var(--signal); --text-primary:var(--ink); --text-muted:rgba(10,13,17,.6); --mark:var(--ink);
  background:var(--signal); color:var(--ink); }

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { background: var(--signal); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; line-height: 1.05; color: var(--text-primary); }
p { text-wrap: pretty; }
.mono { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .72rem; letter-spacing: .01em; color: var(--text-muted); }
.co { color: var(--signal); }

/* ---------- texture utilities ---------- */
.tex { position: relative; isolation: isolate; }
.tex > * { position: relative; z-index: 1; }
.tex::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-image: var(--tex-mask, linear-gradient(180deg,#000,transparent 34%,transparent 66%,#000));
          mask-image: var(--tex-mask, linear-gradient(180deg,#000,transparent 34%,transparent 66%,#000)); }
.tex-dots::before { background-image: radial-gradient(var(--tex-color) 1px, transparent 1.5px); background-size: var(--tex-size) var(--tex-size); }
.tex-grid::before { background-image: linear-gradient(var(--tex-color) 1px,transparent 1px),linear-gradient(90deg,var(--tex-color) 1px,transparent 1px); background-size: var(--tex-size) var(--tex-size); }
.tex-hatch::before { background-image: repeating-linear-gradient(45deg,var(--tex-color) 0 1px,transparent 1px var(--tex-size)); }

/* ---------- keyframes ---------- */
@keyframes caven-ring { 0%,100%{opacity:.42} 50%{opacity:.12} }
@keyframes caven-pulse { 0%,100%{box-shadow:0 0 0 0 var(--signal-22)} 50%{box-shadow:0 0 0 12px rgba(242,169,60,0)} }
@keyframes caven-fade { from{opacity:0;transform:translateY(7px)} to{opacity:1;transform:none} }
@keyframes caven-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes draw-x { to { transform: scaleX(1); } }
@keyframes pop-in { to { transform: scale(1); } }

/* ---------- progressive enhancement ----------
   Motion/hidden states only kick in once JS is confirmed, so a no-JS or
   pre-hydration view shows everything in its resting state. */
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  .js .rv { opacity: 1; transform: none; }
}

/* ---------- layout ---------- */
.wrap { max-width: var(--max-width); margin: 0 auto; padding-inline: var(--gutter); position: relative; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-body); font-weight: 500;
  font-size: .92rem; line-height: 1; padding: 12px 22px; border-radius: var(--radius-sharp);
  border: 1px solid transparent; white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s; }
.btn--sm { font-size: .84rem; padding: 9px 16px; }
.btn--primary { background: var(--signal); color: var(--ink); }
.btn--primary:hover { background: var(--signal-deep); }
.btn--ghost { background: transparent; border-color: var(--hairline); color: var(--bone); }
.btn--ghost:hover { border-color: var(--signal); color: var(--signal); }
.btn__arrow { display: inline-block; transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }
/* ink button on amber grounds so it never disappears */
.surface-amber .btn--primary, .surface-amber .btn--ghost { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.surface-amber .btn--primary:hover, .surface-amber .btn--ghost:hover { background: #1b2229; }

/* ---------- pill / brand chip ---------- */
.pill { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-body); font-weight: 450;
  font-size: .78rem; line-height: 1; padding: 6px 13px; border-radius: var(--radius-pill);
  border: 1px solid var(--signal); background: var(--signal); color: var(--ink); white-space: nowrap; }
.pill--ghost { background: transparent; color: var(--signal); }
.pill__node { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); flex: 0 0 auto; }
.pill--ghost .pill__node { background: var(--signal); }

/* ---------- eyebrow (connector + chip) ---------- */
.eyebrow { display: inline-flex; align-items: center; }
.eyebrow__node { width: 7px; height: 7px; border-radius: 50%; background: var(--mark); box-shadow: 0 0 0 4px var(--signal-12); flex: 0 0 auto; }
.eyebrow__line { width: 26px; height: 1px; background: var(--mark); flex: 0 0 auto; margin-right: -1px; transform-origin: left; }
.eyebrow__chip { display: inline-flex; align-items: center; line-height: 1; font-family: var(--font-body);
  font-weight: 450; font-size: .78rem; padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); color: var(--text-primary); white-space: nowrap; }
.js .eyebrow__line { transform: scaleX(0); animation: draw-x .5s var(--ease) forwards; }
.js .eyebrow__node { transform: scale(0); animation: pop-in .3s ease .45s forwards; }

/* ---------- corridor (two hubs) ---------- */
.corridor__rail-row { display: flex; align-items: center; gap: 12px; }
.corridor__node { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.corridor__node--from { border: 1px solid var(--mark); }
.corridor__node--to { background: var(--mark); box-shadow: 0 0 0 5px var(--signal-12); }
.corridor__rail { position: relative; flex: 1 1 auto; height: 1px; background: var(--hairline); overflow: hidden; }
.corridor__rail span { position: absolute; inset: 0; background: var(--mark); transform-origin: left; }
.js .corridor__rail span { transform: scaleX(0); animation: draw-x 1s var(--ease) .2s forwards; }
.corridor__labels { display: flex; justify-content: space-between; margin-top: 12px; }
.corridor__label { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .66rem; letter-spacing: .05em; color: var(--steel); line-height: 1.7; }
.corridor__label b { display: block; color: var(--text-primary); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .6rem; margin-bottom: 2px; }
.corridor__label .co { color: var(--signal); }
.corridor__label--to { text-align: right; }

/* ---------- crosshair marker ---------- */
.crosshair svg { display: block; overflow: visible; }
.crosshair__ring { animation: caven-ring 3.4s ease-in-out 1s infinite; transform-origin: center; }
.crosshair__lbl { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .66rem; letter-spacing: .1em; color: var(--steel); margin-top: 12px; line-height: 1.7; }
.crosshair__lbl b { display: block; color: var(--text-primary); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .62rem; margin-bottom: 2px; }
.crosshair__lbl .co { color: var(--signal); }

/* ---------- carousel ---------- */
.carousel { border: 1px solid var(--hairline); border-radius: 4px; background: var(--ink-raised); overflow: hidden; }
.carousel__top { display: flex; justify-content: space-between; align-items: center; padding: 15px 22px; border-bottom: 1px solid var(--hairline); }
.carousel__top span { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .66rem; letter-spacing: .04em; color: var(--steel); }
.carousel__count b { color: var(--signal); }
.carousel__count i { opacity: .6; font-style: normal; }
.carousel__slide { display: none; grid-template-columns: 1fr 1fr; }
.carousel__slide.is-active { display: grid; animation: caven-fade .45s var(--ease); }
@media (max-width: 720px) { .carousel__slide { grid-template-columns: 1fr; } }
.carousel__text { padding: clamp(28px,3.5vw,44px); }
.carousel__kicker { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .66rem; letter-spacing: .04em; color: var(--signal); margin-bottom: 16px; }
.carousel__text h3 { font-size: clamp(1.5rem,2.6vw,2rem); line-height: 1.15; letter-spacing: -.02em; color: var(--bone); max-width: 20ch; }
.carousel__text p { color: var(--steel); font-size: 1rem; line-height: 1.6; margin-top: 14px; max-width: 44ch; }
.carousel__aside { border-left: 1px solid var(--hairline); padding: clamp(28px,3.5vw,44px); display: flex; flex-direction: column; justify-content: center; background: var(--ink); }
@media (max-width: 720px) { .carousel__aside { border-left: none; border-top: 1px solid var(--hairline); } }
.carousel__points { display: flex; flex-direction: column; gap: 14px; }
.carousel__pt { display: flex; align-items: flex-start; gap: 12px; }
.carousel__pt::before { content: ""; width: 7px; height: 7px; border-radius: 50%; margin-top: 7px; background: var(--signal); flex: 0 0 auto; }
.carousel__pt span { color: var(--bone); font-size: .98rem; line-height: 1.45; }
.carousel__panel { animation: caven-fade .45s var(--ease); }
.carousel__foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-top: 1px solid var(--hairline); }
.carousel__dots { display: flex; align-items: center; }
.carousel__dots .seg { width: 28px; height: 1px; background: var(--hairline); transition: background .3s; }
.carousel__dots .seg.on { background: var(--signal); }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer; border: 1px solid var(--steel); background: transparent; transition: background .3s, border-color .3s, box-shadow .3s; }
.carousel__dot.on { background: var(--signal); border-color: var(--signal); box-shadow: 0 0 0 4px var(--signal-12); }
.carousel__nav { display: flex; gap: 8px; }
.carousel__nav button { font-family: var(--font-mono); font-size: .9rem; color: var(--bone); background: transparent; border: 1px solid var(--hairline); border-radius: 3px; width: 38px; height: 34px; cursor: pointer; transition: border-color .2s, color .2s; }
.carousel__nav button:hover { border-color: var(--signal); color: var(--signal); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; width: 100%; height: 100%;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
          mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.marquee__track { display: flex; align-items: center; height: 100%; width: max-content; }
.marquee--scroll .marquee__track { animation: caven-marquee var(--marquee-speed, 26s) linear infinite; }
.marquee--scroll:hover .marquee__track { animation-play-state: paused; }
.marquee--static .marquee__track { width: 100%; justify-content: center; flex-wrap: wrap; row-gap: 10px; }
.marquee__word { font-family: var(--font-body); font-weight: 500; letter-spacing: .015em; font-size: clamp(.92rem,1.5vw,1.2rem); line-height: 1.1; white-space: nowrap; flex: 0 0 auto; color: var(--ink); }
.marquee__sep { width: 1px; align-self: stretch; background: rgba(10,13,17,.28); flex: 0 0 auto; margin-inline: clamp(30px,5vw,60px); }

/* ---------- contact banner ---------- */
.contact-banner { background: var(--signal); color: var(--ink); --mark: var(--ink); --text-primary: var(--ink); --border: rgba(10,13,17,.35); }
.contact-banner__in { max-width: var(--max-width); margin: 0 auto; padding-inline: var(--gutter); padding-block: clamp(56px,8vw,96px); }
.contact-banner__places { display: flex; margin-bottom: 24px; }
.contact-banner__place { width: 68px; height: 68px; border-radius: 50%; background: var(--ink); border: 3px solid var(--signal);
  box-shadow: inset 0 0 0 1px rgba(237,240,243,.18); position: relative; overflow: hidden; display: grid; place-items: center; }
.contact-banner__place + .contact-banner__place { margin-left: -20px; }
.contact-banner__place img, .contact-banner__place video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-banner h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; line-height: 1.08;
  font-size: clamp(1.9rem,4.4vw,3rem); color: var(--ink); max-width: 20ch; margin-top: 18px; }
.contact-banner p { font-size: 1.08rem; line-height: 1.55; color: rgba(10,13,17,.72); max-width: 46ch; margin-top: 16px; }
.contact-banner .btn-row { margin-top: 30px; }
.contact-banner .btn--primary, .contact-banner .btn--ghost { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.contact-banner .btn--primary:hover, .contact-banner .btn--ghost:hover { background: #1b2229; }

/* ---------- tabs ---------- */
.tabs__list { display: flex; gap: clamp(18px,3vw,40px); flex-wrap: wrap; border-bottom: 1px solid var(--hairline); }
.tabs__tab { position: relative; background: none; border: none; cursor: pointer; padding: 0 0 14px; margin: 0;
  font-family: var(--font-body); font-weight: 500; font-size: .96rem; color: var(--steel); transition: color .2s; }
.tabs__tab:hover, .tabs__tab.on { color: var(--bone); }
.tabs__tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.tabs__tab.on::after { transform: scaleX(1); }
.tabs__panel { padding-top: clamp(26px,3.5vw,40px); }
.tabs__panel.is-active { animation: caven-fade .4s var(--ease); }

/* ============================ NAV ============================ */
.site-nav { position: sticky; top: 0; z-index: 60; background: rgba(10,13,17,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--hairline); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.wm-logo { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-family: var(--font-body); font-weight: 500; font-size: .92rem; color: var(--steel); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bone); }
.nav-links a[aria-current="page"] { color: var(--signal); }
.hub { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; color: var(--steel); border-left: 1px solid var(--hairline); padding-left: 22px; }
.hub b { color: var(--bone); font-weight: 500; }
@media (max-width: 940px) { .nav-links a:not(.btn), .hub { display: none; } }

/* ============================ section + head ============================ */
section.block { position: relative; border-top: 1px solid var(--hairline); padding: clamp(64px,9vw,118px) 0; }
.head { position: relative; }
.sect-title { font-size: var(--fs-h2); margin-top: 14px; max-width: 20ch; }
.sect-intro { color: var(--steel); max-width: 60ch; margin-top: 18px; font-size: 1.05rem; }

/* page hero (interior) */
.phero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(56px,9vw,104px) 0 clamp(40px,6vw,72px); }
.phero > * { position: relative; z-index: 1; }
.phero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(151,162,176,.42) 1px, transparent 1.5px); background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 82%); mask-image: linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 82%); }
.phero h1 { font-size: var(--fs-h1); max-width: 18ch; margin-top: 18px; }
.phero .lead { color: var(--bone); font-size: clamp(1.1rem,2vw,1.35rem); max-width: 50ch; margin-top: 22px; line-height: 1.5; }
.phero .sub { color: var(--steel); max-width: 60ch; margin-top: 16px; }

/* home hero */
.hero { min-height: calc(100vh - 66px); padding: clamp(40px,6vw,72px) 0 clamp(32px,4vw,48px); display: flex; }
.hero .wrap { display: flex; flex-direction: column; width: 100%; }
.hero-content { margin-top: auto; }
.hero-title { font-size: var(--fs-display); max-width: 15ch; margin-top: 20px; }
.hero-sub { margin-top: 24px; max-width: 44ch; font-size: clamp(1.1rem,2vw,1.35rem); color: var(--bone); line-height: 1.5; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hsig { margin-top: auto; padding-top: clamp(40px,6vw,72px); padding-bottom: 8px; }

/* sectors + breather: one 100vh block */
.sectors-stack { position: relative; height: 100vh; display: flex; flex-direction: column; }
.sector-band { position: relative; flex: 0 0 auto; background: var(--signal); height: clamp(54px,7vh,76px); display: flex; align-items: stretch; overflow: hidden; }
.breather { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; background: var(--ink); }
.breather-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.32); transform-origin: center; will-change: transform; filter: saturate(.9) contrast(1.02); }
.breather-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(10,13,17,.46) 0%,rgba(10,13,17,0) 30%,rgba(10,13,17,0) 68%,rgba(10,13,17,.55) 100%); }
.sectors-cta { position: absolute; top: clamp(26px,5vh,52px); left: 50%; transform: translateX(-50%); z-index: 3; }

/* pinned "your way in" */
.pin-wrap { position: relative; height: 240vh; border-top: 1px solid var(--hairline); }
.pin-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--ink); }
.pin-split { display: grid; grid-template-columns: 1.02fr .98fr; height: 100%; }
@media (max-width: 860px) { .pin-split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; } }
.pin-media { position: relative; overflow: hidden; }
.pin-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(.88) contrast(1.03) brightness(.94); }
.pin-media-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg,rgba(10,13,17,.35) 0%,rgba(10,13,17,0) 32%,rgba(10,13,17,0) 55%,rgba(10,13,17,.78) 100%); }
.pin-media-tag { position: absolute; left: clamp(20px,3vw,40px); bottom: clamp(20px,3vw,40px); z-index: 2; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.pin-dest { font-family: var(--font-mono); font-weight: var(--fw-mono); line-height: 1.7; }
.pin-dest .v { font-size: .78rem; letter-spacing: .03em; color: var(--bone); }
.pin-text { background: var(--ink); border-left: 1px solid var(--hairline); position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(36px,5vw,80px); }
@media (max-width: 860px) { .pin-text { border-left: none; border-top: 1px solid var(--hairline); } }
.pin-statement { font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; font-size: clamp(1.5rem,2.6vw,2.4rem); max-width: 24ch; }
.pin-statement .w { display: inline-block; color: var(--bone); }
.js .pin-statement .w { opacity: .16; will-change: opacity; }
.pin-statement .w.am { color: var(--signal); }
.pin-meta { margin-top: 30px; font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .72rem; letter-spacing: .01em; color: var(--text-muted); }
.pin-meta .co { color: var(--signal); }
.pin-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--hairline); z-index: 3; }
.pin-progress span { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--signal); }
@media (prefers-reduced-motion: reduce) { .pin-wrap { height: auto; } .pin-stage { position: static; height: auto; } .pin-split { grid-template-rows: 56vh auto; } .js .pin-statement .w { opacity: 1; } }

/* bullets */
.bullets { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.bullets li { position: relative; padding-left: 22px; color: var(--steel); font-size: .98rem; line-height: 1.5; }
.bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }

/* about: image + prose thirds */
.about-split { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(28px,5vw,72px); align-items: stretch; }
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; gap: 30px; } }
.about-media { position: relative; min-height: 340px; background: var(--ink-raised); border: 1px solid var(--hairline); border-radius: var(--radius-sharp); overflow: hidden; }
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cb { position: absolute; width: 15px; height: 15px; border: 1px solid var(--signal); opacity: .8; }
.cb.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.cb.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.cb.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.cb.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.about-prose { display: flex; flex-direction: column; justify-content: center; gap: clamp(26px,4vw,44px); }
.about-block h2 { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; letter-spacing: 0; line-height: 1.3; color: var(--bone); margin-bottom: 12px; }
.about-block p { color: var(--steel); max-width: 60ch; line-height: 1.65; font-size: 1.05rem; }
.about-block p + p { margin-top: 14px; }
.about-block strong { color: var(--bone); font-weight: 500; }

/* about: full-height media split (media bleeds left, text locks to grid) */
.media-split { position: relative; border-top: 1px solid var(--hairline);
  --g: clamp(28px,5vw,72px);
  --cl: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  --cw: min(calc(100vw - 2 * var(--gutter)), calc(var(--max-width) - 2 * var(--gutter)));
  --c1: calc((var(--cw) - var(--g)) / 3); }
.media-split__grid { display: grid; grid-template-columns: calc(var(--cl) + var(--c1)) var(--g) calc(2 * var(--c1)); align-items: stretch; }
@media (max-width: 820px) { .media-split__grid { grid-template-columns: 1fr; } }
.media-split__media { grid-column: 1; position: sticky; top: 0; height: 100vh; overflow: hidden; }
@media (max-width: 820px) { .media-split__media { grid-column: auto; position: relative; height: 46vh; } }
.media-split__media img, .media-split__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03) brightness(.9); }
.media-split__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(10,13,17,.42) 0%,rgba(10,13,17,0) 38%,rgba(10,13,17,0) 64%,rgba(10,13,17,.6) 100%); }
.media-split__text { grid-column: 3; padding: clamp(56px,9vh,116px) 0; display: flex; flex-direction: column; gap: clamp(52px,9vh,104px); }
@media (max-width: 820px) { .media-split__text { grid-column: auto; padding: clamp(48px,8vw,80px) var(--gutter); } }
.run-kicker { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--bone); margin-bottom: 14px; }
.run-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px var(--signal-12); flex: 0 0 auto; }
.run-item { padding: 22px 0; border-top: 1px solid var(--hairline); }
.run-item h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.08rem; color: var(--bone); margin-bottom: 7px; }
.run-item p { color: var(--steel); font-size: .98rem; line-height: 1.6; max-width: 54ch; }

/* spine rail (how we help / services) */
.spine { position: relative; border-top: 1px solid var(--hairline); }
.spine__grid { display: grid; grid-template-columns: 1fr 2fr; max-width: var(--max-width); margin: 0 auto; padding-inline: var(--gutter); }
@media (max-width: 880px) { .spine__grid { grid-template-columns: 1fr; } }
.spine__aside { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-right: clamp(24px,3vw,56px); }
@media (max-width: 880px) { .spine__aside { position: static; height: auto; padding: clamp(56px,9vw,90px) 0 8px; } }
.spine__aside .btn-row { margin-top: 28px; }
.spine__list { position: relative; }
.spine__line { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--hairline); }
.spine__fill { position: absolute; left: 0; top: 0; width: 2px; margin-left: -.5px; height: 0; background: var(--signal); box-shadow: 0 0 16px var(--signal-45); }
.spine__item { position: relative; min-height: 46vh; display: flex; align-items: center; }
.js .spine__item { opacity: .42; transition: opacity .5s var(--ease); }
.spine__item.reached, .spine__item.hot { opacity: 1; }
@media (max-width: 880px) { .spine__item { min-height: 0; padding: 30px 0; } }
.spine__node { position: absolute; left: 0; top: 50%; width: 12px; height: 12px; border-radius: 50%; z-index: 2; background: var(--ink); border: 1px solid var(--steel); transform: translate(-50%,-50%) scale(.55); transition: transform .4s var(--ease), background .4s, border-color .4s, box-shadow .4s; }
.spine__item.reached .spine__node { background: var(--signal); border-color: var(--signal); transform: translate(-50%,-50%) scale(1); }
.spine__item.hot .spine__node { transform: translate(-50%,-50%) scale(1.4); box-shadow: 0 0 0 7px var(--signal-12); }
.spine__branch { position: absolute; left: 0; top: 50%; height: 1px; width: 0; background: var(--signal); transition: width .55s var(--ease); }
.spine__item.reached .spine__branch { width: clamp(36px,4vw,72px); }
.spine__body { padding-left: clamp(56px,6vw,108px); }
.spine__kicker { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .72rem; letter-spacing: .01em; color: var(--steel); margin-bottom: 12px; transition: color .4s; }
.spine__item.hot .spine__kicker { color: var(--signal); }
.spine__body h3 { font-size: clamp(1.5rem,2.6vw,2.2rem); letter-spacing: -.02em; line-height: 1.12; color: var(--steel); transition: color .4s; }
.spine__item.reached .spine__body h3 { color: var(--bone); }
.spine__item.hot .spine__body h3 { color: var(--signal); }
.spine__body p { color: var(--steel); font-size: 1rem; line-height: 1.6; margin-top: 12px; max-width: 46ch; }
.js .spine__body p { opacity: .55; transition: opacity .4s; }
.spine__item.reached .spine__body p { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .spine__aside { position: static; height: auto; } .spine__item { min-height: 0; padding: 26px 0; } .js .spine__item { opacity: 1; } }

/* full-bleed media split (sectors tabs) */
.bsplit { position: relative; border-top: 1px solid var(--hairline);
  --g: clamp(28px,5vw,72px);
  --cl: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  --cw: min(calc(100vw - 2 * var(--gutter)), calc(var(--max-width) - 2 * var(--gutter)));
  --c1: calc((var(--cw) - var(--g)) / 3); }
.bsplit__grid { display: grid; grid-template-columns: calc(var(--cl) + var(--c1)) var(--g) calc(2 * var(--c1)); align-items: stretch; }
@media (max-width: 820px) { .bsplit__grid { grid-template-columns: 1fr; } }
.bsplit__media { grid-column: 1; position: relative; overflow: hidden; min-height: clamp(440px,82vh,820px); }
@media (max-width: 820px) { .bsplit__media { grid-column: auto; min-height: 44vh; } }
.bsplit__media video, .bsplit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03) brightness(.9); }
.bsplit__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(10,13,17,.42) 0%,rgba(10,13,17,0) 38%,rgba(10,13,17,0) 64%,rgba(10,13,17,.6) 100%); }
.bsplit__media .cb { z-index: 3; }
.snap-card { position: absolute; top: 12px; left: 12px; z-index: 2; max-width: clamp(220px,24vw,300px); background: rgba(10,13,17,.6); backdrop-filter: blur(9px); border: 1px solid var(--hairline); border-radius: var(--radius-sharp); padding: 16px 18px; }
.snap-card p { font-family: var(--font-body); font-size: .8rem; line-height: 1.55; color: var(--bone); }
.bsplit__content { grid-column: 3; align-self: center; padding: clamp(48px,7vh,96px) 0; min-width: 0; }
@media (max-width: 820px) { .bsplit__content { grid-column: auto; padding: clamp(40px,7vw,64px) var(--gutter); } }
.sector-panel h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); letter-spacing: -.02em; line-height: 1.14; color: var(--bone); margin: 12px 0 14px; }
.sector-panel .kicker-m { display: block; font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .74rem; letter-spacing: .01em; color: var(--signal); }
.sector-panel .desc { color: var(--steel); max-width: 52ch; line-height: 1.6; font-size: 1.02rem; }

/* feature blocks (services list fallback) */
.feat { padding: clamp(34px,5vw,52px) 0; border-top: 1px solid var(--hairline); }
.feat:first-of-type { border-top: none; }

/* callout */
.callout { margin-top: 8px; border: 1px solid var(--hairline); border-radius: 4px; background: var(--ink-raised); padding: clamp(28px,4vw,44px); }
.callout h3 { font-size: 1.5rem; color: var(--bone); margin-bottom: 14px; }
.callout p { color: var(--steel); max-width: 56ch; line-height: 1.6; }
.callout .btn-row { margin-top: 24px; }
.surface-amber .callout { background: transparent; border-color: rgba(10,13,17,.22); }
.surface-amber .callout h3 { color: var(--ink); }
.surface-amber .callout p { color: rgba(10,13,17,.72); }

/* deployments teaser links (home) */
.deploys { margin-top: 36px; display: flex; flex-direction: column; }
.deploy-link { display: flex; align-items: center; gap: 20px; padding: 24px 0; border-top: 1px solid var(--hairline); transition: padding .25s; }
.deploy-link:hover { padding-left: 10px; }
.deploy-link .dt { flex: 1 1 auto; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem,2.2vw,1.5rem); letter-spacing: -.02em; color: var(--bone); }
.deploy-link .arr { font-family: var(--font-mono); color: var(--signal); font-size: 1.1rem; transition: transform .25s; flex: 0 0 auto; }
.deploy-link:hover .arr { transform: translateX(4px); }

/* case studies (deployments) */
.deploy-cases { background: var(--signal); border-top: none; }
.case { border: 1px solid var(--hairline); border-radius: 4px; background: var(--ink-raised); overflow: hidden; margin-top: 32px; scroll-margin-top: 86px; }
.case:first-of-type { margin-top: 0; }
.case-top { position: relative; overflow: hidden; min-height: clamp(220px,28vh,300px); display: flex; align-items: flex-end; padding: clamp(26px,3.5vw,40px); border-bottom: 1px solid var(--hairline); }
.case-top-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(.85) contrast(1.03) brightness(.85); }
.case-top-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(0deg,rgba(10,13,17,.92) 0%,rgba(10,13,17,.66) 34%,rgba(10,13,17,.18) 72%,rgba(10,13,17,.34) 100%); }
.case-top-inner { position: relative; z-index: 2; }
.case-top h2 { font-size: clamp(1.5rem,3.2vw,2.1rem); color: var(--bone); max-width: 24ch; }
.case-top .who { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .76rem; letter-spacing: .01em; color: var(--steel); margin-top: 14px; }
.case-body { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .case-body { grid-template-columns: 1fr; } }
.case-cell { padding: clamp(24px,3vw,34px); border-top: 1px solid var(--hairline); }
.case-cell:nth-child(even) { border-left: 1px solid var(--hairline); }
@media (max-width: 760px) { .case-cell:nth-child(even) { border-left: none; } }
.case-cell h4, .case-landed h4 { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .82rem; letter-spacing: .01em; color: var(--signal); margin-bottom: 12px; }
.case-cell p { color: var(--steel); font-size: .98rem; line-height: 1.6; }
.case-landed { padding: clamp(24px,3vw,34px); border-top: 1px solid var(--hairline); background: var(--ink); }
.case-landed h4 { margin-bottom: 16px; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 3px; overflow: hidden; }
@media (max-width: 620px) { .metrics { grid-template-columns: 1fr; } }
.metric { background: var(--ink-raised); padding: 20px 22px; }
.metric .mv { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--bone); letter-spacing: -.01em; line-height: 1.3; }
.metric .mv b { color: var(--signal); font-weight: 600; }

/* careers */
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 820px) { .trio { grid-template-columns: 1fr; } }
.job { border: 1px solid var(--hairline); border-radius: 4px; background: var(--ink-raised); overflow: hidden; margin-top: 20px; }
.job-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 26px; cursor: pointer; transition: background .2s; width: 100%; text-align: left; background: none; border: none; font: inherit; }
.job-head:hover { background: rgba(242,169,60,.04); }
.job-head h3 { font-size: 1.35rem; color: var(--bone); }
.job-meta { display: flex; gap: 18px; align-items: center; }
.job-meta span { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .72rem; letter-spacing: .01em; color: var(--steel); }
.job-toggle { font-family: var(--font-mono); color: var(--signal); font-size: 1.2rem; width: 24px; text-align: center; flex: 0 0 auto; transition: transform .25s; }
.job.open .job-toggle { transform: rotate(45deg); }
.job-body { display: none; padding: 0 26px 28px; border-top: 1px solid var(--hairline); }
.job.open .job-body { display: block; }
.job-body .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 24px; }
@media (max-width: 680px) { .job-body .grid2 { grid-template-columns: 1fr; gap: 22px; } }
.job-body h4 { font-family: var(--font-body); font-size: .9rem; color: var(--bone); margin-bottom: 14px; font-weight: 500; }
.job-body .role-line { color: var(--steel); margin: 18px 0 4px; max-width: 62ch; line-height: 1.6; }
.steps { list-style: none; margin-top: 30px; display: flex; flex-direction: column; }
.steps li { position: relative; padding: 20px 0 20px 28px; border-top: 1px solid var(--hairline); }
.steps li:first-child { border-top: none; }
.steps li::before { content: ""; position: absolute; left: 0; top: 28px; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.steps h4 { font-size: 1.1rem; color: var(--bone); margin-bottom: 6px; font-family: var(--font-display); font-weight: 500; }
.steps p { color: var(--steel); font-size: .96rem; }

/* forms */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 540px; }
.form.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 640px; }
.form.cols .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form.cols { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-body); font-weight: 500; font-size: .82rem; color: var(--steel); }
.field input, .field textarea, .field select { font-family: var(--font-body); font-size: .95rem; color: var(--bone); background: var(--ink-raised); border: 1px solid var(--hairline); border-radius: 3px; padding: 12px 14px; resize: vertical; width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--signal); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel); opacity: .55; }
.field .file { border: 1px dashed var(--hairline); border-radius: 3px; padding: 14px; font-family: var(--font-mono); font-size: .72rem; color: var(--steel); letter-spacing: .04em; cursor: pointer; transition: border-color .2s, color .2s; }
.field .file:hover { border-color: var(--signal); color: var(--bone); }
.form-done { border: 1px solid var(--signal); border-radius: 4px; background: rgba(242,169,60,.05); padding: 30px 32px; max-width: 540px; }
.form-done p { color: var(--steel); margin-top: 18px; max-width: 42ch; }
.surface-amber .field label { color: var(--ink); }
.surface-amber .field input, .surface-amber .field textarea, .surface-amber .field select { background: rgba(10,13,17,.06); border-color: rgba(10,13,17,.28); color: var(--ink); }
.surface-amber .field input::placeholder, .surface-amber .field textarea::placeholder { color: rgba(10,13,17,.5); }
.surface-amber .field input:focus, .surface-amber .field textarea:focus, .surface-amber .field select:focus { border-color: var(--ink); }
.surface-amber .field .file { border-color: rgba(10,13,17,.3); color: rgba(10,13,17,.66); }
.surface-amber .field .file:hover { border-color: var(--ink); color: var(--ink); }
.surface-amber .form-done { border-color: rgba(10,13,17,.3); background: rgba(10,13,17,.06); }

/* contact: find us */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,6vw,72px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.hubs2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
@media (max-width: 680px) { .hubs2 { grid-template-columns: 1fr; } }
.hubcard { border: 1px solid var(--hairline); border-radius: 4px; padding: 26px 28px; background: var(--ink-raised); }
.hubcard .addr { color: var(--steel); margin-top: 18px; line-height: 1.7; font-size: .96rem; }
.hubcard .addr b { color: var(--bone); font-weight: 500; display: block; margin-bottom: 6px; }

/* ============================ footer ============================ */
.site-footer { background: var(--ink-raised); border-top: 1px solid var(--hairline); }
.foot-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; padding: 56px 0 36px; }
@media (max-width: 880px) { .foot-main { grid-template-columns: 1fr 1fr; gap: 34px 30px; } }
@media (max-width: 520px) { .foot-main { grid-template-columns: 1fr; } }
.fm-logo { height: 42px; width: auto; }
.foot-desc { font-size: .9rem; color: var(--steel); margin-top: 16px; max-width: 34ch; line-height: 1.6; }
.foot-col h4 { font-family: var(--font-mono); font-size: .62rem; color: var(--steel); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 400; }
.foot-col a { display: block; color: var(--bone); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--signal); }
.foot-col .addr { font-size: .85rem; color: var(--steel); line-height: 1.7; }
.foot-col .addr + .addr { margin-top: 16px; }
.foot-col .addr b { color: var(--bone); font-weight: 500; display: block; margin-bottom: 5px; letter-spacing: .1em; text-transform: uppercase; font-size: .64rem; font-family: var(--font-mono); }
.foot-base { border-top: 1px solid var(--hairline); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-base span, .foot-base a { font-size: .8rem; color: var(--steel); }
.foot-base a:hover { color: var(--signal); }

/* ============================ legal page ============================ */
.legal { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }
.legal-hero { padding: clamp(48px,8vw,96px) 0 clamp(20px,3vw,32px); border-bottom: 1px solid var(--hairline); }
.legal-hero h1 { font-size: var(--fs-h1); }
.legal-date { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .76rem; letter-spacing: .02em; color: var(--signal); margin-top: 14px; }
.legal-lead { color: var(--bone); font-size: 1.1rem; line-height: 1.6; margin-top: 20px; max-width: 70ch; }
.legal-body { padding: clamp(36px,5vw,56px) 0 clamp(64px,9vw,118px); }
.legal-body h2 { font-size: 1.4rem; letter-spacing: -.01em; color: var(--bone); margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--bone); margin: 24px 0 8px; }
.legal-body p { color: var(--steel); line-height: 1.7; margin-bottom: 14px; max-width: 72ch; }
.legal-body a { color: var(--signal); }
.legal-body a:hover { text-decoration: underline; }

/* ============================ cookie consent ============================ */
.cookie { position: fixed; left: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 200;
  max-width: 520px; background: var(--ink-raised); border: 1px solid var(--hairline); border-radius: 4px;
  padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.cookie[hidden] { display: none; }
.cookie p { color: var(--bone); font-size: .9rem; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie-link { font-family: var(--font-mono); font-weight: var(--fw-mono); font-size: .72rem; color: var(--steel); margin-left: auto; transition: color .2s; }
.cookie-link:hover { color: var(--signal); }
