/* ==========================================================================
   VASTview — AI Lumière Production  ·  v2 "The Screening Frame"
   Brand: VASTview Gen II monochrome · Ivy Mode (→Cormorant) display + Inter
   Principle: the brand is the gallery; the work is the only colour.
   ========================================================================== */

/* Brand display fonts (VASTview Gen II) — Ivy Mode + Minerva Modern, self-hosted from the brand Drive. */
@font-face{font-family:"Ivy Mode";src:url("../fonts/IvyMode-Light.woff2") format("woff2");font-weight:300;font-display:swap}
@font-face{font-family:"Ivy Mode";src:url("../fonts/IvyMode-Regular.woff2") format("woff2");font-weight:400;font-display:swap}
@font-face{font-family:"Ivy Mode";src:url("../fonts/IvyMode-SemiBold.woff2") format("woff2");font-weight:600;font-display:swap}
@font-face{font-family:"Minerva Modern";src:url("../fonts/MinervaModern.woff2") format("woff2");font-weight:400;font-display:swap}

:root{
  --ink:#1B1B1B; --gray:#8D8D8D; --light:#E9E9E9; --paper:#EEEEE8; --paper-bg:#E4E1D7; --white:#fff;
  --rule:rgba(233,233,233,.16); --rule-d:rgba(27,27,27,.14);
  --display:"Ivy Mode","Minerva Modern","Cormorant Garamond",Georgia,serif;
  --body:"Newsreader","Iowan Old Style",Georgia,"Times New Roman",serif;
  --label:"Inter",-apple-system,"Segoe UI",system-ui,sans-serif;
  --bar:6.2vh;
  --pad:clamp(1.25rem,5vw,5.5rem);
  --ease:cubic-bezier(.22,.61,.36,1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{font-family:var(--body);font-weight:300;background:#0d0d0e;color:var(--paper);line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;overflow-x:hidden;scrollbar-gutter:stable}
img,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
::selection{background:var(--paper);color:var(--ink)}

/* ---------- type ---------- */
/* display tracking scales with size: base tightens slightly, the biggest closes tighter still */
.display{font-family:var(--display);font-weight:500;line-height:.96;letter-spacing:-.01em}
.display--lg{font-size:clamp(2rem,5.5vw,4.4rem);line-height:1}
.display--xl{font-size:clamp(2.8rem,9vw,7.5rem);letter-spacing:-.022em}
/* two-tier caps system: eyebrows at the locked tracking, a quieter sub-label tier for within-section labels */
.caps{font-family:var(--label);font-weight:500;font-size:.7rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gray)}
.caps--sub{font-size:.62rem;letter-spacing:.18em}
.caps--dim{color:rgba(233,233,233,.55)}
.lede{font-size:clamp(1.02rem,1.5vw,1.3rem);font-weight:300;color:var(--gray);max-width:46ch}

/* ---------- decorative overlays ---------- */
.grain{position:fixed;inset:0;z-index:60;pointer-events:none;opacity:.07;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  background-size:170px 170px}
/* ==========================================================================
   CUSTOM CURSOR
   A camera-viewfinder pointer: a precise centre dot + a lagging frame of four
   corner brackets that tightens to a focus-lock over interactive elements. On a
   brief idle pause the pointer morphs into a slow cycle of film-craft icons
   (clapperboard, reel, camera, chair, bot), one at a time. Over the films
   everything goes translucent (.over-media, set by the reel observer in
   cinema.js) so it never obstructs the footage; on touch / reduced-motion the
   whole cursor is hidden and the OS pointer returns. All tunables: --cur-* below.
   ========================================================================== */
.cursor{
  --cur-z:90;                                              /* above grain(60)/topbar(50); below loader(100)/modal(120) */
  --cur-cycle:11s;                                         /* idle morph-cycle period; the per-icon delays derive from it */
  --cur-stroke:1.2;                                        /* idle-icon line weight (delicate) */
  --cur-shadow:drop-shadow(0 1px 1.5px rgba(0,0,0,.34));   /* idle-icon shadow (soft) */
  --cur-film-pointer:.5;                                   /* pointer opacity while over the films */
  --cur-film-icons:.42;                                    /* idle-icon opacity while over the films */
  pointer-events:none;z-index:80;opacity:0;transition:opacity .3s}
.cursor.is-on{opacity:1}

/* ---- pointer: a lagging viewfinder frame + a precise centre dot ---- */
.cursor__frame{position:fixed;top:0;left:0;z-index:var(--cur-z);width:32px;height:32px;color:rgba(245,245,240,.96);
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.5));
  transition:width .28s var(--ease),height .28s var(--ease),color .28s,opacity .3s;will-change:transform}
.cursor__dot{position:fixed;top:0;left:0;z-index:var(--cur-z);width:5px;height:5px;border-radius:50%;background:var(--paper);
  box-shadow:0 0 0 1.5px rgba(0,0,0,.42),0 1px 3px rgba(0,0,0,.35);transition:opacity .25s;will-change:transform}
.cursor.is-active .cursor__frame{width:22px;height:22px;color:var(--white)}   /* over a link/button: frame tightens (focus lock) */
/* magnetic wrap: over a [data-cursor-wrap] target (e.g. the CTA) the pointer expands into the viewfinder's
   FOUR corner brackets, grown to frame the element (crop marks) — position eased by the rAF loop, size by
   the width/height transition (delicate); the corner arms keep a fixed length, only the box between them grows */
.cursor__box{position:fixed;top:0;left:0;z-index:var(--cur-z);width:32px;height:32px;color:rgba(245,245,240,.9);
  filter:drop-shadow(0 1px 4px rgba(0,0,0,.4));opacity:0;
  transition:width .4s var(--ease),height .4s var(--ease),opacity .35s var(--ease);will-change:transform,width,height}
