/* ==========================================================
   Motive — one-page site
   ========================================================== */
:root {
  --ink: #201B13;
  --ink-2: #2B251C;
  --clay: #B45938;
  --clay-2: #D0714E;
  --clay-soft: #F1D9CC;
  --cream: #F6F0E6;
  --sand: #EADFCF;
  --paper: #FBF8F3;
  --muted: #6E6558;
  --line: rgba(32, 27, 19, .12);
  --line-light: rgba(246, 240, 230, .16);

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --r: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --gutter: clamp(16px, 5vw, 64px);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.6 var(--sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--clay); }
::selection { background: var(--clay); color: var(--cream); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 16px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

.eyebrow {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--clay); margin: 0 0 18px;
}
.eyebrow--light { color: var(--clay-2); }
.big {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(42px, 6.4vw, 88px); line-height: .98; margin: 0;
}
.head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 860px; }
.head__lede { color: var(--muted); max-width: 600px; margin: 22px 0 0; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 16px; text-decoration: none; background: var(--bg);
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s;
  will-change: transform;
}
.btn--primary { --bg: var(--clay); color: #fff; box-shadow: 0 10px 24px -12px rgba(180, 89, 56, .8); }
.btn--primary:hover { --bg: #9f4c2e; box-shadow: 0 16px 34px -14px rgba(180, 89, 56, .9); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn--text { padding-left: 0; padding-right: 0; color: inherit; background: none; border: 0; opacity: .75; }
.btn--text:hover { opacity: 1; }
.btn--sm { padding: 11px 18px; font-size: 14px; }

/* ---------- Progress ---------- */
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 60; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--clay); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(calc(100% - 24px), 1180px);
  display: flex; align-items: center; gap: 24px; padding: 10px 10px 10px 22px;
  border-radius: 999px; border: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 248, 243, .78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--line); box-shadow: 0 12px 40px -24px rgba(32, 27, 19, .35);
}
.nav.is-hidden { transform: translate(-50%, -140%); }
.nav__logo img { width: 104px; height: auto; transition: transform .4s var(--ease); }
.nav__logo:hover img { transform: rotate(-4deg) scale(1.04); }
.nav__links { display: flex; gap: 4px; margin: 0 auto; }
.nav__links a {
  position: relative; text-decoration: none; font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; color: var(--muted); transition: color .25s, background .25s;
}
.nav__links a:hover { color: var(--ink); background: rgba(32, 27, 19, .05); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--clay); transform: translateX(-50%);
}
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); position: relative; }
.nav__burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
.nav__burger span:first-child { top: 19px; }
.nav__burger span:last-child { top: 26px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

body.menu-open .nav { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .nav__logo img { content: url(img/logo-light.png); }
body.menu-open .nav__burger { background: var(--cream); }
.menu {
  position: fixed; inset: 0; z-index: 45; background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: 100px 28px 28px;
  clip-path: circle(0 at calc(100% - 44px) 40px); transition: clip-path .7s var(--ease);
}
.menu.is-open { clip-path: circle(150% at calc(100% - 44px) 40px); }
.menu nav { display: flex; flex-direction: column; }
.menu nav a {
  font-family: var(--serif); font-size: clamp(40px, 11vw, 64px); line-height: 1.15; text-decoration: none;
  display: flex; align-items: baseline; gap: 14px; opacity: 0; transform: translateY(20px);
  transition: opacity .5s, transform .5s var(--ease);
}
.menu nav a small { font: 500 13px var(--sans); color: var(--clay-2); }
.menu.is-open nav a { opacity: 1; transform: none; }
.menu.is-open nav a:nth-child(2) { transition-delay: .05s; }
.menu.is-open nav a:nth-child(3) { transition-delay: .1s; }
.menu.is-open nav a:nth-child(4) { transition-delay: .15s; }
.menu.is-open nav a:nth-child(5) { transition-delay: .2s; }
.menu.is-open nav a:nth-child(6) { transition-delay: .25s; }
.menu.is-open nav a:nth-child(7) { transition-delay: .3s; }
.menu .menu__cta { font: 600 18px var(--sans); color: var(--clay-2); margin-top: 28px; }
.menu__foot { margin-top: auto; color: rgba(246, 240, 230, .6); font-size: 14px; }
.menu__foot a { color: var(--cream); }

/* ---------- Rail ---------- */
.rail { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 40; display: flex; flex-direction: column; gap: 14px; }
.rail a { position: relative; width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid currentColor; color: rgba(32, 27, 19, .35); transition: color .3s, transform .3s var(--ease), background .3s; }
.rail a::before {
  content: attr(data-label); position: absolute; right: 22px; top: 50%; transform: translate(6px, -50%);
  white-space: nowrap; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; background: var(--ink); color: var(--cream);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .3s var(--ease);
}
.rail a:hover::before, .rail a:focus-visible::before { opacity: 1; transform: translate(0, -50%); }
.rail a.is-active { color: var(--clay); background: var(--clay); transform: scale(1.35); }
.rail.on-dark a { color: rgba(246, 240, 230, .45); }
.rail.on-dark a.is-active { color: var(--clay-2); background: var(--clay-2); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: grid; grid-template-columns: 1.08fr .92fr; overflow-x: clip; align-items: center; gap: 40px;
  max-width: 1320px; margin: 0 auto; padding: 130px var(--gutter) 70px;
}
.hero::before {
  content: ""; position: absolute; z-index: -1; width: 780px; height: 780px; right: -220px; top: -140px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(208, 113, 78, .22), transparent 70%);
}
.rotator { display: inline-block; position: relative; color: var(--ink); min-width: 7ch; }
.rotator span { display: inline-block; }
.rotator .out { animation: rotOut .45s var(--ease) forwards; }
.rotator .in { animation: rotIn .55s var(--ease) forwards; }
@keyframes rotOut { to { opacity: 0; transform: translateY(-70%); filter: blur(4px); } }
@keyframes rotIn { from { opacity: 0; transform: translateY(70%); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

.hero__title { font-family: var(--sans); font-weight: 700; font-size: clamp(40px, 5.2vw, 76px); max-width: 13.5ch; line-height: 1.02; letter-spacing: -.035em; margin: 0 0 28px; }
.hero__title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .w > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 45ms + .1s); }
.hero.is-in .hero__title .w > span { transform: none; }
.hero__title .w--em { overflow: visible; }
.hero__title .w--em > span { opacity: 0; transform: translateY(40%); transition: transform 1s var(--ease), opacity .8s; transition-delay: calc(var(--i) * 45ms + .1s); }
.hero.is-in .hero__title .w--em > span { opacity: 1; }
.hero__title em { font-size: 1.12em; letter-spacing: -.01em; position: relative; white-space: nowrap; }
.scribble svg { position: absolute; left: 0; right: 0; bottom: -.08em; width: 100%; height: .28em; overflow: visible; }
.scribble path { fill: none; stroke: var(--clay); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 320; transition: stroke-dashoffset 1.2s var(--ease) 1s; }
.hero.is-in .scribble path { stroke-dashoffset: 0; }

.hero__lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 540px; margin: 0 0 34px; }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { list-style: none; padding: 0; margin: 44px 0 0; display: flex; align-items: center; }
.hero__proof li img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--paper); }
.hero__proof li + li { margin-left: -12px; }
.hero__proof .hero__proof-text { margin-left: 18px; font-size: 14px; line-height: 1.35; color: var(--muted); }

