@import url("fonts.css");

/* ==========================================================================
   ENSEMBLE — design tokens
   ========================================================================== */
:root {
  /* surface */
  --ink:        #07080c;
  --ink-2:      #0a0c12;
  --ink-3:      #0e1118;
  --raise:      rgba(255, 255, 255, 0.034);
  --raise-2:    rgba(255, 255, 255, 0.058);
  --line:       rgba(255, 255, 255, 0.085);
  --line-2:     rgba(255, 255, 255, 0.15);

  /* type */
  --ivory:      #f5f2ec;
  --ivory-dim:  #cfc9be;
  --muted:      #8d94a3;
  --muted-2:    #626a7a;

  /* accent */
  --ember:      #ff7a45;
  --gold:       #ffc46b;
  --teal:       #57d9c4;
  --violet:     #9b8cff;
  --rose:       #ff8fa8;

  --warm-grad:  linear-gradient(100deg, var(--gold), var(--ember) 55%, var(--rose));
  --cool-grad:  linear-gradient(100deg, var(--teal), var(--violet));

  /* geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --pad: clamp(20px, 5vw, 48px);
  --maxw: 1320px;

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ==========================================================================
   base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  font-feature-settings: "cv05" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

/* ---- role marks --------------------------------------------------------
   The roles are disciplines, not people, so they carry a mark instead of a
   portrait. It fills whatever frame a portrait used to, which is why every
   avatar slot on the page keeps working unchanged. Family sets the tint. */
.rm {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--ivory-dim);
  background: rgba(255, 255, 255, .05);
}
.rm svg { width: 48%; height: 48%; }
.rm-operator { color: #1d1206; background: var(--warm-grad); }
.rm-money    { color: var(--gold);   background: rgba(255, 196, 107, .12); }
.rm-risk     { color: var(--violet); background: rgba(155, 140, 255, .13); }
.rm-run      { color: var(--teal);   background: rgba(87, 217, 196, .12); }
.rm-grow     { color: var(--rose);   background: rgba(255, 143, 168, .12); }
.rm-open     { color: var(--muted); background: rgba(255, 255, 255, .03); border: 1px dashed var(--line-2); }

/* a photograph dropped in at assets/img/<key>.jpg fills whatever portrait
   frame it lands in — circle, rounded square or stacked avatar alike */
.ph { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

/* The portraits are head-and-shoulders with real room around the subject,
   which reads well at 76px and turns to mush at 28px. Small frames crop into
   the head so there is still a face in there at avatar size. */
.msg-face .ph { transform: scale(1.62); transform-origin: 50% 24%; }
.member-face .ph, .ask-face .ph, .core .ph {
  transform: scale(1.14); transform-origin: 50% 24%;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
::selection { background: rgba(255, 122, 69, .28); }

/* page-wide grain + vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='.42'/></svg>");
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ==========================================================================
   type utilities
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--raise);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(255, 122, 69, .16);
  animation: pulse 2.6s var(--ease-io) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 122, 69, .18); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 122, 69, 0); }
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.035em; line-height: 1.04; }

.display {
  font-size: clamp(2.9rem, 6.6vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.02em; }
.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }

.grad-warm {
  background: var(--warm-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.grad-cool {
  background: var(--cool-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.section-title { font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -0.042em; }
.lede { font-size: clamp(1.02rem, 1.35vw, 1.2rem); color: var(--muted); line-height: 1.62; max-width: 62ch; }
.mono { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; }

/* ==========================================================================
   buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.012em;
  white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, border-color .3s;
  isolation: isolate;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--warm-grad);
  color: #1a0d06;
  font-weight: 600;
  box-shadow: 0 8px 26px -10px rgba(255, 122, 69, .65), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { box-shadow: 0 16px 42px -12px rgba(255, 122, 69, .8), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-primary::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  border: 1px solid var(--line-2);
  background: var(--raise);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--raise-2); border-color: rgba(255,255,255,.28); }

.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   nav
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease), border-color .45s, backdrop-filter .45s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(7, 8, 12, .72);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-name {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.brand-name b { font-weight: 600; }
.brand-tag {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-left: 9px; padding-left: 10px;
  border-left: 1px solid var(--line);
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--muted); padding: 8px 13px; border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--ivory); background: var(--raise); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13.5px; }
@media (max-width: 950px) { .nav-links, .brand-tag { display: none; } }
@media (max-width: 560px) { .nav-cta .btn-ghost { display: none; } }

/* ==========================================================================
   atmosphere
   ========================================================================== */
.aura { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.blob-a { width: 46vw; height: 46vw; left: -12vw; top: -14vw; background: radial-gradient(circle, rgba(255,122,69,.52), transparent 68%); animation: drift-a 22s var(--ease-io) infinite alternate; }
.blob-b { width: 42vw; height: 42vw; right: -10vw; top: 2vw;  background: radial-gradient(circle, rgba(155,140,255,.42), transparent 68%); animation: drift-b 27s var(--ease-io) infinite alternate; }
.blob-c { width: 38vw; height: 38vw; left: 28vw; bottom: -18vw; background: radial-gradient(circle, rgba(87,217,196,.30), transparent 68%); animation: drift-c 31s var(--ease-io) infinite alternate; }
@keyframes drift-a { to { transform: translate3d(9vw, 7vw, 0) scale(1.18); } }
@keyframes drift-b { to { transform: translate3d(-8vw, 10vw, 0) scale(1.12); } }
@keyframes drift-c { to { transform: translate3d(6vw, -8vw, 0) scale(.88); } }

.grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 32%, #000 25%, transparent 78%);
}

/* ==========================================================================
   hero
   ========================================================================== */
.hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.hero-in {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 1040px) { .hero-in { grid-template-columns: 1fr; gap: 54px; } .hero { padding-top: 130px; } }

.hero-copy > * + * { margin-top: 26px; }

.hero-h1 { font-size: clamp(2.5rem, 4.5vw, 3.75rem); letter-spacing: -0.048em; line-height: 1.04; }
.hero-h1 .line-1 { display: block; color: var(--ivory); }

/* rotating value statements */
.rotator {
  display: block;
  position: relative;
  height: 1.2em;
  font-size: .94em;
  overflow: hidden;
  margin-top: .1em;
}
.rot-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.022em;
  opacity: 0;
  transform: translateY(72%) rotateX(-38deg);
  transform-origin: 0 0;
  filter: blur(7px);
  transition: opacity .72s var(--ease), transform .82s var(--ease), filter .72s var(--ease);
}
.rot-item.is-in  { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
.rot-item.is-out { opacity: 0; transform: translateY(-72%) rotateX(34deg); filter: blur(7px); }
@media (max-width: 560px) { .rotator { font-size: .86em; } }

.hero-sub { font-size: clamp(1.03rem, 1.3vw, 1.16rem); color: var(--muted); max-width: 52ch; line-height: 1.64; }
.hero-sub strong { color: var(--ivory-dim); font-weight: 500; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  padding-top: 24px; margin-top: 30px; border-top: 1px solid var(--line);
}
.proof-item { display: flex; align-items: baseline; gap: 9px; }
.proof-num { font-size: 19.5px; font-weight: 600; letter-spacing: -0.04em; }
.proof-lbl { font-size: 12px; color: var(--muted-2); }

/* ---- thought constellation --------------------------------------------- */
.stage {
  position: relative;
  aspect-ratio: 1 / 1.08;
  min-height: 470px;
}
@media (max-width: 1040px) { .stage { max-width: 540px; margin-inline: auto; width: 100%; } }
@media (max-width: 460px)  { .stage { min-height: 400px; } }

.stage-rings { position: absolute; inset: 0; z-index: 0; }
.stage-ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px dashed rgba(255,255,255,.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.stage-ring.r1 { width: 44%;  height: 44%;  animation: spin 46s linear infinite; }
.stage-ring.r2 { width: 70%;  height: 70%;  animation: spin 72s linear infinite reverse; border-color: rgba(255,255,255,.06); }
.stage-ring.r3 { width: 98%;  height: 98%;  animation: spin 110s linear infinite; border-color: rgba(255,255,255,.04); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* the person at the center — the owner */
.core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 33%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, #1b2030, #0b0e15);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -28px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
}
.core svg { width: 100%; height: 100%; }
.core-halo {
  position: absolute; top: 50%; left: 50%;
  width: 37%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 3;
  background: conic-gradient(from 0deg, rgba(255,196,107,.0), rgba(255,122,69,.55), rgba(87,217,196,.45), rgba(155,140,255,.5), rgba(255,196,107,0));
  filter: blur(16px);
  opacity: .8;
  animation: spin 14s linear infinite;
}
.core-label {
  position: absolute; left: 50%; top: 50%;
  /* sits above the figure, in the one part of the ring the bubbles never occupy */
  transform: translate(-50%, calc(-1 * var(--core-r, 84px) - 100%));
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-2);
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(7,8,12,.85);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* thought bubbles */
.thought {
  position: absolute;
  z-index: 5;
  width: clamp(166px, 36%, 212px);
  padding: 12px 14px 13px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(24,28,38,.94), rgba(11,14,20,.94));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -26px rgba(0,0,0,.96), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px) scale(.9);
  transition: opacity .68s var(--ease), transform .78s var(--ease);
  will-change: transform, opacity;
}
.thought.is-in { opacity: 1; transform: translateY(0) scale(1); }
.thought.float { animation: bob 7s var(--ease-io) infinite alternate; }
@keyframes bob { to { translate: 0 -11px; } }

/* thought-tail dots pointing back to center */
.thought .tail { position: absolute; display: flex; gap: 4px; align-items: center; }
.thought .tail i { display: block; border-radius: 50%; background: rgba(255,255,255,.24); }
.thought .tail i:nth-child(1) { width: 7px; height: 7px; }
.thought .tail i:nth-child(2) { width: 5px; height: 5px; opacity: .72; }
.thought .tail i:nth-child(3) { width: 3px; height: 3px; opacity: .45; }

.th-top { display: flex; align-items: center; gap: 10px; }
.th-face {
  width: 34px; height: 34px; flex: none; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #12151d;
}
.th-face svg { width: 100%; height: 100%; }
.th-name { font-size: 13px; font-weight: 570; letter-spacing: -0.02em; line-height: 1.25; }
.th-role { font-size: 10.5px; color: var(--muted-2); letter-spacing: .02em; }
.th-body { margin-top: 9px; font-size: 12.2px; line-height: 1.45; color: var(--ivory-dim); }
.th-out {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 100px;
  color: var(--teal); background: rgba(87,217,196,.1); border: 1px solid rgba(87,217,196,.22);
}
.th-out.warm { color: var(--gold); background: rgba(255,196,107,.1); border-color: rgba(255,196,107,.22); }

/* slot placement */
.slot-0 { top: 0;      left: -8%; }
.slot-1 { top: 11%;    right: -6%; }
.slot-2 { bottom: 9%;  left: -10%; }
.slot-3 { bottom: -2%; right: -2%; }
.slot-4 { top: 50%; left: 50%; margin-left: -46%; margin-top: -8%; display: none; }
@media (max-width: 1360px) {
  .slot-0 { left: -4%; }  .slot-1 { right: -2%; }
  .slot-2 { left: -5%; }  .slot-3 { right: 0; }
}
@media (max-width: 1040px) {
  .slot-0 { left: 0; }  .slot-1 { right: 0; }
  .slot-2 { left: 0; }  .slot-3 { right: 0; }
}

/* ==========================================================================
   marquee strip
   ========================================================================== */
.strip {
  position: relative; z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  padding: 17px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.strip-track { display: flex; gap: 0; width: max-content; animation: slide 46s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.strip-item {
  display: flex; align-items: center; gap: 12px;
  padding-inline: 30px;
  font-size: 13.2px; color: var(--muted);
  white-space: nowrap;
}
.strip-item b { color: var(--ivory-dim); font-weight: 500; }
.strip-sep { color: var(--ember); opacity: .55; }

/* ==========================================================================
   generic section
   ========================================================================== */
section { position: relative; }
section[id] { scroll-margin-top: 92px; }
.sec { padding: clamp(80px, 11vw, 140px) 0; }
.sec-head { max-width: 900px; margin-bottom: clamp(44px, 5vw, 66px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .lede { margin-top: 20px; }
.hr-glow {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(to right, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent);
}

/* ==========================================================================
   contrast section — table stakes
   ========================================================================== */
.stakes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 880px) { .stakes-grid { grid-template-columns: 1fr; } }

.stake-card {
  position: relative; overflow: hidden;
  padding: clamp(26px, 3.2vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.stake-card.dim { background: rgba(255,255,255,.012); }
.stake-card.dim .stake-list li { color: var(--muted-2); }
.stake-card.hot {
  border-color: rgba(255,122,69,.3);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,122,69,.14), transparent 62%),
    linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.014));
  box-shadow: 0 40px 90px -50px rgba(255,122,69,.55);
}
.stake-kicker {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 16px;
}
.stake-card.hot .stake-kicker { color: var(--ember); }
.stake-title { font-size: clamp(1.4rem, 2.2vw, 1.95rem); letter-spacing: -0.04em; }
.stake-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.stake-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.6px; line-height: 1.5; color: var(--ivory-dim);
  padding-bottom: 13px; border-bottom: 1px solid var(--line);
}
.stake-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.stake-list .ic { flex: none; margin-top: 2px; opacity: .9; }

/* ==========================================================================
   team roster
   ========================================================================== */
.roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
@media (max-width: 1100px) { .roster { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .roster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .roster { grid-template-columns: minmax(0, 1fr); } }
.member {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(172deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding: 20px 20px 22px;
  transition: transform .5s var(--ease), border-color .4s, background .4s, box-shadow .5s var(--ease);
}
.member::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(130% 80% at 50% 0%, rgba(255,122,69,.15), transparent 60%);
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.member:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 34px 70px -40px rgba(0,0,0,.95);
}
.member:hover::before { opacity: 1; }
.member-face {
  width: 64px; height: 64px; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #11141c;
  margin-bottom: 17px;
  transition: transform .55s var(--ease);
}
.member:hover .member-face { transform: scale(1.05) rotate(-2deg); }
.member-name { font-size: 16.5px; font-weight: 570; letter-spacing: -0.028em; }
.member-role {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 6px;
}
.member.fam-money .member-role { color: var(--gold); }
.member.fam-risk  .member-role { color: var(--violet); }
.member.fam-run   .member-role { color: var(--teal); }
.member.fam-grow  .member-role { color: var(--rose); }
.member.op .member-role { color: var(--ember); }

/* the roster is a sample, so the last card is deliberately open-ended */
.member.open {
  grid-column: span 3;
  border-style: dashed;
  background: rgba(255, 255, 255, .012);
}
.member.open .open-in { display: flex; gap: 20px; align-items: flex-start; }
.member.open .open-in > div:last-child { flex: 1; min-width: 0; }
.member.open .member-face { flex: none; margin-bottom: 0; }
.member.open .member-bio { max-width: 74ch; }
@media (max-width: 1100px) { .member.open { grid-column: span 2; } }
@media (max-width: 820px)  { .member.open { grid-column: span 1; } }
@media (max-width: 560px)  { .member.open .open-in { flex-direction: column; gap: 14px; } }
.member.open .member-name { color: var(--ivory-dim); }
.member.open .member-role { color: var(--teal); }
.member.open .member-status { display: none; }

/* the orchestrating layer is not one of the twelve, so it does not look like one */
.member.op {
  grid-column: span 2;
  border-color: rgba(255, 122, 69, .3);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(255, 122, 69, .14), transparent 60%),
    linear-gradient(172deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  box-shadow: 0 40px 90px -54px rgba(255, 122, 69, .6);
}
.member.op .member-name { font-size: 20px; }
.member.op .member-bio { font-size: 14px; max-width: 46ch; }
@media (max-width: 560px) { .member.op { grid-column: span 1; } }
.member-bio { font-size: 13.2px; color: var(--muted); line-height: 1.52; margin-top: 12px; }
.member-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 15px; }
.chip {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 7px;
  color: var(--muted); background: rgba(255,255,255,.045); border: 1px solid var(--line);
}
.member-status {
  position: absolute; top: 20px; right: 20px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
}
.member-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.member.op .member-status { color: var(--ember); }
.member.op .member-status i { background: var(--ember); box-shadow: 0 0 8px var(--ember); }

/* ==========================================================================
   full-bleed band
   ========================================================================== */
.band {
  position: relative;
  min-height: clamp(320px, 40vw, 480px);
  display: grid; place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.band-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* dark enough on the left to carry the line, light enough on the right
     that the photograph is still a photograph */
  background:
    linear-gradient(to right, rgba(7,8,12,.95) 0%, rgba(7,8,12,.84) 30%, rgba(7,8,12,.4) 62%, rgba(7,8,12,.26) 100%),
    linear-gradient(to bottom, rgba(7,8,12,.6), rgba(7,8,12,0) 26%, rgba(7,8,12,0) 74%, rgba(7,8,12,.66));
}
.band-in { position: relative; z-index: 2; width: 100%; }
.band-q {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 3.05rem); line-height: 1.16; letter-spacing: -0.024em;
  color: var(--ivory); margin: 0; max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.8);
}
.band-q b { font-weight: 400; display: block; }

