@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/archivo.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibmplexmono-400.woff2") format("woff2");
}

:root {
  --ink: #16161a;
  --muted: #5d5a54;
  --petrol: #126e72;
  --petrol-dark: #0d5659;
  --gold: #a8792c;
  --paper: #f6f4ef;
  --soft: #eeece6;
  --line: #dedbd4;
  --white: #fff;
  --success: #1f7a5c;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-stretch: 115%; line-height: 1.05; }
h1 { max-width: 900px; font-size: clamp(42px, 6vw, 76px); letter-spacing: -3.2px; }
h2 { max-width: 820px; font-size: clamp(34px, 4.3vw, 55px); letter-spacing: -2px; }
h3 { font-size: 23px; letter-spacing: -.5px; }
p { margin: 0; }
[id] { scroll-margin-top: 100px; }
:focus-visible { outline: 3px solid var(--petrol); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--petrol);
  color: #fff;
}
.skip:focus { top: 36px; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { max-width: 780px; }
.section { padding: 100px 0; }
.section-soft { background: var(--paper); }
.section-dark { background: var(--ink); color: #fff; }
.section-gold { background: #f4ead8; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--petrol);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 17px;
  height: 17px;
  background:
    linear-gradient(var(--petrol), var(--petrol)) 0 0/5px 5px no-repeat,
    linear-gradient(#d3cfc6, #d3cfc6) 100% 0/5px 5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100%/5px 5px no-repeat,
    linear-gradient(var(--petrol), var(--petrol)) 100% 100%/5px 5px no-repeat;
}
.section-dark .eyebrow { color: #d3aa62; }
.lede { max-width: 730px; margin-top: 26px; color: #3f3d39; font-size: 20px; line-height: 1.55; }
.section-dark .lede { color: #d0cdc6; }
.micro { color: #767168; font-size: 12px; }
.accent { color: var(--petrol); }

@keyframes brand-cell {
  0%, 8%, 100% { background: var(--line); transform: scale(.82); }
  22%, 72% { background: var(--petrol); transform: scale(1); }
}
@keyframes brand-cell-gold {
  0%, 8%, 100% { background: var(--line); transform: scale(.82); }
  22%, 48% { background: var(--petrol); transform: scale(1); }
  58%, 72% { background: var(--gold); transform: scale(1); }
}
@keyframes page-loader-exit {
  to { opacity: 0; visibility: hidden; }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  animation: page-loader-exit .28s ease .95s forwards;
  transition: opacity .28s ease, visibility .28s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader-inner { display: grid; justify-items: center; gap: 17px; }
.page-loader-label {
  color: #777269;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.brand-loader-grid {
  display: inline-grid;
  grid-template-columns: repeat(3, 18px);
  gap: 7px;
}
.brand-loader-grid span {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--line);
  animation: brand-cell 1.55s ease-in-out infinite;
}
.brand-loader-grid span:nth-child(7) { animation-delay: 0s; }
.brand-loader-grid span:nth-child(4) { animation-delay: .08s; }
.brand-loader-grid span:nth-child(8) { animation-delay: .16s; }
.brand-loader-grid span:nth-child(1) { animation-delay: .24s; }
.brand-loader-grid span:nth-child(5) { animation-name: brand-cell-gold; animation-delay: .32s; }
.brand-loader-grid span:nth-child(9) { animation-delay: .4s; }
.brand-loader-grid span:nth-child(2) { animation-delay: .48s; }
.brand-loader-grid span:nth-child(6) { animation-delay: .56s; }
.brand-loader-grid span:nth-child(3) { animation-name: brand-cell-gold; animation-delay: .64s; }
.brand-loader-grid span:nth-child(7) { animation-name: brand-cell-gold; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.nav-shell { min-height: 80px; display: flex; align-items: center; gap: 24px; }
.logo {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 10px;
  flex: none;
}
.logo-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 8px);
  gap: 4px;
  flex: none;
}
.logo-mark i { width: 8px; height: 8px; border-radius: 2px; background: #d8d5cf; }
.logo-mark i:nth-child(3),
.logo-mark i:nth-child(5),
.logo-mark i:nth-child(7) { background: var(--petrol); }
.logo-wordmark { display: inline-flex; align-items: baseline; font-size: 22px; letter-spacing: -.9px; line-height: 1; }
.logo-wordmark strong { font-weight: 800; }
.logo-wordmark span { color: #3a3a40; font-weight: 400; }
.footer .logo-wordmark { font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links a {
  position: relative;
  padding: 29px 0 27px;
  color: #3d3b37;
  font-size: 13px;
  font-weight: 650;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--petrol); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--petrol);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 8px 24px 18px; }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--soft); font-weight: 650; }
.mobile-menu a[aria-current="page"] { color: var(--petrol); }
.mobile-menu .mobile-menu-cta {
  margin-top: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 9px;
  background: var(--petrol);
  color: #fff;
  text-align: center;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1.5px solid var(--petrol);
  border-radius: 9px;
  background: var(--petrol);
  color: #fff;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--petrol-dark); }
.btn-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--soft); }
.btn-light { border-color: #fff; background: #fff; color: var(--ink); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }

.hero { padding: 50px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(350px, .8fr); gap: 55px; align-items: center; }
.hero h1 { font-size: clamp(46px, 4.7vw, 60px); line-height: .98; }
.hero .lede { max-width: 660px; margin-top: 20px; font-size: 18px; }
.hero .btn-row { margin-top: 22px; }
.hero-visual {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #eceae4;
  overflow: hidden;
  box-shadow: 0 24px 70px -48px rgba(22,22,26,.55);
}
.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.chat-product { display: flex; align-items: center; gap: 9px; }
.chat-product > span:last-child { display: grid; }
.chat-product strong { font-size: 12px; line-height: 1.2; }
.chat-product small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.chat-product-mark, .chat-bot-avatar {
  display: inline-grid;
  grid-template-columns: repeat(3,4px);
  gap: 2px;
  flex: none;
}
.chat-product-mark i, .chat-bot-avatar i { width: 4px; height: 4px; border-radius: 1px; background: #d3d0c9; }
.chat-product-mark i:nth-child(3), .chat-product-mark i:nth-child(5), .chat-product-mark i:nth-child(7),
.chat-bot-avatar i:nth-child(3), .chat-bot-avatar i:nth-child(5), .chat-bot-avatar i:nth-child(7) { background: var(--petrol); }
.chat-status { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 8px; }
.chat-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(31,122,92,.1); }
.chat-thread { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 22px 20px; }
.chat-row { display: flex; align-items: flex-start; gap: 9px; }
.chat-row-user { justify-content: flex-end; }
.chat-bubble {
  max-width: calc(100% - 38px);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -24px rgba(0,0,0,.45);
}
.chat-bubble-user { max-width: 78%; padding: 13px 15px; border-color: var(--petrol); border-radius: 14px 4px 14px 14px; background: var(--petrol); color: #fff; font-size: 13px; font-weight: 650; }
.chat-bubble-assistant { padding: 16px; border-radius: 4px 14px 14px 14px; background: #fff; font-size: 12px; }
.chat-author { display: block; margin-bottom: 5px; color: inherit; font-family: "IBM Plex Mono", monospace; font-size: 8px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; opacity: .72; }
.chat-bubble-assistant > strong { display: block; margin-bottom: 6px; color: var(--petrol); font-size: 15px; }
.chat-bubble-assistant p { color: #4a4843; line-height: 1.5; }
.chat-user-avatar {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.chat-bot-avatar { margin-top: 6px; padding: 6px; border-radius: 8px; background: #fff; box-sizing: content-box; }
.chat-source { display: flex; align-items: center; gap: 10px; margin-top: 13px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper); }
.chat-source-type { padding: 5px 6px; border-radius: 5px; background: #e6dfd2; color: var(--gold); font-family: "IBM Plex Mono", monospace; font-size: 8px; font-weight: 800; }
.chat-source > span:last-child { display: grid; min-width: 0; }
.chat-source strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.chat-source small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.chat-footer { display: flex; align-items: center; gap: 7px; padding: 11px 17px; border-top: 1px solid var(--line); background: #fff; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 8px; }
.chat-footer span { display: inline-flex; width: 15px; height: 15px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(31,122,92,.1); color: var(--success); font-family: Arial,sans-serif; font-size: 9px; font-weight: 800; }

@media (max-width: 680px) {
  .chat-thread { padding: 20px 15px; }
  .chat-bubble-user { max-width: 84%; }
  .chat-footer { font-size: 7.5px; }
}

.proof-strip { border-block: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof { padding: 26px 28px; border-left: 1px solid var(--line); }
.proof:first-child { border-left: 0; }
.proof strong { display: block; margin-bottom: 3px; font-size: 20px; }
.proof span { color: var(--muted); font-size: 13px; }

.route-grid, .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.route-card, .card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.route-card:hover, .card:hover { transform: translateY(-4px); border-color: #a9c3c1; box-shadow: 0 24px 50px -35px rgba(18,110,114,.7); }
.route-card .tag, .card .tag {
  margin-bottom: 30px;
  color: var(--petrol);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.route-card p, .card p { margin-top: 16px; color: var(--muted); }
.route-card .arrow { margin-top: auto; padding-top: 28px; color: var(--petrol); font-weight: 750; }
.route-card.highlight { background: var(--ink); color: #fff; }
.route-card.highlight p { color: #c9c5bd; }
.route-card.highlight .tag, .route-card.highlight .arrow { color: #d6ad65; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 50px; }
.step { padding: 0 34px; border-left: 1px solid #36363c; }
.step:first-child { padding-left: 0; border-left: 0; }
.step-index { margin-bottom: 20px; color: #d2a65b; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 1.2px; }
.step p { margin-top: 13px; color: #c7c4bd; }

.case-list { margin-top: 44px; border-top: 1px solid var(--line); }
.case {
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 30px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.case-tag { color: var(--petrol); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.case p { color: var(--muted); }
.case-result { color: var(--ink); font-weight: 750; text-align: right; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.check-list { display: grid; gap: 14px; margin-top: 30px; }
.check {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.check::before { content: "✓"; position: absolute; left: 18px; top: 17px; color: var(--success); font-weight: 800; }
.check strong { display: block; margin-bottom: 3px; }
.check span { color: var(--muted); font-size: 14px; }
.fit-box { margin-top: 30px; padding: 24px; border-left: 4px solid var(--gold); background: #fff; }
.fit-box p + p { margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; font-weight: 700; }
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(18,110,114,.13);
}
.contact-form.was-validated .field input:invalid,
.contact-form.was-validated .field textarea:invalid {
  border-color: #bc7668;
  background: #fdf9f8;
  box-shadow: 0 0 0 3px rgba(162,59,50,.08);
}
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.submit-button { min-width: 236px; gap: 11px; }
.submit-button:disabled { cursor: wait; opacity: 1; }
.submit-loader, .submit-success { display: none; }
.submit-button[data-state="loading"] .submit-loader,
.submit-button[data-state="done"] .submit-success { display: inline-grid; }
.submit-button[data-state="loading"] .submit-label,
.submit-button[data-state="done"] .submit-label { display: none; }
.submit-button[data-state="done"] { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.submit-loader {
  grid-template-columns: repeat(3, 5px);
  gap: 2.5px;
}
.submit-loader span { width: 5px; height: 5px; border-radius: 1.5px; background: #3d3d44; animation: brand-cell 1.25s ease-in-out infinite; }
.submit-loader span:nth-child(3),
.submit-loader span:nth-child(5),
.submit-loader span:nth-child(7) { animation-name: brand-cell-gold; }
.submit-loader span:nth-child(2) { animation-delay: .08s; }
.submit-loader span:nth-child(3) { animation-delay: .16s; }
.submit-loader span:nth-child(4) { animation-delay: .24s; }
.submit-loader span:nth-child(5) { animation-delay: .32s; }
.submit-loader span:nth-child(6) { animation-delay: .4s; }
.submit-loader span:nth-child(7) { animation-delay: .48s; }
.submit-loader span:nth-child(8) { animation-delay: .56s; }
.submit-loader span:nth-child(9) { animation-delay: .64s; }
.submit-success { grid-auto-flow: column; align-items: center; gap: 8px; }
.submit-success::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--ink); }
.status { min-height: 22px; margin-top: 12px; font-size: 13px; font-weight: 700; }
.status.ok, .status.error { display: flex; align-items: flex-start; gap: 8px; }
.status.ok::before, .status.error::before { content: ""; width: 7px; height: 7px; margin-top: 6px; border-radius: 2px; flex: none; }
.status.ok { color: var(--success); }
.status.ok::before { background: var(--gold); }
.status.error { color: #a23b32; }
.status.error::before { background: #a23b32; }

.not-found { min-height: calc(100vh - 110px); display: grid; place-items: center; padding: 80px 0 120px; background: var(--paper); }
.not-found-card { max-width: 760px; margin-inline: auto; text-align: center; }
.broken-mark { position: relative; display: inline-grid; grid-template-columns: repeat(3, 25px); gap: 11px; margin-bottom: 30px; }
.broken-mark i { width: 25px; height: 25px; border-radius: 7px; background: var(--line); }
.broken-mark i:nth-child(3), .broken-mark i:nth-child(5), .broken-mark i:nth-child(7) { background: var(--petrol); }
.broken-mark i:last-child { background: var(--gold); transform: translate(14px,12px) rotate(12deg); }
.not-found-code { margin-bottom: 12px; color: var(--gold); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.not-found h1 { max-width: none; font-size: clamp(42px,6vw,70px); }
.not-found p { max-width: 600px; margin: 22px auto 0; color: var(--muted); font-size: 18px; }
.not-found-actions { justify-content: center; }

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.founder-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(22,22,26,.86);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
}
.founder-badge::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: #2f9ca0; flex: none; }
.founder-name { margin-top: 25px; font-size: 25px; }
.founder-role { margin-top: 7px; color: var(--petrol); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.founder-copy { margin-top: 22px; display: grid; gap: 13px; color: var(--muted); }
.founder-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 27px; }
.founder-point { padding: 16px 17px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.founder-point strong { display: block; margin-bottom: 4px; }
.founder-point span { color: var(--muted); font-size: 13px; }

.team-hero-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: 70px; align-items: center; }
.team-hero-grid .founder-photo { max-width: 390px; justify-self: end; }
.identity-strip { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.identity-strip span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 12px; font-weight: 700; }
.responsibility-list { display: grid; gap: 12px; margin-top: 27px; }
.responsibility { padding: 18px 20px; border-left: 3px solid var(--petrol); background: var(--paper); }
.responsibility strong { display: block; margin-bottom: 3px; }
.responsibility span { color: var(--muted); font-size: 14px; }
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.principle { padding: 26px; border: 1px solid #38383e; border-radius: 14px; }
.principle-index { margin-bottom: 18px; color: #d3aa62; font-family: "IBM Plex Mono", monospace; font-size: 11px; }
.principle p { margin-top: 10px; color: #c8c5be; }
.growth-note { max-width: 820px; padding: 28px; border-left: 4px solid var(--gold); background: #fff; }
.growth-note p { margin-top: 10px; color: var(--muted); }

.subhero { padding: 80px 0 70px; background: var(--paper); }
.subhero h1 { max-width: 930px; font-size: clamp(43px, 5.5vw, 68px); }
.breadcrumb { margin-bottom: 35px; color: var(--petrol); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; }
.signal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 42px; }
.signal { padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.signal p { margin-top: 10px; color: var(--muted); }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.deliverable { padding: 27px; border: 1px solid #38383e; border-radius: 14px; }
.deliverable p { margin-top: 10px; color: #c8c5be; }

.faq { margin-top: 36px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 750; }
.faq details p { max-width: 760px; margin-top: 13px; color: var(--muted); }

.footer { padding: 45px 0 105px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 13px; }
.sticky-mobile { display: none; }

@media (max-width: 980px) {
  .nav-links, .header-cta { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .founder-grid, .team-hero-grid { grid-template-columns: 1fr; }
  .team-hero-grid .founder-photo { max-width: 360px; justify-self: start; }
  .principles-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof:nth-child(4) { border-top: 1px solid var(--line); }
  .route-grid, .card-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 0; }
  .case { grid-template-columns: 140px 1fr; }
  .case-result { grid-column: 2; text-align: left; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  body::before { font-size: 9px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { min-height: 76px; }
  .logo-wordmark { font-size: 21px; }
  .section { padding: 72px 0; }
  .hero { padding: 66px 0 54px; }
  h1, .hero h1, .subhero h1 { font-size: 42px; letter-spacing: -2px; }
  h2 { font-size: 36px; letter-spacing: -1.5px; }
  .lede { font-size: 18px; }
  .hero-visual { min-height: 420px; }
  .proof-grid, .signal-grid, .deliverables { grid-template-columns: 1fr; }
  .proof { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0; }
  .proof:first-child { border-top: 0; }
  .steps { grid-template-columns: 1fr; gap: 31px; }
  .step { padding: 0; border-left: 0; }
  .case { grid-template-columns: 1fr; gap: 8px; }
  .case-result { grid-column: 1; }
  .contact-form { padding: 22px 18px; }
  .founder-grid { gap: 38px; }
  .founder-photo-wrap { max-width: 330px; }
  .founder-points { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .sticky-mobile {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -10px 30px -24px rgba(0,0,0,.7);
  }
  .sticky-mobile span { color: var(--muted); font-size: 11px; line-height: 1.25; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .page-loader { display: none; }
  .brand-loader-grid span, .submit-loader span { animation: none !important; }
}