.cursor__box i{position:absolute;width:11px;height:11px;border:1.5px solid currentColor}
.cursor__box i:nth-child(1){top:0;left:0;border-right:0;border-bottom:0;border-top-left-radius:3px}
.cursor__box i:nth-child(2){top:0;right:0;border-left:0;border-bottom:0;border-top-right-radius:3px}
.cursor__box i:nth-child(3){right:0;bottom:0;border-left:0;border-top:0;border-bottom-right-radius:3px}
.cursor__box i:nth-child(4){left:0;bottom:0;border-right:0;border-top:0;border-bottom-left-radius:3px}
.cursor.is-wrapped .cursor__box{opacity:1}
.cursor.is-wrapped .cursor__frame,.cursor.is-wrapped .cursor__dot,.cursor.is-wrapped .cursor__swarm{opacity:0}   /* dot + bracket-frame + idle icons step aside while wrapped (only the corner crop-marks show) */

/* ---- idle morph-cycle: the pointer becomes film-craft icons, one at a time ---- */
.cursor__swarm{position:fixed;top:0;left:0;z-index:var(--cur-z);pointer-events:none;opacity:0;transition:opacity .55s var(--ease)}
.cursor.is-idle:not(.is-wrapped) .cursor__swarm{opacity:1}   /* idle morph yields to a CTA wrap (so it can't reappear over the crop-marks) */
.cursor.is-idle .cursor__dot,.cursor.is-idle .cursor__frame{opacity:0;transition:opacity .5s var(--ease)}   /* pointer steps aside */
.ci{position:absolute;top:0;left:0;width:30px;height:30px;color:var(--paper);transform:translate(-50%,-50%);opacity:0}
.ci__in{display:block;width:100%;height:100%;will-change:transform}
.ci svg{width:100%;height:100%;display:block;overflow:visible;fill:none;stroke:currentColor;stroke-width:var(--cur-stroke);stroke-linecap:round;stroke-linejoin:round;filter:var(--cur-shadow)}
/* the 5 icons share ONE cycle, each phase-offset by a fifth of the period (derived from --cur-cycle, so
   they always tile the loop exactly: one icon owns the centre at a time, crossfading at the seams, no gap) */
.cursor.is-idle .ci{animation:ciCycle var(--cur-cycle) ease-in-out infinite}
.cursor.is-idle .ci:nth-child(2){animation-delay:calc(var(--cur-cycle) / 5 * -1)}
.cursor.is-idle .ci:nth-child(3){animation-delay:calc(var(--cur-cycle) / 5 * -2)}
.cursor.is-idle .ci:nth-child(4){animation-delay:calc(var(--cur-cycle) / 5 * -3)}
.cursor.is-idle .ci:nth-child(5){animation-delay:calc(var(--cur-cycle) / 5 * -4)}
/* fade-out runs to 24% (past the 20% slot seam) so it overlaps the next icon's 0-4% fade-in: a true
   crossfade rather than a back-to-back handoff, so the centre is never empty between icons */
@keyframes ciCycle{
  0%{opacity:0;transform:translate(-50%,-50%) scale(.86) rotate(-3deg)}
  4%{opacity:1;transform:translate(-50%,-50%) scale(1) rotate(0)}
  17%{opacity:1;transform:translate(-50%,-50%) scale(1) rotate(0)}
  24%{opacity:0;transform:translate(-50%,-54%) scale(1.04) rotate(2deg)}
  100%{opacity:0;transform:translate(-50%,-50%) scale(.86) rotate(-3deg)}
}
/* each icon does a subtle action while it owns the centre (transform-box:view-box maps the px origins to svg coords) */
.act{transform-box:view-box}
.cursor.is-idle .act--spin{animation:ciSpin 7s linear infinite;transform-origin:12px 12px}
.cursor.is-idle .act--clap{animation:ciClap 3s ease-in-out infinite;transform-origin:3px 10px}
.cursor.is-idle .act--rock{animation:ciRock 5s ease-in-out infinite;transform-origin:12px 21px}
.cursor.is-idle .act--tilt{animation:ciTilt 5.4s ease-in-out infinite;transform-origin:9px 12px}
.cursor.is-idle .act--bob{animation:ciBob 2.6s ease-in-out infinite}
@keyframes ciSpin{to{transform:rotate(360deg)}}
@keyframes ciClap{0%,72%,100%{transform:rotate(0)}84%{transform:rotate(5deg)}}
@keyframes ciRock{0%,100%{transform:rotate(-2.6deg)}50%{transform:rotate(2.6deg)}}
@keyframes ciTilt{0%,100%{transform:rotate(-3.4deg)}50%{transform:rotate(3.4deg)}}
@keyframes ciBob{0%,100%{transform:translateY(0)}50%{transform:translateY(-1.1px)}}

/* ---- over the films: pointer + icons go translucent (toggled by the reel observer) ---- */
.cursor.over-media:not(.is-idle) .cursor__frame,.cursor.over-media:not(.is-idle) .cursor__dot{opacity:var(--cur-film-pointer)}
.cursor.over-media.is-idle .cursor__swarm{opacity:var(--cur-film-icons)}

/* ---- OS pointer hidden where the custom cursor runs; cursor hidden entirely on touch ---- */
body.has-cursor,body.has-cursor a,body.has-cursor button{cursor:none}
@media (hover:none){.cursor{display:none}}

/* ---------- loader ---------- */
/* flex column keeps the mark + rule as ONE centred cluster — grid place-items let the two rows drift apart vertically (a ~480px void) */
.loader{position:fixed;inset:0;z-index:100;background:var(--ink);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.6rem;
  transition:opacity .9s var(--ease),visibility .9s}
.loader__mark{height:40px;width:auto;opacity:0;transform:translateY(12px);animation:fadeUp 1s var(--ease) .12s forwards}
/* a refined hairline directly beneath the mark, drawn centre-out and held at a quiet opacity */
.loader__rule{display:block;width:min(42vw,180px);height:1px;background:var(--light);opacity:.55;transform:scaleX(0);transform-origin:center;
  animation:draw 1s var(--ease) .42s forwards}