/* ==========================================================================
   industries
   ========================================================================== */
.ind-tabs {
  display: flex; gap: 7px; flex-wrap: wrap;
  padding-bottom: 28px; margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.ind-tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 17px; border-radius: 100px;
  font-size: 13.6px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  transition: color .3s, background .35s var(--ease), border-color .3s, transform .35s var(--ease);
}
.ind-tab:hover { color: var(--ivory); transform: translateY(-2px); }
.ind-tab.on {
  color: #16100a; background: var(--warm-grad); border-color: transparent; font-weight: 600;
  box-shadow: 0 10px 26px -12px rgba(255,122,69,.7);
}
.ind-tab .tic { opacity: .85; }
.ind-tab.on .tic { opacity: 1; }

.ind-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}
@media (max-width: 980px) { .ind-panel { grid-template-columns: 1fr; } }

.ind-fade { animation: fade-up .6s var(--ease) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.ind-head { font-size: clamp(1.6rem, 2.7vw, 2.35rem); letter-spacing: -0.042em; line-height: 1.12; }
.ind-who { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ember); margin-bottom: 14px; }
.ind-sub { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 16px; max-width: 46ch; }

.ind-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
@media (max-width: 460px) { .ind-stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 16px 15px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
}
.stat-n { font-size: clamp(1.4rem, 2.3vw, 1.85rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1; }
.stat-l { font-size: 11.6px; color: var(--muted-2); margin-top: 8px; line-height: 1.35; }

.ind-does { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 11px; }
.ind-does li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.2px; color: var(--ivory-dim); line-height: 1.5;
}
.ind-does .tick { flex: none; margin-top: 3px; }
.ind-team { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.face-stack { display: flex; }
.face-stack > span {
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--ink); background: #11141c; margin-left: -10px;
}
.face-stack > span:first-child { margin-left: 0; }
.ind-team-lbl { font-size: 12.4px; color: var(--muted-2); }
.ind-team-lbl b { color: var(--ivory-dim); font-weight: 500; }