.hero__art { position: relative; height: min(640px, 78svh); }
.ph { position: absolute; margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(32, 27, 19, .45); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph--a { width: 58%; height: 78%; left: 20%; top: 6%; z-index: 2; animation: floatIn 1.2s var(--ease) .2s both; }
.ph--b { width: 34%; height: 44%; left: 0; bottom: 2%; z-index: 3; transform: rotate(-4deg); animation: floatIn 1.2s var(--ease) .4s both; }
.ph--c { width: 32%; height: 40%; right: 0; top: 30%; z-index: 1; animation: floatIn 1.2s var(--ease) .55s both; }
.ph--c img { object-position: 50% 40%; }
.ph--b img { object-position: 50% 20%; transform: scale(1.75); transform-origin: 46% 24%; }
@keyframes floatIn { from { opacity: 0; translate: 0 60px; } to { opacity: 1; translate: 0 0; } }

.chip {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px;
  background: rgba(251, 248, 243, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px;
  font-size: 13.5px; font-weight: 500; white-space: nowrap;
  box-shadow: 0 18px 40px -22px rgba(32, 27, 19, .5);
  animation: chipIn .8s var(--ease) both, bob 6s ease-in-out infinite;
}
.chip b { color: var(--clay); font-weight: 700; }
.chip__dot { width: 9px; height: 9px; border-radius: 50%; background: #3BA55C; box-shadow: 0 0 0 0 rgba(59, 165, 92, .5); animation: ping 2s infinite; }
.chip__icon { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--clay-soft); color: var(--clay); font-size: 14px; }
.chip--1 { top: 2%; left: 2%; animation-delay: .9s, 1.7s; }
.chip--2 { top: 22%; right: -2%; animation-delay: 1.1s, 0s; }
.chip--3 { bottom: -2%; left: 24%; animation-delay: 1.3s, .8s; }
.chip__txt { display: flex; flex-direction: column; line-height: 1.3; }
.chip__txt small { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.chip__icon--live { background: rgba(59, 165, 92, .12); }
@keyframes chipIn { from { opacity: 0; transform: translateY(16px) scale(.94); } }
@keyframes bob { 50% { translate: 0 -8px; } }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(59, 165, 92, 0); } 100% { box-shadow: 0 0 0 0 rgba(59, 165, 92, 0); } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 20px 0; background: var(--cream); }
.marquee__track { display: flex; gap: 38px; width: max-content; align-items: center; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); white-space: nowrap; }
.marquee i { font-style: normal; color: var(--clay); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Philosophy ---------- */
.philo { padding: clamp(90px, 12vw, 160px) 0; }
.philo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 80px); margin: 40px 0 0; max-width: 1040px; }
.philo__grid p { margin: 0; font-size: 19px; color: var(--muted); }
.philo__grid strong { color: var(--ink); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 30px 26px 0 0; display: flex; flex-direction: column; gap: 10px; }
.stat + .stat { padding-left: 26px; border-left: 1px solid var(--line); }
.stat b { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 6vw, 84px); line-height: 1; color: var(--clay); }
.stat > span { font-size: 15px; color: var(--muted); max-width: 230px; }
.stat sup { color: var(--clay); }
.footnote { font-size: 12px; color: var(--muted); opacity: .8; margin-top: 30px; }