.loader.is-done{opacity:0;visibility:hidden}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}   /* real fade-UP: opacity + a small upward settle (was opacity-only) */
@keyframes draw{to{transform:scaleX(1)}}

/* ---------- top bar ---------- */
.topbar{position:fixed;inset:0 0 auto 0;z-index:50;display:flex;align-items:center;justify-content:space-between;
  padding:clamp(1.7rem,2.6vw,2.6rem) var(--pad);color:var(--white);transition:padding .4s var(--ease),background .4s var(--ease),backdrop-filter .4s,border-color .4s}
/* over the films the bar is transparent (white + shadow reads on the video); once scrolled PAST the reel it gains a translucent charcoal bar + condenses, so the logo and Enquire sit on their own band and never mix with the content text */
.topbar.is-solid{padding-top:1.05rem;padding-bottom:1.05rem;background:rgba(12,12,13,.82);backdrop-filter:blur(12px) saturate(120%);-webkit-backdrop-filter:blur(12px) saturate(120%);border-bottom:1px solid var(--rule)}
.topbar__mark img{height:28px;width:auto;display:block;filter:drop-shadow(0 0 1px rgba(0,0,0,.5)) drop-shadow(0 1px 8px rgba(0,0,0,.42))}
.topbar__cta{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--white);border-bottom:1px solid transparent;padding-bottom:2px;text-shadow:0 0 2px rgba(0,0,0,.45),0 1px 10px rgba(0,0,0,.5);transition:border-color .35s}
.topbar__cta:hover{border-color:var(--white)}

/* ---------- scene index (the nav) ---------- */
/* The rail fades out as you leave the reel (videos) and back as you return; see .is-hidden below. */
.index{position:fixed;right:var(--pad);top:50%;transform:translateY(-50%);z-index:50;transition:opacity .4s var(--ease)}
.index.is-hidden{opacity:0;pointer-events:none}
.index ol{list-style:none;display:grid;gap:.85rem;text-align:right}
/* The number <i> is the only in-flow child, right-anchored, so the column stays put.
   The <span> label is taken OUT of layout flow (position:absolute) and revealed to the
   left of the number on hover/active — its width never shifts the number column. */
.index button{position:relative;background:none;border:0;cursor:pointer;color:rgba(233,233,233,.4);font:inherit;
  display:inline-flex;align-items:baseline;justify-content:flex-end;transition:color .4s var(--ease)}
.index i{font-style:normal;font-size:.64rem;letter-spacing:.18em;font-variant-numeric:tabular-nums}
.index span{position:absolute;right:calc(100% + .6rem);top:50%;transform:translate(6px,-50%);white-space:nowrap;
  font-size:.74rem;letter-spacing:.02em;opacity:0;transition:opacity .4s,transform .4s}
.index button:hover,.index button.is-active{color:var(--paper)}
.index button:hover span,.index button.is-active span{opacity:1;transform:translate(0,-50%)}
.index button.is-active i{color:var(--paper)}

/* ==========================================================================
   THE REEL
   ========================================================================== */
