/* ============================================================
   TESSA — Fitting the future of work into the empty spaces
   of our cities.  Minimal / clean revision.
   ============================================================ */

:root {
  --paper: #FAFAF6;
  --paper-2: #F1F0EA;
  --ink: #1A1A18;
  --ink-70: rgba(26, 26, 24, .68);
  --ink-50: rgba(26, 26, 24, .45);
  --line: rgba(26, 26, 24, .12);
  --accent: #4FD68C;        /* logo green */
  --accent-deep: #1E9C5B;   /* readable green on light bg */
  --cream: #F7F5F0;         /* logo off-white */
  --font-d: 'Inter Tight', sans-serif;
  --font-s: 'Instrument Serif', serif;
  --font-m: 'Space Mono', monospace;
  --pad: clamp(20px, 3.5vw, 56px);
  --ease: cubic-bezier(.62, .05, .01, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--accent); color: #0E1410; }

a { color: inherit; text-decoration: none; }
em { font-family: var(--font-s); font-style: italic; font-weight: 400; }
.mono {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ast { color: var(--accent-deep); font-style: normal; }

/* logo dot — the green mark from the wordmark */
.dot, .gdot {
  display: inline-block;
  width: .14em; height: .14em;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: .62em;
  margin-left: .07em;
}

/* hide animatable bits until JS sets them up (prevents FOUC) */
.js-ready .anim-fade { opacity: 0; }
.hline { display: inline-block; transform: translateY(135%); }
/* the vertical padding (offset by the negative margins) gives italic
   descenders and the raised brand dot room inside the reveal masks */
.mask { display: block; overflow: hidden; padding: .1em 0 .15em; margin: -.1em 0 -.15em; }

/* ------------------------------------------------ cursor */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 400; }
.cursor-dot, .cursor-ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  margin: -3px 0 0 -3px;
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid var(--ink-50);
  transition: width .35s var(--ease), height .35s var(--ease),
              margin .35s var(--ease), border-color .35s, background .35s;
}
.cursor.is-hover .cursor-ring {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-color: var(--accent);
  background: rgba(79, 214, 140, .1);
}
@media (hover: none) { .cursor { display: none; } }
.cursor-ring { display: grid; place-items: center; }
.cursor-label {
  font-family: var(--font-m); font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep); white-space: nowrap;
  opacity: 0; transform: scale(.6);
  transition: opacity .3s, transform .3s var(--ease);
}
.cursor.is-label .cursor-ring {
  width: 66px; height: 66px; margin: -33px 0 0 -33px;
  background: var(--paper); border-color: var(--accent);
}
.cursor.is-label .cursor-label { opacity: 1; transform: scale(1); }
.cursor.is-label .cursor-dot { opacity: 0; }

/* scroll progress */
.scroll-prog { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 350; pointer-events: none; }
.scroll-prog i {
  display: block; height: 100%; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
}

/* ------------------------------------------------ preloader */
.preloader {
  position: fixed; inset: 0;
  z-index: 500;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-top { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); color: var(--ink-50); }
.pre-word-wrap { overflow: hidden; }
.pre-word {
  display: block;
  font-weight: 300;
  font-size: clamp(36px, 7vw, 96px);
  letter-spacing: -.03em;
  line-height: 1;
}
.pre-bottom {
  position: absolute; bottom: 34px; left: var(--pad); right: var(--pad);
  display: flex; justify-content: space-between;
  color: var(--ink-50);
}
.pre-count { font-size: 12px; }
.pre-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.pre-bar i {
  display: block; height: 100%; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ------------------------------------------------ webgl */
.gl {
  position: fixed; inset: 0;
  z-index: 0;
  opacity: 0;
}
.gl canvas { display: block; width: 100%; height: 100%; }

/* ------------------------------------------------ nav */
.nav {
  position: fixed;
  top: clamp(10px, 1.6vh, 18px);
  left: clamp(10px, 1.5vw, 22px);
  right: clamp(10px, 1.5vw, 22px);
  z-index: 100;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  padding: 10px 10px 10px clamp(18px, 2vw, 28px);
  color: var(--ink);
  border-radius: 100px;
  background: rgba(250, 250, 246, .55);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(26, 26, 24, .08);
  box-shadow: 0 2px 16px rgba(26, 26, 24, .05);
  transition: color .4s, background .4s, border-color .4s;
}
.nav.nav-invert {
  color: var(--cream);
  background: rgba(20, 20, 20, .45);
  border-color: rgba(247, 245, 240, .14);
}
.nav-logo {
  font-weight: 450;
  font-size: 21px;
  letter-spacing: .01em;
}
.nav-links { display: flex; gap: clamp(12px, 2vw, 28px); margin-left: auto; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--accent-deep);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-meta { display: flex; gap: 14px; opacity: .55; }

/* nav toggle + fullscreen menu */
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-toggle {
  position: relative; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid currentColor;
  background: none; color: inherit; cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.5px; background: currentColor;
  transition: transform .45s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -3.5px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, 3.5px); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }
body.menu-open .nav {
  background: transparent; border-color: transparent;
  box-shadow: none; color: var(--cream);
}
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column;
  padding: clamp(96px, 13vh, 150px) var(--pad) clamp(32px, 5vh, 56px);
  transform: translateY(-100%);
}
.menu-nav { display: flex; flex-direction: column; margin: auto 0; }
.menu-link {
  display: flex; align-items: baseline; gap: clamp(14px, 2vw, 34px);
  padding: clamp(3px, 0.8vh, 10px) 0; color: var(--cream);
}
.menu-idx { color: rgba(247, 245, 240, .35); }
.menu-word {
  font-weight: 300; font-size: clamp(38px, 7.5vw, 104px);
  line-height: 1.04; letter-spacing: -.03em;
  transition: transform .45s var(--ease), color .4s;
}
.menu-link:hover .menu-word { transform: translateX(clamp(12px, 2vw, 26px)); color: var(--accent); }
.menu-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: rgba(247, 245, 240, .6);
  border-top: 1px solid rgba(247, 245, 240, .14);
  padding-top: clamp(20px, 3vh, 30px);
}
.menu-foot a:hover { color: var(--accent); }

/* buttons */
.btn {
  display: inline-flex; align-items: center;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  transition: border-color .4s, background .4s, color .4s;
}
.btn-nav { border-color: currentColor; padding: 10px 18px; }
.btn-solid { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #0E1410; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-flip { display: inline-block; position: relative; overflow: hidden; height: 1.3em; }
.btn-flip span { display: block; height: 1.3em; line-height: 1.3em; transition: transform .45s var(--ease); }
.btn:hover .btn-flip span { transform: translateY(-1.3em); }
.btn-lg { padding: 16px 30px; font-size: 11px; }
.btn-ghost { background: transparent; }
.btn-accent { background: var(--accent); color: #0E1410; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--cream); }

main { position: relative; z-index: 1; }
section { position: relative; }

/* section heads */
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.sec-label { color: var(--ink-50); }

/* ------------------------------------------------ hero */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(28px, 4vh, 56px);
}
.hero-label {
  position: absolute;
  top: clamp(84px, 12vh, 130px);
  left: var(--pad);
  color: var(--ink-50);
}
.hero-title {
  font-weight: 300;
  font-size: clamp(56px, 11.5vw, 184px);
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: clamp(24px, 4vh, 56px);
}
.hero-title em { font-size: .98em; letter-spacing: -.02em; }
.hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
}
.hero-sub { max-width: 470px; font-size: 15px; color: var(--ink-70); }
.hero-eyebrow {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  color: var(--ink-70);
  margin-bottom: clamp(14px, 2vh, 26px);
}
.eb-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 9px; }
.dot-note { width: .45em; height: .45em; vertical-align: .45em; margin: 0 .3em 0 0; }
.hero-cta { display: flex; gap: 12px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--ink-50);
}

/* ------------------------------------------------ marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2vw, 28px) 0;
  background: var(--paper);
}
.marquee::before {
  content: ""; position: absolute; top: 0;
  left: var(--pad); right: var(--pad); height: 1px;
  background: var(--line);
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-content {
  display: flex; align-items: center;
  flex-shrink: 0;
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 40px);
  letter-spacing: -.02em;
  color: var(--ink-70);
  padding-right: clamp(28px, 4vw, 64px);
  gap: clamp(28px, 4vw, 64px);
}
.m-dot {
  width: .22em; height: .22em; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
/* recognised-by logo marquee */
.marquee-proof { padding: clamp(14px, 1.7vw, 24px) 0; }
.proof-group {
  display: flex; align-items: center; flex-shrink: 0;
  gap: clamp(28px, 4vw, 60px);
  padding-right: clamp(28px, 4vw, 60px);
}
.proof-group .m-dot { width: 5px; height: 5px; }
.proof-cap {
  color: var(--ink-50);
  white-space: nowrap;
}
.proof-group .proof-logo {
  height: clamp(30px, 3.4vw, 46px); width: auto;
  object-fit: contain;
}