/* ---------- Ecosystem ---------- */
.eco { padding: clamp(90px, 12vw, 150px) 0; background: var(--cream); border-radius: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px) 0 0; }
.eco__stage { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.eco__diagram { position: relative; aspect-ratio: 600 / 500; width: 100%; max-width: 680px; margin: 0 auto; }
.eco__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.eco__lines path { fill: none; stroke: var(--clay); stroke-width: 1.5; stroke-dasharray: 5 7; opacity: .45; transition: opacity .3s, stroke-width .3s; }
.eco__lines path.is-hot { opacity: 1; stroke-width: 2.5; stroke-dasharray: none; }
.pulse { fill: var(--clay); }
.eco__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 30%; aspect-ratio: 1; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: grid; place-content: center; text-align: center;
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); line-height: 1;
  box-shadow: 0 0 0 12px rgba(32, 27, 19, .06), 0 0 0 26px rgba(32, 27, 19, .03);
  animation: breathe 4s ease-in-out infinite;
}
.eco__core span { font-style: italic; color: var(--clay-2); }
.eco__core small { font: 500 11px var(--sans); letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-top: 8px; }
@keyframes breathe { 50% { box-shadow: 0 0 0 18px rgba(32, 27, 19, .06), 0 0 0 36px rgba(32, 27, 19, .025); } }
.eco__node {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 20px; border-radius: 18px; border: 1.5px solid var(--line); background: var(--paper);
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.eco__node span { font-family: var(--serif); font-size: 20px; color: var(--clay); line-height: 1; }
.eco__node small { font-weight: 500; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.eco__node:hover { transform: translate(-50%, -50%) scale(1.05); border-color: var(--clay); }
.eco__node.is-active { background: var(--clay); color: #fff; border-color: var(--clay); box-shadow: 0 16px 34px -14px rgba(180, 89, 56, .8); }
.eco__node.is-active span, .eco__node.is-active small { color: rgba(255, 255, 255, .85); }

.eco__panels { display: grid; }
.eco__panel { grid-area: 1 / 1; background: var(--paper); border-radius: var(--r); padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line);
  opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none; transition: opacity .45s, transform .55s var(--ease); }
.eco__panel.is-active { opacity: 1; transform: none; pointer-events: auto; }
.eco__panel h3 { font-family: var(--serif); font-weight: 400; font-size: 44px; line-height: 1; margin: 6px 0 14px; }
.eco__panel > p { color: var(--muted); margin: 0 0 20px; }
.tag { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin: 0; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.45; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--clay-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%23B45938' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat;
}
.pull { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 62px); line-height: 1.05; text-align: center; margin: clamp(70px, 9vw, 120px) auto 0; max-width: 900px; }

/* ---------- Pathways ---------- */
.paths { padding: clamp(90px, 12vw, 150px) 0; background: var(--cream); }
.tabs { position: relative; display: inline-flex; gap: 4px; padding: 6px; border-radius: 999px; background: var(--sand); margin-bottom: 36px; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs button { position: relative; z-index: 1; border: 0; background: none; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 8px; transition: color .3s; }
.tabs button[aria-selected="true"] { color: var(--cream); }
.tabs__ink { position: absolute; top: 6px; bottom: 6px; left: 0; border-radius: 999px; background: var(--ink); transition: transform .5s var(--ease), width .5s var(--ease); }
.pill { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; background: var(--clay); color: #fff; padding: 3px 8px; border-radius: 999px; }
.tabpanel { animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } }
.tabpanel__kicker { font-size: 19px; color: var(--muted); margin: 0 0 30px; max-width: 720px; }
.tabpanel__kicker em { font-size: 1.25em; }

.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 940px; }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 28px; transform-style: preserve-3d; transition: transform .5s var(--ease), box-shadow .5s;
}
.card:hover { box-shadow: 0 30px 60px -36px rgba(32, 27, 19, .5); }
.card__step { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin: 0 0 12px; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 42px; line-height: 1; margin: 0 0 14px; }
.card h3 span { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.card > p { color: var(--muted); margin: 0 0 22px; font-size: 15.5px; }
.card__promise { font-family: var(--serif); font-style: italic; font-size: 21px !important; line-height: 1.25; color: var(--ink) !important; }
.card--feature { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.card--feature > p { color: rgba(246, 240, 230, .7); }
.card--feature .card__promise { color: var(--cream) !important; }
.card--feature .card__step { color: var(--clay-2); }
.card--feature .ticks li::before { background-color: rgba(208, 113, 78, .22); }
.ribbon { position: absolute; top: -13px; right: 24px; background: var(--clay); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(180, 89, 56, .8); }
.note { margin: 28px 0 0; font-size: 14.5px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; max-width: 760px; }

.addons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px; transition: transform .4s var(--ease), border-color .3s, background .3s; }
.addon:hover { transform: translateY(-6px); border-color: var(--clay); }
.addon__cat { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.addon h4 { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.05; margin: 8px 0 10px; }
.addon p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ---------- Process ---------- */
.process { padding: clamp(90px, 12vw, 150px) 0; }
.timeline { list-style: none; padding: 0; margin: 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.timeline__bar { position: absolute; left: 28px; right: 28px; top: 28px; height: 2px; background: var(--line); }
.timeline__bar span { display: block; height: 100%; background: var(--clay); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); transition: transform .15s linear; }
.step { position: relative; display: flex; flex-direction: column; gap: 22px; }
.step__num {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); border: 1.5px solid var(--line); font-family: var(--serif); font-size: 26px;
  transition: background .4s, color .4s, border-color .4s, transform .5s var(--ease);
}
.step.is-lit .step__num { background: var(--clay); border-color: var(--clay); color: #fff; transform: scale(1.08); }
.step__when { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin: 0 0 6px; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 34px; line-height: 1.05; margin: 0 0 10px; }
.step p { margin: 0; font-size: 15.5px; color: var(--muted); }

/* ---------- Scorecard ---------- */
.score { background: var(--ink); color: var(--cream); padding: clamp(90px, 12vw, 150px) 0; overflow: hidden; }
.score::before { content: ""; position: absolute; width: 900px; height: 900px; left: -300px; bottom: -500px; border-radius: 50%; background: radial-gradient(closest-side, rgba(180, 89, 56, .35), transparent 70%); }
.score__wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: center; position: relative; }
.score__intro > p:not(.eyebrow) { color: rgba(246, 240, 230, .72); font-size: 18px; margin: 24px 0 0; }
.score__intro em { color: var(--clay-2); }
.score .score__small { font-size: 14px !important; color: rgba(246, 240, 230, .5) !important; }

.quiz { background: var(--ink-2); border: 1px solid var(--line-light); border-radius: 28px; padding: clamp(24px, 3.4vw, 40px); min-height: 480px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.quiz__bar { height: 4px; border-radius: 99px; background: var(--line-light); overflow: hidden; margin-bottom: 30px; }
.quiz__bar span { display: block; height: 100%; width: 0; background: var(--clay-2); transition: width .6s var(--ease); }
.quiz__body { flex: 1; display: flex; flex-direction: column; }
.quiz__q { animation: qIn .5s var(--ease); display: flex; flex-direction: column; flex: 1; }
.quiz__q.leaving { animation: qOut .3s var(--ease) forwards; }
@keyframes qIn { from { opacity: 0; transform: translateX(30px); } }
@keyframes qOut { to { opacity: 0; transform: translateX(-30px); } }
.quiz__count { font-size: 13px; color: rgba(246, 240, 230, .5); font-weight: 600; letter-spacing: .08em; margin: 0 0 10px; }
.quiz h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.2vw, 40px); line-height: 1.08; margin: 0 0 26px; }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt {
  text-align: left; display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px;
  border: 1px solid var(--line-light); background: rgba(246, 240, 230, .03); color: var(--cream); font-size: 16px;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.quiz__opt kbd { font: 600 12px var(--sans); width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line-light); color: rgba(246, 240, 230, .6); }