/* ---- conversation ------------------------------------------------------- */
.convo {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(20,24,33,.85), rgba(9,11,16,.92));
  box-shadow: 0 46px 100px -56px rgba(0,0,0,1);
  overflow: hidden;
}
.convo-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.022);
}
.convo-dots { display: flex; gap: 6px; }
.convo-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.14); }
.convo-dots i:first-child { background: rgba(255,122,69,.6); }
.convo-title {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2); margin-left: 6px;
}
.convo-live {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
}
.convo-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 50% { opacity: .25; } }

.convo-body { padding: 22px 20px 24px; display: grid; gap: 17px; align-content: start; }

.msg { display: flex; gap: 12px; opacity: 0; transform: translateY(12px); }
.msg.in { animation: msg-in .6s var(--ease) forwards; }
@keyframes msg-in { to { opacity: 1; transform: none; } }
.msg-face {
  width: 32px; height: 32px; flex: none; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: #11141c;
}
.msg-col { min-width: 0; flex: 1; }
.msg-meta { display: flex; align-items: baseline; gap: 8px; margin-bottom: 5px; flex-wrap: wrap; }
.msg-who { font-size: 12.8px; font-weight: 570; letter-spacing: -0.018em; }
.msg-role { font-family: var(--font-mono); font-size: 9.4px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.msg-bubble {
  font-size: 14px; line-height: 1.56; color: var(--ivory-dim);
  padding: 12px 15px; border-radius: 4px 15px 15px 15px;
  background: rgba(255,255,255,.042); border: 1px solid var(--line);
}
.msg.you .msg-bubble {
  background: linear-gradient(140deg, rgba(255,122,69,.16), rgba(255,196,107,.07));
  border-color: rgba(255,122,69,.26);
  color: var(--ivory);
}
.msg.you .msg-who { color: var(--gold); }
.msg.is-typing .msg-bubble { padding: 10px 15px; }
.msg-bubble em { color: var(--ivory); font-style: normal; font-weight: 500; }

.msg-work {
  margin-top: 9px; display: grid; gap: 6px;
  padding: 11px 13px; border-radius: 12px;
  background: rgba(87,217,196,.045); border: 1px dashed rgba(87,217,196,.22);
}
.work-row {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.4px; letter-spacing: .02em; color: var(--muted);
}
.work-row b { color: var(--teal); font-weight: 500; }

.convo-outcome {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  border-top: 1px solid var(--line);
  background: linear-gradient(to right, rgba(87,217,196,.07), rgba(155,140,255,.05));
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.convo-outcome.shown { opacity: 1; transform: none; }
.outcome-lbl {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
}
.outcome-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.4px; font-weight: 500;
  padding: 7px 13px; border-radius: 100px;
  color: var(--ivory); background: rgba(255,255,255,.055); border: 1px solid var(--line-2);
}
.outcome-chip svg { flex: none; }

/* typing indicator */
.typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); animation: type 1.3s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes type { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }


/* ==========================================================================
   skill combinations
   ========================================================================== */
.combo { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.combo-fade { animation: fade-up .6s var(--ease) both; }

.combo-ask {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,196,107,.2);
  background: linear-gradient(120deg, rgba(255,196,107,.09), rgba(255,122,69,.045));
}
.combo-ask .ask-face {
  width: 40px; height: 40px; flex: none; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); background: #11141c;
}
.ask-lbl {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px;
}
.ask-txt { font-size: clamp(1.02rem, 1.5vw, 1.24rem); line-height: 1.45; color: var(--ivory); letter-spacing: -0.022em; }
.ask-by { font-size: 12.2px; color: var(--muted-2); margin-top: 9px; }

/* the flow: skills on the left, what lands on the right */
.combo-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 1000px) { .combo-flow { grid-template-columns: 1fr; } }

.flow-col { display: flex; flex-direction: column; gap: 10px; }
/* the deliverables column is shorter than the skills column — centre it so the
   two sides read as converging on the node rather than hanging from the top */
.flow-col.out { justify-content: center; }
@media (max-width: 1000px) { .flow-col.out { justify-content: flex-start; } }
.flow-head {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 9.8px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 4px;
}
.flow-head .n {
  padding: 2px 7px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--ivory-dim);
}

.skill-row {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 14px 15px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  opacity: 0; transform: translateX(-14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .35s;
}
.skill-row.lit { opacity: 1; transform: none; }
.skill-row:hover { border-color: var(--line-2); }
.skill-face {
  width: 38px; height: 38px; flex: none; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.13); background: #11141c;
}
.skill-name { font-size: 13.4px; font-weight: 570; letter-spacing: -0.022em; }
.skill-who { font-size: 10.6px; color: var(--ember); margin-top: 2px; font-weight: 500; }
.skill-did { font-size: 12.8px; color: var(--muted); line-height: 1.48; margin-top: 8px; }