.reel{position:relative;height:520vh}
.reel__stage{position:sticky;top:0;height:100vh;overflow:hidden;background:#000}
.film{position:absolute;inset:0;opacity:0;will-change:opacity}
.film.is-live{opacity:1}
.film__media{width:100%;height:100%;object-fit:cover}
/* dual-layer grade: a softened vertical scrim (lighter at top so the image breathes) PLUS
   a subtle radial vignette that pulls focus to centre and seats the film in the frame */
.film__grade{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(120% 90% at 50% 42%,transparent 52%,rgba(8,8,9,.42) 100%),
    linear-gradient(180deg,rgba(13,13,14,.34) 0%,rgba(13,13,14,.04) 30%,rgba(13,13,14,.10) 58%,rgba(13,13,14,.86) 100%)}

.letterbox{position:absolute;inset:0;pointer-events:none;z-index:5}
.letterbox::before,.letterbox::after{content:"";position:absolute;left:0;right:0;height:var(--bar);background:#0a0a0b}
.letterbox::before{top:0}.letterbox::after{bottom:0}
/* reel only: drop the TOP letterbox bar so the fixed topbar floats over the film instead of sitting in a hard black header band; the film grade's top scrim plus the topbar's text/mark drop-shadows keep it legible. The bottom bar stays to ground the film labels. */
.reel .letterbox::before{display:none}
/* the dark closer sections (transparency + cta) drop the cinematic letterbox bars entirely; the radial-lit field carries the depth, and the flat #0a0a0b bars read as unwanted black bands at the section edges */
.transparency .letterbox,.cta .letterbox{display:none}

.film__label{position:absolute;left:var(--pad);right:var(--pad);bottom:calc(var(--bar) + clamp(1rem,3vh,2.4rem));z-index:6;
  display:flex;align-items:flex-end;gap:clamp(1rem,3vw,2.4rem);max-width:62rem}
.film__num{font-family:var(--display);font-weight:500;font-size:clamp(2.6rem,7vw,6rem);line-height:.8;color:var(--paper);opacity:.92}
.film__title{font-family:var(--display);font-weight:500;font-size:clamp(1.7rem,3.4vw,2.9rem);line-height:1;color:var(--white)}
.film__cap{margin:.55rem 0;color:rgba(233,233,233,.82);font-weight:300;max-width:46ch;font-size:clamp(.92rem,1.2vw,1.05rem);line-height:1.45}
.film__tag{color:rgba(233,233,233,.6)}

.film[data-film="0"] .film__label{display:none}
.film__hero{position:absolute;left:var(--pad);right:var(--pad);bottom:calc(var(--bar) + clamp(2.5rem,9vh,6rem));z-index:6;max-width:52rem}
/* layered shadow: a tight near-shadow for legibility against bright sky + a wide soft halo
   for depth, so the display type seats into the film instead of floating flat on it */
.hero__line{font-size:clamp(2.5rem,6vw,5.4rem);line-height:.94;letter-spacing:-.016em;color:var(--paper);margin:1.2rem 0 1.7rem;
  text-shadow:0 1px 3px rgba(0,0,0,.32),0 4px 54px rgba(0,0,0,.45)}
.scrollcue{display:inline-flex;align-items:center;gap:.6rem;font-size:.6rem;color:rgba(233,233,233,.5)}
.scrollcue i{font-style:normal;animation:bob 2s var(--ease) infinite}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}

/* ==========================================================================
   CINEMA AT ANY BUDGET  ·  accessibility beat, on paper (steps out of the dark reel)
   ========================================================================== */
/* asymmetric vertical padding: lighter foot so the content sits optically centred, not bottom-heavy */
.access{background:var(--paper-bg);color:var(--ink);padding:clamp(5rem,12vw,9.5rem) var(--pad) clamp(3rem,8vw,6rem)}
.access__inner{max-width:64rem}
.access__head{font-size:clamp(2.4rem,7vw,5.6rem);line-height:.98;color:var(--ink);margin:.9rem 0 1.6rem}
.access__body{font-family:var(--body);font-weight:300;font-size:clamp(1.05rem,1.7vw,1.4rem);line-height:1.5;color:var(--ink);max-width:54ch;margin-bottom:1.1rem}
.access__body--quiet{color:rgba(27,27,27,.66)}
.access__scale{list-style:none;display:flex;flex-wrap:wrap;align-items:baseline;gap:clamp(1rem,3vw,2.2rem);margin-top:clamp(2.2rem,5vw,3.2rem);border-top:1px solid var(--rule-d);padding-top:clamp(1.5rem,3vw,2.1rem)}
.access__scale li{font-family:var(--display);font-weight:500;font-size:clamp(1.15rem,2.5vw,1.8rem);color:var(--ink)}
/* escalating scale ladder: the three rungs (product -> campaign -> flagship) step up in size + ink-weight so the eye climbs the ambition the copy states */
.access__scale li:nth-child(1){font-size:clamp(1.1rem,2.2vw,1.55rem);color:rgba(27,27,27,.6)}
.access__scale li:nth-child(2){font-size:clamp(1.35rem,3vw,2.15rem);color:rgba(27,27,27,.82)}
.access__scale li:nth-child(3){font-size:clamp(1.7rem,4.2vw,3rem);color:var(--ink);letter-spacing:-.012em}
.access__scale li:not(:last-child)::after{content:"\00B7";margin-left:clamp(1rem,3vw,2.2rem);color:var(--gray);font-size:.7em;vertical-align:middle}

/* ==========================================================================
   IN GOOD COMPANY — social proof, three weighted tiers on charcoal
   (1) lead stat  (2) outcomes  (3) cleared-logo row (placeholders, quieter)
   ========================================================================== */
/* faint top-lit tonal field: the section is no longer a flat slab — a soft sheen at the
   top edge models the charcoal and seats it under the paper section above */
/* trimmed bottom padding so the honest line no longer sits over a large empty band */
.company{color:var(--paper);padding:clamp(5rem,11vw,9rem) var(--pad) clamp(3rem,7vw,5.5rem);border-top:1px solid var(--rule);overflow:hidden;
  background:linear-gradient(180deg,#212121 0%,var(--ink) 26%,var(--ink) 100%)}

/* tier 1, lead stat: large but quiet, never shouted. Measure matches outcomes/cleared (64rem) so all three tiers share a right edge */
.company__lead{position:relative;max-width:64rem;margin-bottom:clamp(3rem,7vw,5rem)}
/* oversized ghosted figure behind the one hard number on the page, echoing the reel's big-numeral motif; pure --paper at very low alpha (no new hue), clipped by .company's overflow:hidden, sits behind the live stat */
.company__lead::before{content:"500+";position:absolute;top:clamp(-2.2rem,-2vw,-1.2rem);right:0;z-index:0;font-family:var(--display);font-weight:500;font-size:clamp(7rem,22vw,18rem);line-height:.8;color:var(--paper);opacity:.04;letter-spacing:-.04em;pointer-events:none;user-select:none}
.company__stat{position:relative;z-index:1;font-size:clamp(2.4rem,7vw,5.6rem);line-height:.98;letter-spacing:-.018em;color:var(--paper);margin:.9rem 0 1.1rem}
/* belonging sub-label: inherits the locked eyebrow tracking (no bespoke override), nudged clear of the stat descenders above */
.company__belong{color:var(--gray);margin-top:.4rem}

/* tier 2 — outcomes: clean restrained editorial list, monochrome */
.company__outcomes{list-style:none;max-width:64rem;margin:0 0 clamp(3.2rem,8vw,5.5rem);border-top:1px solid var(--rule)}
.company__outcomes li{font-size:clamp(1.5rem,4vw,2.9rem);line-height:1.06;color:rgba(233,233,233,.86);padding:clamp(1rem,2.6vw,1.7rem) 0;border-bottom:1px solid var(--rule);transition:color .45s var(--ease),transform .45s var(--ease)}
.company__outcomes li:hover{color:var(--paper);transform:translateX(10px)}

/* tier 3 — cleared-logo row: smaller, quieter than stat + outcomes */
.company__cleared{max-width:64rem}
.company__cleared .caps--dim{display:block;margin-bottom:clamp(1.1rem,2.4vw,1.5rem)}
.logos{display:grid;grid-template-columns:repeat(6,1fr);gap:clamp(.5rem,1.2vw,1rem);max-width:52rem;margin-bottom:1.6rem}
/* uniform single-tone PLACEHOLDER marks — generic, clearly not real brands.
   Each sits in a faint equal-weight plate (hairline frame + a barely-there top-lit fill)
   so the six read as one deliberate cleared-logo row, not six floating shapes of uneven mass. */
.logo-plate{height:clamp(54px,7vw,68px);display:grid;place-items:center;
  border:1px solid var(--rule);border-radius:3px;
  background:linear-gradient(180deg,rgba(233,233,233,.035),rgba(233,233,233,0) 70%);
  transition:border-color .45s var(--ease),background .45s var(--ease)}
.logo-plate:hover{border-color:rgba(233,233,233,.28);background:linear-gradient(180deg,rgba(233,233,233,.06),rgba(233,233,233,0) 72%)}
.logo-plate:hover .logo-plate__mark{opacity:.6}
.logo-plate__mark{display:block;opacity:.38;transition:opacity .45s var(--ease)}
/* each placeholder mark is a simple monochrome shape built from the brand --gray, no colour */
.logo-plate__mark--ring{width:26px;height:26px;border:2px solid var(--gray);border-radius:50%}
.logo-plate__mark--bars{width:30px;height:18px;background:repeating-linear-gradient(90deg,var(--gray) 0 4px,transparent 4px 8px)}
.logo-plate__mark--tri{width:0;height:0;border-left:15px solid transparent;border-right:15px solid transparent;border-bottom:26px solid var(--gray)}
.logo-plate__mark--dot{width:22px;height:22px;background:var(--gray);border-radius:50%}
.logo-plate__mark--slash{width:30px;height:26px;background:linear-gradient(135deg,transparent 44%,var(--gray) 44% 56%,transparent 56%)}
.logo-plate__mark--square{width:24px;height:24px;border:2px solid var(--gray)}
.company__honest{color:var(--gray);font-size:.95rem;font-weight:300;max-width:54ch}
.company__honest a{color:var(--paper);border-bottom:1px solid var(--rule);transition:border-color .3s}
.company__honest a:hover{border-color:var(--paper)}

/* ==========================================================================
   METHOD
   ========================================================================== */
/* lighter foot padding so the figures line no longer looks abandoned above a 130px+ void */
.method{background:var(--paper-bg);color:var(--ink);padding:clamp(5rem,12vw,10rem) var(--pad) clamp(3.5rem,8vw,6.5rem)}
.method__head{max-width:64rem}.method__head .display{margin:1rem 0 1.3rem}
/* paper-body prose shares one leading + mid-tone across .lede / .figures / .access__body */
.method .lede{color:rgba(27,27,27,.62);line-height:1.55}
.method .caps--dim{color:var(--gray)}
/* clean whitespace grid — no box, no divider lines; the cards sit openly on the method paper */
.pipes{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:clamp(2rem,4vw,3.5rem);margin:clamp(2.5rem,6vw,4.5rem) 0}
.pipe{display:grid;gap:.45rem;align-content:start}
/* plain caps label, no border, no pill padding */
.pipe__status{justify-self:start;color:var(--gray);margin-bottom:.8rem}
.pipe__status--live{color:var(--ink)}
.pipe h3{font-size:clamp(1.6rem,2.6vw,2.2rem)}
.pipe__kind{color:var(--gray);margin-bottom:.5rem}
.pipe p{color:#4a4a46;font-weight:300}

/* ==========================================================================
   PIPELINE — phase-grouped alternative design (.phase). The 5 locks become the
   5 phases; each lists its stages and marks its lock. Node markers ride the top
   rule, so there is no number-height / dot-size alignment fragility.
   ========================================================================== */
.phase{margin:clamp(1rem,3vw,2rem) 0 clamp(3rem,7vw,5rem)}
.phase__head{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;margin-bottom:clamp(1.8rem,3.5vw,2.6rem)}
.phase__row{list-style:none;display:grid;grid-template-columns:repeat(5,1fr);gap:clamp(.9rem,2.2vw,2rem)}
.phase__col{position:relative;padding-top:1.5rem;border-top:1px solid var(--rule-d);transition:border-color .4s var(--ease)}
/* the phase node sits exactly on the top rule (centred on the 1px border), so it can never drift */
.phase__col::before{content:"";position:absolute;top:-4px;left:0;width:7px;height:7px;border-radius:50%;background:var(--gray);transition:background .4s var(--ease),transform .4s var(--ease)}
.phase__col:hover{border-color:rgba(27,27,27,.32)}
.phase__col:hover::before{background:var(--ink);transform:scale(1.25)}
.phase__n{font-family:var(--display);font-weight:500;font-size:.85rem;color:var(--gray);font-variant-numeric:tabular-nums}
.phase__name{font-size:clamp(1.25rem,2vw,1.75rem);color:var(--ink);line-height:1;margin:.15rem 0 1.1rem;letter-spacing:-.01em}
.phase__stages{list-style:none;display:grid;gap:.5rem}
.phase__stages li{display:flex;align-items:center;gap:.55rem;font-family:var(--label);font-weight:500;font-size:.7rem;letter-spacing:.06em;text-transform:uppercase;color:#86867f}
.phase__num{font-family:var(--display);font-size:.78rem;color:var(--gray);font-variant-numeric:tabular-nums;min-width:1.5em}
.phase__stages li.is-lock{color:var(--ink)}
.phase__stages li.is-lock .phase__num{color:var(--ink)}
/* the lock marker — a small padlock glyph (replaces the repeated "lock" text so the word no longer runs down the timeline) */
.phase__stages li .phase__lock{margin-left:auto;display:inline-flex;color:var(--ink);opacity:.5}
.phase__stages li .phase__lock svg{width:12px;height:12px;display:block}
.phase__note{margin-top:clamp(1.8rem,3.5vw,2.4rem);color:var(--gray)}
@media (max-width:760px){.phase__row{grid-template-columns:repeat(2,1fr);gap:1.6rem 1.4rem}}
/* clean whitespace grid to match .pipes — no box, no divider lines */
/* bounded width so the three items cluster as an intentional triad, not stretched across the full column */
/* flex row with ONE uniform gap: the three values are different widths (Fast / As many as needed / Any budget), so equal 1fr columns made the visual gap between them uneven. Content-sized flex items + a single gap give consistent spacing between the three. */
.stats{display:flex;flex-wrap:wrap;align-items:flex-start;gap:clamp(2.5rem,5vw,4.5rem);margin:clamp(2rem,5vw,3.5rem) 0 1.8rem}
.stat{display:flex;flex-direction:column;gap:.55rem}
/* values are short phrases, not numerals — tighter leading + a hair of tracking so the short value holds its weight, long phrase wraps rather than dominates */
.stat b{font-family:var(--display);font-weight:500;font-size:clamp(1.3rem,2.2vw,2rem);line-height:1.1;letter-spacing:-.01em;color:var(--ink)}
.stat .caps{color:var(--gray);max-width:26ch}
/* prose measure matches .method__head (64rem) so the two prose blocks share a right edge; leading unified at 1.55 with the lede */
.figures{max-width:64rem;font-size:clamp(1.05rem,1.7vw,1.4rem);font-weight:300;color:var(--ink);line-height:1.55}

/* ==========================================================================
   OUTCOMES
   ========================================================================== */
/* matching top-lit charcoal field so #sectors steps out of the method paper with the same
   modelled seam as .company, not a hard flat butt-join */
/* top weight reduced + head gap raised so the head-to-content rhythm evens out (was loose top, cramped label) */
.outcomes{color:var(--paper);padding:clamp(3.5rem,8vw,6.5rem) var(--pad) clamp(4.5rem,11vw,9rem);
  background:linear-gradient(180deg,#212121 0%,var(--ink) 26%,var(--ink) 100%)}
.outcomes__head{margin-bottom:clamp(2.6rem,5vw,4rem)}
.outcomes ol{list-style:none;display:grid;gap:0;border-bottom:1px solid var(--rule)}
.outcomes li{position:relative;display:grid;grid-template-columns:auto 1fr;align-items:center;gap:clamp(1.4rem,5vw,4rem);padding:clamp(1.6rem,4vw,3rem) 0;border-top:1px solid var(--rule)}
.outcomes__num{font-family:var(--display);font-weight:500;font-size:clamp(2.6rem,8vw,6.4rem);line-height:.86;color:transparent;-webkit-text-stroke:1px rgba(233,233,233,.36);font-variant-numeric:tabular-nums;display:inline-block;transform-origin:left center;transition:color .55s var(--ease),-webkit-text-stroke-color .55s var(--ease),text-shadow .55s var(--ease),transform .55s var(--ease)}
.outcomes li:hover .outcomes__num{color:var(--paper);-webkit-text-stroke-color:var(--paper)}
.outcomes__body{display:flex;flex-direction:column;gap:.55rem}
.outcomes .caps{color:var(--gray);transition:color .4s var(--ease)}
.outcomes li:hover .caps{color:var(--light)}
.outcomes .outcome{font-size:clamp(1.9rem,5.5vw,4rem);line-height:.98;color:var(--paper);transition:transform .55s var(--ease)}
.outcomes li:hover .outcome{transform:translateX(12px)}
.outcomes li.is-lit .outcomes__num{color:var(--paper);-webkit-text-stroke-color:var(--paper)}
.outcomes li.is-lit .caps{color:var(--light)}
.outcomes li.is-lit .outcome{transform:translateX(12px)}
/* lit/hover numeral blooms: a soft paper glow + tiny optical settle, consistent with the radial light-pool language of the closer sections; transform-origin:left keeps it pinned to the grid column so nothing reflows */
.outcomes li:hover .outcomes__num,.outcomes li.is-lit .outcomes__num{text-shadow:0 0 22px rgba(238,238,232,.18);transform:scale(1.04)}

/* ==========================================================================
   TRANSPARENCY
   ========================================================================== */
/* full-screen closer: a centre-lit radial field over near-black gives the flat panel
   tonal depth and a soft pool of light behind the type, so the section reads cinematic not empty */
.transparency{position:relative;color:var(--paper);min-height:100vh;display:grid;place-items:center;padding:clamp(5rem,12vw,9rem) var(--pad);text-align:center;overflow:hidden;
  background:radial-gradient(82% 76% at 50% 46%,#171719 0%,#101012 42%,#0b0b0c 78%,#08080a 100%)}
/* a held vignette darkens the corners and frames the centre */
.transparency::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(108% 100% at 50% 50%,transparent 54%,rgba(0,0,0,.5) 100%)}
.transparency__inner{max-width:60rem;display:grid;gap:1.5rem;position:relative;z-index:6}
.transparency__head{font-size:clamp(2.6rem,8vw,6.6rem);line-height:.95;letter-spacing:-.018em;color:var(--paper)}
.transparency__tools{color:var(--gray);letter-spacing:.2em}
.transparency__body{color:rgba(233,233,233,.72);font-weight:300;max-width:50ch;margin:0 auto;font-size:clamp(1rem,1.4vw,1.18rem)}
.transparency__line{font-style:italic;font-weight:500;font-size:clamp(1.7rem,4vw,3rem);color:var(--light);margin-top:.8rem}

/* ==========================================================================
   CTA + FOOT
   ========================================================================== */
/* end card: same centre-lit radial depth as transparency, slightly tighter pool so the
   logo + headline sit in a soft spotlight rather than on a void of flat black */
.cta{position:relative;color:var(--paper);min-height:100vh;display:grid;place-items:center;padding:clamp(6rem,14vw,12rem) var(--pad);text-align:center;overflow:hidden;
  background:radial-gradient(76% 70% at 50% 44%,#18181a 0%,#101012 44%,#0b0b0c 80%,#08080a 100%)}
.cta::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(104% 96% at 50% 50%,transparent 52%,rgba(0,0,0,.52) 100%)}
.cta__inner{display:grid;gap:1.4rem;justify-items:center;position:relative;z-index:6}
/* quiet lift on hover so the end-card finish matches the reel/outcomes hover language */
.cta__mark{opacity:.92;margin-bottom:.6rem;transition:opacity .5s var(--ease),transform .5s var(--ease)}
.cta:hover .cta__mark{opacity:1;transform:translateY(-2px)}
.cta .caps--dim{color:var(--gray)}
.cta .display{color:var(--paper)}
.cta__link{font-family:var(--display);font-style:italic;font-size:clamp(1.3rem,3vw,2.2rem);color:var(--paper);border-bottom:1px solid var(--rule);padding-bottom:.2rem;transition:border-color .35s var(--ease)}
.cta__link:hover{border-color:var(--paper)}
/* fuller multi-column footer: brand block + nav + contact + legal, restrained monochrome */
/* footer steps up out of the near-black CTA with a faint top sheen + brighter hairline,
   so the cta→footer join reads as a deliberate tonal step, not two flat darks meeting */
.foot{color:var(--paper);padding:clamp(3.5rem,7vw,5.5rem) var(--pad) 2.6rem;border-top:1px solid rgba(233,233,233,.22);
  background:linear-gradient(180deg,#202020 0%,var(--ink) 22%,var(--ink) 100%)}
/* grid fills the --pad column (like .foot__base) so the columns share the base-rule right edge */
.foot__grid{display:grid;grid-template-columns:1.7fr 1fr 1fr;gap:clamp(2rem,5vw,4.5rem)}
.foot__brand{display:flex;flex-direction:column;gap:1.1rem}
.foot__mark{height:26px;width:auto;align-self:flex-start}
.foot__positioning{color:var(--gray);font-weight:300;font-size:.92rem;line-height:1.55;max-width:34ch}
.foot__heading{display:block;margin-bottom:1rem}
.foot__col ul{list-style:none;display:grid;gap:.6rem}
.foot__col li{color:var(--gray);font-size:.92rem;font-weight:300;line-height:1.4}
.foot__col a{color:var(--gray);border-bottom:1px solid transparent;padding-bottom:1px;transition:color .3s,border-color .3s}
.foot__col a:hover{color:var(--paper);border-color:var(--rule)}
.foot__base{display:flex;flex-wrap:wrap;gap:.8rem 2rem;align-items:baseline;justify-content:space-between;
  margin-top:clamp(2.5rem,5vw,3.5rem);padding-top:1.6rem;border-top:1px solid var(--rule)}
.foot__fine{color:rgba(233,233,233,.4);font-size:.74rem;max-width:62ch}
.foot__copy{color:rgba(233,233,233,.4)}
/* intermediate band: 2-col footer from 1040 down eliminates the pinched 4-col band (761-820px) where the email link wrapped */
@media (max-width:1040px){
  .foot__grid{grid-template-columns:1fr 1fr;gap:clamp(1.6rem,3vw,2.5rem)}
  .foot__brand{grid-column:1 / -1}
}
@media (max-width:760px){
  .foot__grid{gap:2rem}
}

/* ==========================================================================
   ENQUIRE MODAL — a clean paper "form sheet" on a blurred charcoal overlay
   ========================================================================== */
.enquire{position:fixed;inset:0;z-index:120;display:grid;place-items:center;padding:clamp(1rem,4vw,2rem);opacity:0;visibility:hidden;cursor:auto;transition:opacity .4s var(--ease),visibility .4s}
.enquire.is-open{opacity:1;visibility:visible}
.enquire__overlay{position:absolute;inset:0;background:rgba(8,8,9,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.enquire__dialog{position:relative;width:min(34rem,100%);max-height:88vh;overflow-y:auto;background:var(--paper);color:var(--ink);border-radius:6px;
  padding:clamp(1.9rem,4vw,2.9rem);box-shadow:0 30px 90px rgba(0,0,0,.55);transform:translateY(18px) scale(.985);transition:transform .45s var(--ease)}
.enquire.is-open .enquire__dialog{transform:none}
.enquire__close{position:absolute;top:.8rem;right:.9rem;width:36px;height:36px;display:grid;place-items:center;border:0;background:none;color:var(--gray);font-size:1.6rem;line-height:1;cursor:pointer;border-radius:50%;transition:color .3s,background .3s}
.enquire__close:hover{color:var(--ink);background:rgba(27,27,27,.06)}
.enquire .caps--dim{color:var(--gray)}
.enquire__title{font-size:clamp(2rem,4vw,2.7rem);color:var(--ink);margin:.55rem 0 .7rem;line-height:1}
.enquire__lede{color:#54534e;font-family:var(--body);font-weight:300;max-width:32ch;margin-bottom:1.7rem;line-height:1.5}
.enquire__form{display:grid;gap:1.15rem}
.enquire__field{display:grid;gap:.45rem}
.enquire__field .caps--sub{color:var(--gray)}
.enquire__field i{font-style:normal;text-transform:none;letter-spacing:0;opacity:.65}
.enquire__field input,.enquire__field textarea{font-family:var(--body);font-size:1rem;color:var(--ink);background:transparent;border:0;border-bottom:1px solid var(--rule-d);padding:.5rem 0;cursor:text;transition:border-color .3s}
.enquire__field textarea{line-height:1.5;resize:vertical;min-height:4.5rem}
.enquire__field input:focus,.enquire__field textarea:focus{outline:none;border-color:var(--ink)}
.enquire__submit{justify-self:start;margin-top:.5rem;font-family:var(--label);font-weight:500;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--paper);background:var(--ink);border:0;padding:.95rem 1.9rem;border-radius:3px;cursor:pointer;transition:background .3s var(--ease),transform .3s var(--ease)}
.enquire__submit:hover{background:#000;transform:translateY(-1px)}
.enquire__note{margin-top:.2rem}
.enquire__note a{color:var(--ink);border-bottom:1px solid var(--rule-d);transition:border-color .3s}
.enquire__note a:hover{border-color:var(--ink)}
.enquire__sent{display:none;font-family:var(--body);font-size:1.05rem;color:var(--ink);line-height:1.55}
.enquire__form.is-sent>*{display:none}
.enquire__form.is-sent .enquire__sent{display:block}
/* spam honeypot: off-screen field bots fill but humans never see (handler drops any submission with it set) */
.enquire__hp{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none}
/* the topbar + CTA triggers are now buttons styled exactly as their original links */
button.topbar__cta{appearance:none;background:none;border:0;border-bottom:1px solid transparent;font-family:var(--label);padding:0 0 2px;cursor:pointer}
button.cta__link{appearance:none;background:none;border:0;cursor:pointer}
body.enquire-open{overflow:hidden}
@media (prefers-reduced-motion:reduce){.enquire,.enquire__dialog{transition:none}}

/* ---------- reveal ---------- */
[data-reveal]{opacity:0;transform:translateY(26px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
[data-reveal].is-in{opacity:1;transform:none}
/* staggered child reveal for the single-block intro + closer sections: the parent only fades (its 26px
   translate is neutralised so children don't double-travel), and the children rise in sequence keyed off
   the parent's .is-in. These children carry no hover-transform of their own, so there is no conflict. */
.access__inner[data-reveal],.transparency__inner[data-reveal]{transform:none}
.access__inner > *,.transparency__inner > *{opacity:0;transform:translateY(16px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.access__inner.is-in > *,.transparency__inner.is-in > *{opacity:1;transform:none}
.access__inner.is-in > :nth-child(1),.transparency__inner.is-in > :nth-child(1){transition-delay:.04s}
.access__inner.is-in > :nth-child(2),.transparency__inner.is-in > :nth-child(2){transition-delay:.14s}
.access__inner.is-in > :nth-child(3),.transparency__inner.is-in > :nth-child(3){transition-delay:.26s}
.access__inner.is-in > :nth-child(4),.transparency__inner.is-in > :nth-child(4){transition-delay:.38s}
.access__inner.is-in > :nth-child(5),.transparency__inner.is-in > :nth-child(5){transition-delay:.50s}

/* ---------- focus ---------- */
a:focus-visible,button:focus-visible{outline:2px solid var(--light);outline-offset:3px}

/* ---------- responsive ---------- */
@media (max-width:760px){
  /* loosen the inline rhythm floor so dark full-bleed sections don't jam against the bezel (ceiling unchanged) */
  :root{--pad:clamp(1.4rem,6vw,5.5rem);--bar:4.5vh}
  .index{display:none}
  .film__label{flex-direction:column;gap:.4rem;align-items:flex-start}
  /* number proportioned to the now-stacked title so it reads as a marker, not a dominating 2:1 jump */
  .film__num{font-size:2.4rem;opacity:.85;margin-bottom:.1rem}
  /* hero: tighten the bottom offset + rhythm so the cluster anchors near the lower third, no dead band beneath */
  .film__hero{bottom:calc(var(--bar) + clamp(1.4rem,5vh,3rem))}
  .hero__line{margin:.9rem 0 1.1rem}
  /* in good company: 3-up on a narrow screen (grid columns; was 6-up flex) */
  .logos{grid-template-columns:repeat(3,1fr)}
  /* company outcomes: a little leading + vertical air so the editorial glyphs clear the row rules at 390 */
  .company__outcomes li{line-height:1.06;padding:clamp(1.1rem,4vw,1.7rem) 0}
  /* ghost figure: smaller + fainter so it never overpowers the small-screen stat */
  .company__lead::before{opacity:.03;font-size:clamp(5rem,30vw,9rem)}
  /* sectors: shrink the oversized numeral + tighten the gap so the long Ivy-Mode text column stays inside the right pad */
  #sectors li{grid-template-columns:auto 1fr;gap:clamp(1rem,4vw,1.4rem)}
  #sectors .outcomes__num{font-size:clamp(2.2rem,11vw,3rem)}
  #sectors .outcome{font-size:clamp(1.55rem,7vw,2rem);line-height:1.02}
  /* touch targets: grow the hit area via vertical padding only (visible type size unchanged) to clear the 44px minimum */
  .foot__col li{line-height:1.4;display:inline-block;padding:.55rem 0;min-height:44px}
  .foot__col a{display:inline-block}
  .topbar__cta{padding:.75rem 0}
  .company__honest a{display:inline-block;padding:.7rem 0}
}

/* ==========================================================================
   REDUCED MOTION — collapse the reel to a clean stacked poster scroll
   ========================================================================== */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .loader,.cursor{display:none}
  [data-reveal]{opacity:1;transform:none}
  .access__inner > *,.transparency__inner > *{opacity:1;transform:none}
  .reel{height:auto}
  .reel__stage{position:static;height:auto;background:transparent}
  .film{position:relative;opacity:1;height:100vh}
  .film+.film{border-top:1px solid var(--rule)}
  .film[data-film="0"] .film__label{display:flex}
}
body.reduce .loader,body.reduce .cursor{display:none}
body.reduce [data-reveal]{opacity:1;transform:none}
body.reduce .access__inner > *,body.reduce .transparency__inner > *{opacity:1;transform:none}
body.reduce .reel{height:auto}
body.reduce .reel__stage{position:static;height:auto;background:transparent}
body.reduce .film{position:relative;opacity:1;height:100vh}
body.reduce .film+.film{border-top:1px solid var(--rule)}
body.reduce .film[data-film="0"] .film__label{display:flex}   /* parity with the @media reduced-motion block: re-show film-0's label on the JS-class path too */