/* ------------------------------------------------ backed by */
.backed {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 5vw, 80px); flex-wrap: wrap;
  padding: clamp(16px, 2vw, 28px) var(--pad);
  background: var(--paper);
}
.backed::before, .backed::after {
  content: ""; position: absolute;
  left: var(--pad); right: var(--pad); height: 1px;
  background: var(--line);
}
.backed::before { top: 0; }
.backed::after { bottom: 0; }
.backed-label {
  color: var(--ink-50);
  font-size: 11px; letter-spacing: .2em; flex-shrink: 0;
}
.backed-div { display: none; }
.backed-logos {
  display: flex; align-items: center;
  gap: clamp(30px, 4vw, 60px); flex-wrap: wrap;
}
.backed-item { display: inline-flex; align-items: center; }
.backed-logo {
  height: clamp(40px, 4.4vw, 64px); width: auto; object-fit: contain; display: block;
  transition: transform .4s var(--ease);
}
.backed-item:hover .backed-logo { transform: scale(1.04); }

/* ------------------------------------------------ faq */
.faq { padding: 0 var(--pad) clamp(60px, 8vw, 130px); background: var(--paper); }
.faq-title {
  font-weight: 300; font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em; line-height: 1;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(28px, 4vh, 56px);
}
.faq-title em { color: var(--accent-deep); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(20px, 2.6vw, 32px) 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-weight: 400; font-size: clamp(18px, 2.1vw, 28px);
  letter-spacing: -.02em; transition: color .3s;
}
.faq-item summary:hover .faq-q { color: var(--accent-deep); }
.faq-ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-50); }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: currentColor;
  transition: transform .4s var(--ease), opacity .3s;
}
.faq-ico::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-ico::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-ico { color: var(--accent-deep); }
.faq-item[open] .faq-ico::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a {
  max-width: 64ch; padding-bottom: clamp(20px, 2.6vw, 32px);
  color: var(--ink-70); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.5;
}
.faq-a p { margin: 0; }

/* ------------------------------------------------ manifesto */
.manifesto {
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 0 var(--pad);
}
.manifesto .section-head { border-top: 0; padding-top: 92px; }
.mani-text {
  margin: auto 0;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 58px);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 21em;
}
.mani-text .w { display: inline-block; opacity: .12; will-change: opacity; }
.mani-text .w.w-accent { color: var(--accent-deep); }