/* the connector between the two columns */
.flow-link { position: relative; }
@media (max-width: 1000px) { .flow-link { height: 54px; } }
.flow-link svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.flow-link .fl-path { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1.2; }
.flow-link .fl-pulse {
  fill: none; stroke: url(#flowGrad); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 22 300;
  animation: flow 3.2s linear infinite;
}
.flow-link .fl-pulse.d2 { animation-delay: 1.05s; }
.flow-link .fl-pulse.d3 { animation-delay: 2.1s; }
@keyframes flow { from { stroke-dashoffset: 322; } to { stroke-dashoffset: 0; } }
.flow-node {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 40% 30%, #1d2331, #0b0e15);
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 6px rgba(7,8,12,.9), 0 0 30px -6px rgba(255,122,69,.6);
  z-index: 2;
}
.flow-node svg { position: static; width: 15px; height: 15px; }

.make-row {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(87,217,196,.16);
  background: rgba(87,217,196,.045);
  font-size: 13.2px; color: var(--ivory-dim); line-height: 1.42;
  opacity: 0; transform: translateX(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.make-row.lit { opacity: 1; transform: none; }
.make-row .tick { flex: none; margin-top: 2px; }

.yours-row {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 18px;
  border-radius: var(--r-md);
  border: 1px dashed rgba(255, 196, 107, .28);
  background: rgba(255, 196, 107, .05);
}
.yours-row .yr-lbl {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); flex: none; padding-top: 3px;
}
.yours-row p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ivory-dim); }

.combo-out {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(to right, rgba(87,217,196,.08), rgba(155,140,255,.055));
}

/* ---- catalogue ---------------------------------------------------------- */
.catalogue {
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: clamp(30px, 3.4vw, 44px);
  border-top: 1px solid var(--line);
}
.cat-head { margin-bottom: 26px; }
.cat-title { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: -0.038em; }
.cat-sub { font-size: 14px; color: var(--muted); margin: 9px 0 0; }
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}
.cat-group {
  padding: 16px 17px 17px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  transition: border-color .35s, background .35s, transform .45s var(--ease);
}
.cat-group:hover { border-color: var(--line-2); background: rgba(255,255,255,.04); transform: translateY(-3px); }
.cat-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cat-face {
  width: 28px; height: 28px; flex: none; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: #11141c;
}
.cat-label { font-size: 13.2px; font-weight: 560; letter-spacing: -0.022em; }
.cat-items { display: flex; flex-wrap: wrap; gap: 5px; }

/* ==========================================================================
   how it works — the run
   ========================================================================== */
.run { max-width: 940px; margin-inline: auto; }

.run-ask {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,196,107,.22);
  background: linear-gradient(120deg, rgba(255,196,107,.1), rgba(255,122,69,.05));
  box-shadow: 0 34px 80px -50px rgba(255,122,69,.7);
}
.run-ask .ask-face { width: 44px; height: 44px; }
.run-ask .ask-txt { font-size: clamp(1.08rem, 1.7vw, 1.42rem); }

