/* ============================================================
   NAVE ORIGYN
   Blue #3658AF is a bookend only: splash, nav, footer.
   Never a section background inside the page.
   ============================================================ */

:root{
  /* bookend */
  --blue:#3658AF;
  --blue-pale:#C7D0E9;

  /* accents + grounds */
  --gold:#EDB259;
  --navy:#131A33;
  --navy-art:#0F1A2E;
  --bone:#F5F2EA;
  --bone-warm:#EBE6DA;
  --white:#FFFFFF;

  --ink:#131A33;
  --ink-soft:rgba(19,26,51,.62);
  --light-soft:rgba(245,242,234,.68);

  /* type scale */
  --fs-h1:3.25rem; --fs-h2:2.25rem; --fs-h4:1.5rem;
  --fs-lg:1.3125rem; --fs-md:1rem; --fs-cap:.8125rem;
  --lh-h1:.98; --lh-h2:1.06; --lh-h4:1.1;
  --ls-h1:-.03em; --ls-h2:-.04em; --ls-h4:-.02em;
  --w:500;

  --pad:20px; --maxw:1440px;
  --nav-h:74px;
  --ease:cubic-bezier(.215,.61,.355,1);
}
@media(min-width:768px){ :root{ --pad:30px; } }
@media(min-width:1200px){
  :root{
    --pad:50px; --nav-h:84px;
    --fs-h1:6rem; --fs-h2:4.5rem; --fs-h4:2.25rem;
    --fs-lg:1.5rem; --fs-md:1.125rem;
  }
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-padding-top:var(--nav-h)}
body{
  font-family:'Archivo',-apple-system,sans-serif;font-weight:400;
  font-size:var(--fs-md);line-height:1.45;
  background:var(--bone);color:var(--ink);
  overflow-x:hidden;-webkit-font-smoothing:antialiased;
}
img,svg,video{display:block;max-width:100%}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit;text-align:left}
a{color:inherit;text-decoration:none}
ul{list-style:none}
::selection{background:var(--gold);color:var(--ink)}

h1,h2,h3,h4{font-weight:var(--w)}
h1{font-size:var(--fs-h1);line-height:var(--lh-h1);letter-spacing:var(--ls-h1)}
h2{font-size:var(--fs-h2);line-height:var(--lh-h2);letter-spacing:var(--ls-h2)}
h3{font-size:var(--fs-h4);line-height:var(--lh-h4);letter-spacing:var(--ls-h4)}
.cap{font-size:var(--fs-cap);font-weight:500;letter-spacing:.1em;text-transform:uppercase}
.lg{font-size:var(--fs-lg);line-height:1.22;letter-spacing:-.03em}
.sm{font-size:var(--fs-md);line-height:1.5}
.block{padding:7rem var(--pad)}
.wrap{max-width:var(--maxw);margin:0 auto}
.soft{color:var(--ink-soft)}

/* ---------- 1. SPLASH (blue bookend) ---------- */
.splash{
  background:var(--blue);color:var(--white);
  min-height:100svh;position:relative;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:var(--pad);
}
/* Splash video crop and frame.
   Nudge the trim values until the edges sit flush. Positive values
   trim; 0 shows the file untouched.
   The gold rule sits directly on the video edge, with no gap, because
   mobile browsers colour-manage video differently from CSS. The line
   covers the exact point where the two blues meet, so the boundary
   reads as a frame rather than a seam. */
.splash-frame{
  --trim-bottom:0%;
  --trim-top:0%;
  width:min(300px,52vw);
  overflow:hidden;
  line-height:0;
  border:1.5px solid var(--gold);
  animation:markIn 1.2s var(--ease) both;
}
.splash-media{
  width:100%;height:auto;
  margin-top:calc(var(--trim-top) * -1);
  margin-bottom:calc(var(--trim-bottom) * -1);
}
@keyframes markIn{0%{opacity:0;transform:translateY(26px) scale(.9)}100%{opacity:1;transform:none}}
.splash-word{
  position:absolute;left:var(--pad);top:50%;transform:translateY(-50%);
  font-size:clamp(1.1rem,2.4vw,1.9rem);font-weight:700;letter-spacing:-.02em;
}
.splash-scroll{
  position:absolute;left:0;right:0;bottom:2.4rem;text-align:center;
  font-size:var(--fs-md);
}
.splash-scroll i{
  display:block;width:1px;height:26px;background:var(--gold);
  margin:.7rem auto 0;transform-origin:top;animation:drop 2.2s var(--ease) infinite;
}
@keyframes drop{0%,100%{transform:scaleY(.2)}50%{transform:scaleY(1)}}