/* ------------------------------------------------ stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.stat {
  padding: clamp(28px, 3.5vw, 56px) var(--pad);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-weight: 200;
  font-size: clamp(44px, 5.5vw, 92px);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-suffix { font-size: .36em; vertical-align: .14em; color: var(--accent-deep); margin-left: .1em; }
.stat-label { margin-top: 14px; color: var(--ink-50); }

/* ------------------------------------------------ proof */
.proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(20px, 2.6vw, 36px) var(--pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.proof-label { color: var(--ink-50); flex-shrink: 0; }
.proof-logos {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
}
.proof-item { display: inline-flex; align-items: center; }
.proof-logo {
  height: clamp(52px, 6vw, 84px); width: auto;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.proof-item:hover .proof-logo { transform: scale(1.04); }
.proof-fallback {
  display: none;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: -.01em;
  color: var(--ink-70);
  transition: color .35s;
}
.proof-fallback i {
  font-family: var(--font-m);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 3px;
}
.proof-item:hover .proof-fallback { color: var(--ink); }
.proof-item.no-logo .proof-logo { display: none; }
.proof-item.no-logo .proof-fallback { display: inline-flex; }

/* ------------------------------------------------ spaces */
.spaces { background: var(--paper); }
.spaces-pin {
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 0 0 0 var(--pad);
}
.spaces-head { padding-right: var(--pad); padding-top: 92px; border-top: 0; }
.spaces-title {
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em;
  line-height: 1;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(20px, 3vh, 40px);
}
.spaces-title em { color: var(--accent-deep); }
.h-track {
  display: flex; gap: clamp(16px, 2vw, 32px);
  width: max-content;
  align-items: stretch;
  flex: 1;
  padding-bottom: clamp(24px, 4vh, 48px);
  will-change: transform;
}
.card {
  width: clamp(300px, 32vw, 480px);
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .5s;
}
.card:hover { border-color: rgba(26, 26, 24, .3); }
.card-art {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.card-art::before {
  /* the green dot — a TESSA space marked on the map */
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .5s var(--ease);
}
.card:hover .card-art::before { transform: scale(1.7); }
.art-1 { background: linear-gradient(165deg, #F1EFE8, #E6E3D8); }
.art-1::before { top: 22%; left: 26%; }
.art-2 { background: linear-gradient(195deg, #EBEEE9, #DDE3DC); }
.art-2::before { top: 34%; left: 64%; }
.art-3 { background: linear-gradient(150deg, #F0EEE6, #E2DECF); }
.art-3::before { top: 18%; left: 48%; }
.art-4 { background: linear-gradient(205deg, #ECEFF0, #DBE1E3); }
.art-4::before { top: 42%; left: 30%; }
.art-5 { background: linear-gradient(170deg, #EFEEE9, #E1E0D6); }
.art-5::before { top: 26%; left: 70%; }
.card-index {
  position: relative;
  font-weight: 200;
  font-size: clamp(80px, 8.5vw, 140px);
  line-height: .8;
  letter-spacing: -.04em;
  color: rgba(26, 26, 24, .16);
  padding: 0 0 14px 20px;
  transition: color .5s var(--ease);
}
.card:hover .card-index { color: var(--accent-deep); }
.card-meta { padding: 18px 20px 22px; border-top: 1px solid var(--line); }
.card-meta h3 {
  font-weight: 450;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -.02em;
}
.card-row {
  display: flex; justify-content: space-between;
  margin: 8px 0 10px;
  color: var(--ink-50);
}
.card-meta p { font-size: 14px; color: var(--ink-70); max-width: 36ch; }
.card-cta {
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .5s var(--ease), color .5s;
}
.card-cta:hover { background: var(--accent); color: #0E1410; }
.card-cta-inner { display: flex; flex-direction: column; gap: 18px; padding: 28px; }
.card-cta-text {
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

/* ------------------------------------------------ process */
.process { padding: 0 var(--pad) clamp(60px, 8vw, 130px); background: var(--paper); }
.process-title {
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em;
  line-height: 1;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(30px, 4vh, 60px);
}
.process-rows { border-bottom: 1px solid var(--line); }
.p-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 60px;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(22px, 3vw, 40px) 0;
  border-top: 1px solid var(--line);
  transition: background .45s var(--ease);
}
.p-row:hover { background: var(--paper-2); }
.p-index { color: var(--ink-50); padding-left: 4px; }
.p-name {
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: -.02em;
  transition: transform .5s var(--ease);
}
.p-row:hover .p-name { transform: translateX(12px); }
.p-desc { font-size: 14px; color: var(--ink-70); max-width: 44ch; }
.p-arrow {
  font-size: 24px; text-align: right; padding-right: 12px;
  opacity: 0; transform: translateX(-12px);
  color: var(--accent-deep);
  transition: opacity .4s, transform .5s var(--ease);
}
.p-row:hover .p-arrow { opacity: 1; transform: translateX(0); }

/* ------------------------------------------------ certified space card */
.cert { padding: 0 var(--pad) clamp(60px, 8vw, 130px); background: var(--paper); }
.cert-title {
  font-weight: 300; font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em; line-height: 1;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(28px, 4vh, 56px);
}
.cert-title em { color: var(--accent-deep); }
.cert-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 72px); align-items: start;
}
.cert-side { max-width: 52ch; }
.cert-promise {
  font-size: clamp(20px, 2.2vw, 30px); font-weight: 400;
  letter-spacing: -.02em; line-height: 1.3;
}
.cert-refund { color: var(--accent-deep); }
.cert-sub {
  margin-top: 14px;
  color: var(--ink-70); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.6;
}
.cert-sub strong,
.ck-v strong {
  color: var(--ink);
  font-weight: 550;
}
.cert-key { list-style: none; margin-top: clamp(20px, 2.6vh, 30px); border-top: 1px solid var(--line); }
.cert-key li {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.ck-k { color: var(--ink-50); padding-top: 3px; }
.ck-v { color: var(--ink-70); font-size: clamp(14px, 1.35vw, 16px); line-height: 1.55; }
/* certificate card refresh */
.space-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(26, 26, 24, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
  box-shadow: 0 18px 44px rgba(26, 26, 24, .07);
}
.space-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 42%, #A9C8D3 42%, #A9C8D3 74%, #E7C46B 74%, #E7C46B 100%);
}
.sc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.sc-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-deep);
}
.sc-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-deep);
  animation: sc-pulse 1.6s ease-in-out infinite;
}
@keyframes sc-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.sc-updated { color: var(--ink-50); white-space: nowrap; }
.sc-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px;
  gap: 22px;
  align-items: start;
}
.sc-id { min-width: 0; }
.sc-name {
  font-family: var(--font-s);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 10px;
}
.sc-meta { color: var(--ink-50); }
.sc-score {
  min-width: 0;
  flex-shrink: 1;
  padding: 15px 16px;
  border: 1px solid rgba(30, 156, 91, .2);
  border-radius: 8px;
  background: #EEF6F2;
  text-align: center;
}
.sc-score-num {
  position: static;
  inset: auto;
  display: block;
  font-family: var(--font-s);
  font-weight: 400;
  font-size: 56px;
  line-height: .9;
  color: var(--accent-deep);
}
.sc-score-cap {
  display: block;
  margin-top: 10px;
  color: var(--ink-50);
  line-height: 1.35;
}
.sc-use {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sc-use-k { color: var(--ink-50); }
.sc-use strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}
.sc-use p {
  max-width: 44ch;
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.45;
}
.sc-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.sc-mode {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #FFFFFF;
}
.sc-mode.is-active {
  background: #EFF8F3;
  box-shadow: inset 0 0 0 2px rgba(30, 156, 91, .28);
}
.sc-mode-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}
.sc-mode-fit { color: var(--ink-50); }
.sc-mode.is-active .sc-mode-fit { color: var(--accent-deep); }
.sc-meter {
  height: 5px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 26, 24, .1);
}
.sc-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
}
.sc-mode.is-call .sc-meter i { width: 86%; background: var(--accent-deep); }
.sc-mode.is-deep .sc-meter i { width: 92%; background: var(--accent-deep); }
.sc-mode.is-stop .sc-meter i { width: 70%; background: #6E8FA0; }
.sc-mode-meta {
  color: var(--ink-70);
  font-size: 14px;
  line-height: 1.35;
}
.sc-extra {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
}
.sc-extra summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--ink-50);
  transition: color .3s, background .3s;
}
.sc-extra summary::-webkit-details-marker { display: none; }
.sc-extra summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-deep);
  font-family: var(--font-d);
  font-size: 18px;
  line-height: 1;
}
.sc-extra summary:hover { color: var(--ink); }
.sc-extra[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(79, 214, 140, .08);
  color: var(--ink);
}
.sc-extra[open] summary::after {
  content: "-";
  border-color: transparent;
  background: var(--accent);
  color: #0E1410;
}
.sc-extra-body {
  display: grid;
  gap: 18px;
  padding: 16px;
}
.sc-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.sc-sig {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  background: transparent;
}
.sc-sig:last-child { border-right: 0; }
.sc-k { color: var(--ink-50); }
.sc-v {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: 4px;
}
.sc-sub { color: var(--ink-50); font-size: 13px; }
@media (max-width: 620px) {
  .space-card { padding: 20px; }
  .sc-topbar { align-items: flex-start; flex-direction: column; gap: 8px; }
  .sc-main { grid-template-columns: 1fr; }
  .sc-name { font-size: 30px; }
  .sc-score {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    gap: 14px;
    text-align: left;
  }
  .sc-score-num { font-size: 44px; }
  .sc-score-cap { margin-top: 0; }
  .sc-use strong { font-size: 22px; }
  .sc-modes,
  .sc-signals { grid-template-columns: 1fr; }
  .sc-mode { min-height: 120px; }
  .sc-sig {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .sc-sig:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-live i { animation: none; }
}

/* ------------------------------------------------ audience */
.audience { padding: 0 var(--pad) clamp(60px, 8vw, 130px); background: var(--paper); }
.aud-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(26px, 4vh, 54px);
}
.aud-headline {
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em;
  line-height: 1;
}
.aud-headline em { color: var(--accent-deep); }
.aud-lede {
  color: var(--ink-70);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.5;
  max-width: 38ch;
}
.aud-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, .72fr) minmax(0, 1.05fr);
  gap: clamp(14px, 1.6vw, 24px);
  align-items: stretch;
}
.aud-panel {
  --aud-accent: var(--accent-deep);
  --aud-soft: rgba(79, 214, 140, .09);
  position: relative;
  display: flex; flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: clamp(340px, 31vw, 430px);
  overflow: hidden;
  isolation: isolate;
  background: #FFFFFF;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.aud-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--aud-accent);
  z-index: 2;
}
.aud-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--aud-soft), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity .45s;
  z-index: 0;
}
.aud-panel > * { position: relative; z-index: 1; }
.aud-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 26, 24, .22);
  box-shadow: 0 18px 44px rgba(26, 26, 24, .07);
}
.aud-panel:hover::after { opacity: 1; }
.aud-worker { --aud-accent: #6E8FA0; --aud-soft: rgba(110, 143, 160, .13); }
.aud-host { --aud-accent: #D8B65E; --aud-soft: rgba(216, 182, 94, .16); }
.aud-index { color: var(--ink-50); }
.aud-title {
  font-weight: 300;
  font-size: clamp(30px, 3.15vw, 50px);
  line-height: 1.04;
  letter-spacing: -.025em;
  max-width: 8.8em;
}
.aud-title em { color: var(--aud-accent); }
.aud-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.aud-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(26, 26, 24, .12);
  border-radius: 999px;
  background: var(--aud-soft);
  color: var(--ink);
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aud-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.aud-metrics span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 72px;
  padding: 13px 14px;
  background: var(--aud-soft);
}
.aud-metrics b {
  font-weight: 520;
  font-size: 17px;
  line-height: 1.1;
}
.aud-metrics small {
  color: var(--ink-50);
  font-size: 12px;
  line-height: 1.3;
}
.aud-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  color: var(--ink-70);
}
.aud-list li { display: flex; align-items: center; gap: 10px; }
.dot-li { width: 5px; height: 5px; vertical-align: 0; margin: 0; flex-shrink: 0; }
.aud-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(26, 26, 24, .12);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(26, 26, 24, .12);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.aud-cta i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #0E1410;
  font-style: normal;
  transition: transform .45s var(--ease), background .35s var(--ease);
}
.aud-panel:hover .aud-cta {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(26, 26, 24, .16);
}
.aud-panel:hover .aud-cta i { transform: translateX(5px); background: var(--cream); }
.aud-bridge {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 2.3vw, 32px);
  border: 1px solid rgba(30, 156, 91, .22);
  border-radius: 8px;
  background: #EFF8F3;
  min-height: clamp(340px, 31vw, 430px);
}
.aud-bridge::before,
.aud-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: rgba(30, 156, 91, .36);
}
.aud-bridge::before { right: 100%; }
.aud-bridge::after { left: 100%; }
.aud-bridge-label { color: var(--accent-deep); }
.aud-bridge-mark {
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -.03em;
  line-height: 1;
}
.aud-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(30, 156, 91, .2);
}
.aud-flow li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 156, 91, .2);
}
.aud-flow span { color: var(--accent-deep); padding-top: 2px; }
.aud-flow b {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.25;
}