/* ---- the routing step, made visible ---- */
.crew {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); flex-wrap: wrap;
  margin: 18px 0 6px;
  padding: 20px clamp(18px, 2.4vw, 26px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 122, 69, .07), rgba(255, 255, 255, .015));
}
.crew-lead { display: flex; align-items: center; gap: 12px; flex: none; }
.crew-lead .cl-mark { width: 40px; height: 40px; border-radius: 13px; overflow: hidden; flex: none; }
.crew-h { font-size: 14.2px; font-weight: 560; letter-spacing: -0.024em; line-height: 1.3; max-width: 22ch; }
.crew-arrow { flex: none; color: var(--ember); opacity: .7; }
.crew-roles { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; min-width: 240px; }
.crew-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .035);
  font-size: 12.4px; font-weight: 500; letter-spacing: -0.012em;
}
.crew-chip .cc-mark { width: 24px; height: 24px; border-radius: 50%; overflow: hidden; flex: none; }
.crew-note { flex-basis: 100%; font-size: 12.6px; color: var(--muted-2); margin: 2px 0 0; }

/* ---- what it asked you, and what you picked ---- */
.ask-q { margin-top: 14px; }
.ask-q .aq-lbl {
  font-family: var(--font-mono); font-size: 9.4px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.ask-q .aq-q { font-size: 15.4px; font-weight: 550; letter-spacing: -0.026em; margin: 8px 0 12px; }
.aq-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.aq-opt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; color: var(--muted-2);
  border: 1px solid var(--line); background: rgba(255, 255, 255, .02);
}
.aq-opt.picked {
  color: var(--ivory); border-color: rgba(255, 196, 107, .4);
  background: rgba(255, 196, 107, .1); font-weight: 550;
}
.aq-opt.picked svg { color: var(--gold); flex: none; }

/* ---- what it checked before anyone saw it ---- */
.checks {
  margin-top: 15px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid rgba(87, 217, 196, .18); border-radius: var(--r-md);
  overflow: hidden; background: rgba(87, 217, 196, .18);
}
@media (max-width: 720px) { .checks { grid-template-columns: 1fr; } }
.check {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px; background: #0b0e14;
  font-size: 12.7px; line-height: 1.45; color: var(--muted);
}
.check svg { flex: none; margin-top: 2px; }
.check b {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; display: block; margin-bottom: 3px;
}

/* ---- and it keeps going ---- */
.recs {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(155, 140, 255, .26);
  background:
    radial-gradient(100% 90% at 0% 0%, rgba(155, 140, 255, .12), transparent 60%),
    linear-gradient(170deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
}
.recs-when {
  font-family: var(--font-mono); font-size: 9.8px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet);
}
.recs-h { font-size: clamp(1.3rem, 2.1vw, 1.75rem); letter-spacing: -0.038em; margin: 12px 0 0; }
.recs-lede { font-size: 14px; color: var(--muted); margin: 10px 0 0; max-width: 58ch; }
.recs-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.rec {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: start;
  padding: 16px 18px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: rgba(255, 255, 255, .028);
  transition: border-color .35s, background .35s;
}
.rec:hover { border-color: var(--line-2); background: rgba(255, 255, 255, .045); }
@media (max-width: 760px) { .rec { grid-template-columns: 34px 1fr; } }
.rec-mark { width: 34px; height: 34px; border-radius: 11px; overflow: hidden; }
.rec-t { font-size: 14.6px; font-weight: 560; letter-spacing: -0.024em; line-height: 1.35; }
.rec-why { font-size: 13.2px; color: var(--muted); line-height: 1.5; margin: 7px 0 0; }
.rec-exp {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  font-family: var(--font-mono); font-size: 9.8px; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  color: var(--teal); background: rgba(87, 217, 196, .09); border: 1px solid rgba(87, 217, 196, .2);
}
.rec-act {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet); white-space: nowrap; padding-top: 4px;
}
@media (max-width: 760px) { .rec-act { grid-column: 2; padding-top: 0; } }
.recs-foot { font-size: 12.8px; color: var(--muted-2); margin: 18px 0 0; }

/* the timeline. NB: prefixed run-/step- because .stage is the hero constellation */
.run-line { list-style: none; margin: 0; padding: 0 0 0 46px; position: relative; }
@media (max-width: 560px) { .run-line { padding-left: 32px; } }
.run-line::before {
  content: ""; position: absolute; left: 15px; top: 24px; bottom: 30px; width: 2px;
  background: var(--line);
  border-radius: 2px;
}
@media (max-width: 560px) { .run-line::before { left: 9px; } }
.run-line::after {
  content: ""; position: absolute; left: 15px; top: 24px; width: 2px;
  height: var(--run-fill, 0px);
  background: linear-gradient(to bottom, var(--gold), var(--ember) 60%, var(--rose));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(255,122,69,.55);
}
@media (max-width: 560px) { .run-line::after { left: 9px; } }

.run-step { position: relative; padding: 22px 0 24px; }
.stage + .run-step { border-top: 1px solid var(--line); }
.run-step::before {
  content: ""; position: absolute; left: -38px; top: 30px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink-3); border: 2px solid var(--line-2);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
@media (max-width: 560px) { .run-step::before { left: -29px; width: 10px; height: 10px; } }
.run-step.seen::before { background: var(--ember); border-color: var(--ember); box-shadow: 0 0 0 4px rgba(255,122,69,.18); }
.run-step.you-step.seen::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,196,107,.2); }

.step-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 11px; }
.step-num { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--muted-2); }
.step-t { font-size: clamp(1.05rem, 1.6vw, 1.26rem); letter-spacing: -0.032em; font-weight: 570; }
.step-p { font-size: 14.4px; line-height: 1.58; color: var(--muted); margin: 0; max-width: 74ch; }
.step-p em { color: var(--ivory-dim); font-style: normal; font-weight: 500; }