.quiz__opt:hover { background: rgba(208, 113, 78, .12); border-color: var(--clay-2); transform: translateX(4px); }
.quiz__opt.is-picked { background: var(--clay); border-color: var(--clay); }
.quiz__opt.is-picked kbd { background: #fff; color: var(--clay); border-color: #fff; }
.quiz__hint { margin: auto 0 0; padding-top: 20px; font-size: 12.5px; color: rgba(246, 240, 230, .4); }
.quiz__back { background: none; border: 0; color: rgba(246, 240, 230, .55); padding: 0; font-size: 14px; }
.quiz__back:hover { color: var(--cream); }
.quiz__start { text-align: center; margin: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.quiz__start .dial-preview { width: 140px; height: 140px; }

.res { animation: qIn .6s var(--ease); }
.res__rings { display: flex; gap: 24px; margin-bottom: 22px; flex-wrap: wrap; }
.ring { display: flex; align-items: center; gap: 14px; }
.ring svg { width: 96px; height: 96px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 8; }
.ring .bg { stroke: var(--line-light); }
.ring .fg { stroke: var(--clay-2); stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: 264; transition: stroke-dashoffset 1.6s var(--ease); }
.ring__txt b { font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1; display: block; }
.ring__txt span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(246, 240, 230, .6); font-weight: 600; }
.res__verdict { font-family: var(--serif); font-size: 28px; line-height: 1.15; margin: 0 0 18px; }
.res__verdict em { color: var(--clay-2); }
.res h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-2); margin: 0 0 12px; }
.moves { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; counter-reset: m; }
.moves li { counter-increment: m; display: flex; gap: 14px; padding: 14px 16px; border-radius: 14px; background: rgba(246, 240, 230, .05); font-size: 15px; line-height: 1.45; opacity: 0; animation: moveIn .5s var(--ease) forwards; }
@keyframes moveIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
.moves li:nth-child(2) { animation-delay: .15s; }
.moves li:nth-child(3) { animation-delay: .3s; }
.moves li::before { content: counter(m); flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--clay); font-size: 13px; font-weight: 700; }
.moves b { display: block; }
.res__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Results ---------- */
.results { padding: clamp(90px, 12vw, 150px) 0; }
.quotes { position: relative; }
.quotes__viewport { display: grid; }
.quote { grid-area: 1 / 1; margin: 0; display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 70px); align-items: center;
  opacity: 0; pointer-events: none; transition: opacity .6s; }