/* ---------- 2. NAV (blue bookend, opaque, fixed) ---------- */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:400;
  height:var(--nav-h);
  background:var(--blue);color:var(--white);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 var(--pad);
  transform:translateY(-100%);
  transition:transform .6s var(--ease);
}
.nav.show{transform:none}
.nav-brand{display:flex;align-items:center;gap:.7rem}
.nav-brand img{width:34px}
.nav-brand b{font-size:.95rem;font-weight:700;letter-spacing:-.01em}
.nav ul{display:flex;align-items:center;gap:1.7rem}
.nav ul a{
  font-size:.95rem;font-weight:400;position:relative;padding-bottom:3px;
  transition:opacity .3s var(--ease);
}
.nav ul a::after{
  content:'';position:absolute;left:0;right:0;bottom:0;height:1px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;
  transition:transform .35s var(--ease);
}
.nav ul a:hover::after,.nav ul a.on::after{transform:none}
.burger{display:none;flex-direction:column;gap:5px;padding:6px}
.burger i{display:block;width:24px;height:2px;background:currentColor}

/* ---------- 3. TITLE ---------- */
.title{
  background:var(--blue);color:var(--white);min-height:100svh;
  display:flex;flex-direction:column;justify-content:center;
  padding:calc(var(--nav-h) + 5rem) var(--pad) 4rem;position:relative;overflow:hidden;
}
.title-grid{
  max-width:var(--maxw);margin:0 auto;width:100%;
  display:grid;grid-template-columns:1.1fr .9fr;gap:3rem;align-items:center;
}
.title h1{max-width:17ch}
.title h1 .hl{color:var(--gold)}
.title-sub{
  margin-top:1.1rem;
  margin-left:calc(10px + .8rem);
  max-width:54ch;
  font-size:var(--fs-md);
  line-height:1.55;
  color:rgba(255,255,255,.76);
}
.title-note{
  display:flex;gap:.8rem;align-items:flex-start;margin-top:2.4rem;max-width:44ch;
}
.title-note::before{
  content:'';flex:0 0 10px;height:10px;border-radius:50%;
  background:var(--gold);margin-top:.42rem;
}
.title-art{position:relative;height:min(420px,42vw)}
.title-art svg{width:100%;height:100%;overflow:visible}
.orbit{transform-origin:200px 200px;animation:spin 44s linear infinite}
.orbit-2{transform-origin:200px 200px;animation:spin 30s linear infinite reverse}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- 4. STORY ---------- */
.story{background:var(--bone);padding:5rem var(--pad) 9rem;position:relative;overflow:hidden}
/* The lines step right as they descend, leaving two wedges of empty
   space: a large one lower-left, a smaller one upper-right. These fill
   them with texture. Navy rather than gold, so they sit behind the
   highlighter marks instead of fighting them. */