.step-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.step-faces { display: flex; }
.step-faces > span {
  width: 28px; height: 28px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--ink); background: #11141c; margin-left: -9px;
}
.step-faces > span:first-child { margin-left: 0; }
.owner {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  color: var(--teal); background: rgba(87,217,196,.09); border: 1px solid rgba(87,217,196,.2);
}
.owner.ongoing { color: var(--violet); background: rgba(155,140,255,.1); border-color: rgba(155,140,255,.24); }
.owner.needs-you {
  color: #1c1207; background: var(--warm-grad); border-color: transparent; font-weight: 600;
}
.step-cost { font-family: var(--font-mono); font-size: 10.4px; color: var(--muted-2); }

/* you-stages get lifted out of the flow visually */
.run-step.you-step .step-inner {
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,196,107,.26);
  background: linear-gradient(140deg, rgba(255,196,107,.08), rgba(255,122,69,.03));
}
.run-step.you-step .step-p { color: var(--ivory-dim); }

.run-sum {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
@media (max-width: 720px) { .run-sum { grid-template-columns: 1fr 1fr; } }
.sum-cell { padding: 22px 20px; border-right: 1px solid var(--line); }
.sum-cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .sum-cell:nth-child(2n) { border-right: 0; }
  .sum-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.sum-n { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; letter-spacing: -0.05em; line-height: 1; }
.sum-l { font-size: 12.4px; color: var(--muted-2); margin-top: 9px; line-height: 1.4; }

/* ---- what it used to be -------------------------------------------------- */
.before {
  max-width: 940px; margin: clamp(34px, 4vw, 52px) auto 0;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-2);
  background: rgba(255,255,255,.012);
}
.before-head { margin-bottom: 20px; }
.before-title { font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: -0.035em; color: var(--muted); }
.before-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px;
}
@media (max-width: 760px) { .before-list { grid-template-columns: 1fr; } }
.before-list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 13.8px; line-height: 1.45; color: var(--muted-2);
}
.before-list li s { text-decoration-color: rgba(255,122,69,.55); text-decoration-thickness: 1.5px; }
.before-list .x { flex: none; margin-top: 3px; opacity: .8; }

/* ==========================================================================
   outcomes — the ledger, then the aggregate band
   ========================================================================== */
.ledger {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 22px);
  margin-bottom: clamp(20px, 2.4vw, 30px);
}
@media (max-width: 900px) { .ledger { grid-template-columns: 1fr; } }

.led {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.6vw, 32px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255,255,255,.042), rgba(255,255,255,.01));
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
}
.led::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(120% 70% at 20% 0%, rgba(255,196,107,.13), transparent 62%);
  transition: opacity .5s var(--ease);
}
.led:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 36px 76px -44px rgba(0,0,0,.95); }
.led:hover::before { opacity: 1; }

.led-who {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted-2);
}
.led-ic {
  width: 32px; height: 32px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--ember);
  background: rgba(255,122,69,.09); border: 1px solid rgba(255,122,69,.2);
}
.led-ic svg { width: 15px; height: 15px; }

/* the conversion: hours in, something real out */
.led-hrs { display: flex; align-items: baseline; gap: 10px; }
.led-n {
  font-size: clamp(2.1rem, 3.4vw, 2.85rem); font-weight: 600;
  letter-spacing: -0.055em; line-height: 1;
}
.led-per { font-size: 12.8px; color: var(--muted-2); }

.led-became {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0 14px;
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2);
}
.led-became::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--line-2), transparent);
}
.led-became svg { flex: none; color: var(--ember); }

.led-did {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.18rem, 1.9vw, 1.52rem); line-height: 1.28; letter-spacing: -0.018em;
  color: var(--ivory);
  margin: 0 0 auto;
}
/* a general truth about the trade — never a measured result from a person
   who does not exist */
.led-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 20px 0 0; padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 13.2px; line-height: 1.46; color: var(--muted);
}
.led-note svg { flex: none; margin-top: 3px; color: var(--teal); opacity: .8; }

/* the reader's own answer, which is the one that counts */
.yours {
  position: relative; overflow: hidden;
  text-align: center;
  padding: clamp(44px, 6vw, 82px) clamp(22px, 4vw, 48px);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-2);
  /* the scene is atmosphere behind the line, not a picture competing with it */
  background:
    radial-gradient(110% 130% at 50% 0%, rgba(255,196,107,.09), transparent 62%),
    radial-gradient(78% 115% at 50% 48%, rgba(7,8,12,.965) 0%, rgba(7,8,12,.9) 52%, rgba(7,8,12,.76) 100%),
    url("../img/scenes/outdoor-gathering.jpg") center 45% / cover no-repeat;
  margin-bottom: clamp(20px, 2.4vw, 30px);
}
.yours-lbl {
  font-family: var(--font-mono); font-size: 9.6px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}