.quote.is-active { opacity: 1; pointer-events: auto; }
.quote img { width: 260px; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: var(--r); transform: rotate(-3deg) scale(.96); transition: transform .9s var(--ease); }
.quote.is-active img { transform: rotate(-2deg); }
.quote blockquote { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(32px, 4.2vw, 58px); line-height: 1.06; }
.quote figcaption { font-size: 15px; color: var(--muted); }
.quote figcaption b { display: block; color: var(--ink); font-size: 17px; }
.quotes__ctrl { display: flex; align-items: center; gap: 16px; margin-top: 36px; padding-left: calc(260px + clamp(28px, 5vw, 70px)); }
.round { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: none; font-size: 18px; transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease); }
.round:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.round:active { transform: scale(.92); }
.quotes__dots { display: flex; gap: 8px; }
.quotes__dots button { width: 34px; height: 4px; border: 0; padding: 0; border-radius: 99px; background: var(--line); position: relative; overflow: hidden; }
.quotes__dots button span { position: absolute; inset: 0; background: var(--clay); transform-origin: 0 50%; transform: scaleX(0); }
.quotes__dots button.is-active span { animation: dotFill 7s linear forwards; }
.quotes.paused .quotes__dots button.is-active span { animation-play-state: paused; }
@keyframes dotFill { to { transform: scaleX(1); } }

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: clamp(70px, 9vw, 120px); align-items: center; }
.gallery figure { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 2 / 3; }
.gallery figure:nth-child(even) { transform: translateY(36px); }
.gallery figure.reveal.is-in:nth-child(even) { transform: translateY(36px); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(90px, 12vw, 150px) 0; background: var(--cream); }
.faq__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.faq .head { position: sticky; top: 120px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc details:first-child { border-top: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 26px 50px 26px 0; position: relative; font-size: 19px; font-weight: 600; letter-spacing: -.01em; transition: color .25s; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 30px; height: 30px; margin-top: -15px; border-radius: 50%;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%23201B13' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center/16px no-repeat;
  border: 1px solid var(--line); transition: transform .4s var(--ease), background-color .3s;
}
.acc details[open] summary::after { transform: rotate(135deg); background-color: var(--clay-soft); }
.acc summary:hover { color: var(--clay); }
.acc details p { margin: 0; padding: 0 50px 26px 0; color: var(--muted); font-size: 16.5px; }
.acc details[open] p { animation: panelIn .45s var(--ease); }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--cream); padding: clamp(90px, 12vw, 150px) 0; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 900px; height: 900px; right: -300px; top: -400px; border-radius: 50%; background: radial-gradient(closest-side, rgba(180, 89, 56, .3), transparent 70%); }
.contact__wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); position: relative; }
.contact__intro > p:not(.eyebrow) { color: rgba(246, 240, 230, .72); font-size: 18px; margin: 24px 0 0; max-width: 440px; }
.contact__intro em { color: var(--clay-2); }
.contact__intro .big { font-size: clamp(42px, 5.2vw, 76px); }
.contact__meta { list-style: none; padding: 0; margin: 44px 0 0; display: grid; gap: 16px; }
.contact__meta li { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line-light); font-size: 15px; }
.contact__meta span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(246, 240, 230, .5); font-weight: 600; padding-top: 2px; }
.contact__meta a { text-decoration: none; border-bottom: 1px solid var(--line-light); }
.contact__meta a:hover { border-color: var(--clay-2); }

