:root {
  --ground: #f6f5f1;
  --paper: #ffffff;
  --ink: #111827;
  --ink-2: #4b5563;
  --line: #e5e3dc;
  --tile: #0b0e12;
  --emerald: #10b981;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --violet: #8b5cf6;
  --spectrum: linear-gradient(90deg, #10b981, #3b82f6 34%, #f59e0b 67%, #8b5cf6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: Inter, -apple-system, "SF Pro Text", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 7vw, 112px); }

.draft-bar {
  background: #fff7e0; color: #7a5200; text-align: center;
  font-size: 13px; padding: 6px 16px; border-bottom: 1px solid #f2dfa8;
}
.tbc {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: #9a6700; background: #fff3cd;
  border: 1px solid #f2dfa8; border-radius: 4px; padding: 0 6px; margin-left: 6px;
  vertical-align: middle; line-height: 1.7;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(246,245,241,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 50px; width: auto; }
nav { display: flex; gap: 28px; }
nav a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink-2); }
nav a:hover { color: var(--ink); }

/* Type */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 16px;
}
.eyebrow.light { color: #9ca3af; }
h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.05; font-weight: 800; letter-spacing: -.03em; max-width: 17ch; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; max-width: 24ch; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
p + p { margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 10px; transition: transform .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-line { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-bright { background: #fff; color: var(--tile); }

/* Hero */
.hero { padding: 112px 0 96px; position: relative; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--spectrum);
}
.lede { font-size: 21px; color: var(--ink-2); max-width: 46ch; margin-top: 28px; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* Belief */
.belief { padding: 88px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
blockquote { font-size: clamp(24px, 3.2vw, 40px); line-height: 1.32; font-weight: 600; letter-spacing: -.018em; max-width: none; }
.attrib { margin-top: 20px; color: var(--ink-2); font-size: 15px; }

/* Products */
.products { padding: 104px 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.product { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.tile { background: var(--tile); height: 170px; display: flex; align-items: center; justify-content: center; padding: 36px 32px; }
.tile img { max-height: 76px; width: auto; }
.product-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.product-body p { font-size: 16px; color: var(--ink-2); }
.role { font-size: 13px !important; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink) !important; margin: 6px 0 12px; }
.product-body .link { margin-top: auto; padding-top: 20px; }
.link { font-weight: 600; font-size: 15px; text-decoration: none; }
.link:hover { text-decoration: underline; }
.link.muted { color: #9ca3af; }

/* Company */
.company { padding: 104px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 72px; align-items: start; }
.company p { color: var(--ink-2); max-width: 60ch; }
.minor { margin: 40px 0 14px; }
.principles { list-style: none; }
.principles li { padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 16px; }
.principles strong { color: var(--ink); }
.facts { background: var(--ground); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.facts h3 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.facts dl { display: grid; grid-template-columns: 1fr; }
.facts dt { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-top: 16px; }
.facts dd { font-size: 16px; font-weight: 500; }

/* Leadership */
.leadership { padding: 96px 0; }
.person { display: flex; gap: 28px; align-items: flex-start; max-width: 760px; }
.avatar {
  flex: none; width: 96px; height: 96px; border-radius: 50%;
  background: var(--tile); color: #fff; font-weight: 800; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--ground), 0 0 0 5px var(--emerald);
}
.person p { color: var(--ink-2); }
.person .role { margin: 4px 0 12px; }

/* Investors */
.investors { background: var(--tile); color: #fff; padding: 104px 0; position: relative; }
.investors::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); }
.investors-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.investors p { color: #cbd5e1; max-width: 50ch; }
.investors .small { font-size: 13px; color: #6b7280; margin-top: 24px; }
.room-card {
  background: #141a22; border: 1px solid #243447; border-radius: 18px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.room-mark { width: 44px; height: 44px; }
.link.light { color: #cbd5e1; }

/* Contact */
.contact { padding: 104px 0; }
.contact p { color: var(--ink-2); }
.big-mail { font-size: 22px; font-weight: 600; margin-top: 14px; }
.big-mail a { color: var(--ink); }
.addr p { font-size: 16px; }
.addr p + p { margin-top: 22px; }
.addr strong { color: var(--ink); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { height: 30px; width: auto; }
.site-footer p { font-size: 13px; color: #6b7280; max-width: 70ch; }
.footer-links a { text-decoration: none; }

/* One-job flow */
.flow { margin-top: 56px; }
.flow-title { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; }
.flow-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); }
.flow-steps li { padding: 24px 24px 22px; border-left: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.flow-steps li:first-child { border-left: 0; }
.flow-steps li:not(:last-child)::after { content: "→"; position: absolute; right: -11px; top: 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); font-size: 12px; display: flex; align-items: center; justify-content: center; color: var(--ink-2); z-index: 1; }
.flow-steps .step { width: 26px; height: 26px; border-radius: 50%; background: var(--tile); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.flow-steps strong { font-size: 17px; }
.flow-steps p { font-size: 14px; color: var(--ink-2); margin: 6px 0 14px; }
.flow-steps em { margin-top: auto; font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Timeline */
.timeline { list-style: none; border-left: 2px solid var(--line); margin-left: 4px; }
.timeline li { position: relative; padding: 0 0 18px 24px; color: var(--ink-2); font-size: 16px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); }
.timeline li:last-child::before { background: var(--emerald); border-color: var(--emerald); }
.timeline span { display: block; font-weight: 800; color: var(--ink); font-size: 15px; letter-spacing: .02em; }

/* Story / journey */
.story { padding: 112px 0; }
.story h2 { max-width: 30ch; }
.journey { list-style: none; margin-top: 56px; position: relative; }
.journey::before { content: ""; position: absolute; left: 150px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.journey li { display: grid; grid-template-columns: 150px 1fr; gap: 0 44px; padding-bottom: 40px; position: relative; }
.journey li::before { content: ""; position: absolute; left: 144px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--ground); border: 2px solid var(--ink); }
.journey .yr { font-weight: 800; font-size: 18px; letter-spacing: -.01em; padding-right: 24px; }
.journey .yr .tbc { display: block; width: fit-content; margin: 6px 0 0; }
.journey h3 { font-size: 19px; margin-bottom: 6px; }
.journey p { color: var(--ink-2); font-size: 16px; max-width: 64ch; }
.journey li.pain::before { border-color: var(--amber); }
.journey li.setback::before { border-color: var(--violet); background: var(--violet); }
.journey li.now::before { background: var(--emerald); border-color: var(--emerald); box-shadow: 0 0 0 5px rgba(16,185,129,.18); }
.journey li.now h3 { color: var(--ink); }

/* Future */
.future { padding: 112px 0; background: var(--paper); border-top: 1px solid var(--line); position: relative; }
.future-lede { font-size: 20px; color: var(--ink-2); max-width: 62ch; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
.pillar { border-top: 2px solid var(--ink); padding-top: 22px; }
.pillar .num { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: #9ca3af; }
.pillar h3 { margin: 10px 0 10px; }
.pillar p { color: var(--ink-2); font-size: 16px; }
.phases { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.phase { padding: 26px 24px; background: var(--ground); border-left: 1px solid var(--line); }
.phase:first-child { border-left: 0; }
.phase .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6b7280; margin-bottom: 12px; }
.phase strong { display: block; font-size: 17px; margin-bottom: 6px; }
.phase p { font-size: 14px; color: var(--ink-2); }
.phase.now { background: var(--tile); color: #fff; position: relative; }
.phase.now::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--spectrum); }
.phase.now .tag { color: var(--emerald); }
.phase.now p { color: #cbd5e1; }
.future-close { margin-top: 56px; font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; letter-spacing: -.015em; max-width: 34ch; }

/* Phone */
@media (max-width: 880px) {
  .product-grid, .split, .investors-inner, .pillars, .phases, .flow-steps { grid-template-columns: 1fr; gap: 32px; }
  .phases { gap: 0; }
  .phase { border-left: 0; border-top: 1px solid var(--line); }
  .flow-steps { gap: 0; }
  .flow-steps li { border-left: 0; border-top: 1px solid var(--line); }
  .flow-steps li:first-child { border-top: 0; }
  .flow-steps li::after { display: none; }
  .story { padding: 72px 0; }
  .journey::before { left: 6px; }
  .journey li { grid-template-columns: 1fr; padding-left: 32px; }
  .journey li::before { left: 0; }
  .journey .yr { margin-bottom: 4px; }
  .future { padding: 72px 0; }
  nav { display: none; }
  .hero { padding: 72px 0 64px; }
  .products, .company, .investors, .contact { padding: 72px 0; }
  .person { flex-direction: column; }
  .wrap { padding: 0 20px; }
}

.person .edu { font-size: 14px; color: #6b7280; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

.future h2 { max-width: 30ch; }
.future-close { line-height: 1.3; }

.footer-logo { align-self: flex-start; height: 34px; width: auto; }

/* Ambassador teaser */
.amb-teaser { padding: 104px 0; border-top: 1px solid var(--line); }
.amb-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.amb-teaser p { color: var(--ink-2); max-width: 52ch; }
.amb-film { position: relative; display: block; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.amb-film img { width: 100%; }
.amb-film span { position: absolute; left: 16px; bottom: 16px; background: rgba(11,14,18,.85); color: #fff; font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 999px; text-decoration: none; }
@media (max-width: 880px) { .amb-inner { grid-template-columns: 1fr; gap: 28px; } .amb-teaser { padding: 72px 0; } }

/* Industries line */
.industries { color: var(--ink-2); max-width: 70ch; margin-top: -4px; font-size: 18px; }

/* Why not build your own */
.connected { padding: 112px 0; border-top: 1px solid var(--line); }
.connected h2 { max-width: 26ch; }
.connected-lede { font-size: 20px; color: var(--ink-2); max-width: 64ch; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.compare .col { border-radius: 16px; padding: 30px 32px; }
.compare .alone { background: var(--paper); border: 1px solid var(--line); }
.compare .together { background: var(--tile); color: #fff; position: relative; overflow: hidden; }
.compare .together::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); }
.compare h3 { margin-bottom: 14px; }
.compare ul { list-style: none; }
.compare li { padding: 11px 0 11px 26px; border-top: 1px solid var(--line); font-size: 16px; position: relative; color: var(--ink-2); }
.compare .together li { border-top-color: #243447; color: #cbd5e1; }
.compare .alone li::before { content: "–"; position: absolute; left: 4px; color: #9ca3af; }
.compare .together li::before { content: "✓"; position: absolute; left: 2px; color: var(--emerald); font-weight: 700; }
.connected-anchor { margin-top: 48px; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.015em; }
.tools { margin-top: 48px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px 32px; }
.tools h3 { margin-bottom: 18px; }
.tool-rows { display: flex; flex-direction: column; gap: 14px; }
.tool-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.tool-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; width: 118px; flex: none; }
.tool-tag.now { color: #047857; }
.tool-tag.soon { color: #9a6700; }
.chip { font-size: 15px; font-weight: 500; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--ink); }
.chip.dim { border: 1px dashed #9ca3af; color: var(--ink-2); }
@media (max-width: 880px) { .compare { grid-template-columns: 1fr; } .connected { padding: 72px 0; } .tool-tag { width: 100%; } }

/* Agencies */
.agencies { background: var(--tile); color: #fff; padding: 112px 0; position: relative; }
.agencies::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); }
.agencies h2 { color: #fff; max-width: 32ch; }
.ag-lede { color: #cbd5e1; font-size: 20px; max-width: 64ch; }
.ag-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.ag-steps li { background: #141a22; border: 1px solid #243447; border-radius: 16px; padding: 26px; }
.ag-steps span { display: inline-flex; width: 30px; height: 30px; border-radius: 50%; background: var(--emerald); color: var(--tile); font-weight: 800; font-size: 14px; align-items: center; justify-content: center; margin-bottom: 14px; }
.ag-steps h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.ag-steps p { color: #94a3b8; font-size: 15px; }
.ag-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.ag-foot p { color: #cbd5e1; font-size: 15px; border-top: 1px solid #243447; padding-top: 16px; }
.ag-foot b { color: #fff; }
@media (max-width: 880px) { .ag-steps, .ag-foot { grid-template-columns: 1fr; } .agencies { padding: 72px 0; } }

/* Departments and group companies */
.group { padding: 104px 0; }
.group h2 { max-width: 30ch; }
.group-lede { font-size: 20px; color: var(--ink-2); max-width: 64ch; }
.group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.gcard { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 30px 32px; }
.gcard h3 { margin: 14px 0 10px; }
.gcard p { color: var(--ink-2); font-size: 16px; }
.gtag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.gtag.live { background: rgba(16,185,129,.12); color: #047857; }
.gtag.build { background: #fff3cd; color: #9a6700; }
@media (max-width: 880px) { .group-grid { grid-template-columns: 1fr; } .group { padding: 72px 0; } }

/* ===== Six-chapter layout (Sep 27) ===== */
/* 3 · Who it's for */
.who { background: var(--tile); color: #fff; padding: 112px 0; position: relative; }
.who::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); }
.who h2 { color: #fff; max-width: 30ch; }
.who-lede { color: #cbd5e1; font-size: 20px; max-width: 64ch; }
.who-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 40px; border: 1px solid #243447; border-radius: 16px; overflow: hidden; counter-reset: s; }
.who-steps li { padding: 22px 24px; border-left: 1px solid #243447; display: flex; flex-direction: column; gap: 6px; counter-increment: s; }
.who-steps li:first-child { border-left: 0; }
.who-steps li::before { content: counter(s); width: 26px; height: 26px; border-radius: 50%; background: var(--emerald); color: var(--tile); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.who-steps b { color: #fff; font-size: 17px; }
.who-steps span { color: #94a3b8; font-size: 14px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.wcard { background: #141a22; border: 1px solid #243447; border-radius: 16px; padding: 26px 28px; }
.wcard h3 { color: #fff; font-size: 18px; margin: 12px 0 8px; }
.wcard p { color: #94a3b8; font-size: 15px; }
.wcard .gtag.live { background: rgba(16,185,129,.15); color: #6ee7b7; }
.who-industries { margin-top: 40px; color: #cbd5e1; font-size: 17px; max-width: 72ch; border-top: 1px solid #243447; padding-top: 24px; }

/* 4 · Why it wins */
.why { padding: 112px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.why-lede { font-size: 20px; color: var(--ink-2); max-width: 64ch; }
.why .pillars { margin-top: 56px; }
.why .tools { margin-top: 56px; background: var(--ground); }
.why .phases { margin-top: 24px; }

/* 5 · Our story */
.story-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
.story-grid .journey { margin-top: 0; }
.story-grid .journey li { padding-bottom: 28px; }
.story-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.person-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.person-card .avatar { width: 72px; height: 72px; font-size: 22px; margin-bottom: 16px; }
.person-card .role { margin: 4px 0 10px; }
.person-card p { color: var(--ink-2); font-size: 15px; }
.person-card .edu { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; }

/* 6 · Join us */
.join { background: var(--tile); color: #fff; padding: 104px 0 88px; position: relative; }
.join::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--spectrum); }
.join h2 { color: #fff; }
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.door { background: #141a22; border: 1px solid #243447; border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.door-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--emerald); }
.door h3 { color: #fff; font-size: 22px; }
.door p { color: #94a3b8; font-size: 15px; }
.door .btn { margin-top: auto; }
.door-mail a { color: #fff; font-weight: 600; font-size: 16px; }
.door-addr { font-size: 13px !important; margin-top: auto; }
.join-legal { margin-top: 28px; font-size: 13px; color: #6b7280; }

@media (max-width: 880px) {
  .who-steps, .who-grid, .doors, .story-grid { grid-template-columns: 1fr; }
  .who-steps li { border-left: 0; border-top: 1px solid #243447; }
  .who-steps li:first-child { border-top: 0; }
  .story-side { position: static; }
  .who, .why, .join { padding: 72px 0; }
}

.door .door-tag { color: var(--emerald); font-size: 12px; }

/* Who it's for · six patterns */
.who h2 { max-width: 26ch; }
.shapes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border: 1px solid #243447; border-radius: 18px; overflow: hidden; }
.shape { padding: 28px 28px 30px; border-right: 1px solid #243447; border-bottom: 1px solid #243447; display: flex; flex-direction: column; gap: 10px; }
.shape:nth-child(3n) { border-right: 0; }
.shape:nth-child(n+4) { border-bottom: 0; }
.shape-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--emerald); }
.shape h3 { color: #fff; font-size: 20px; }
.shape-how { color: #cbd5e1; font-size: 15px; }
.shape-who { color: #6b7280; font-size: 13.5px; margin-top: auto; padding-top: 8px; }
@media (max-width: 880px) { .shapes { grid-template-columns: 1fr; } .shape { border-right: 0; border-bottom: 1px solid #243447 !important; } .shape:last-child { border-bottom: 0 !important; } }

.who h2 { max-width: 34ch; }

/* Reach map */
.reach { padding: 104px 0; background: var(--paper); border-top: 1px solid var(--line); }
.reach h2 { max-width: 30ch; }
.reach-lede { font-size: 19px; color: var(--ink-2); max-width: 64ch; }
.reach-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; margin-top: 40px; align-items: center; }
.map-box { background: var(--ground); border: 1px solid var(--line); border-radius: 18px; padding: 12px; }
.map-box svg { width: 100%; height: auto; display: block; }
.phases-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ph { display: flex; gap: 14px; align-items: flex-start; }
.ph .dot { flex: none; width: 14px; height: 14px; border-radius: 50%; margin-top: 4px; }
.ph b { font-size: 16px; }
.ph p { font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.ph.op .dot { background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.2); }
.ph.p1 .dot { background: #3b82f6; } .ph.p2 .dot { background: #f59e0b; } .ph.p3 .dot { background: #8b5cf6; } .ph.p4 .dot { background: #0e7490; }
.ph.ex .dot { background: #94a3b8; opacity: .7; }
.reach-note { margin-top: 24px; font-size: 13px; color: #6b7280; }
@media (max-width: 880px) { .reach-grid { grid-template-columns: 1fr; } .reach { padding: 72px 0; } }

.map-box { position: relative; }
.inset { position: absolute; right: 14px; top: 14px; width: 31%; background: rgba(246,245,241,.96); border: 1px solid var(--line); border-radius: 12px; padding: 8px 8px 4px; box-shadow: 0 6px 20px rgba(17,24,39,.08); }
.inset p { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #047857; padding: 2px 4px 4px; }
.inset svg { width: 100%; height: auto; display: block; }
@media (max-width: 880px) { .inset { position: static; width: 100%; margin-top: 10px; } }

/* Sep 27 review round */
.belief { padding: 64px 0; }
.belief blockquote { font-size: clamp(19px, 2vw, 24px); font-weight: 500; line-height: 1.5; letter-spacing: -.005em; color: var(--ink-2); max-width: 62ch; }
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-row > div { padding: 22px 20px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.trust-row > div:first-child { border-left: 0; padding-left: 0; }
.trust-row b { font-size: 14px; }
.trust-row span { font-size: 13px; color: var(--ink-2); }
.dev { margin-top: 40px; }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dev-card { display: flex; gap: 18px; align-items: center; background: var(--paper); border: 1px dashed #c9c6bc; border-radius: 16px; padding: 16px; }
.dev-tile { flex: none; width: 200px; height: 96px; background: var(--tile); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 16px; }
.dev-tile img { max-height: 56px; width: auto; }
.dev-card h3 { font-size: 17px; margin-bottom: 4px; }
.dev-card p { font-size: 14.5px; color: var(--ink-2); }
.ph.p2b .dot { background: #db2777; }
@media (max-width: 880px) { .trust-row, .dev-grid { grid-template-columns: 1fr; } .trust-row > div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; } .trust-row > div:first-child { border-top: 0; } .dev-card { flex-direction: column; align-items: flex-start; } }

.dev-tile img { max-width: 100%; height: auto; max-height: 56px; }

.hero .lede { max-width: 66ch; }

/* Who it's for · maze */
.who-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: center; }
.who-head .who-lede + .who-lede { margin-top: 14px; }
.who-maze { width: 100%; max-width: 380px; justify-self: end; filter: drop-shadow(0 0 60px rgba(59,130,246,.18)); }
@media (max-width: 880px) { .who-head { grid-template-columns: 1fr; gap: 28px; } .who-maze { max-width: 200px; justify-self: start; } }

.who-industries { max-width: none; }
@media (min-width: 1100px) { .who-industries { white-space: nowrap; } }

.who-head { grid-template-columns: 2.1fr 1fr; gap: 40px; }
.who-head h2 { max-width: none; }
.who-maze { max-width: 320px; }

h2.two-line span { display: block; }
.why h2.two-line { max-width: none; }

.who h2.who-title { max-width: none; margin-bottom: 8px; }
@media (min-width: 1000px) { .who h2.who-title { white-space: nowrap; } }
.who-head { align-items: center; }

.reach h2.reach-title { max-width: none; }

.who-head { align-items: start; margin-top: 12px; }

/* Reach · large map + compliance */
.map-wide { margin-top: 36px; padding: 16px; }
.map-wide .inset { width: 27%; }
.rule-line { margin-top: 22px; font-size: 16px; color: var(--ink-2); border-left: 3px solid var(--emerald); padding-left: 14px; }
.rule-line b { color: var(--ink); }
.regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.rg { background: var(--ground); border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.rg h3 { font-size: 15px; line-height: 1.35; }
.rg-tag { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.rg-tag .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.rg.op .dot { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.2); } .rg.p1 .dot { background: #3b82f6; } .rg.p2 .dot { background: #f59e0b; } .rg.p2b .dot { background: #db2777; } .rg.p3 .dot { background: #8b5cf6; } .rg.p4 .dot { background: #0e7490; } .rg.ex .dot { background: #94a3b8; }
.rg-note { font-size: 13.5px; color: var(--ink-2); }
.rg-law { font-size: 12.5px; color: var(--ink-2); margin-top: auto; padding-top: 8px; border-top: 1px dashed var(--line); }
.rg-law::before { content: "Before entry: "; font-weight: 700; color: var(--ink); }
@media (max-width: 1000px) { .regions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .regions { grid-template-columns: 1fr; } }

.rg.op .rg-law::before { content: "Rules we follow: "; }

/* Founder pull quote, newspaper style */
.pull { max-width: 820px; margin: 0; position: relative; padding-left: 56px; }
.pull::before { content: "\201C"; position: absolute; left: -6px; top: -34px; font-family: 'Source Serif 4', Georgia, serif; font-size: 120px; line-height: 1; color: var(--emerald); opacity: .9; }
.pull blockquote { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; font-size: clamp(20px, 2.1vw, 26px); line-height: 1.55; letter-spacing: 0; color: var(--ink); max-width: none; }
.pull figcaption { text-align: right; margin-top: 18px; font-size: 15px; color: var(--ink-2); font-weight: 500; letter-spacing: .01em; }
@media (max-width: 880px) { .pull { padding-left: 34px; } .pull::before { font-size: 84px; top: -22px; } }

/* Who it's for · maze tucked top-right, matched to the text block */
.who-head { grid-template-columns: 1fr auto; gap: 40px; align-items: start; margin-top: 0; }
.who-maze { width: 250px; max-width: none; justify-self: end; margin-top: 4px; }
.who h2.who-title { white-space: normal; }
@media (min-width: 1200px) { .who h2.who-title { white-space: nowrap; } }
@media (max-width: 1100px) { .who-maze { width: 190px; } }
@media (max-width: 880px) { .who-head { grid-template-columns: 1fr; } .who-maze { width: 160px; justify-self: start; order: -1; } }

.who h2.who-title { margin-bottom: 16px; }

.future-close.two-line { max-width: none; }
.future-close.two-line span { display: block; }

.story h2.story-title { max-width: none; }

/* Pull quote centred (Isaac, 27 Sep) */
.pull { margin: 0 auto; padding-left: 0; text-align: center; max-width: 780px; padding-top: 64px; }
.pull::before { left: 50%; transform: translateX(-50%); top: -6px; }
.pull figcaption { text-align: center; }
@media (max-width: 880px) { .pull { padding-top: 48px; } .pull::before { top: -6px; } }

/* Attribution: newspaper style, right-aligned under the centred quote */
.pull figcaption { text-align: right; margin-top: 22px; font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.pull figcaption span { display: block; font-size: 14px; font-weight: 500; color: var(--ink-2); margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }

/* Why it wins · hub graphic */
.why-head { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.why-head .why-lede { max-width: 54ch; text-wrap: pretty; }
.why-hub { width: 100%; max-width: 520px; justify-self: end; }
@media (max-width: 960px) { .why-head { grid-template-columns: 1fr; } .why-hub { justify-self: start; max-width: 440px; } }

.hero .lede { max-width: 74ch; }

.hero .lede { max-width: none; }

.lede-line { display: block; }
@media (min-width: 1200px) { .hero .lede { font-size: 19px; } .lede-line { white-space: nowrap; } }

/* Hero factory (experiment) */
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: end; }
.hero-art { width: 100%; height: auto; aspect-ratio: 440/380; }
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { max-width: 280px; } }
/* hero factory: pinned top-right beside the headline */
.hero .wrap.hero-grid { display: block; position: relative; }
.hero-art { position: absolute; right: clamp(20px, 7vw, 112px); top: -24px; width: 330px; pointer-events: none; }
@media (max-width: 1180px) { .hero-art { width: 250px; top: -10px; opacity: .9; } }
@media (max-width: 960px) { .hero-art { position: static; display: block; width: 220px; margin: 0 0 12px; } }
.hero-art { aspect-ratio: 440/540; top: -150px; width: 300px; right: clamp(16px, 5vw, 80px); }
@media (max-width: 1180px) { .hero-art { width: 230px; top: -120px; } }
@media (max-width: 960px) { .hero-art { width: 200px; margin: -40px 0 8px; } }
/* factory v2: static corporate */
.hero-art { aspect-ratio: 520/560; top: -130px; width: 320px; }
@media (max-width: 1180px) { .hero-art { width: 240px; top: -100px; } }
.hero-art { aspect-ratio: 540/630; top: -96px; width: 330px; }
@media (max-width: 1180px) { .hero-art { width: 250px; top: -70px; } }
@media (max-width: 960px) { .hero-art { width: 210px; margin: -20px 0 8px; } }

/* Hero: maze only, matched to headline height (Isaac) */
.hero .wrap.hero-grid { display: block; }
.hero-art { display: none; }
.hero-title-row { display: flex; justify-content: space-between; align-items: stretch; gap: 40px; }
.hero-title-row h1 { margin: 0; line-height: 1.02; }
.hero-maze { align-self: stretch; height: auto; width: auto; aspect-ratio: 1 / 1; flex: none; display: block; }
@media (max-width: 760px) { .hero-maze { display: none; } }
.hero-title-row { align-items: flex-start; }
.hero-title-row h1 { flex: 0 1 auto; max-width: 17ch; }
.hero-maze { align-self: flex-start; height: calc(clamp(38px, 6vw, 68px) * 1.02 * 3); width: auto; margin-top: calc(clamp(38px, 6vw, 68px) * 0.12); }
.hero-maze { --f: clamp(38px, 6vw, 68px); height: calc(var(--f) * 3.62); margin-top: calc(var(--f) * -0.26); margin-right: calc(var(--f) * -0.40); }
.hero-maze { margin-bottom: calc(var(--f) * -0.30); }

/* Spectrum words in the hero line */
.spectrum-text { background: linear-gradient(90deg, #10B981 0%, #3B82F6 26%, #F59E0B 55%, #EF4444 78%, #8B5CF6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-weight: 600; }

.sp { -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-weight: 600; }
.sp1 { background-image: linear-gradient(90deg, #10B981, #10B981 60%, #3B82F6); }
.sp2 { background-image: linear-gradient(90deg, #3B82F6, #3B82F6 60%, #F59E0B); }
.sp3 { background-image: linear-gradient(90deg, #F59E0B, #F59E0B 60%, #EF4444); }
.sp4 { background-image: linear-gradient(90deg, #EF4444, #EF4444 60%, #8B5CF6); }
.sp5 { background-image: linear-gradient(90deg, #8B5CF6, #8B5CF6); }

.slogan { color: #fff; font-weight: 700; }

.why-hub { max-width: 600px; }
.why-head { grid-template-columns: 1fr 1.1fr; }

.why-head { grid-template-columns: minmax(0, 500px) 1fr; gap: 24px; }
.why-hub { max-width: 680px; width: 100%; margin-right: -24px; }

/* Reach map · dark storytelling version */
.map-dark { background: #0B0E12; border-color: #0B0E12; position: relative; padding: 18px 18px 46px; }
.map-dark .inset { display: none; }
.map-legend { position: absolute; left: 22px; bottom: 16px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: #CBD5E1; font-weight: 600; }
.map-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; vertical-align: 0; }
.map-legend i.ring { background: transparent; border: 2px solid #10B981; width: 10px; height: 10px; }
.map-note { position: absolute; right: 22px; bottom: 16px; font-size: 12px; color: #64748B; margin: 0; }
.rg.p4 .dot { background: #14B8A6; }

.rg .nzdot { background: #22D3EE !important; margin-left: -4px; }