.yours-line {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.16;
  color: var(--ivory); margin: 16px 0 0;
}
.caret {
  display: inline-block; width: 3px; height: .82em; margin-left: .14em;
  vertical-align: -.06em; border-radius: 2px;
  background: var(--ember);
  animation: blink 1.15s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.yours-sub { font-size: 14px; color: var(--ivory-dim); margin: 16px 0 0; }

.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
}
@media (max-width: 860px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  padding: clamp(20px, 2.2vw, 28px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
@media (min-width: 861px) { .metric { border-bottom: 0; } }
@media (max-width: 860px) { .metric { border-right: 0; } .metric:last-child { border-bottom: 0; } }

.metric-n {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem); font-weight: 600; letter-spacing: -0.055em; line-height: 1;
}
.metric-l { font-size: 12.8px; color: var(--muted); margin-top: 12px; line-height: 1.45; max-width: 22ch; }

/* ==========================================================================
   how it works
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(172deg, rgba(255,255,255,.038), rgba(255,255,255,.01));
  overflow: hidden;
}
.step-n {
  font-family: var(--font-serif); font-size: 3.6rem; line-height: 1;
  background: var(--warm-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .92;
}
.step h3 { font-size: 1.28rem; letter-spacing: -0.035em; margin-top: 16px; }
.step p { font-size: 14.2px; color: var(--muted); line-height: 1.58; margin: 12px 0 0; }
.step-line {
  position: absolute; right: -1px; top: 24%; bottom: 24%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-2), transparent);
}

/* ==========================================================================
   straight answers
   ========================================================================== */
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 900px) { .qa-grid { grid-template-columns: 1fr; } }

.qa {
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: transform .5s var(--ease), border-color .4s;
}
.qa:hover { transform: translateY(-4px); border-color: var(--line-2); }
.qa.hard {
  border-color: rgba(87,217,196,.26);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(87,217,196,.1), transparent 60%),
    linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
}
.qa-q {
  font-size: clamp(1.14rem, 1.8vw, 1.42rem); letter-spacing: -0.035em;
  line-height: 1.22; font-weight: 570; margin: 0;
}
.qa-a { font-size: 14.4px; line-height: 1.6; color: var(--muted); margin: 16px 0 auto; }
.qa-a em { color: var(--ivory-dim); font-style: normal; font-weight: 500; }
.qa-by { display: flex; align-items: center; gap: 11px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.qa-face {
  width: 34px; height: 34px; flex: none; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: #11141c;
}
.qa-name { font-size: 12.8px; font-weight: 550; letter-spacing: -0.02em; }
.qa-role { font-size: 11px; color: var(--muted-2); margin-top: 1px; }

/* ==========================================================================
   pricing
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); align-items: stretch; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 2.8vw, 36px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(172deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  transition: transform .5s var(--ease), border-color .4s;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  border-color: rgba(255,122,69,.34);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(255,122,69,.15), transparent 58%),
    linear-gradient(172deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  box-shadow: 0 50px 110px -58px rgba(255,122,69,.6);
}
.plan-flag {
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-mono); font-size: 9.4px; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  color: #17100a; background: var(--warm-grad); font-weight: 600;
  white-space: nowrap;
}
.plan-name { font-size: 1.22rem; letter-spacing: -0.035em; font-weight: 600; }
.plan-for { font-size: 12.8px; color: var(--muted-2); margin-top: 6px; }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin: 24px 0 4px; }
.plan-price .amt { font-size: clamp(2.2rem, 3.4vw, 2.9rem); font-weight: 600; letter-spacing: -0.055em; line-height: 1; }
.plan-price .per { font-size: 13px; color: var(--muted-2); }
.plan-note { font-size: 12.4px; color: var(--muted-2); }
.plan-team { display: flex; align-items: center; gap: 10px; margin: 22px 0; padding: 12px 0; border-block: 1px solid var(--line); }
.plan-feats { list-style: none; padding: 0; margin: 4px 0 26px; display: grid; gap: 11px; }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.8px; color: var(--ivory-dim); line-height: 1.48; }
.plan-feats .tick { flex: none; margin-top: 3px; }
.plan .btn { justify-content: center; margin-top: auto; }

/* ==========================================================================
   cta + footer
   ========================================================================== */
.cta-wrap { position: relative; overflow: hidden; }
.cta-card {
  position: relative; z-index: 2;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(255,122,69,.2), transparent 58%),
    radial-gradient(85% 120% at 50% 45%, rgba(8,9,14,.96) 0%, rgba(8,9,14,.91) 55%, rgba(8,9,14,.8) 100%),
    url("../img/scenes/team-celebration.jpg") center 45% / cover no-repeat;
  padding: clamp(40px, 6vw, 82px) clamp(24px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 60px 140px -70px rgba(255,122,69,.6);
}
.cta-card h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -0.05em; line-height: 1.04; }
.cta-card .lede { margin: 22px auto 0; text-align: center; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-faces { display: flex; justify-content: center; margin-bottom: 30px; }
.cta-faces > span {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2px solid #0c0f16; background: #11141c; margin-left: -13px;
  transition: transform .5s var(--ease);
}
.cta-faces > span:first-child { margin-left: 0; }
.cta-card:hover .cta-faces > span { transform: translateY(-4px); }
.cta-fine { font-size: 12.4px; color: var(--muted); margin-top: 22px; }

.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--ink-2); }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-about { font-size: 13.4px; color: var(--muted-2); line-height: 1.6; margin-top: 16px; max-width: 34ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); font-weight: 400; }
.foot-col ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.foot-col a { font-size: 13.6px; color: var(--muted); transition: color .25s; }
.foot-col a:hover { color: var(--ivory); }
.foot-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12.4px; color: var(--muted-2);
}

/* ==========================================================================
   scroll reveal
   ========================================================================== */
.rise { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rise.seen { opacity: 1; transform: none; }
.rise[data-d="1"] { transition-delay: .08s; }
.rise[data-d="2"] { transition-delay: .16s; }
.rise[data-d="3"] { transition-delay: .24s; }
.rise[data-d="4"] { transition-delay: .32s; }
.rise[data-d="5"] { transition-delay: .4s; }
.rise[data-d="6"] { transition-delay: .48s; }

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

/* ---- small-screen overrides (kept last so they win the cascade) ---- */
@media (max-width: 620px) { .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; } }