/* ------------------------------------------------ team */
.team { padding: 0 var(--pad) clamp(60px, 8vw, 130px); background: var(--paper); }
.team-title {
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -.03em;
  line-height: 1;
  margin: clamp(8px, 1.5vh, 20px) 0 clamp(30px, 4vh, 60px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.member {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .5s;
}
.member:hover { border-color: rgba(26, 26, 24, .3); }
.member-art {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.member-art::before {
  /* the green dot — one of us, somewhere in the city */
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .5s var(--ease);
}
.member:hover .member-art::before { transform: scale(1.6); }
.member-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(1);
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.member:hover .member-photo { filter: grayscale(0); transform: scale(1.03); }
/* with a real photo the placeholder dot steps aside */
.member-art:has(.member-photo)::before { display: none; }
.m-art-1 { background: linear-gradient(165deg, #F1EFE8, #E4E1D5); }
.m-art-1::before { top: 30%; left: 38%; }
.m-art-2 { background: linear-gradient(195deg, #EBEEE9, #DCE2DB); }
.m-art-2::before { top: 24%; left: 58%; }
.m-art-3 { background: linear-gradient(150deg, #EFEDE5, #E0DCCE); }
.m-art-3::before { top: 36%; left: 46%; }
.m-art-4 { background: linear-gradient(205deg, #ECEFF0, #DAE0E2); }
.m-art-4::before { top: 28%; left: 52%; }
.member-meta { padding: 16px 18px 20px; border-top: 1px solid var(--line); }
.member-meta h3 {
  font-weight: 450;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -.01em;
}
.member-row {
  display: flex; justify-content: space-between; gap: 10px;
  margin: 6px 0 10px;
  color: var(--ink-50);
}
.member-bio {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-70);
}
.team-note {
  margin-top: clamp(24px, 3vw, 44px);
  font-size: 14px;
  color: var(--ink-70);
}

/* ------------------------------------------------ cta */
.cta {
  padding: 0 var(--pad) clamp(80px, 10vw, 160px);
  background: var(--paper);
}
.cta-link {
  display: block;
  margin-top: clamp(30px, 5vh, 70px);
  font-weight: 300;
  font-size: clamp(44px, 9vw, 150px);
  line-height: 1;
  letter-spacing: -.035em;
}
.cta-link em { color: var(--accent-deep); }
.cta-line { display: block; }
.cta-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(32px, 6vw, 90px); flex-wrap: wrap;
  margin-top: clamp(30px, 5vh, 70px);
}
.cta-row .cta-link { margin-top: 0; font-size: clamp(40px, 7.5vw, 120px); }
.cta-side {
  display: flex; flex-direction: column; gap: clamp(20px, 2.4vh, 30px);
  width: 100%; max-width: 400px;
}
.cta-sub {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-70);
}
.cta-actions {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  margin: 0;
}
.cta-actions .btn { justify-content: center; }
.cta-link b { display: inline-block; font-weight: inherit; color: var(--accent-deep); will-change: transform; }
.cta-mail { margin: 0; }
.cta-mail a {
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.cta-mail a:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* waitlist interactive form */
.wl { display: flex; flex-direction: column; gap: clamp(14px, 1.8vh, 20px); }
.wl-toggle {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-m); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
}
.wl-thumb {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: 100px;
  transition: transform .55s var(--ease);
}
.wl-toggle.is-landlord .wl-thumb { transform: translateX(100%); }
.wl-opt {
  position: relative; z-index: 1;
  padding: 12px 14px;
  background: none; border: 0; cursor: pointer;
  color: var(--ink-50);
  font: inherit; letter-spacing: inherit; text-transform: inherit;
  transition: color .45s var(--ease);
}
.wl-opt.is-active { color: var(--cream); }
.wl-form { display: flex; flex-direction: column; gap: 2px; }
.wl-field {
  position: relative; display: flex; align-items: center;
  border-bottom: 1px solid var(--ink);
}
.wl-field::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--accent-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.wl-field:focus-within::after { transform: scaleX(1); }
.wl-cond { flex: 1; display: flex; min-width: 0; }
.wl-cond[hidden] { display: none; }
.wl-select {
  appearance: none; -webkit-appearance: none;
  border-radius: 0; cursor: pointer;
}
.wl-select.is-empty { color: var(--ink-50); }
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-input {
  flex: 1; min-width: 0;
  padding: 14px 34px 14px 2px;
  background: none; border: 0; outline: none;
  font-family: var(--font-d); font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink);
}
.wl-input::placeholder { color: var(--ink-50); }
.wl-submit {
  position: absolute; right: 2px;
  display: grid; place-items: center;
  background: none; border: 0; cursor: pointer;
  color: var(--ink); font-size: 22px; line-height: 1;
  transition: color .4s var(--ease);
}
.wl-submit:hover { color: var(--accent-deep); }
.wl-submit-arrow { display: inline-block; transition: transform .4s var(--ease); }
.wl-submit:hover .wl-submit-arrow { transform: translateX(5px); }
.wl-msg { min-height: 1.1em; color: var(--ink-50); transition: color .3s; }
.wl-msg.is-error { color: #C0492B; }
.wl-msg.is-ok { color: var(--accent-deep); }
.wl-reassure { color: var(--ink-50); margin-top: -2px; }
.wl.is-done .wl-toggle, .wl.is-done .wl-form { opacity: .45; pointer-events: none; }
.wl.is-done .wl-submit { color: var(--accent-deep); }

/* team linkedin */
.member-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.member-li { display: inline-flex; color: var(--ink-50); transition: color .3s, transform .3s var(--ease); }
.member-li:hover { color: var(--accent-deep); transform: translateY(-2px); }

/* footer recognised-by (static) */
.foot-proof {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-bottom: clamp(34px, 4vw, 52px);
  margin-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(247, 245, 240, .12);
}
.foot-proof .foot-h { margin: 0; }
.foot-proof-logos { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot-chip {
  display: inline-flex; align-items: center;
  background: #fff; border-radius: 10px;
  padding: 10px 16px;
}
.foot-chip img { height: clamp(30px, 3vw, 40px); width: auto; display: block; }

/* ------------------------------------------------ footer */
.footer {
  position: relative;
  background: #141414;
  color: var(--cream);
  padding: clamp(40px, 4.5vw, 64px) var(--pad) clamp(18px, 2.5vh, 26px);
  z-index: 1;
  overflow: hidden;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(30px, 4vw, 54px);
}
.foot-lead { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(14px, 2vw, 22px); }
.foot-statement {
  font-weight: 300; font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.35; letter-spacing: -.01em;
  max-width: 24em; color: var(--cream);
}
.foot-col { display: flex; flex-direction: column; gap: 11px; font-size: 14px; font-weight: 300; }
.foot-col a { opacity: .72; transition: opacity .3s, color .3s; }
.foot-col a:hover { opacity: 1; color: var(--accent); }
.foot-h { opacity: .4 !important; margin-bottom: 8px; }
.foot-giant {
  font-weight: 300;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1; letter-spacing: -.01em;
  white-space: nowrap; color: var(--cream);
  margin: clamp(14px, 2vw, 26px) 0 clamp(16px, 2.2vw, 28px);
}
.foot-giant .ch { display: inline-block; transition: color .3s; }
.foot-giant .ch:hover { color: var(--accent); }
.foot-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 245, 240, .12);
  font-size: 11px;
}
.foot-bar > * { opacity: .55; }
.foot-legal { text-align: center; }
.foot-bar a { transition: color .3s, opacity .3s; }
.foot-bar a:hover { opacity: 1; color: var(--accent); }

/* footer grid: sitemap · elsewhere · waitlist */
.foot-grid {
  display: grid; grid-template-columns: 1fr 1fr 2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-bottom: clamp(34px, 4.5vw, 56px);
}
.foot-wl .wl { margin-top: 2px; gap: clamp(13px, 1.6vh, 18px); }
/* waitlist form adapted to the dark footer */
.footer .wl-toggle { border-color: rgba(247, 245, 240, .22); }
.footer .wl-thumb { background: var(--accent); }
.footer .wl-opt { color: rgba(247, 245, 240, .55); }
.footer .wl-opt.is-active { color: #0E1410; }
.footer .wl-field { border-bottom-color: rgba(247, 245, 240, .3); }
.footer .wl-input { color: var(--cream); }
.footer .wl-input::placeholder { color: rgba(247, 245, 240, .4); }
.footer .wl-select { background: transparent; }
.footer .wl-select.is-empty { color: rgba(247, 245, 240, .4); }
.footer .wl-select option { color: var(--ink); background: var(--paper); }
.footer .wl-submit { color: var(--cream); }
.footer .wl-submit:hover { color: var(--accent); }
.footer .wl-msg { color: rgba(247, 245, 240, .5); }
.footer .wl-reassure { color: rgba(247, 245, 240, .5); }
.footer .wl-reassure a { color: rgba(247, 245, 240, .8); }
.footer .wl-reassure a:hover { color: var(--accent); }

/* split helper */
[data-split] .mask { display: block; overflow: hidden; }
[data-split] .line-inner { display: block; will-change: transform; }

/* ------------------------------------------------ responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav { margin-left: auto; }
  .hero-title { font-size: clamp(48px, 13.5vw, 110px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .p-row { grid-template-columns: 50px 1fr 40px; }
  .p-desc { grid-column: 2 / 3; grid-row: 2; }
  .p-arrow { grid-row: 1; grid-column: 3; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-wl { grid-column: 1 / -1; }
  .card { width: 78vw; }
  .hero-scroll { display: none; }
  .aud-intro { grid-template-columns: 1fr; align-items: start; }
  .aud-lede { max-width: 48ch; }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-panel,
  .aud-bridge { min-height: auto; }
  .aud-worker { order: 1; }
  .aud-bridge { order: 2; }
  .aud-host { order: 3; }
  .aud-bridge::before,
  .aud-bridge::after { display: none; }
  .aud-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
  .cert-grid { grid-template-columns: minmax(0, 1fr); }
  .cert-side { max-width: none; }
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .member-art { aspect-ratio: 4 / 4.4; }
}
@media (max-width: 560px) {
  /* keep the primary CTA reachable from the sticky nav on mobile */
  .btn-nav { padding: 9px 14px; }
  /* stop the two section labels from overlapping when both are long */
  .section-head { flex-wrap: wrap; row-gap: 3px; }
  .section-head .sec-label:last-child { margin-left: auto; text-align: right; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .aud-badges span { flex: 1; justify-content: center; }
  .aud-metrics { grid-template-columns: 1fr; }
  .aud-flow { display: flex; }
  .aud-flow li { grid-template-columns: 1fr; gap: 4px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hline { transform: none; }
  .js-ready .anim-fade { opacity: 1; }
  .mani-text .w { opacity: 1; }
}