.story-field{position:absolute;inset:0;z-index:0;pointer-events:none}
.story-field span{
  position:absolute;
  background-image:radial-gradient(rgba(19,26,51,.9) 1.9px,transparent 1.9px);
  background-size:14px 14px;
  opacity:.42;
}
.story-field span:nth-child(1){
  left:-6%;bottom:6%;width:min(620px,52vw);height:min(560px,48vw);
  -webkit-mask-image:radial-gradient(ellipse at center,#000 4%,transparent 66%);
  mask-image:radial-gradient(ellipse at center,#000 4%,transparent 66%);
}
.story-field span:nth-child(2){
  right:-4%;top:12%;width:min(400px,36vw);height:min(360px,32vw);
  -webkit-mask-image:radial-gradient(ellipse at center,#000 4%,transparent 64%);
  mask-image:radial-gradient(ellipse at center,#000 4%,transparent 64%);
}
.story .wrap{position:relative;z-index:1}
.story .wrap{max-width:1120px}
.story-line{
  font-size:clamp(1.6rem,4.4vw,3.6rem);line-height:1.08;letter-spacing:-.035em;
  font-weight:var(--w);max-width:20ch;margin-bottom:3.4rem;
}
.story-line .w{
  display:inline-block;
  opacity:0;
  transition:opacity .16s linear;
}
.story-line .w.on{opacity:1}
.story-line:nth-of-type(2){margin-left:8%}
.story-line:nth-of-type(3){margin-left:16%}
.story-line:nth-of-type(4){margin-left:24%}
.story-line:nth-of-type(5){margin-left:32%}
.story-line b{font-weight:700}
/* Highlighter mark. The band sweeps left to right once the words it
   covers have finished revealing. Gold stays light enough that the
   dark type reads straight through it. */
.story-line .hl{
  background-image:linear-gradient(180deg,rgba(237,178,89,.95) 0,rgba(237,178,89,.95) 100%);
  background-repeat:no-repeat;
  background-position:0 76%;
  background-size:0 .86em;
  transition:background-size .6s var(--ease);
  padding:0 .12em;
  margin:0 -.12em;
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}
.story-line .hl.marked{background-size:100% .86em}
.story-line b.brand{white-space:nowrap}
/* Row is hidden via the [hidden] attribute in index.html.
   Remove that attribute to bring it back. */
.story-logos[hidden]{display:none}
.story-logos{
  display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;
  align-items:center;margin:1rem 0 4.5rem;
}
.story-logos .slot{
  min-width:132px;height:48px;border:1px dashed rgba(19,26,51,.28);
  display:flex;align-items:center;justify-content:center;
  font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-soft);
  opacity:0;transition:opacity .2s linear;
}
.story-logos .slot.on{opacity:1}

/* ---------- 5. VALUES (deep navy, full-screen panels) ---------- */
.values{background:var(--navy);color:var(--bone)}
.panel{
  min-height:100svh;padding:calc(var(--nav-h) + 3rem) var(--pad) 4rem;
  display:flex;align-items:center;position:relative;
  transition:opacity .5s linear;
}
.panel-grid{
  max-width:var(--maxw);margin:0 auto;width:100%;
  display:grid;grid-template-columns:340px 1fr;gap:4rem;align-items:center;
}
.panel-glyph{width:100%;max-width:320px}
.panel-glyph svg{width:100%;height:auto}
.glyph-spin{transform-origin:100px 100px;animation:spin 40s linear infinite}
.panel h2{max-width:22ch;margin-bottom:2.6rem}
.panel h2 .hl{color:var(--gold)}
.panel-cols{display:grid;grid-template-columns:1fr 1fr;gap:2.6rem;max-width:820px}
.panel-cols p{font-size:var(--fs-md);line-height:1.55;color:var(--light-soft)}
/* Separator between statements. A gold hairline across the panel with a
   solid segment at its left end, so the eye registers the change during
   a long scroll. First panel has none, nothing precedes it. */
.panel + .panel::before{
  content:'';position:absolute;top:0;left:var(--pad);right:var(--pad);
  height:1.5px;background:rgba(237,178,89,.55);
}
.panel + .panel::after{
  content:'';position:absolute;top:0;left:var(--pad);
  width:64px;height:1.5px;background:var(--gold);
}
.panel-count{
  position:absolute;left:var(--pad);bottom:2.4rem;
  font-size:var(--fs-md);color:var(--light-soft);
}

/* ---------- 6. CAPABILITIES (bone ground, navy cards, gold sun) ---------- */
.caps{background:var(--bone);position:relative}
.caps-head{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:3.5rem}
.caps h2{max-width:14ch}
.caps-lede{max-width:46ch;align-self:end}
/* Uneven grid: a wide card and a narrow one per row, alternating sides,
   so the block reads as composition rather than a table. */
.cap-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.cap-card:nth-child(1),.cap-card:nth-child(4){grid-column:span 2}

/* shared expanding card: rest -> hover semicircle -> open fill */
.xcard{
  position:relative;overflow:hidden;cursor:pointer;
  display:flex;flex-direction:column;justify-content:flex-start;
  transition:background-color .5s var(--ease),color .5s var(--ease);
}
.xcard h3{max-width:16ch;position:relative;z-index:2}
.xcard .body{
  position:relative;z-index:2;
  max-height:0;opacity:0;overflow:hidden;
  transition:max-height .55s var(--ease),opacity .45s var(--ease),margin .55s var(--ease);
}
.xcard.open .body{max-height:26rem;opacity:1;margin-top:1.2rem}
.xcard .body p{font-size:var(--fs-md);line-height:1.55;max-width:52ch}
.dome{
  position:absolute;right:2.6rem;bottom:0;z-index:3;
  width:118px;height:59px;border-radius:118px 118px 0 0;
  display:flex;align-items:flex-end;justify-content:center;padding-bottom:1.1rem;
  font-size:1.15rem;line-height:1;
  transform:translateY(100%);
  transition:transform .45s var(--ease),opacity .35s var(--ease);
}
.xcard:hover .dome{transform:none}
.xcard.open .dome{opacity:0;transform:translateY(100%)}
.dome-ghost{
  position:absolute;right:2.6rem;bottom:0;z-index:1;
  width:118px;height:59px;border-radius:118px 118px 0 0;
  background:currentColor;opacity:0;transition:opacity .5s var(--ease);
}
.dome-ghost.two{right:6.6rem;bottom:0;width:96px;height:48px;border-radius:96px 96px 0 0}
.xcard.open .dome-ghost{opacity:.12}

/* capabilities: gold at rest, blue when open */
.cap-card{
  background:var(--gold);color:var(--navy);
  min-height:240px;padding:2rem 1.9rem;
}
.cap-card .dome{background:var(--blue);color:var(--white)}
.cap-card.open{background:var(--blue);color:var(--white)}

/* Two cards break the gold so the row reads as composition. Each keeps
   a dome that contrasts against its own ground; all open to blue. */
.cap-card.c-navy{background:var(--navy);color:var(--bone)}
.cap-card.c-navy .dome{background:var(--gold);color:var(--navy)}
.cap-card.c-white{background:var(--white);color:var(--ink)}

/* ---------- 7. WORK ---------- */
.work{background:var(--bone-warm);overflow:hidden}
.work h2{max-width:14ch;margin-bottom:1.8rem}
.work-nav{display:flex;gap:.7rem;margin-bottom:1.6rem}
.wbtn{
  width:44px;height:44px;border:1px solid var(--ink);
  display:flex;align-items:center;justify-content:center;
  transition:background-color .3s var(--ease),color .3s var(--ease),opacity .3s var(--ease);
}
.wbtn:hover{background:var(--ink);color:var(--bone)}
.wbtn[disabled]{opacity:.25;cursor:default}
.wbtn[disabled]:hover{background:none;color:inherit}
.track{
  display:flex;gap:1rem;overflow-x:auto;scroll-behavior:smooth;
  scrollbar-width:none;scroll-snap-type:x mandatory;
}
.track::-webkit-scrollbar{display:none}
.wcard{
  flex:0 0 clamp(280px,38vw,560px);min-height:480px;
  scroll-snap-align:start;
  background:var(--navy-art);color:var(--bone);
  padding:2rem 1.9rem;
}
/* Illustration sits in the lower part of the card and dissolves upward,
   so the question always reads against flat colour. */
.wcard-art{
  position:absolute;left:0;right:0;bottom:0;height:70%;z-index:0;
  overflow:hidden;pointer-events:none;
  transition:opacity .5s var(--ease);
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 28%);
  mask-image:linear-gradient(180deg,transparent 0%,#000 28%);
}
.wcard-art img{width:100%;height:100%;object-fit:cover;display:block;object-position:center}
/* Per-image focal point. The chair sits low in its frame, so that card
   shifts the crop window down without going all the way to the edge.
   0% is the top of the image, 100% the bottom. */
.wcard-art.anchor-bottom img{object-position:center 80%}
.wcard .dome{background:var(--gold);color:var(--navy)}
.wcard.open{background:var(--gold);color:var(--navy)}
.wcard.open .wcard-art{opacity:0}
.wcard.open .body{margin-top:auto;max-height:34rem}
/* Answers are short, so they run larger here than elsewhere and
   fill the card rather than leaving a gap under the question. */
.wcard .body p{
  font-size:clamp(1.05rem,1.45vw,1.4rem);
  line-height:1.4;
  letter-spacing:-.015em;
  max-width:34ch;
}

/* ---------- 8. TEAM ---------- */
.team{background:var(--blue-pale)}
/* Long headline, so it runs smaller than a standard h2 and gets a
   wider measure rather than dominating the section. */
.team-head{
  font-size:clamp(1.6rem,3.4vw,3.1rem);
  line-height:1.12;
  max-width:42ch;
  margin-bottom:4rem;
}
.team-quote{
  font-size:clamp(1.3rem,2.2vw,1.9rem);
  line-height:1.24;
  letter-spacing:-.02em;
  font-weight:var(--w);
  max-width:24ch;
  position:relative;
  padding-top:5.4rem;
}
.team-quote::before{
  content:'\201C';
  position:absolute;top:0;left:0;
  font-size:clamp(9rem,14vw,13rem);
  line-height:.62;
  color:var(--gold);
  pointer-events:none;
}
.team-name{
  margin-top:2.4rem;
  font-size:var(--fs-h4);font-weight:var(--w);
  letter-spacing:var(--ls-h4);line-height:1.15;
}
.team-name small{
  display:block;font-size:.78rem;font-weight:400;
  letter-spacing:.12em;text-transform:uppercase;
  opacity:.6;margin-top:.35rem;
}
.team-grid{display:grid;grid-template-columns:1fr 1.45fr;gap:4.5rem;align-items:center}
.team-photo{
  aspect-ratio:16/9;background:rgba(19,26,51,.08);
  display:flex;align-items:flex-end;padding:1.1rem;position:relative;overflow:hidden;
}
.team-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.pills{display:flex;gap:.6rem;position:relative;z-index:2;width:100%}
.pill{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.5rem .9rem;border-radius:999px;font-size:.78rem;background:var(--gold);color:var(--navy);
}
.pill.ghost{background:var(--white);margin-left:auto}
.pill i{width:9px;height:9px;border-radius:50%;background:var(--navy);display:block}

/* ---------- 10. CTA ---------- */
.cta{background:var(--bone);text-align:center;position:relative;overflow:hidden;padding-top:11rem;padding-bottom:11rem}
.cta-dots{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:min(1240px,124vw);height:min(780px,92vw);
  background-image:radial-gradient(var(--gold) 1.6px,transparent 1.6px);
  background-size:12px 12px;
  -webkit-mask-image:radial-gradient(ellipse at center,#000 6%,transparent 70%);
  mask-image:radial-gradient(ellipse at center,#000 6%,transparent 70%);
}
.cta .wrap{position:relative;z-index:2}
.cta h2{max-width:15ch;margin:0 auto 2.4rem}
.joined{display:inline-flex;border:1px solid var(--ink)}
.joined a{padding:.95rem 1.6rem;font-size:var(--fs-md);transition:background-color .3s var(--ease),color .3s var(--ease)}
.joined a:first-child{font-weight:700;border-right:1px solid var(--ink)}
.joined a:hover{background:var(--ink);color:var(--bone)}

/* ---------- 11. FOOTER (blue bookend) ---------- */
.foot{background:var(--blue);color:var(--white);padding:5rem var(--pad) 2rem;position:relative}
.foot-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem}
/* Same gold rule as the splash, and for the same reason: it sits flush on
   the video edge so mobile colour management cannot show a seam. */
.foot-mark video,.foot-mark img{
  width:min(300px,44vw);height:auto;
  border:1.5px solid var(--gold);
}
.foot-desc{color:rgba(255,255,255,.8);max-width:46ch;margin-bottom:2rem;font-size:var(--fs-md);line-height:1.5}
.foot-row{display:flex;gap:.75rem;align-items:center;margin-bottom:.55rem;font-size:var(--fs-md);color:rgba(255,255,255,.8)}
.foot-row.gap{margin-top:1.9rem}
.foot-row svg{width:20px;height:20px;flex:0 0 20px}
.foot-row svg.solid{fill:currentColor}
.foot-row a:hover{color:var(--white)}
.foot-copy{margin-top:2rem;font-size:var(--fs-md);color:rgba(255,255,255,.8);line-height:1.5}
.foot-word{
  font-size:clamp(2.6rem,7vw,5.4rem);font-weight:700;line-height:.94;
  letter-spacing:-.04em;margin-top:4.5rem;color:var(--white);
}
.foot-base{
  max-width:var(--maxw);margin:2.5rem auto 0;
  display:flex;justify-content:flex-end;
  font-size:.78rem;color:rgba(255,255,255,.6);
}
.foot-base a:hover{color:var(--white)}

/* ---------- LEGAL PAGE ----------
   Uses the same tokens, nav and footer as the homepage so moving
   between them feels like one site rather than two. */
.legal-head{background:var(--bone);padding:calc(var(--nav-h) + 7rem) var(--pad) 3rem}
.legal-head .wrap{max-width:760px;margin:0 auto}
.legal-head h1{
  font-size:clamp(2.6rem,6vw,5rem);line-height:1;letter-spacing:var(--ls-h1);
  margin:1.2rem 0 1rem;
}
.legal-head .meta{color:var(--ink-soft);font-size:var(--fs-md)}
.legal-body{background:var(--bone);padding:0 var(--pad) 8rem}
.legal-body .wrap{max-width:760px;margin:0 auto}
.legal-item{padding:2.8rem 0;border-top:1px solid rgba(19,26,51,.16)}
.legal-item h2{
  font-size:var(--fs-cap);font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  margin-bottom:1.3rem;display:flex;align-items:center;gap:1rem;
}
.legal-item h2::after{content:'';flex:1;height:1px;background:rgba(19,26,51,.16)}
.legal-item p{font-size:var(--fs-md);line-height:1.75;color:var(--ink-soft);margin-bottom:1rem}
.legal-item p:last-child{margin-bottom:0}
.legal-item a{color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.legal-item a:hover{color:var(--blue)}

/* ---------- SHEET ---------- */
.sheet{display:none;position:fixed;inset:0;z-index:500;background:var(--blue);color:var(--white);flex-direction:column;align-items:center;justify-content:center;gap:1.4rem}
.sheet.open{display:flex}
.sheet a{font-size:1.7rem;font-weight:500;letter-spacing:-.03em}
.sheet .x{position:absolute;top:1.2rem;right:1.6rem;font-size:1.6rem}

/* ---------- REVEAL ---------- */
.split .word{display:inline-block;overflow:hidden;vertical-align:top}
.split .word>span{display:inline-block;transform:translateY(105%);transition:transform .85s var(--ease);transition-delay:var(--d,0ms)}
.split.in .word>span{transform:none}
.fade{opacity:0;transform:translateY(22px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.fade.in{opacity:1;transform:none}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1180px){
  .nav ul{gap:1.1rem}
  .nav ul a{font-size:.86rem}
}
@media(max-width:1100px){
  .title-grid{grid-template-columns:1fr}
  .title-art{display:none}
  .panel-grid{grid-template-columns:1fr;gap:1.6rem}
  .panel-glyph{max-width:120px}
  .team-grid{grid-template-columns:1fr;gap:2rem}
  .caps-head{grid-template-columns:1fr;gap:1.4rem}
  .foot-grid{grid-template-columns:1fr}
}
@media(max-width:760px){
  /* The video is centred and 52vw wide, so a mid-left wordmark collides
     with it on a narrow screen. Stack it above instead, which also
     closes the gap left by the shorter splash. Desktop is untouched. */
  .splash{justify-content:center;gap:1.4rem}
  .splash-word{
    position:static;transform:none;
    order:-1;text-align:center;
  }
  .splash-scroll{position:static;margin-top:1.6rem}
  .nav ul{display:none}
  .burger{display:flex}
  .block{padding:4.5rem var(--pad)}
  .story{padding:3.5rem var(--pad) 5rem}
  .story-line{margin-left:0 !important;margin-bottom:2.2rem}
  .cap-grid{grid-template-columns:1fr}
  .cap-card:nth-child(1),.cap-card:nth-child(4){grid-column:span 1}
  .cta{padding-top:6rem;padding-bottom:6rem}
  .panel-cols{grid-template-columns:1fr;gap:1.1rem}
  .dome{right:1.4rem}
  .dome-ghost.two{display:none}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition-duration:.01ms !important}
  .split .word>span{transform:none}
  .fade,.story-line,.panel{opacity:1;transform:none}
}