.form { background: var(--paper); color: var(--ink); border-radius: 28px; padding: clamp(24px, 3.4vw, 44px); position: relative; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6); }
.form__steps { list-style: none; padding: 0; margin: 0 0 30px; display: flex; gap: 8px; }
.form__steps li { flex: 1; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); padding-bottom: 12px; border-bottom: 3px solid var(--line); transition: border-color .4s, color .4s; }
.form__steps li span { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: var(--sand); transition: background .4s, color .4s; }
.form__steps li.is-on { color: var(--ink); border-color: var(--clay); }
.form__steps li.is-on span { background: var(--clay); color: #fff; }
.form__steps li.is-done span { background: var(--ink); color: #fff; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.form__step { display: none; }
.form__step.is-on { display: block; animation: qIn .5s var(--ease); }
.form__step.is-on.back { animation-name: qInBack; }
@keyframes qInBack { from { opacity: 0; transform: translateX(-30px); } }

.field { position: relative; margin-bottom: 14px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 14px; padding: 24px 16px 10px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field label { position: absolute; left: 17px; top: 17px; font-size: 16px; color: var(--muted); pointer-events: none; transform-origin: 0 0; transition: transform .25s var(--ease), color .25s; }
.field label i { font-style: normal; opacity: .6; }
.field input:focus, .field textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 4px rgba(180, 89, 56, .12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-10px) scale(.76); color: var(--clay); }
.field.is-bad input { border-color: #C0392B; animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }

.q { font-weight: 600; margin: 22px 0 12px; font-size: 16px; }
.q i { font-style: normal; font-weight: 400; color: var(--muted); }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choices.is-bad { animation: shake .4s; }
.choices.is-bad span { border-color: rgba(192, 57, 43, .55); }
.choices label { position: relative; cursor: pointer; }
.choices input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choices span { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 14.5px; font-weight: 500; transition: background .2s, color .2s, border-color .2s, transform .25s var(--ease); user-select: none; }
.choices label:hover span { border-color: var(--ink); }
.choices input:checked + span { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.04); }
.choices--multi input:checked + span::before { content: "✓ "; color: var(--clay-2); }
.choices input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }

.form__error { color: #B03A2E; font-size: 14px; min-height: 20px; margin: 14px 0 0; }
.form__nav { display: flex; justify-content: flex-end; align-items: center; gap: 16px; margin-top: 12px; }
.form__nav [data-back] { margin-right: auto; }
.form__nav .btn[disabled] { opacity: .6; pointer-events: none; }

.form.is-done { display: grid; place-items: center; }
.choices + .field { margin-top: 20px; }
.form__done { text-align: center; padding: 40px 10px; animation: qIn .6s var(--ease); position: relative; }
.form__done h3 { font-family: var(--serif); font-weight: 400; font-size: 48px; line-height: 1; margin: 0 0 16px; }
.form__done p { color: var(--muted); max-width: 420px; margin: 0 auto 12px; }
.done__small { font-size: 14px; }
.done__burst { position: absolute; left: 50%; top: 30%; width: 0; height: 0; }
.done__burst i { position: absolute; width: 10px; height: 10px; border-radius: 2px; animation: confetti 1.4s var(--ease) forwards; }
@keyframes confetti { from { transform: translate(0, 0) rotate(0); opacity: 1; } to { transform: translate(var(--tx), var(--ty)) rotate(var(--r)); opacity: 0; } }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: rgba(246, 240, 230, .72); padding: 70px 0 0; border-top: 1px solid var(--line-light); overflow: hidden; }
.foot__wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.foot__wrap > div:first-child p { max-width: 280px; font-size: 15px; }
.foot__h { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-2); margin: 0 0 12px; }
.foot p { font-size: 15px; line-height: 1.7; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--cream); }
.foot__base { display: flex; justify-content: space-between; gap: 16px; margin-top: 50px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid var(--line-light); font-size: 13px; }
.foot__word { font-family: var(--serif); font-style: italic; font-size: clamp(120px, 26vw, 380px); line-height: .75; margin: 0; text-align: center; color: rgba(246, 240, 230, .05); user-select: none; transform: translateY(12%); }

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed; left: 50%; bottom: 18px; z-index: 44; transform: translate(-50%, 140%);
  background: var(--clay); color: #fff; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 16px 40px -14px rgba(180, 89, 56, .9);
  transition: transform .5s var(--ease); display: none;
}
.float-cta.is-on { transform: translate(-50%, 0); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .eco__stage { grid-template-columns: 1fr; }
  .eco__panels { max-width: 640px; margin: 0 auto; width: 100%; }
  .nav__links a { padding: 8px 10px; font-size: 14px; }
  .addons { grid-template-columns: repeat(2, 1fr); }
  .rail { display: none; }
}
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav { justify-content: space-between; padding: 8px 8px 8px 18px; }
  .nav__burger { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; min-height: auto; }
  .hero__art { height: 520px; max-width: 560px; width: 100%; margin: 20px auto 0; }
  .philo__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 30px; }
  .score__wrap, .contact__wrap, .faq__wrap { grid-template-columns: 1fr; }
  .faq .head { position: static; }
  .cards--3 { grid-template-columns: 1fr; max-width: 560px; }
  .timeline { grid-template-columns: 1fr; gap: 34px; }
  .timeline__bar { left: 27px; right: auto; top: 28px; bottom: 28px; width: 2px; height: auto; }
  .timeline__bar span { transform-origin: 50% 0; transform: scaleY(var(--p, 0)); height: 100%; }
  .step { flex-direction: row; }
  .step__num { flex: none; }
  .quote { grid-template-columns: 1fr; }
  .quote img { width: 180px; }
  .quotes__ctrl { padding-left: 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .foot__wrap { grid-template-columns: 1fr 1fr; }
  .float-cta { display: inline-flex; gap: 8px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__title { font-size: clamp(36px, 10.4vw, 52px); }
  .hero__title em { white-space: normal; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__proof .hero__proof-text { font-size: 13px; }
  .hero__art { height: 420px; }
  .chip { font-size: 12px; padding: 8px 11px; }
  .chip--2 { right: 0; }
  .chip--3 { left: 10%; }
  .chip__txt small { font-size: 9.5px; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat + .stat { border-left: 0; padding-left: 0; }
  .stat + .stat { border-top: 1px solid var(--line); margin-top: 30px; }
  .eco__node { padding: 10px 12px; font-size: 13px; border-radius: 14px; }
  .eco__node small { font-size: 9.5px; }
  .eco__core small { display: none; }
  .eco__core { font-size: 22px; }
  .eco__diagram { margin: 20px 0; }
  .cards--2, .addons { grid-template-columns: 1fr; }
  .card h3 { font-size: 36px; }
  .tabs button { padding: 10px 14px; font-size: 14px; }
  .tabs .pill { display: none; }
  .quiz { min-height: 520px; }
  .ring svg { width: 78px; height: 78px; }
  .ring__txt b { font-size: 38px; }
  .gallery { gap: 8px; }
  .gallery figure:nth-child(even), .gallery figure.reveal.is-in:nth-child(even) { transform: translateY(18px); }
  .foot__wrap { grid-template-columns: 1fr; }
  .foot__base { flex-direction: column; }
  .acc summary { font-size: 17px; }
  .form__steps li { font-size: 0; gap: 0; }
  .form__steps li span { font-size: 11px; }
}

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