:root {
  --ink: #061b17;
  --ink-soft: #0a2b24;
  --green: #0d5949;
  --green-bright: #1a7c67;
  --green-pale: #dfeee8;
  --gold: #c99438;
  --gold-bright: #e0ae52;
  --gold-pale: #f1d59e;
  --paper: #f3f5f2;
  --paper-bright: #fcfcfa;
  --white: #fff;
  --muted: #4f5f59;
  --line: rgba(6, 27, 23, .14);
  --dark-line: rgba(255, 255, 255, .13);
  --shadow: 0 30px 80px rgba(6, 27, 23, .13);
  --radius: 28px;
  --display: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--ink, #071d18);
  color: var(--paper, #f4f0e7);
}

.legal-header,
.legal-main,
.legal-footer {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}

.legal-header {
  padding: 32px 0 24px;
}

.legal-header .brand {
  width: max-content;
}

.legal-main {
  padding: clamp(28px, 6vw, 72px) 0 80px;
}

.legal-main h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 7vw, 5rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.legal-updated {
  margin-bottom: 48px;
  color: rgba(244, 240, 231, .62);
}

.legal-card {
  margin-top: 18px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(244, 240, 231, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.legal-card p,
.legal-card li {
  color: rgba(244, 240, 231, .76);
  line-height: 1.7;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card a,
.legal-footer a {
  color: var(--gold, #d7b56d);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(244, 240, 231, .12);
  color: rgba(244, 240, 231, .62);
}

@media (max-width: 640px) {
  .legal-header,
  .legal-main,
  .legal-footer {
    width: min(100% - 28px, 900px);
  }

  .legal-footer {
    flex-direction: column;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper-bright); color: var(--ink); font-family: var(--body); margin: 0; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }

.skip-link { background: var(--gold); color: var(--ink); font-weight: 800; left: 12px; padding: 10px 14px; position: fixed; top: -100px; z-index: 200; }
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  background: rgba(6, 27, 23, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  padding: 12px clamp(22px, 5vw, 82px);
  position: sticky;
  top: 0;
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease;
  z-index: 100;
}
.site-header.is-scrolled { background: rgba(6, 27, 23, .985); box-shadow: 0 12px 45px rgba(0,0,0,.18); min-height: 70px; }
.scroll-progress { background: rgba(255,255,255,.06); bottom: -1px; height: 2px; left: 0; overflow: hidden; position: absolute; right: 0; }
.scroll-progress span { background: linear-gradient(90deg, var(--gold), #6ad6b0); display: block; height: 100%; transform: scaleX(0); transform-origin: left; width: 100%; }
.brand { align-items: center; color: #fff; display: inline-flex; gap: 11px; }
.brand-mark { align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; display: flex; height: 45px; justify-content: center; width: 45px; }
.brand-mark svg { height: 30px; width: 30px; }
.brand-mark path:first-child { fill: var(--gold-bright); }
.brand-mark .brand-arrow { fill: #fff; }
.brand-name { display: grid; gap: 0; }
.brand-name strong { font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: .1em; line-height: 1; }
.brand-name small { color: var(--gold-pale); font-size: 8px; font-weight: 800; letter-spacing: .32em; margin-top: 5px; }
.desktop-nav { display: flex; gap: clamp(22px, 3vw, 42px); justify-content: center; }
.desktop-nav a { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 650; position: relative; transition: color .18s ease; }
.desktop-nav a::after { background: var(--gold-bright); bottom: -9px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; width: 100%; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; }
.menu-toggle, .mobile-menu { display: none; }

.button { align-items: center; border: 1px solid transparent; border-radius: 13px; cursor: pointer; display: inline-flex; font-size: 14px; font-weight: 750; gap: 18px; justify-content: space-between; min-height: 58px; padding: 8px 9px 8px 22px; position: relative; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { align-items: center; background: rgba(255,255,255,.28); border: 1px solid rgba(255,255,255,.3); border-radius: 9px; display: inline-flex; flex: 0 0 36px; height: 36px; justify-content: center; transition: background .2s ease, transform .2s ease; width: 36px; }
.button:hover span { transform: translate(2px, -1px); }
.button-small { border-radius: 11px; font-size: 12px; min-height: 44px; padding: 6px 7px 6px 15px; }
.button-small span { border-radius: 7px; flex-basis: 29px; height: 29px; width: 29px; }
.button-ghost { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.24); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); }
.button-ghost span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); }
.button-gold { background: linear-gradient(145deg, #dda94b, #c98f2d); border-color: #e8bd6f; box-shadow: 0 12px 28px rgba(201,148,56,.22); color: #1f1607; }
.button-gold:hover { box-shadow: 0 17px 35px rgba(201,148,56,.3); }
.button-gold span { background: rgba(255,255,255,.34); border-color: rgba(255,255,255,.35); }
.button-dark { background: linear-gradient(145deg, var(--green), #073a31); border-color: rgba(255,255,255,.08); box-shadow: 0 13px 30px rgba(13,89,73,.2); color: #fff; }
.button-dark span { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.12); }
.button-full { width: 100%; }
.text-link { align-items: center; color: rgba(255,255,255,.78); display: inline-flex; font-size: 13px; font-weight: 700; gap: 10px; }
.text-link:hover { color: #fff; }

.section-dark, .section-ink { background: var(--ink); color: #fff; }
.hero { min-height: calc(100vh - 84px); overflow: hidden; padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 100px) 44px; position: relative; }
.hero-grid { background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 43px 43px; inset: 0; mask-image: linear-gradient(to bottom, #000 58%, transparent 100%); pointer-events: none; position: absolute; }
.hero-glow { border-radius: 50%; filter: blur(18px); opacity: .34; pointer-events: none; position: absolute; }
.glow-one { background: #176b59; height: 580px; right: -230px; top: -230px; width: 580px; }
.glow-two { background: #6d4b18; bottom: 0; height: 400px; left: -230px; width: 400px; }
.hero { display: grid; gap: clamp(45px, 7vw, 110px); grid-template-columns: minmax(420px, .88fr) minmax(560px, 1.12fr); }
.hero-copy { align-self: center; max-width: 700px; position: relative; z-index: 3; }
.eyebrow { align-items: center; color: var(--gold-pale); display: flex; font-size: 11px; font-weight: 800; gap: 11px; letter-spacing: .14em; margin-bottom: 25px; text-transform: uppercase; }
.eyebrow > span { background: var(--gold); height: 2px; width: 33px; }
.eyebrow.dark { color: #815d21; }
h1 { font-size: clamp(60px, 6.6vw, 104px); font-weight: 750; letter-spacing: -.072em; line-height: .94; margin-bottom: 31px; }
h1 em, h2 em { color: var(--gold-pale); font-family: var(--display); font-style: normal; font-weight: 580; }
.hero-lead { color: rgba(255,255,255,.7); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.72; max-width: 650px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; margin-top: 35px; }
.hero-assurance { border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 14px 25px; margin-top: 38px; padding-top: 22px; }
.hero-assurance span { align-items: center; color: rgba(255,255,255,.7); display: flex; font-size: 12px; font-weight: 650; gap: 8px; }
.hero-assurance i { align-items: center; background: rgba(56,151,124,.15); border: 1px solid rgba(101,190,164,.24); border-radius: 50%; color: #8ac9b5; display: inline-flex; font-size: 8px; font-style: normal; height: 18px; justify-content: center; width: 18px; }

.ecosystem-stage { align-self: center; background: linear-gradient(150deg, rgba(255,255,255,.095), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.17); border-radius: 27px; box-shadow: 0 60px 120px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.12); min-height: 630px; overflow: hidden; position: relative; z-index: 3; }
.ecosystem-stage::after { background: radial-gradient(circle, rgba(201,148,56,.18), transparent 64%); content: ""; height: 550px; left: 50%; pointer-events: none; position: absolute; top: 52%; transform: translate(-50%,-50%); width: 550px; }
.stage-topbar { align-items: center; border-bottom: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.68); display: flex; font-size: 9px; justify-content: space-between; letter-spacing: .08em; min-height: 47px; padding: 10px 16px; text-transform: uppercase; }
.stage-status { align-items: center; display: flex; gap: 7px; }
.stage-status i { animation: pulse 1.7s infinite; background: #43c791; border-radius: 50%; box-shadow: 0 0 0 5px rgba(67,199,145,.1); height: 6px; width: 6px; }
.stage-label { color: var(--gold-pale); }
.signal-card { animation: float 5s ease-in-out infinite; backdrop-filter: blur(12px); background: rgba(251,250,246,.96); border: 1px solid rgba(255,255,255,.8); border-radius: 12px; box-shadow: 0 18px 48px rgba(0,0,0,.24); color: var(--ink); display: grid; gap: 3px; padding: 12px 15px; position: absolute; right: 18px; top: 62px; z-index: 8; }
.signal-card span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.signal-card strong { font-size: 12px; }
.signal-card small { color: var(--muted); font-size: 9px; }
.stage-core { height: 505px; position: relative; z-index: 3; }
.core-ring { border: 1px solid rgba(224,174,82,.2); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }
.ring-one { height: 340px; width: 340px; }
.ring-two { height: 220px; width: 220px; }
.core-logo { align-items: center; background: linear-gradient(145deg, var(--gold-bright), #a86f19); border: 7px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 20px 60px rgba(201,148,56,.28); display: flex; flex-direction: column; height: 112px; justify-content: center; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 112px; z-index: 5; }
.core-logo b { color: var(--ink); font-family: var(--display); font-size: 40px; letter-spacing: -.08em; line-height: .85; }
.core-logo span { color: rgba(6,27,23,.7); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.connection-lines { height: 100%; inset: 0; position: absolute; width: 100%; z-index: 1; }
.connection-lines path { animation: dash 8s linear infinite; fill: none; stroke: rgba(224,174,82,.38); stroke-dasharray: 5 7; stroke-width: 1.2; }
.orbit-card { backdrop-filter: blur(9px); background: rgba(8,43,36,.92); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; box-shadow: 0 17px 42px rgba(0,0,0,.18); display: grid; gap: 3px; min-width: 145px; padding: 14px; position: absolute; z-index: 4; }
.orbit-card::before { background: var(--gold); border-radius: 10px; bottom: 0; content: ""; left: 14px; opacity: .7; position: absolute; top: 0; width: 2px; }
.orbit-number { color: var(--gold-pale); font-family: Georgia, serif; font-size: 8px; justify-self: end; }
.orbit-card small { color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .1em; padding-left: 10px; text-transform: uppercase; }
.orbit-card strong { font-size: 13px; padding-left: 10px; }
.orbit-card i { color: rgba(255,255,255,.68); font-size: 9px; font-style: normal; padding-left: 10px; }
.card-ads { left: 7%; top: 8%; }
.card-landing { right: 6%; top: 9%; }
.card-crm { bottom: 7%; left: 6%; }
.card-revenue { bottom: 7%; right: 5%; }
.stage-footer { align-items: center; border-top: 1px solid rgba(255,255,255,.11); display: flex; font-size: 10px; justify-content: space-between; min-height: 75px; padding: 16px 20px; position: relative; z-index: 4; }
.stage-footer span { align-items: center; color: rgba(255,255,255,.5); display: flex; gap: 7px; }
.stage-footer strong { color: var(--gold-pale); font-size: 12px; }
.live-dot { background: #43c791; border-radius: 50%; height: 6px; width: 6px; }
.hero-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 18px; grid-column: 1 / -1; grid-template-columns: auto 1fr auto; padding-top: 28px; position: relative; z-index: 3; }
.hero-bottom-index { align-items: center; border: 1px solid rgba(224,174,82,.35); border-radius: 50%; color: var(--gold-pale); display: flex; font-family: Georgia, serif; font-size: 11px; height: 42px; justify-content: center; width: 42px; }
.hero-bottom p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.6; margin: 0; }
.hero-bottom p strong { color: rgba(255,255,255,.78); }
.hero-bottom a { color: var(--gold-pale); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.principles-strip { background: var(--gold); color: #231708; overflow: hidden; }
.marquee-track { align-items: center; animation: marquee 34s linear infinite; display: flex; gap: 27px; min-height: 50px; width: max-content; }
.marquee-track span { font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.marquee-track i { font-style: normal; opacity: .55; }

.section { padding: clamp(72px, 7vw, 105px) clamp(22px, 7vw, 116px); position: relative; }
.section-paper { background: var(--paper); }
.section-number { color: #726955; font-size: 10px; font-weight: 800; letter-spacing: .13em; margin-bottom: 55px; text-transform: uppercase; }
.section-number.light { color: rgba(255,255,255,.38); }
.swipe-hint { color: var(--green); display: none; font-size: 10px; font-weight: 800; letter-spacing: .08em; margin-bottom: 13px; text-transform: uppercase; }
.swipe-hint.light { color: #69d6b0; }
.problem-intro, .ecosystem-intro { align-items: end; display: grid; gap: clamp(45px, 8vw, 130px); grid-template-columns: 1.08fr .92fr; margin-bottom: 65px; }
.section-heading h2, .fit-heading h2, .consultation-copy h2, .founder-story h2 { font-size: clamp(48px, 6vw, 86px); font-weight: 750; letter-spacing: -.064em; line-height: .98; margin-bottom: 0; }
.section-heading h2 em, .fit-heading h2 em { color: #87601e; }
.large-copy { color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.78; margin: 0; max-width: 670px; }
.large-copy.light { color: rgba(255,255,255,.6); }

.problem-grid { display: grid; gap: 17px; grid-template-columns: repeat(3, 1fr); }
.problem-card { background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 22px; min-height: 350px; overflow: hidden; padding: clamp(26px, 3vw, 40px); position: relative; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.problem-card:hover { background: #fff; box-shadow: 0 25px 60px rgba(6,27,23,.09); transform: translateY(-5px); }
.problem-card::after { border: 1px solid var(--line); border-radius: 50%; content: ""; height: 220px; position: absolute; right: -120px; top: -115px; width: 220px; }
.card-counter { color: #95876f; font-family: Georgia, serif; font-size: 10px; position: relative; z-index: 2; }
.problem-icon { align-items: center; background: var(--green-pale); border-radius: 13px; color: var(--green); display: flex; font-size: 24px; height: 53px; justify-content: center; margin: 30px 0 22px; width: 53px; }
.problem-card h3 { font-size: clamp(22px, 2vw, 29px); letter-spacing: -.045em; line-height: 1.15; margin-bottom: 19px; }
.problem-card p { color: var(--muted); font-size: 15px; line-height: 1.68; }
.card-result { border-top: 1px solid var(--line); bottom: 32px; color: #76551f; font-size: 10px; font-weight: 800; left: clamp(26px, 3vw, 40px); letter-spacing: .1em; padding-top: 13px; position: absolute; right: clamp(26px, 3vw, 40px); text-transform: uppercase; }
.problem-statement { align-items: center; background: var(--ink); border-radius: 22px; color: #fff; display: grid; gap: 40px; grid-template-columns: auto 1fr; margin-top: 18px; overflow: hidden; padding: clamp(30px, 4vw, 50px); position: relative; }
.problem-statement::after { border: 1px solid rgba(224,174,82,.16); border-radius: 50%; content: ""; height: 400px; position: absolute; right: -150px; top: -230px; width: 400px; }
.problem-statement > span { color: var(--gold-pale); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.problem-statement p { color: rgba(255,255,255,.65); font-family: var(--display); font-size: clamp(24px, 3vw, 41px); letter-spacing: -.04em; line-height: 1.25; margin: 0; max-width: 1000px; position: relative; z-index: 2; }
.problem-statement strong { color: #fff; }

.section-ink { background: linear-gradient(155deg, var(--ink), #0a2d25); overflow: hidden; }
.section-ink::after { background: radial-gradient(circle, rgba(201,148,56,.12), transparent 63%); content: ""; height: 900px; pointer-events: none; position: absolute; right: -420px; top: -350px; width: 900px; }
.section-heading.light h2 em { color: var(--gold-pale); }
.journey { border-bottom: 1px solid var(--dark-line); border-top: 1px solid var(--dark-line); display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.journey-step { border-right: 1px solid var(--dark-line); min-height: 350px; padding: clamp(28px, 3vw, 42px) clamp(22px, 2.5vw, 36px); position: relative; transition: background .25s ease; }
.journey-step:last-child { border-right: 0; }
.journey-step:hover { background: rgba(255,255,255,.045); }
.journey-step.is-active { background: rgba(255,255,255,.055); }
.journey-step::before { background: linear-gradient(90deg, var(--gold), transparent); content: ""; height: 2px; left: 0; opacity: 0; position: absolute; top: -1px; transition: opacity .2s ease; width: 80%; }
.journey-step:hover::before, .journey-step.is-active::before { opacity: 1; }
.journey-head { align-items: center; display: flex; justify-content: space-between; }
.journey-head span { color: var(--gold-pale); font-family: Georgia, serif; font-size: 15px; }
.journey-head i { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 9px; font-style: normal; letter-spacing: .1em; padding: 6px 9px; text-transform: uppercase; }
.journey-step h3 { font-size: clamp(23px, 2vw, 30px); letter-spacing: -.045em; line-height: 1.13; margin: 45px 0 18px; }
.journey-step p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.journey-step > small { bottom: 35px; color: var(--gold-pale); font-size: 10px; font-weight: 750; left: clamp(22px, 2.5vw, 36px); letter-spacing: .07em; position: absolute; text-transform: uppercase; }
.ecosystem-equation { align-items: center; background: rgba(255,255,255,.035); border: 1px solid var(--dark-line); border-radius: 17px; display: grid; gap: 15px; grid-template-columns: repeat(7, auto); justify-content: center; margin-top: 30px; padding: 23px; position: relative; z-index: 2; }
.ecosystem-equation span, .ecosystem-equation strong { font-family: var(--display); font-size: 13px; letter-spacing: .01em; }
.ecosystem-equation i { color: var(--gold); font-style: normal; }
.ecosystem-equation strong { color: var(--gold-pale); }

.method-section { background: var(--paper-bright); }
.method-layout { align-items: start; display: grid; gap: clamp(55px, 9vw, 150px); grid-template-columns: .72fr 1.28fr; }
.method-sticky { position: sticky; top: 120px; }
.method-sticky .section-heading h2 { font-size: clamp(43px, 4.8vw, 70px); }
.method-sticky > p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 28px 0 32px; max-width: 590px; }
.method-list { border-top: 1px solid var(--line); }
.method-row { align-items: start; border-bottom: 1px solid var(--line); display: grid; gap: 22px; grid-template-columns: auto 1fr auto; padding: 35px 0; }
.method-index { color: var(--gold); font-family: Georgia, serif; font-size: 12px; padding-top: 5px; }
.method-row > div small { color: #71511c; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.method-row h3 { font-size: clamp(23px, 2.4vw, 35px); letter-spacing: -.045em; line-height: 1.18; margin: 12px 0 17px; }
.method-row p { color: var(--muted); font-size: 14px; line-height: 1.68; margin: 0; max-width: 670px; }
.method-owner { border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .09em; padding: 7px 10px; text-transform: uppercase; }

.founder-section { align-items: center; background: linear-gradient(135deg, #0b3b31, var(--ink)); color: #fff; display: grid; gap: clamp(65px, 9vw, 145px); grid-template-columns: .72fr 1.28fr; overflow: hidden; }
.founder-orbit { border: 1px solid rgba(224,174,82,.13); border-radius: 50%; pointer-events: none; position: absolute; }
.orbit-a { height: 750px; left: -330px; top: 50%; transform: translateY(-50%); width: 750px; }
.orbit-b { height: 520px; left: -210px; top: 50%; transform: translateY(-50%); width: 520px; }
.founder-identity { align-items: center; display: flex; justify-content: center; min-height: 650px; position: relative; }
.founder-monogram { align-items: center; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 50px 100px rgba(0,0,0,.25); display: flex; flex-direction: column; height: clamp(250px, 29vw, 420px); justify-content: center; position: relative; width: clamp(250px, 29vw, 420px); z-index: 2; }
.founder-monogram::before { border: 1px solid rgba(224,174,82,.38); border-radius: 50%; content: ""; inset: 15px; position: absolute; }
.founder-monogram span { color: var(--gold-pale); font-family: Georgia, serif; font-size: clamp(105px, 13vw, 190px); line-height: .8; }
.founder-monogram small { color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .2em; margin-top: 22px; text-transform: uppercase; }
.founder-signature { bottom: 10%; color: rgba(255,255,255,.8); font-family: Georgia, serif; font-size: clamp(34px, 4vw, 58px); font-style: italic; position: absolute; right: 5%; transform: rotate(-7deg); z-index: 3; }
.founder-story { position: relative; z-index: 3; }
.founder-story h2 em { color: var(--gold-pale); }
.founder-lead { color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.75; margin: 30px 0 45px; max-width: 760px; }
.story-timeline { border-top: 1px solid var(--dark-line); }
.story-timeline article { border-bottom: 1px solid var(--dark-line); display: grid; gap: 20px; grid-template-columns: auto 1fr; padding: 29px 0; }
.story-timeline article > span { color: var(--gold-pale); font-family: Georgia, serif; font-size: 11px; }
.story-timeline small { color: var(--gold-pale); display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; margin-bottom: 8px; text-transform: uppercase; }
.story-timeline h3 { font-size: 20px; letter-spacing: -.035em; margin-bottom: 10px; }
.story-timeline p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.68; margin: 0; max-width: 760px; }
blockquote { border-left: 2px solid var(--gold); color: rgba(255,255,255,.74); font-family: Georgia, serif; font-size: clamp(19px, 2vw, 28px); font-style: italic; line-height: 1.5; margin: 40px 0 0; padding-left: 24px; }

.fit-section { background: var(--paper); }
.fit-heading { margin-bottom: 55px; max-width: 970px; }
.fit-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.fit-card { border-radius: 25px; min-height: 430px; overflow: hidden; padding: clamp(30px, 4vw, 50px); position: relative; }
.fit-card::after { border: 1px solid currentColor; border-radius: 50%; content: ""; height: 360px; opacity: .08; position: absolute; right: -180px; top: -180px; width: 360px; }
.fit-yes { background: linear-gradient(145deg, var(--green), #073a31); color: #fff; }
.fit-no { background: #e6e1d7; border: 1px solid #d8d1c5; color: var(--ink); }
.fit-label { align-items: center; display: flex; font-size: 11px; font-weight: 800; gap: 10px; letter-spacing: .1em; text-transform: uppercase; }
.fit-label i { align-items: center; border: 1px solid currentColor; border-radius: 50%; display: flex; font-size: 12px; font-style: normal; height: 28px; justify-content: center; width: 28px; }
.fit-card ul { display: grid; gap: 0; list-style: none; margin: 55px 0 0; padding: 0; }
.fit-card li { border-bottom: 1px solid currentColor; font-family: var(--display); font-size: clamp(16px, 1.6vw, 22px); letter-spacing: -.02em; line-height: 1.4; opacity: .76; padding: 17px 0 17px 30px; position: relative; }
.fit-card li:first-child { border-top: 1px solid currentColor; }
.fit-card li::before { content: "→"; left: 0; position: absolute; }
.fit-yes li { border-color: rgba(255,255,255,.15); }
.fit-no li { border-color: rgba(6,27,23,.14); }

.relationship-section { background: #f7f8f5; overflow: hidden; }
.relationship-section::after { background: radial-gradient(circle, rgba(105,214,176,.16), transparent 68%); content: ""; height: 750px; pointer-events: none; position: absolute; right: -310px; top: -270px; width: 750px; }
.relationship-grid { align-items: center; display: grid; gap: clamp(60px, 9vw, 150px); grid-template-columns: .78fr 1.22fr; position: relative; z-index: 2; }
.relationship-copy h2, .human-story h2 { font-size: clamp(48px, 6vw, 84px); font-weight: 750; letter-spacing: -.064em; line-height: .98; margin-bottom: 25px; }
.relationship-copy h2 em { color: var(--green); }
.relationship-copy > p { color: var(--muted); font-size: 17px; line-height: 1.72; margin-bottom: 32px; max-width: 650px; }
.contact-console { background: linear-gradient(145deg, #09241e, #061915); border: 1px solid rgba(6,27,23,.16); border-radius: 22px; box-shadow: 0 35px 90px rgba(6,27,23,.2); color: #fff; overflow: hidden; position: relative; }
.contact-console::after { background: radial-gradient(circle, rgba(105,214,176,.11), transparent 65%); content: ""; height: 430px; pointer-events: none; position: absolute; right: -180px; top: -190px; width: 430px; }
.console-bar, .console-footer { align-items: center; display: flex; justify-content: space-between; padding: 16px 20px; position: relative; z-index: 2; }
.console-bar { border-bottom: 1px solid rgba(255,255,255,.1); }
.console-bar > span, .console-footer > span { align-items: center; color: rgba(255,255,255,.68); display: flex; font-size: 10px; font-weight: 700; gap: 8px; letter-spacing: .05em; text-transform: uppercase; }
.console-bar i, .console-footer i { animation: pulse 1.7s infinite; background: #69d6b0; border-radius: 50%; box-shadow: 0 0 0 5px rgba(105,214,176,.1); height: 7px; width: 7px; }
.console-bar small { color: var(--gold-pale); font-size: 10px; }
.console-thread { display: grid; gap: 15px; min-height: 390px; padding: clamp(25px, 3vw, 38px); position: relative; z-index: 2; }
.chat-line { border: 1px solid rgba(255,255,255,.11); border-radius: 16px; max-width: 78%; padding: 15px 17px; }
.chat-line small { color: rgba(255,255,255,.48); display: block; font-size: 9px; margin-bottom: 7px; }
.chat-line p { font-size: 14px; line-height: 1.55; margin: 0; }
.client-line { background: rgba(255,255,255,.055); justify-self: start; }
.vuelo-line { background: rgba(105,214,176,.13); border-color: rgba(105,214,176,.23); justify-self: end; }
.action-update { background: #f8faf8; border-radius: 15px; color: var(--ink); display: grid; gap: 5px; margin-top: 10px; padding: 17px 19px; }
.action-update span { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.action-update strong { font-family: var(--display); font-size: 20px; }
.action-update small { color: var(--muted); font-size: 11px; }
.console-footer { border-top: 1px solid rgba(255,255,255,.1); }
.console-footer strong { color: var(--gold-pale); font-size: 11px; }
.relationship-values { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; position: relative; z-index: 2; }
.relationship-values article { border-right: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: auto 1fr; padding: 32px clamp(20px, 3vw, 38px); }
.relationship-values article:last-child { border-right: 0; }
.relationship-values article > span { color: var(--green); font-family: var(--display); font-size: 12px; font-weight: 800; }
.relationship-values h3 { font-size: 20px; letter-spacing: -.035em; margin-bottom: 8px; }
.relationship-values p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }

.human-founder-section { align-items: center; background: linear-gradient(135deg, #071d18, #0a332a); color: #fff; display: grid; gap: clamp(65px, 9vw, 145px); grid-template-columns: .72fr 1.28fr; overflow: hidden; }
.human-founder-section::before { background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 40px 40px; content: ""; inset: 0; mask-image: linear-gradient(90deg, #000, transparent 75%); pointer-events: none; position: absolute; }
.founder-card { background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.16); border-radius: 23px; box-shadow: 0 35px 90px rgba(0,0,0,.27); min-height: 450px; overflow: hidden; padding: 25px; position: relative; z-index: 2; }
.founder-card::after { background: radial-gradient(circle, rgba(201,148,56,.2), transparent 65%); content: ""; height: 470px; pointer-events: none; position: absolute; right: -190px; top: -220px; width: 470px; }
.founder-card-top { align-items: center; display: flex; position: relative; z-index: 2; }
.founder-initial { align-items: center; background: var(--gold); border-radius: 12px; color: var(--ink); display: flex; font-family: var(--display); font-size: 24px; font-weight: 800; height: 52px; justify-content: center; width: 52px; }
.founder-card-top > i { animation: pulse 1.7s infinite; background: #69d6b0; border-radius: 50%; height: 7px; margin-left: auto; width: 7px; }
.founder-card-top > small { color: rgba(255,255,255,.65); font-size: 10px; margin-left: 8px; }
.founder-card-copy { bottom: 95px; display: grid; gap: 13px; left: 25px; position: absolute; right: 25px; z-index: 2; }
.founder-card-copy small { color: var(--gold-pale); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.founder-card-copy strong { font-family: var(--display); font-size: clamp(32px, 4vw, 52px); letter-spacing: -.055em; line-height: 1.05; }
.founder-card-copy p { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.62; margin: 0; }
.founder-tags { bottom: 24px; display: flex; flex-wrap: wrap; gap: 7px; left: 25px; position: absolute; right: 25px; z-index: 2; }
.founder-tags span { border: 1px solid rgba(255,255,255,.15); border-radius: 8px; color: rgba(255,255,255,.62); font-size: 9px; padding: 7px 9px; }
.human-story { position: relative; z-index: 2; }
.human-story .section-number { margin-bottom: 30px; }
.human-story h2 em { color: #69d6b0; }
.human-story > p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.72; margin: 27px 0 32px; max-width: 770px; }
.human-proof { border-bottom: 1px solid rgba(255,255,255,.11); border-top: 1px solid rgba(255,255,255,.11); display: grid; }
.human-proof span { border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.78); font-size: 13px; padding: 16px 0; }
.human-proof span:last-child { border-bottom: 0; }
.human-proof b { color: var(--gold-pale); font-size: 10px; margin-right: 15px; }
.human-story blockquote { color: rgba(255,255,255,.82); font-family: var(--display); font-size: clamp(19px, 2vw, 27px); font-style: normal; font-weight: 550; margin-top: 30px; }

.audience-banner { align-items: center; background: #102f28; color: #fff; display: grid; gap: 35px; grid-template-columns: auto 1fr auto; padding: 38px clamp(22px, 7vw, 116px); }
.audience-banner > span { color: #69d6b0; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.audience-banner > strong { font-family: var(--display); font-size: clamp(20px, 2.4vw, 34px); letter-spacing: -.035em; line-height: 1.2; }
.audience-banner .button { min-width: 170px; }

.consultation-section { background: linear-gradient(135deg, #e8f0ed, #f8f6ef); overflow: hidden; }
.consultation-section::before { border: 1px solid rgba(13,89,73,.12); border-radius: 50%; content: ""; height: 750px; left: -350px; position: absolute; top: -350px; width: 750px; }
.consultation-shell { align-items: center; display: grid; gap: clamp(55px, 9vw, 145px); grid-template-columns: .82fr 1.18fr; margin: 0 auto; max-width: 1320px; position: relative; z-index: 2; }
.consultation-copy .eyebrow { color: var(--green); }
.consultation-copy h2 { color: var(--ink); }
.consultation-copy h2 em { color: var(--green); }
.consultation-copy > p { color: var(--muted); font-size: 16px; line-height: 1.72; margin: 28px 0 0; }
.consultation-steps { border-top: 1px solid rgba(6,27,23,.16); display: grid; gap: 15px; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-top: 25px; }
.consultation-steps span { display: grid; gap: 8px; }
.consultation-steps b { align-items: center; border: 1px solid rgba(6,27,23,.28); border-radius: 9px; display: flex; font-family: var(--display); font-size: 10px; height: 29px; justify-content: center; width: 29px; }
.consultation-steps small { font-size: 11px; font-weight: 700; line-height: 1.45; }
.consultation-form { background: var(--paper-bright); border: 1px solid rgba(255,255,255,.7); border-radius: 29px; box-shadow: 0 40px 90px rgba(65,39,2,.22), inset 0 1px rgba(255,255,255,.95); padding: clamp(28px, 4vw, 48px); }
.form-heading { display: flex; justify-content: space-between; margin-bottom: 28px; }
.form-heading span { font-family: var(--display); font-size: 27px; font-weight: 800; letter-spacing: -.04em; }
.form-heading small { align-self: end; color: var(--muted); font-size: 10px; }
.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.form-grid label { color: #2c3f38; display: grid; font-size: 11px; font-weight: 750; gap: 7px; letter-spacing: .02em; }
.form-grid input, .form-grid select, .form-grid textarea { background: #fff; border: 1px solid #cad6d1; border-radius: 10px; color: var(--ink); min-height: 48px; outline: none; padding: 11px 12px; resize: vertical; transition: border-color .18s ease, box-shadow .18s ease; width: 100%; }
.form-grid textarea { line-height: 1.5; min-height: 105px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(13,89,73,.1); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #9ca6a2; }
.form-wide { grid-column: 1 / -1; }
.honeypot { height: 0; left: -10000px; overflow: hidden; position: absolute; width: 0; }
.privacy-check { align-items: flex-start; color: #4f5f59; display: flex; font-size: 10px; gap: 9px; line-height: 1.55; margin: 18px 0; }
.privacy-check input { accent-color: var(--green); flex: 0 0 auto; height: 16px; margin: 0; width: 16px; }
.privacy-check a { color: var(--green); font-weight: 800; text-decoration: underline; }
.form-note { color: var(--muted); display: block; font-size: 9px; margin-top: 13px; text-align: center; }
.form-message { align-items: center; border-radius: 11px; display: flex; font-size: 11px; line-height: 1.5; margin-top: 14px; padding: 12px 14px; }
.form-message[hidden] { display: none; }
.form-message.success { background: #e1f1e9; border: 1px solid #b8d9cb; color: #195342; }
.form-message.error { background: #f9e8e4; border: 1px solid #e7c3b9; color: #863927; }

.site-footer { background: var(--ink); color: #fff; padding: 55px clamp(22px, 6vw, 95px) 30px; }
.footer-main { align-items: center; display: grid; gap: 40px; grid-template-columns: auto 1fr auto; padding-bottom: 45px; }
.footer-main > p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.65; margin: 0 auto; max-width: 540px; text-align: center; }
.footer-top { color: var(--gold-pale); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { align-items: center; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.52); display: grid; font-size: 9px; gap: 25px; grid-template-columns: auto 1fr auto; padding-top: 25px; }
.company-placeholder { text-align: center; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse { 0%,100% { opacity: .45; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-.3deg); } 50% { transform: translateY(-8px) rotate(.3deg); } }
@keyframes dash { to { stroke-dashoffset: -120; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { gap: 19px; }
  .hero { gap: 45px; grid-template-columns: .85fr 1.15fr; padding-left: 38px; padding-right: 38px; }
  .ecosystem-stage { min-height: 570px; }
  .stage-core { height: 445px; }
  .ring-one { height: 290px; width: 290px; }
  .ring-two { height: 190px; width: 190px; }
  .orbit-card { min-width: 125px; padding: 11px; }
  .core-logo { height: 94px; width: 94px; }
  .core-logo b { font-size: 34px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { align-items: center; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; display: flex; flex-direction: column; gap: 5px; height: 42px; justify-content: center; width: 42px; }
  .menu-toggle span { background: #fff; height: 1px; transition: transform .2s ease; width: 18px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { background: var(--ink); border-top: 1px solid var(--dark-line); display: grid; gap: 2px; inset: 100% 0 auto; padding: 20px 22px 30px; position: absolute; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { border-bottom: 1px solid var(--dark-line); color: rgba(255,255,255,.75); font-size: 14px; font-weight: 700; padding: 16px 2px; }
  .mobile-menu .button { margin-top: 15px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .ecosystem-stage { margin: 0 auto; max-width: 760px; width: 100%; }
  .problem-intro, .ecosystem-intro { align-items: start; grid-template-columns: 1fr; }
  .large-copy { max-width: 820px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 330px; }
  .problem-icon { margin-top: 35px; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-step:nth-child(2) { border-right: 0; }
  .journey-step:nth-child(-n+2) { border-bottom: 1px solid var(--dark-line); }
  .method-layout { grid-template-columns: 1fr; }
  .method-sticky { position: static; }
  .method-sticky .section-heading h2 { font-size: clamp(48px, 8vw, 75px); }
  .founder-section { grid-template-columns: 1fr; }
  .founder-identity { min-height: 430px; }
  .founder-monogram { height: 330px; width: 330px; }
  .founder-signature { bottom: 6%; right: 22%; }
  .consultation-shell { grid-template-columns: 1fr; }
  .consultation-copy { max-width: 820px; }
  .relationship-grid { grid-template-columns: 1fr; }
  .relationship-copy { max-width: 780px; }
  .contact-console { max-width: 820px; width: 100%; }
  .relationship-values { margin-top: 60px; }
  .human-founder-section { grid-template-columns: 1fr; }
  .founder-card { max-width: 700px; width: 100%; }
  .human-story { max-width: 860px; }
  .audience-banner { grid-template-columns: 1fr auto; }
  .audience-banner > span { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { min-height: 68px; padding: 10px 17px; }
  .site-header.is-scrolled { min-height: 64px; }
  .brand-mark { height: 39px; width: 39px; }
  .brand-name strong { font-size: 14px; }
  .hero { gap: 50px; padding: 68px 18px 35px; }
  h1 { font-size: clamp(52px, 15.2vw, 74px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-assurance { gap: 12px; }
  .ecosystem-stage { border-radius: 18px; min-height: 500px; }
  .signal-card { display: none; }
  .stage-core { height: 390px; }
  .core-ring.ring-one { height: 240px; width: 240px; }
  .core-ring.ring-two { height: 150px; width: 150px; }
  .core-logo { height: 82px; width: 82px; }
  .core-logo b { font-size: 29px; }
  .orbit-card { min-width: 108px; padding: 9px; }
  .orbit-card strong { font-size: 9px; }
  .orbit-card i { display: none; }
  .card-ads { left: 3%; top: 7%; }
  .card-landing { right: 3%; top: 7%; }
  .card-crm { bottom: 7%; left: 3%; }
  .card-revenue { bottom: 7%; right: 3%; }
  .stage-footer { min-height: 61px; }
  .stage-footer strong { font-size: 8px; }
  .hero-bottom { align-items: start; grid-template-columns: auto 1fr; }
  .hero-bottom a { grid-column: 2; }
  .section { padding: 72px 18px; }
  .section-number { margin-bottom: 40px; }
  .swipe-hint { display: block; }
  .section-heading h2, .fit-heading h2, .consultation-copy h2, .founder-story h2 { font-size: clamp(42px, 12vw, 59px); }
  .problem-intro, .ecosystem-intro { gap: 30px; margin-bottom: 45px; }
  .problem-grid { display: flex; margin-right: -18px; overflow-x: auto; padding: 0 18px 12px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .problem-grid::-webkit-scrollbar { display: none; }
  .problem-card { flex: 0 0 84vw; min-height: 355px; padding: 28px; scroll-snap-align: start; }
  .problem-statement { align-items: start; grid-template-columns: 1fr; }
  .journey { display: flex; margin-right: -18px; overflow-x: auto; padding-right: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .journey::-webkit-scrollbar { display: none; }
  .journey-step { border-bottom: 0; border-right: 1px solid var(--dark-line); flex: 0 0 84vw; min-height: 345px; scroll-snap-align: start; }
  .journey-step:last-child { border-right: 0; }
  .journey-step h3 { margin-top: 45px; }
  .ecosystem-equation { align-items: start; grid-template-columns: 1fr; justify-content: stretch; text-align: center; }
  .ecosystem-equation i { transform: rotate(90deg); }
  .method-row { grid-template-columns: auto 1fr; }
  .method-owner { grid-column: 2; justify-self: start; }
  .founder-identity { min-height: 360px; }
  .founder-monogram { height: 260px; width: 260px; }
  .founder-monogram span { font-size: 120px; }
  .founder-signature { bottom: 2%; right: 11%; }
  .story-timeline article { padding: 25px 0; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: 400px; padding: 28px; }
  .fit-card li { font-size: 16px; }
  .consultation-steps { grid-template-columns: 1fr; }
  .consultation-steps span { align-items: center; grid-template-columns: auto 1fr; }
  .consultation-form { padding: 27px 20px; }
  .form-heading { display: grid; gap: 7px; }
  .form-heading small { align-self: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .footer-main, .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-bottom nav { justify-content: center; }
  .mobile-cta { align-items: center; background: linear-gradient(145deg, #dda94b, #c98f2d); border: 1px solid #efca84; border-radius: 13px; bottom: 14px; box-shadow: 0 14px 36px rgba(6,27,23,.26); color: #211608; display: flex; font-size: 13px; font-weight: 800; gap: 15px; justify-content: center; left: 18px; min-height: 53px; position: fixed; right: 18px; z-index: 90; }
  .site-footer { padding-bottom: 95px; }
  .relationship-grid { gap: 45px; }
  .relationship-copy h2, .human-story h2 { font-size: clamp(42px, 12vw, 59px); }
  .contact-console { border-radius: 17px; }
  .console-thread { min-height: 430px; padding: 24px 18px; }
  .chat-line { max-width: 88%; }
  .chat-line p { font-size: 13px; }
  .console-footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  .relationship-values { display: flex; margin-right: -18px; overflow-x: auto; padding-right: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .relationship-values::-webkit-scrollbar { display: none; }
  .relationship-values article { border-bottom: 0; border-right: 1px solid var(--line); flex: 0 0 82vw; scroll-snap-align: start; }
  .relationship-values article:last-child { border-right: 0; }
  .founder-card { min-height: 440px; }
  .founder-card-copy strong { font-size: 38px; }
  .human-story > p { font-size: 15px; }
  .audience-banner { grid-template-columns: 1fr; padding-bottom: 45px; padding-top: 45px; }
  .audience-banner > span { grid-column: auto; }
  .audience-banner .button { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
