:root {
  --navy: #13263A;
  --navy-deep: #0B1927;
  --navy-soft: #1A344E;
  --ivory: #F7F3EB;
  --paper: #FCFAF6;
  --copper: #B87845;
  --copper-light: #D79A68;
  --slate: #65727D;
  --charcoal: #1E2328;
  --ink: #15202B;
  --line: rgba(19,38,58,.14);
  --radius: 24px;
  --shadow: 0 28px 80px rgba(10,24,36,.18);
  --shell: min(1180px, calc(100vw - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--ivory); color: var(--navy); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.section { padding: 120px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--copper-light); margin: 0 0 18px; }
.eyebrow.dark { color: var(--copper); }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.03em; }
h1 { font-size: clamp(3.15rem, 7vw, 6.7rem); line-height: .95; margin-bottom: 28px; }
h1 span { color: var(--copper-light); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.9rem); line-height: 1.03; margin-bottom: 24px; }
h3 { font-size: 1.28rem; line-height: 1.25; }
p { color: #4D5A64; }
.lead { font-size: clamp(1.1rem, 2vw, 1.38rem); line-height: 1.7; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--copper); color: #fff; border: 1px solid var(--copper); font-weight: 700; transition: .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: #C7834E; box-shadow: 0 12px 28px rgba(184,120,69,.28); }
.button-small { min-height: 42px; padding-inline: 18px; }
.text-link { color: var(--ivory); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.dark-link { color: var(--navy); }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: .3s ease; }
.site-header.scrolled { background: rgba(11,25,39,.92); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ivory); }
.brand-mark { width: 38px; height: 38px; border: 1px solid rgba(215,154,104,.58); color: var(--copper-light); display: grid; place-items: center; font: 700 1.25rem Georgia, serif; transform: skewX(-5deg); border-radius: 7px; }
.brand-word { letter-spacing: .28em; font-size: .88rem; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(247,243,235,.88); font-size: .9rem; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content:""; position:absolute; left:0; right:100%; bottom:-7px; height:1px; background:var(--copper-light); transition:.2s; }
.main-nav > a:not(.button):hover::after { right:0; }
.menu-toggle { display:none; background:none; border:0; width:42px; height:42px; padding:10px; }
.menu-toggle span { display:block; height:2px; background:var(--ivory); margin:6px 0; }

.hero { min-height: 100svh; background: var(--navy-deep); color: var(--ivory); position: relative; overflow: hidden; display:flex; align-items:center; padding: 130px 0 80px; }
.hero::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,25,39,.2), transparent 55%); pointer-events:none; }
.hero-glow { position:absolute; width:580px; height:580px; right:-180px; top:10%; background: radial-gradient(circle, rgba(184,120,69,.2), transparent 68%); filter:blur(8px); }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns: 1.02fr .98fr; gap:72px; align-items:center; }
.hero-copy { max-width: 670px; }
.hero-lede { color: rgba(247,243,235,.77); font-size: clamp(1.08rem, 1.6vw, 1.28rem); max-width: 650px; }
.hero-actions { display:flex; align-items:center; gap:24px; margin-top:34px; flex-wrap:wrap; }
.hero-note { display:flex; gap:10px; align-items:center; margin-top:36px; color:rgba(247,243,235,.58); font-size:.9rem; }
.dot { width:7px; height:7px; border-radius:50%; background:var(--copper-light); box-shadow:0 0 0 6px rgba(215,154,104,.1); }
.hero-photo-wrap { border-radius: 34px; overflow:hidden; position:relative; box-shadow:var(--shadow); aspect-ratio: 4 / 5; max-height: 720px; }
.hero-photo-wrap::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(11,25,39,.7)); }
.hero-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position: 44% center; }
.hero-badge { position:absolute; z-index:3; left:28px; bottom:28px; background:rgba(11,25,39,.78); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.12); border-radius:18px; padding:14px 18px; display:flex; gap:12px; align-items:center; }
.hero-badge strong,.hero-badge span { display:block; }
.hero-badge span { color:rgba(247,243,235,.66); font-size:.82rem; }
.mini-mark { width:32px; height:32px; border:1px solid var(--copper-light); color:var(--copper-light)!important; display:grid!important; place-items:center; border-radius:7px; font-weight:700; }
.scroll-cue { position:absolute; bottom:28px; left:50%; width:22px; height:38px; border:1px solid rgba(247,243,235,.28); border-radius:20px; }
.scroll-cue span { width:4px; height:4px; border-radius:50%; background:var(--copper-light); position:absolute; left:8px; top:8px; animation:scrollCue 1.8s infinite; }
@keyframes scrollCue { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} 100%{opacity:0} }

.recognition { background: var(--ivory); text-align:center; }
.recognition .narrow { margin-inline:auto; }
.recognition-callout { color:var(--navy); font: 500 clamp(1.8rem,3vw,2.9rem) Georgia,serif; margin:40px 0 20px; }

.difference { background:var(--navy); color:var(--ivory); }
.difference p { color:rgba(247,243,235,.66); }
.section-head { max-width:760px; margin-bottom:58px; }
.kin-advance { display:grid; grid-template-columns:1fr auto 1fr auto 1.2fr; gap:22px; align-items:stretch; margin-bottom:64px; }
.word-card { border:1px solid rgba(255,255,255,.12); padding:28px; border-radius:20px; background:rgba(255,255,255,.035); }
.word-card span { color:var(--copper-light); font-weight:800; letter-spacing:.12em; }
.word-card p { margin:12px 0 0; }
.result-card { background:rgba(184,120,69,.12); border-color:rgba(215,154,104,.32); }
.plus,.equals { align-self:center; color:var(--copper-light); font-size:1.5rem; }
.pillar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.pillar { border-top:1px solid rgba(255,255,255,.18); padding-top:22px; }
.pillar-number { color:var(--copper-light); font-size:.78rem; letter-spacing:.12em; }
.pillar h3 { margin:20px 0 10px; }

.help { background:var(--paper); }
.split-head { display:grid; grid-template-columns: 1.15fr .85fr; gap:70px; align-items:end; margin-bottom:62px; }
.split-head p:last-child { font-size:1.08rem; }
.outcome-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); }
.outcome { padding:32px 26px 32px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:58px 1fr; column-gap:14px; }
.outcome:nth-child(even){ padding-left:26px; border-left:1px solid var(--line); }
.outcome > span { color:var(--copper); font-size:.78rem; letter-spacing:.12em; grid-row:1/3; }
.outcome h3 { margin-bottom:8px; }
.outcome p { margin:0; }
.model-strip { margin-top:70px; padding:34px; border-radius:24px; background:var(--navy); color:var(--ivory); display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.model-strip > div { padding:10px 24px; }
.model-strip > div + div { border-left:1px solid rgba(255,255,255,.14); }
.model-strip p { color:rgba(247,243,235,.7); margin-bottom:0; }
.model-tag { display:inline-block; color:var(--copper-light); border:1px solid rgba(215,154,104,.34); border-radius:999px; padding:5px 10px; font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; margin-bottom:14px; }
.model-tag.muted { color:rgba(247,243,235,.6); border-color:rgba(255,255,255,.16); }

.approach { background:var(--navy-deep); color:var(--ivory); }
.approach p { color:rgba(247,243,235,.68); }
.journey { display:grid; gap:80px; }
.journey-step { display:grid; grid-template-columns:1.08fr .92fr; gap:60px; align-items:center; }
.journey-step.reverse { grid-template-columns:.92fr 1.08fr; }
.journey-step.reverse .journey-image { order:2; }
.journey-image { border-radius:28px; overflow:hidden; box-shadow:var(--shadow); aspect-ratio:3/2; }
.journey-image img { width:100%; height:100%; object-fit:cover; }
.journey-copy span { color:var(--copper-light); letter-spacing:.14em; font-size:.76rem; font-weight:800; }
.journey-copy h3 { font-family:Georgia,serif; font-size:clamp(2rem,3.6vw,3.6rem); margin:12px 0 14px; font-weight:500; }
.journey-copy p { font-size:1.08rem; }

.work { background:var(--ivory); }
.work-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:70px; align-items:center; }
.concept-note { margin:30px 0; padding:20px 22px; border-left:3px solid var(--copper); background:rgba(184,120,69,.08); }
.concept-note span { display:block; color:var(--copper); font-size:.76rem; text-transform:uppercase; letter-spacing:.12em; font-weight:800; margin-bottom:6px; }
.concept-note p { margin:0; font-size:.92rem; }
.work-collage { position:relative; padding:0 0 55px 55px; }
.collage-main { border-radius:26px; box-shadow:var(--shadow); }
.collage-small { position:absolute; width:46%; left:0; bottom:0; border:7px solid var(--ivory); border-radius:18px; box-shadow:0 18px 48px rgba(11,25,39,.2); }

.about { background:var(--navy); color:var(--ivory); }
.about-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:center; }
.founder-photo { border-radius:30px; overflow:hidden; max-height:680px; box-shadow:var(--shadow); }
.founder-photo img { width:100%; height:100%; object-fit:cover; }
.about p { color:rgba(247,243,235,.7); }
.about blockquote { margin:32px 0 0; padding:22px 0 0; border-top:1px solid rgba(255,255,255,.18); font:500 clamp(1.5rem,2.8vw,2.4rem) Georgia,serif; color:var(--copper-light); line-height:1.35; }

.conversation { background:#0E1D2B; color:var(--ivory); }
.conversation-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:80px; align-items:start; }
.conversation-copy p { color:rgba(247,243,235,.7); }
.no-pressure { font-weight:700; color:var(--copper-light)!important; }
.discovery-card { background:var(--ivory); color:var(--ink); border-radius:28px; padding:36px; box-shadow:var(--shadow); }
.step-label { display:block; color:var(--copper); font-size:.75rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:22px; }
.form-step { display:none; }
.form-step.active { display:block; animation:fadeStep .35s ease; }
@keyframes fadeStep { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.discovery-card label { display:block; color:var(--navy); font-weight:700; margin:18px 0 7px; }
.optional { font-weight:400; color:var(--slate); font-size:.84rem; }
.discovery-card input,.discovery-card textarea,.discovery-card select { width:100%; border:1px solid rgba(19,38,58,.18); border-radius:14px; background:#fff; color:var(--ink); padding:14px 15px; outline:none; transition:.2s; }
.discovery-card input:focus,.discovery-card textarea:focus,.discovery-card select:focus { border-color:var(--copper); box-shadow:0 0 0 3px rgba(184,120,69,.12); }
.discovery-card .button { margin-top:24px; }
.form-actions { display:flex; gap:18px; align-items:center; justify-content:flex-end; margin-top:26px; }
.form-actions .button { margin-top:0; }
.text-button { border:0; background:none; color:var(--navy); text-decoration:underline; cursor:pointer; padding:8px; }
.form-complete h3 { font:500 2rem Georgia,serif; color:var(--navy); }
.form-complete .button { margin-right:12px; }

.site-footer { background:#08141F; color:rgba(247,243,235,.7); padding:58px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.1fr .8fr .8fr; gap:40px; align-items:start; }
.footer-brand { margin-bottom:14px; }
.footer-links { display:grid; gap:9px; }
.footer-links a:hover { color:var(--copper-light); }
.footer-note { text-align:right; }
.footer-note p { color:inherit; margin-bottom:4px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:42px; padding-top:22px; display:flex; justify-content:space-between; gap:20px; font-size:.82rem; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; transition-delay:var(--delay,0ms); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 960px) {
  :root { --shell:min(100% - 30px, 780px); }
  .section { padding:90px 0; }
  .menu-toggle { display:block; }
  .main-nav { position:fixed; inset:72px 15px auto 15px; background:rgba(11,25,39,.98); border:1px solid rgba(255,255,255,.1); border-radius:18px; padding:18px; flex-direction:column; align-items:stretch; gap:0; opacity:0; transform:translateY(-12px); pointer-events:none; transition:.2s; }
  .main-nav.open { opacity:1; transform:none; pointer-events:auto; }
  .main-nav a { padding:13px 8px; }
  .main-nav .button { margin-top:8px; }
  .hero { min-height:auto; padding-top:120px; }
  .hero-grid { grid-template-columns:1fr; gap:46px; }
  .hero-photo-wrap { aspect-ratio:16/10; max-height:none; }
  .hero-photo-wrap img { object-position:center 38%; }
  .scroll-cue { display:none; }
  .kin-advance { grid-template-columns:1fr; }
  .plus,.equals { justify-self:center; transform:rotate(90deg); }
  .pillar-grid { grid-template-columns:1fr 1fr; }
  .split-head,.work-grid,.about-grid,.conversation-grid { grid-template-columns:1fr; gap:46px; }
  .journey-step,.journey-step.reverse { grid-template-columns:1fr; gap:30px; }
  .journey-step.reverse .journey-image { order:0; }
  .work-collage { max-width:760px; }
  .about-grid { max-width:760px; }
  .founder-photo { max-height:640px; }
}

@media (max-width: 620px) {
  :root { --shell:calc(100vw - 24px); }
  .nav-wrap { height:70px; }
  .brand-mark { width:34px; height:34px; }
  .brand-word { font-size:.76rem; letter-spacing:.22em; }
  .hero { padding:105px 0 58px; }
  h1 { font-size:clamp(3rem,15vw,4.6rem); }
  h2 { font-size:clamp(2.2rem,11vw,3.4rem); }
  .hero-actions { align-items:flex-start; flex-direction:column; gap:16px; }
  .hero-photo-wrap { aspect-ratio:4/5; border-radius:24px; }
  .hero-photo-wrap img { object-position:45% center; }
  .hero-badge { left:16px; bottom:16px; right:16px; }
  .pillar-grid,.outcome-grid,.model-strip { grid-template-columns:1fr; }
  .outcome { grid-template-columns:44px 1fr; padding:28px 0; }
  .outcome:nth-child(even) { padding-left:0; border-left:0; }
  .model-strip > div { padding:10px 4px; }
  .model-strip > div + div { border-left:0; border-top:1px solid rgba(255,255,255,.14); padding-top:24px; }
  .journey { gap:60px; }
  .journey-image { border-radius:20px; aspect-ratio:4/3; }
  .work-collage { padding:0 0 38px 32px; }
  .collage-small { border-width:4px; }
  .discovery-card { padding:24px 18px; border-radius:20px; }
  .form-actions { flex-wrap:wrap; }
  .form-actions .button { width:100%; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-note { text-align:left; }
  .footer-bottom { flex-direction:column; }
}

@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; }
}


/* ===== Blueprint V1.1 refinement layer ===== */
.hero-v11 { min-height:100svh; isolation:isolate; }
.hero-v11::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(11,25,39,.98) 0%,rgba(11,25,39,.92) 43%,rgba(11,25,39,.35) 72%,rgba(11,25,39,.12)); }
.hero-v11::after { background:linear-gradient(0deg,rgba(11,25,39,.92) 0%,transparent 34%); }
.hero-media { position:absolute; inset:0 0 0 42%; z-index:-2; overflow:hidden; }
.hero-media img { width:100%; height:100%; object-fit:cover; object-position:50% 42%; filter:saturate(.88) contrast(1.03); transform:scale(1.025); animation:heroDrift 8s ease-out both; }
@keyframes heroDrift { from{transform:scale(1.075)} to{transform:scale(1.025)} }
.hero-v11-inner { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,680px) 1fr; align-items:end; min-height:calc(100svh - 210px); }
.hero-v11 .hero-copy { padding:34px 0; }
.hero-v11 h1 { font-size:clamp(3.25rem,6.4vw,6.25rem); }
.hero-line { display:block; color:var(--ivory); }
.hero-line.accent { color:var(--copper-light); }
.hero-portrait { min-height:520px; position:relative; }
.hero-v11 .hero-badge { left:auto; right:0; bottom:34px; }

.brand-intro { max-width:820px; margin-bottom:28px; }
.brand-intro h2 { text-wrap:balance; }
.brand-intro > p:last-child { max-width:720px; font-size:1.08rem; }
.brand-story { height:220vh; position:relative; margin:10px 0 80px; }
.brand-story-stage { position:sticky; top:0; height:100svh; overflow:hidden; display:grid; place-items:center; background:radial-gradient(circle at 50% 48%,rgba(184,120,69,.14),transparent 38%); }
.brand-scene { position:absolute; width:min(900px,calc(100% - 36px)); text-align:center; opacity:0; transform:translateY(28px) scale(.985); transition:opacity .55s ease,transform .65s cubic-bezier(.2,.7,.2,1); pointer-events:none; }
.brand-scene.active { opacity:1; transform:none; }
.scene-label { display:block; color:var(--copper-light); font-family:Georgia,"Times New Roman",serif; font-size:clamp(4.2rem,13vw,10rem); line-height:.9; letter-spacing:-.045em; }
.brand-scene p { color:rgba(247,243,235,.76); font-size:clamp(1rem,2vw,1.35rem); letter-spacing:.04em; margin:24px 0 0; }
.scene-result .scene-label { color:var(--ivory); letter-spacing:.08em; font-family:Inter,system-ui,sans-serif; font-weight:700; font-size:clamp(3.1rem,10vw,8rem); }
.scene-k { width:70px;height:70px;margin:0 auto 24px;border:1px solid rgba(215,154,104,.6);border-radius:16px;display:grid;place-items:center;color:var(--copper-light);font:700 2.5rem Georgia,serif; }
.story-progress { position:absolute; left:50%; bottom:9vh; width:90px; height:2px; background:rgba(255,255,255,.12); transform:translateX(-50%); overflow:hidden; }
.story-progress i { display:block; width:100%; height:100%; background:var(--copper-light); transform:scaleX(0); transform-origin:left; }
.meaning-block { padding:12px 0 88px; }
.meaning-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.meaning-grid > div { border-top:1px solid rgba(255,255,255,.18); padding:24px 10px 0 0; }
.meaning-grid strong { font-size:1.12rem; }
.meaning-grid p { margin:9px 0 0; }
.principles-wrap { padding-top:20px; }
.principles-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:30px; }
.principles-head h2 { max-width:620px; margin:0; font-size:clamp(2.1rem,4vw,3.6rem); }
.principles-head .eyebrow { margin-bottom:10px; }
.pillar-grid-v11 { grid-template-columns:repeat(2,1fr); gap:14px; }
.principle-card { border:1px solid rgba(255,255,255,.12); border-radius:18px; padding:22px 24px; background:rgba(255,255,255,.035); min-height:160px; transition:border-color .25s ease,transform .25s ease,background .25s ease; }
.principle-card:hover { border-color:rgba(215,154,104,.45); background:rgba(184,120,69,.08); transform:translateY(-2px); }
.principle-card h3 { margin:12px 0 8px; }
.principle-card p { margin:0; line-height:1.45; }

/* More intentional wrapping and vertical rhythm */
.section-head h2,.split-head h2,.work-copy h2,.about-copy h2,.conversation-copy h2 { text-wrap:balance; }
.hero-lede,.section-head p,.split-head p,.journey-copy p,.outcome p,.pillar p { text-wrap:pretty; }
.button,.text-link { white-space:nowrap; }

@media (max-width:960px){
  .hero-v11 { padding:112px 0 0; }
  .hero-v11::before { background:linear-gradient(180deg,rgba(11,25,39,.98) 0%,rgba(11,25,39,.9) 48%,rgba(11,25,39,.2) 72%,rgba(11,25,39,.82) 100%); }
  .hero-media { inset:38% 0 0; }
  .hero-v11-inner { grid-template-columns:1fr; min-height:calc(100svh - 112px); align-content:space-between; }
  .hero-v11 .hero-copy { max-width:720px; padding:10px 0 22px; }
  .hero-portrait { min-height:36vh; }
  .hero-v11 .hero-badge { right:0; bottom:24px; }
  .meaning-grid { grid-template-columns:1fr; gap:22px; }
  .principles-head { display:block; }
}
@media (max-width:620px){
  .section { padding:72px 0; }
  .hero-v11 { min-height:100svh; padding-top:88px; }
  .hero-v11 h1 { font-size:clamp(2.75rem,13vw,4rem); line-height:.96; margin-bottom:22px; }
  .hero-v11 .eyebrow { font-size:.68rem; line-height:1.55; max-width:340px; }
  .hero-v11 .hero-lede { font-size:1rem; line-height:1.55; max-width:360px; }
  .hero-v11 .hero-actions { margin-top:24px; }
  .hero-v11 .button { min-height:50px; padding-inline:20px; }
  .hero-media { inset:51% 0 0; }
  .hero-media img { object-position:50% 35%; }
  .hero-portrait { min-height:31vh; }
  .hero-v11 .hero-badge { left:12px; right:12px; bottom:16px; padding:11px 14px; }
  .brand-intro { margin-bottom:0; }
  .brand-intro h2 { font-size:clamp(2.25rem,10.5vw,3.15rem); }
  .brand-story { height:190vh; margin-bottom:54px; }
  .brand-story-stage { height:88svh; top:6svh; }
  .scene-label { font-size:clamp(4rem,20vw,6rem); }
  .scene-result .scene-label { font-size:clamp(2.7rem,13vw,4.2rem); }
  .brand-scene p { font-size:.98rem; margin-top:18px; }
  .meaning-block { padding-bottom:62px; }
  .meaning-grid > div { padding-top:18px; }
  .pillar-grid-v11 { grid-template-columns:1fr 1fr; gap:10px; }
  .principle-card { min-height:150px; padding:16px 14px; }
  .principle-card h3 { font-size:1.02rem; margin-top:9px; }
  .principle-card p { font-size:.86rem; line-height:1.38; }
  .principles-head h2 { font-size:2.2rem; }
}
@media (max-width:380px){
  .pillar-grid-v11 { grid-template-columns:1fr; }
  .principle-card { min-height:auto; }
}
@media (prefers-reduced-motion:reduce){
  .hero-media img{animation:none!important;}
  .brand-story{height:auto;margin:40px 0 60px;}
  .brand-story-stage{position:relative;top:auto;height:auto;display:grid;gap:18px;padding:10px 0;background:none;}
  .brand-scene{position:relative;opacity:1;transform:none;padding:30px 0;}
  .story-progress{display:none;}
}

/* =========================================================
   Blueprint V1.2 — mobile polish + one-way brand story
   ========================================================= */

/* Cleaner headline rhythm across the site. */
h1,h2,h3 { text-wrap:balance; }
.recognition .narrow { max-width:980px; }
.recognition h2 { max-width:940px; margin-inline:auto; }
.recognition .lead,.recognition .narrow > p:last-child { max-width:900px; margin-inline:auto; }

/* Story affordance: discoverable, understated, and non-blocking. */
.story-cue { position:absolute; left:50%; bottom:13vh; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:7px; color:rgba(247,243,235,.66); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; transition:opacity .35s ease, transform .35s ease; pointer-events:none; }
.story-cue .cue-arrow { color:var(--copper-light); font-size:1.15rem; line-height:1; animation:cueDown 1.6s ease-in-out 2; }
.brand-story.started .story-cue,.brand-story.completed .story-cue { opacity:0; transform:translate(-50%,10px); }
@keyframes cueDown { 0%,100%{transform:translateY(0);opacity:.65} 50%{transform:translateY(7px);opacity:1} }
.story-progress { width:118px; }
.story-progress::after { content:"01   02   03"; position:absolute; width:150px; left:50%; top:10px; transform:translateX(-50%); color:rgba(247,243,235,.38); font-size:.58rem; letter-spacing:.46em; white-space:pre; text-align:center; }

/* Final scene tells the whole story without sacrificing negative space. */
.scene-result { display:flex; flex-direction:column; align-items:center; }
.scene-result .result-story { margin-top:34px; max-width:700px; opacity:0; transform:translateY(14px); transition:opacity .7s ease .35s,transform .7s ease .35s; }
.scene-result.active .result-story { opacity:1; transform:none; }
.result-story .result-pair { margin:0; color:rgba(247,243,235,.88); font-size:clamp(.98rem,1.8vw,1.18rem); line-height:1.65; letter-spacing:.01em; }
.result-story .result-built { margin:12px 0 0; color:rgba(247,243,235,.58); font-size:clamp(.82rem,1.4vw,.98rem); line-height:1.6; }
.result-story .result-cta { display:inline-flex; margin-top:22px; color:var(--copper-light); font-weight:700; text-decoration:none; letter-spacing:.02em; }
.result-story .result-cta:hover { color:var(--ivory); }
.brand-story.completed .story-progress i { transform:scaleX(1)!important; }

@media (max-width: 700px) {
  /* V1.2 rule: important thoughts should look intentionally composed, not accidentally wrapped. */
  .recognition { padding-top:72px; padding-bottom:72px; }
  .recognition h2 { font-size:clamp(2.25rem,10.4vw,3.15rem); line-height:1.02; letter-spacing:-.035em; max-width:11.5em; }
  .recognition .lead { font-size:1.02rem; line-height:1.62; max-width:34em; }
  .recognition-callout { font-size:clamp(2rem,9vw,2.8rem)!important; line-height:1.04!important; max-width:10em; margin-inline:auto!important; }
  .section-head h2,.split-head h2,.principles-head h2 { line-height:1.04; letter-spacing:-.025em; }
  .brand-intro h2 { font-size:clamp(2.15rem,9.4vw,2.85rem); max-width:10.5em; }
  .brand-intro h2 br { display:none; }
  .brand-intro > p:last-child { font-size:1rem; line-height:1.58; }
  .brand-story { height:205vh; margin-top:12px; }
  .brand-story-stage { height:88svh; top:6svh; }
  .story-cue { bottom:15vh; font-size:.64rem; }
  .story-progress { bottom:8vh; }
  .scene-result { width:calc(100% - 40px); }
  .scene-result .scene-k { width:60px;height:60px;margin-bottom:20px;font-size:2.1rem; }
  .scene-result .scene-label { font-size:clamp(2.55rem,12vw,3.75rem); }
  .brand-scene p { white-space:normal; }
  .scene-result > p { font-size:.96rem; }
  .scene-result .result-story { margin-top:26px; max-width:330px; }
  .result-story .result-pair { font-size:.94rem; line-height:1.55; }
  .result-story .result-built { font-size:.8rem; line-height:1.5; }
  .result-story .result-cta { margin-top:18px; font-size:.9rem; }
  .principles-wrap { padding-top:66px; }
  .pillar-grid-v11 { gap:12px; }
  .principle-card { padding:22px 20px; min-height:0; }
  .principle-card h3 { font-size:1.18rem; margin-bottom:6px; }
  .principle-card p { font-size:.92rem; line-height:1.45; }
}

@media (prefers-reduced-motion: reduce) {
  .story-cue .cue-arrow { animation:none; }
  .scene-result .result-story { opacity:1; transform:none; }
}
@media (max-width:700px){ .desktop-break{display:none;} }

/* =========================================================
   Blueprint V1.3 — tighter story flow + image-led experience
   ========================================================= */

/* The redundant meaning block was removed. The Experience now follows the
   signature brand story directly, creating one continuous narrative. */
.difference-v11 { padding-bottom: 26px; }
.approach { padding-top: 78px; }
.principles-section { background:var(--navy); color:var(--ivory); padding:0 0 88px; }
.principles-section .principles-wrap { padding-top:36px; }

/* Experience: copy becomes part of the photograph rather than a second block. */
.journey-overlay { display:grid; gap:28px; margin-top:48px; }
.journey-overlay .journey-step {
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.1);
  background:#0b1927;
  isolation:isolate;
}
.journey-overlay .journey-image { position:absolute; inset:0; }
.journey-overlay .journey-image::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(7,17,27,.02) 25%,rgba(7,17,27,.22) 54%,rgba(7,17,27,.93) 100%);
  z-index:1;
}
.journey-overlay .journey-image img { width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.015); transition:transform 1.2s cubic-bezier(.2,.7,.2,1); }
.journey-overlay .journey-copy {
  position:absolute; z-index:2; left:0; right:0; bottom:0;
  max-width:740px; padding:clamp(30px,5vw,58px);
  color:var(--ivory); opacity:0; transform:translateY(18px);
  transition:opacity .65s ease .16s, transform .65s cubic-bezier(.2,.7,.2,1) .16s;
}
.journey-overlay .journey-step.visible .journey-copy { opacity:1; transform:none; }
.journey-overlay .journey-step.visible .journey-image img { transform:scale(1); }
.journey-overlay .journey-copy span { color:var(--copper-light); font-weight:700; letter-spacing:.16em; font-size:.75rem; }
.journey-overlay .journey-copy h3 { margin:10px 0 9px; color:var(--ivory); font-size:clamp(2rem,4vw,3.55rem); line-height:1.02; text-wrap:balance; }
.journey-overlay .journey-copy p { margin:0; color:rgba(247,243,235,.78); max-width:600px; font-size:1rem; line-height:1.5; }

/* How We Help: one outcome receives emphasis as it moves through the viewport. */
.help-head { margin-bottom:32px; }
.help-head > p { max-width:460px; }
.outcome-selector { border-top:1px solid rgba(11,25,39,.15); }
.outcome-item {
  display:grid; grid-template-columns:58px 1fr; gap:16px; align-items:start;
  padding:24px 4px; border-bottom:1px solid rgba(11,25,39,.15);
  transition:background .32s ease, padding .32s ease, border-color .32s ease, transform .32s ease;
}
.outcome-item > span { color:var(--copper); font-size:.8rem; letter-spacing:.14em; padding-top:5px; }
.outcome-item h3 { margin:0; font-size:clamp(1.35rem,2.8vw,2rem); line-height:1.15; text-wrap:balance; }
.outcome-item p {
  max-height:0; opacity:0; overflow:hidden; margin:0; color:var(--slate);
  transform:translateY(-5px); transition:max-height .38s ease, opacity .28s ease, transform .38s ease, margin .38s ease;
}
.outcome-item.active {
  margin-inline:-16px; padding:27px 20px; border-color:transparent;
  border-radius:18px; background:rgba(184,120,69,.075);
}
.outcome-item.active > span { color:var(--copper-dark); }
.outcome-item.active p { max-height:120px; opacity:1; transform:none; margin-top:9px; }
.outcome-bridge {
  margin:30px 0 44px; padding:25px 28px; border-radius:20px;
  display:flex; align-items:center; justify-content:space-between; gap:26px;
  background:var(--navy); color:var(--ivory);
}
.outcome-bridge h3 { margin:0 0 5px; color:var(--ivory); font-size:1.25rem; }
.outcome-bridge p { margin:0; color:rgba(247,243,235,.68); }
.outcome-bridge .text-link { color:var(--copper-light); flex:0 0 auto; }
.outcome-bridge .text-link:hover { color:var(--ivory); }

@media (max-width:700px){
  .difference-v11 { padding-bottom:10px; }
  .approach { padding-top:58px; }
  .approach .section-head { margin-bottom:0; }
  .approach .section-head h2 { font-size:clamp(2.55rem,11vw,3.35rem); max-width:10em; }
  .approach .section-head > p:last-child { max-width:22em; }
  .journey-overlay { margin-top:34px; gap:18px; }
  .journey-overlay .journey-step { min-height:62svh; border-radius:22px; }
  .journey-overlay .journey-copy { padding:26px 22px; }
  .journey-overlay .journey-copy h3 { font-size:clamp(2rem,9.5vw,2.8rem); max-width:10.5em; }
  .journey-overlay .journey-copy p { font-size:.92rem; line-height:1.45; max-width:30em; }
  .journey-overlay .journey-image img { object-position:center center; }
  .principles-section { padding-bottom:68px; }
  .principles-section .principles-wrap { padding-top:42px; }
  .help-head { display:block; margin-bottom:22px; }
  .help-head h2 { font-size:clamp(2.55rem,10.7vw,3.2rem); line-height:1.0; max-width:10em; }
  .help-head > p { margin-top:22px; max-width:25em; }
  .outcome-item { grid-template-columns:38px 1fr; gap:10px; padding:20px 0; }
  .outcome-item.active { margin-inline:-8px; padding:22px 12px; border-radius:14px; }
  .outcome-item h3 { font-size:1.2rem; }
  .outcome-item.active p { max-height:150px; }
  .outcome-bridge { margin-top:24px; padding:22px 20px; display:block; }
  .outcome-bridge .text-link { margin-top:16px; display:inline-flex; }
}

@media (prefers-reduced-motion:reduce){
  .journey-overlay .journey-copy { opacity:1; transform:none; }
  .journey-overlay .journey-image img { transform:none; }
  .outcome-item p { max-height:none; opacity:1; transform:none; margin-top:9px; }
  .outcome-item { margin:0!important; padding:22px 0!important; background:transparent!important; border-radius:0!important; }
}

/* Blueprint V1.4 — conversion handoff */
.conversion-link { text-decoration: none; }
.final-connect-card { display:flex; flex-direction:column; justify-content:center; gap:1rem; }
.final-connect-card h3 { margin:0; }
.final-connect-card .button { align-self:flex-start; margin-top:.35rem; }
@media (max-width: 720px) {
  .conversation-cta-grid { gap:1.5rem; }
  .final-connect-card { padding:1.5rem; }
  .final-connect-card .button { width:100%; text-align:center; }
}

/* =========================================================
   Blueprint V1.5 — compact completed brand-story payoff
   ========================================================= */
/* Shorten the signature story on mobile without changing its one-way behavior.
   The full sequence still plays normally, but the final KINVANCE payoff occupies
   less vertical space and hands off to the Experience sooner. */
@media (max-width:700px){
  .brand-story{
    height:175vh;
    margin-top:8px;
    margin-bottom:28px;
  }
  .brand-story-stage{
    height:78svh;
    top:7svh;
  }
  .scene-result .scene-k{
    width:56px;
    height:56px;
    margin-bottom:16px;
    font-size:1.95rem;
  }
  .scene-result .scene-label{
    font-size:clamp(2.45rem,11.5vw,3.55rem);
  }
  .scene-result > p{
    margin-top:14px;
  }
  .scene-result .result-story{
    margin-top:20px;
  }
  .result-story .result-built{
    margin-top:9px;
  }
  .result-story .result-cta{
    margin-top:15px;
  }
  .story-progress{
    bottom:12vh;
  }
  .story-cue{
    bottom:18vh;
  }
}

/* Once the reveal is complete, the cue stays gone and the progress treatment
   becomes quieter so the final brand message — not the animation UI — is the focus. */
.brand-story.completed .story-progress::after{
  opacity:.45;
}

/* =========================================================
   Blueprint V1.6 — frictionless compact outcome stack
   ========================================================= */
/* This section must scroll exactly like a normal webpage. No sticky behavior,
   no scroll snapping, no expanding/collapsing rows, and no layout-height
   changes while the visitor's finger is moving. */
#help { scroll-margin-top: 96px; }
.outcome-stack {
  border-top: 1px solid rgba(11,25,39,.14);
}
.outcome-stack .outcome-item {
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  gap:14px;
  align-items:start;
  margin:0;
  padding:18px 4px;
  border-radius:0;
  border-bottom:1px solid rgba(11,25,39,.12);
  background:transparent;
  transition:none;
}
.outcome-stack .outcome-item > span {
  color:var(--copper);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.14em;
  padding-top:4px;
}
.outcome-stack .outcome-item h3 {
  margin:0 0 4px;
  color:var(--navy);
  font-size:clamp(1.08rem,2.2vw,1.36rem);
  line-height:1.15;
  text-wrap:balance;
}
.outcome-stack .outcome-item p,
.outcome-stack .outcome-item.active p {
  display:block;
  max-height:none;
  opacity:1;
  overflow:visible;
  transform:none;
  margin:0;
  color:var(--slate);
  font-size:.92rem;
  line-height:1.42;
  transition:none;
}
.outcome-stack .outcome-item.active {
  margin:0;
  padding:18px 4px;
  border-radius:0;
  border-color:rgba(11,25,39,.12);
  background:transparent;
}
.outcome-stack .outcome-item.active > span { color:var(--copper); }

@media (max-width:700px){
  #help { scroll-margin-top: 86px; }
  .help { padding-top:68px; padding-bottom:68px; }
  .help-head { margin-bottom:18px; }
  .help-head h2 {
    font-size:clamp(2.3rem,9.7vw,2.9rem);
    line-height:1.01;
    max-width:10.5em;
  }
  .help-head > p { margin-top:16px; font-size:.96rem; line-height:1.48; }
  .outcome-stack .outcome-item,
  .outcome-stack .outcome-item.active {
    grid-template-columns:34px minmax(0,1fr);
    gap:8px;
    padding:13px 0;
  }
  .outcome-stack .outcome-item > span { font-size:.68rem; padding-top:3px; }
  .outcome-stack .outcome-item h3 { font-size:1.02rem; line-height:1.14; margin-bottom:2px; }
  .outcome-stack .outcome-item p,
  .outcome-stack .outcome-item.active p { font-size:.82rem; line-height:1.34; }
  .outcome-bridge { margin-top:20px; margin-bottom:34px; }
}

@media (prefers-reduced-motion:reduce){
  .outcome-stack .outcome-item { opacity:1!important; transform:none!important; }
}

/* V1.6.1 hotfix: allow interactive elements in the active brand-story scene.
   Base scenes remain non-interactive while hidden so they cannot intercept taps. */
.brand-scene.active { pointer-events:auto; }
.brand-scene:not(.active) { pointer-events:none; }


/* =========================================================
   Blueprint V1.7 — cinematic Kinvance story film
   ========================================================= */
/* The opening hero remains untouched. This film belongs only to the
   “Growth means more when you stay connected” chapter and visually
   bridges that philosophy into the KIN → ADVANCE → KINVANCE reveal. */
.brand-film-shell { margin-top:34px; }
.brand-film {
  position:relative;
  margin:0;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:28px;
  background:#0b1927;
  border:1px solid rgba(247,243,235,.10);
  isolation:isolate;
}
.brand-film::before,
.brand-film::after {
  content:"";
  position:absolute;
  z-index:2;
  left:0; right:0;
  height:18%;
  pointer-events:none;
}
.brand-film::before {
  top:0;
  background:linear-gradient(180deg,rgba(19,38,58,.42),rgba(19,38,58,0));
}
.brand-film::after {
  bottom:0;
  background:linear-gradient(0deg,rgba(19,38,58,.60),rgba(19,38,58,0));
}
.brand-film-video {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#0b1927;
}
.brand-film.is-playing {
  border-color:rgba(215,154,104,.20);
}

@media (max-width:700px){
  .brand-film-shell { margin-top:24px; }
  .brand-film {
    border-radius:20px;
  }
  /* The video fills the visual gap without turning this chapter into another
     full-screen hero. */
  .difference-v11 .brand-intro { margin-bottom:0; }
}

@media (prefers-reduced-motion:reduce){
  .brand-film-video { display:block; }
}


/* =========================================================
   Blueprint V1.8 — film-to-brand resolution
   The cinematic story now absorbs the former swipe sequence.
   ========================================================= */
.brand-film-shell { margin-top:30px; margin-bottom:34px; }
.brand-film { box-shadow:0 24px 70px rgba(4,14,24,.24); }
.brand-film-final-cta {
  position:absolute; z-index:5; left:50%; top:76%; transform:translate(-50%,-50%);
  width:260px; height:58px; border-radius:999px; opacity:0; pointer-events:none;
}
.brand-film.has-ended .brand-film-final-cta { pointer-events:auto; }
.brand-film-final-cta:focus-visible { opacity:1; outline:2px solid var(--copper-light); outline-offset:4px; }
@media (max-width:700px){
  .brand-film-shell { width:calc(100vw - 24px); margin-top:22px; margin-bottom:24px; }
  .brand-film { border-radius:18px; }
  .brand-film-final-cta { top:78%; width:190px; height:46px; }
  .difference-v11 { padding-bottom:24px; }
  .approach { padding-top:52px; }
}

/* =========================================================
   Blueprint V1.9 — compact cinematic brand resolution
   The film now carries the entire KIN + ADVANCE → KINVANCE story,
   so the surrounding navy chapter stays intentionally compact.
   ========================================================= */
.difference-v11{
  padding-top:88px;
  padding-bottom:18px;
}
.difference-v11 .brand-intro{
  margin-bottom:0;
}
.brand-film-shell{
  margin-top:24px;
  margin-bottom:12px;
}
.brand-film{
  aspect-ratio:16/9;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(4,14,24,.22);
}
.approach{
  padding-top:48px;
}
@media (max-width:700px){
  .difference-v11{
    padding-top:66px;
    padding-bottom:10px;
  }
  .difference-v11 .brand-intro h2{
    margin-bottom:18px;
  }
  .difference-v11 .brand-intro > p:last-child{
    margin-bottom:0;
  }
  .brand-film-shell{
    width:calc(100vw - 20px);
    margin-top:18px;
    margin-bottom:8px;
  }
  .brand-film{
    /* Slightly taller than 16:9 on phones so the film has visual weight
       without recreating the old full-screen navy chapter. */
    aspect-ratio:16/10;
    border-radius:18px;
  }
  .brand-film-video{
    object-fit:cover;
  }
  .approach{
    padding-top:38px;
  }
}


/* =========================================================
   Blueprint V1.10 — "breath of air" final resolution
   The cinematic sequence resolves into a full-frame warm ivory brand
   moment before handing off to the deep-navy Kinvance Experience.
   ========================================================= */

/* Two-navy system: structural navy + intentional deep navy only. */
:root{
  --navy:#13263A;
  --navy-deep:#0B1927;
  --navy-soft:#13263A;
}
.conversation{ background:var(--navy-deep); }

/* Let the film remain cinematic while the final state becomes spacious,
   bright, and deliberately free of the former circular treatment. */
.brand-film{
  position:relative;
  overflow:hidden;
}
.brand-breath{
  position:absolute;
  inset:0;
  z-index:3;
  display:grid;
  place-items:center;
  background:var(--ivory);
  color:var(--navy);
  opacity:0;
  visibility:hidden;
  transform:scale(1.018);
  transition:
    opacity 1.05s cubic-bezier(.22,.61,.36,1),
    transform 1.35s cubic-bezier(.22,.61,.36,1),
    visibility 0s linear 1.05s;
  pointer-events:none;
}
.brand-film.is-resolving .brand-breath,
.brand-film.has-ended .brand-breath{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  transition-delay:0s;
}
.brand-breath-inner{
  width:min(84%,880px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.brand-breath-mark{
  width:72px;
  height:72px;
  border:1.5px solid rgba(184,120,69,.78);
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--copper);
  font:700 2.55rem Georgia,serif;
  margin-bottom:18px;
}
.brand-breath-name{
  color:var(--navy);
  font-size:clamp(2.2rem,5.4vw,4.7rem);
  line-height:1;
  font-weight:700;
  letter-spacing:.24em;
  margin-left:.24em;
}
.brand-breath-tagline{
  color:var(--copper);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:700;
  font-size:clamp(.72rem,1.25vw,1rem);
  margin:18px 0 26px;
}
.brand-breath-message{
  display:flex;
  flex-direction:column;
  color:var(--navy);
  font:500 clamp(1.15rem,2.1vw,1.75rem)/1.32 Georgia,serif;
}
.brand-breath-message strong{ font-weight:500; }
.brand-breath-support{
  color:var(--slate);
  font-size:clamp(.72rem,1.15vw,.98rem);
  margin:19px 0 22px;
}
.brand-breath-cta{
  color:var(--copper);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:800;
  font-size:clamp(.72rem,1vw,.9rem);
}
.brand-breath-cta b{ margin-left:7px; }
.brand-breath-line{
  display:block;
  width:min(240px,34%);
  height:2px;
  background:var(--copper);
  opacity:.72;
  margin-top:24px;
}

/* The cream reveal is the visual punctuation mark. The next chapter then
   lands decisively on the one approved deep navy. */
.difference-v11{
  background:var(--navy);
}
.approach{
  background:var(--navy-deep);
  padding-top:46px;
}
.brand-film-shell{
  margin-bottom:14px;
}

@media (max-width:700px){
  .difference-v11{ padding-bottom:8px; }
  .brand-film-shell{
    width:calc(100vw - 20px);
    margin-bottom:6px;
  }
  .brand-breath-inner{ width:91%; }
  .brand-breath-mark{
    width:50px;height:50px;border-radius:10px;
    font-size:1.8rem;margin-bottom:10px;
  }
  .brand-breath-name{
    font-size:clamp(1.55rem,7.1vw,2.25rem);
    letter-spacing:.19em;
    margin-left:.19em;
  }
  .brand-breath-tagline{
    font-size:.56rem;
    letter-spacing:.13em;
    margin:9px 0 13px;
  }
  .brand-breath-message{
    font-size:clamp(.86rem,3.8vw,1.08rem);
    line-height:1.24;
  }
  .brand-breath-support{
    font-size:.58rem;
    margin:10px 0 11px;
  }
  .brand-breath-cta{ font-size:.58rem; }
  .brand-breath-line{ margin-top:12px; width:32%; }
  .approach{ padding-top:38px; }
}


/* =========================================================
   Blueprint V1.11 — Stage 1 locked
   Direct cinematic handoff: KIN + ADVANCE -> cream KINVANCE.
   The obsolete navy/circular MP4 end card is masked before it appears.
   ========================================================= */
.brand-breath{
  transition:
    opacity 1.15s cubic-bezier(.22,.61,.36,1),
    transform 1.45s cubic-bezier(.22,.61,.36,1),
    visibility 0s linear 1.15s;
}
.brand-film.is-resolving .brand-breath,
.brand-film.has-ended .brand-breath{
  transition-delay:0s;
}

/* Final Stage 1 palette lock */
:root{
  --navy:#13263A;
  --navy-deep:#0B1927;
  --navy-soft:#13263A;
}
.difference-v11{ background:var(--navy); }
.approach,
.conversation{ background:var(--navy-deep); }


/* =========================================================
   BLUEPRINT V1.12 — STAGE 2 STRUCTURAL PROTOTYPE
   Seven-section homepage:
   Hero cinematic -> Cream breath -> Experience -> Help -> Proof -> Human -> CTA
   ========================================================= */

.v112{
  background:var(--navy-deep);
}
.v112 main{
  overflow:hidden;
}
.v112 .site-header{
  background:rgba(11,25,39,.96);
}
.v112 .site-header.scrolled{
  background:rgba(11,25,39,.985);
}

/* 01 HERO */
.v112-hero{
  position:relative;
  background:
    radial-gradient(circle at 75% 28%, rgba(184,120,69,.11), transparent 30%),
    linear-gradient(180deg,#0B1927 0%,#13263A 100%);
  color:var(--ivory);
  padding:clamp(72px,9vw,122px) 0 clamp(46px,6vw,78px);
}
.v112-hero-glow{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(120deg,rgba(255,255,255,.025),transparent 45%);
}
.v112-hero-inner{
  position:relative;
  max-width:1120px;
}
.v112-hero-copy{
  max-width:850px;
  margin-bottom:32px;
}
.v112-hero-copy .eyebrow{
  color:var(--copper-light);
}
.v112-hero-copy h1{
  margin:16px 0 20px;
  font:400 clamp(3.4rem,7.2vw,6.5rem)/.98 Georgia,serif;
  letter-spacing:-.035em;
}
.v112-hero-copy h1 span{
  display:block;
}
.v112-hero-copy h1 .accent{
  color:var(--copper-light);
}
.v112-no-break{
  white-space:nowrap;
}
.v112-hero-lede{
  max-width:720px;
  color:rgba(247,243,234,.73);
  font-size:clamp(1rem,1.6vw,1.22rem);
  line-height:1.7;
}
.v112-hero-film{
  position:relative;
  margin:34px 0 0;
  aspect-ratio:16/9;
  border-radius:24px;
  overflow:hidden;
  background:#07131e;
  box-shadow:0 24px 65px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.08);
}
.v112-hero-video{
  width:100%; height:100%; object-fit:cover; display:block;
}
.v112-hero-final{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:#13263A;
  color:var(--ivory);
  opacity:0;
  visibility:hidden;
  transform:scale(1.015);
  transition:opacity 1.05s cubic-bezier(.22,.61,.36,1), transform 1.25s cubic-bezier(.22,.61,.36,1), visibility 0s linear 1.05s;
}
.v112-hero-film.is-resolving .v112-hero-final,
.v112-hero-film.has-ended .v112-hero-final{
  opacity:1; visibility:visible; transform:scale(1); transition-delay:0s;
}
.v112-final-mark{
  width:70px; height:70px; border:1.5px solid rgba(184,120,69,.75); border-radius:14px;
  display:grid; place-items:center; color:var(--copper-light);
  font:700 2.45rem Georgia,serif; margin-bottom:18px;
}
.v112-final-name{
  font-size:clamp(2.5rem,6vw,5.5rem);
  letter-spacing:.24em;
  margin-left:.24em;
  font-weight:650;
}
.v112-hero-final p{
  color:var(--copper-light);
  margin:14px 0 0;
  font-size:clamp(.9rem,1.5vw,1.2rem);
  letter-spacing:.04em;
}
.v112-hero-actions{
  display:flex; gap:20px; align-items:center; margin-top:26px;
}

/* 02 CREAM BREATH */
.v112-breath{
  background:var(--ivory);
  color:var(--navy);
  padding:clamp(66px,9vw,112px) 0;
  text-align:center;
}
.v112-breath h2{
  margin:0;
  font:400 clamp(2.4rem,5vw,4.8rem)/1.08 Georgia,serif;
}
.v112-breath h2.accent{
  color:var(--copper);
  margin-top:5px;
}
.v112-breath p{
  margin:28px auto 0; color:var(--slate); font-size:1.05rem;
}
.v112-rule{
  display:block; width:54px; height:2px; background:var(--copper); margin:0 auto 30px;
}
.v112-breath .v112-rule:last-child{
  margin:34px auto 0;
}

/* 03 EXPERIENCE */
.v112-experience{
  background:var(--navy-deep);
  color:var(--ivory);
  padding-top:clamp(70px,8vw,106px);
}
.v112-experience .section-head{
  max-width:760px;
}
.v112-experience .section-head h2{
  color:var(--ivory);
  font:400 clamp(3rem,6vw,5.4rem)/1.02 Georgia,serif;
}
.v112-experience .section-head p:not(.eyebrow){
  color:rgba(247,243,234,.67);
}
.v112-experience-visual{
  margin:34px 0 28px;
  height:clamp(260px,42vw,520px);
  border-radius:24px;
  overflow:hidden;
}
.v112-experience-visual img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.v112-process{
  list-style:none; padding:0; margin:0;
  border-top:1px solid rgba(255,255,255,.11);
}
.v112-process li{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:28px;
  padding:24px 0;
  border-bottom:1px solid rgba(255,255,255,.11);
}
.v112-process li > span{
  color:var(--copper-light); font-size:.78rem; letter-spacing:.12em; font-weight:750;
}
.v112-process h3{
  margin:0 0 5px; font:400 clamp(1.45rem,2.5vw,2.25rem)/1.15 Georgia,serif; color:var(--ivory);
}
.v112-process p{
  margin:0; color:rgba(247,243,234,.63); max-width:720px;
}

/* 04 HELP */
.v112-help{
  background:var(--navy);
  color:var(--ivory);
}
.v112-help .split-head .eyebrow{
  color:var(--copper-light);
}
.v112-help .split-head h2{
  color:var(--ivory);
  font:400 clamp(3rem,5.7vw,5rem)/1.04 Georgia,serif;
}
.v112-help .split-head > p{
  color:rgba(247,243,234,.66);
}
.v112-outcomes{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.v112-outcomes article{
  position:relative;
  padding:24px 24px 26px;
  border:1px solid rgba(247,243,234,.14);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}
.v112-outcomes article > span{
  display:block; color:var(--copper-light); font-size:.75rem; letter-spacing:.12em; margin-bottom:26px;
}
.v112-outcomes h3{
  margin:0 0 9px; color:var(--ivory); font-size:1.28rem;
}
.v112-outcomes p{
  margin:0; color:rgba(247,243,234,.6); line-height:1.6;
}

/* 05 WORK / PROOF */
.v112-work{
  background:var(--ivory);
  color:var(--navy);
}
.v112-work-head{
  max-width:820px;
}
.v112-work-head h2{
  margin:14px 0 16px;
  font:400 clamp(3rem,5.7vw,5.1rem)/1.03 Georgia,serif;
}
.v112-work-head .lead{
  font:400 clamp(1.25rem,2.2vw,1.8rem)/1.45 Georgia,serif;
  color:var(--slate);
}
.v112-case-grid{
  display:grid; grid-template-columns:minmax(270px,.75fr) 1.35fr; gap:clamp(32px,6vw,78px);
  align-items:center; margin-top:44px;
}
.v112-phone-wrap{
  display:grid; place-items:center;
}
.v112-phone{
  width:min(300px,100%);
  aspect-ratio:9/18.7;
  border:10px solid #13263A;
  border-radius:42px;
  background:#fff;
  box-shadow:0 22px 50px rgba(19,38,58,.18);
  padding:34px 22px 24px;
  text-align:center;
  position:relative;
}
.v112-phone-top{
  position:absolute; width:36%; height:18px; border-radius:0 0 13px 13px; background:#13263A;
  left:32%; top:0;
}
.v112-phone-kicker{
  color:var(--copper); font-size:.67rem; font-weight:800; letter-spacing:.16em;
}
.v112-phone h3{
  font:400 2rem/1.06 Georgia,serif; margin:18px 0 24px;
}
.v112-choice{
  border:1px solid #d7d2c9; border-radius:999px; padding:10px 11px; margin:9px 0; font-size:.84rem;
}
.v112-phone-cta{
  margin-top:22px; background:var(--copper); color:white; border-radius:999px; padding:12px 10px; font-size:.68rem; font-weight:800;
}
.v112-case-story{
  display:grid; gap:28px;
}
.v112-case-story > div{
  padding-bottom:24px; border-bottom:1px solid rgba(19,38,58,.13);
}
.v112-case-story span{
  color:var(--copper); font-size:.72rem; letter-spacing:.14em; font-weight:800;
}
.v112-case-story h3{
  margin:7px 0 9px; font:400 clamp(1.55rem,2.8vw,2.45rem)/1.15 Georgia,serif;
}
.v112-case-story p{
  margin:0; color:var(--slate); line-height:1.65;
}
.v112-case-note{
  font-size:.78rem; color:#8b8d8e !important; font-style:italic;
}

/* 06 ABOUT */
.v112-about{
  background:var(--navy-deep);
  color:var(--ivory);
}
.v112-about-grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(34px,7vw,86px); align-items:center;
}
.v112-founder-photo{
  border-radius:24px; overflow:hidden; min-height:520px;
}
.v112-founder-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.v112-about h2{
  margin:13px 0 22px;
  font:400 clamp(3rem,5.2vw,4.9rem)/1.03 Georgia,serif;
}
.v112-about .lead,
.v112-about p{
  color:rgba(247,243,234,.68); line-height:1.72;
}
.v112-about blockquote{
  margin:28px 0 0; padding:20px 0 0; border-top:1px solid rgba(255,255,255,.14);
  color:var(--copper-light); font:400 1.35rem/1.45 Georgia,serif;
}

/* 07 CTA */
.v112-final-cta{
  background:var(--ivory);
  color:var(--navy);
  text-align:center;
  padding:clamp(76px,10vw,126px) 0;
}
.v112-final-cta h2{
  margin:16px 0;
  font:400 clamp(3rem,5.8vw,5rem)/1.05 Georgia,serif;
}
.v112-final-cta > .shell > p:not(.eyebrow):not(.v112-no-pressure){
  color:var(--slate); font-size:1.08rem; margin:0 0 25px;
}
.v112-final-cta .button{
  background:var(--navy);
  border-color:var(--navy);
}
.v112-no-pressure{
  margin-top:16px; color:#878b8d; font-size:.84rem;
}

/* footer alignment */
.v112 .site-footer{
  background:#07131f;
}

/* MOBILE */
@media (max-width:700px){
  .v112-hero{
    padding-top:56px;
    padding-bottom:40px;
  }
  .v112-hero-copy h1{
    font-size:clamp(2.45rem,11vw,3.8rem);
    line-height:1.01;
    letter-spacing:-.04em;
  }
  .v112-no-break{
    font-size:.86em;
  }
  .v112-hero-lede{
    font-size:1rem;
    line-height:1.62;
  }
  .v112-hero-film{
    margin-top:26px;
    border-radius:17px;
    aspect-ratio:16/9;
  }
  .v112-final-mark{
    width:48px; height:48px; border-radius:10px; font-size:1.75rem; margin-bottom:10px;
  }
  .v112-final-name{
    font-size:clamp(1.5rem,7vw,2.25rem);
    letter-spacing:.2em; margin-left:.2em;
  }
  .v112-hero-final p{
    margin-top:7px; font-size:.72rem;
  }
  .v112-hero-actions{
    flex-wrap:wrap; gap:14px;
  }

  .v112-breath{
    padding:68px 0;
  }
  .v112-breath h2{
    font-size:clamp(2.05rem,9vw,3rem);
  }

  .v112-experience{
    padding-top:64px;
  }
  .v112-experience .section-head h2{
    font-size:clamp(2.7rem,11vw,4rem);
  }
  .v112-experience-visual{
    height:260px; border-radius:18px;
  }
  .v112-process li{
    grid-template-columns:1fr; gap:8px; padding:21px 0;
  }
  .v112-process h3{
    font-size:1.55rem;
  }

  .v112-help .split-head h2{
    font-size:clamp(2.6rem,10.5vw,3.8rem);
  }
  .v112-outcomes{
    grid-template-columns:1fr;
    gap:9px;
  }
  .v112-outcomes article{
    padding:18px 18px 19px;
  }
  .v112-outcomes article > span{
    margin-bottom:12px;
  }

  .v112-work-head h2{
    font-size:clamp(2.7rem,10.5vw,4rem);
  }
  .v112-case-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  .v112-phone{
    width:min(270px,82vw);
  }

  .v112-about-grid{
    grid-template-columns:1fr;
  }
  .v112-founder-photo{
    min-height:0; aspect-ratio:4/3;
  }
  .v112-about h2{
    font-size:clamp(2.65rem,10.5vw,4rem);
  }

  .v112-final-cta h2{
    font-size:clamp(2.6rem,10.5vw,4rem);
  }
}

@media (max-width:390px){
  .v112-hero-copy h1{
    font-size:2.35rem;
  }
  .v112-no-break{
    font-size:.8em;
  }
}

@media (prefers-reduced-motion:reduce){
  .v112-hero-video{ display:none; }
  .v112-hero-final{
    opacity:1; visibility:visible; transform:none;
  }
}

/* =========================================================
   Blueprint V1.13 — signature hero + compact journey rail
   ========================================================= */
.v112-hero{background:#071725;padding-bottom:0}
.v112-hero-copy .eyebrow{color:rgba(247,243,234,.82);font-weight:700}
.v112-hero-copy h1{color:var(--ivory)}
.v112-hero-copy h1 .accent{color:var(--copper-light)}
.v113-brand-stage{margin-top:30px;position:relative;min-height:clamp(300px,48vw,520px);display:grid;place-items:center;overflow:hidden}
.v113-brand-animation{width:min(100%,1000px);min-height:clamp(280px,44vw,480px);display:grid;place-items:center;position:relative;text-align:center}
.v113-kin-row{font:400 clamp(3.1rem,8vw,7.2rem)/1 Georgia,serif;white-space:nowrap;animation:v113BaseFade 9s ease both infinite}
.v113-kin{color:var(--copper-light)}
.v113-advance{display:inline-block;color:var(--ivory);opacity:0;transform:translateX(-44px);animation:v113Advance 9s cubic-bezier(.22,.61,.36,1) both infinite}
.v113-values-row{position:absolute;top:64%;display:flex;justify-content:center;gap:clamp(12px,3vw,34px);white-space:nowrap;color:rgba(247,243,234,.67);font-size:clamp(.68rem,1.55vw,1.08rem);letter-spacing:.02em;animation:v113BaseFade 9s ease both infinite}
.v113-values-advance{display:inline-block;opacity:0;transform:translateX(-30px);animation:v113Advance 9s cubic-bezier(.22,.61,.36,1) both infinite}
.v113-resolve{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0;transform:scale(.985);animation:v113Resolve 9s cubic-bezier(.22,.61,.36,1) both infinite}
.v113-resolve-mark{width:68px;height:68px;border:1.5px solid rgba(202,139,91,.85);border-radius:14px;display:grid;place-items:center;color:var(--copper-light);font:700 2.4rem Georgia,serif;margin-bottom:20px}
.v113-resolve-name{font-size:clamp(3rem,8vw,7rem);letter-spacing:.22em;margin-left:.22em;font-weight:650;color:var(--ivory)}
.v113-resolve p{margin:16px 0 0;color:var(--copper-light);font-size:clamp(.9rem,1.8vw,1.25rem);letter-spacing:.05em}
@keyframes v113Advance{0%,20%{opacity:0;transform:translateX(-44px)}34%,58%{opacity:1;transform:translateX(0)}68%,100%{opacity:0;transform:translateX(10px)}}
@keyframes v113BaseFade{0%,58%{opacity:1}70%,100%{opacity:0}}
@keyframes v113Resolve{0%,58%{opacity:0;transform:scale(.985)}72%,94%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1.008)}}
.v112-hero-actions{margin:0 -100vw;padding:22px 100vw 28px;background:linear-gradient(180deg,rgba(19,38,58,.5),rgba(19,38,58,.92));border-top:1px solid rgba(255,255,255,.05)}
.v112-breath{padding:18px 0;background:var(--ivory)}
.v112-breath .narrow>*{display:none}.v112-breath .narrow{height:12px}

.v113-process{list-style:none;padding:4px 0 0;margin:30px 0 0;position:relative;max-width:850px}
.v113-process:before{content:"";position:absolute;left:8px;top:18px;bottom:18px;width:1px;background:rgba(202,139,91,.32)}
.v113-step{position:relative;padding-left:36px;margin:0}
.v113-step button{width:100%;border:0;background:none;color:inherit;padding:13px 0;display:flex;align-items:center;gap:14px;text-align:left;cursor:pointer;font:inherit}
.v113-dot{position:absolute;left:3px;width:11px;height:11px;border-radius:50%;border:1.5px solid rgba(202,139,91,.72);background:#071725;transition:.3s ease;box-shadow:0 0 0 5px #071725}
.v113-step.is-active .v113-dot{background:var(--copper-light);transform:scale(1.12)}
.v113-step-label{color:rgba(247,243,234,.55);font-size:.79rem;letter-spacing:.13em;font-weight:800;transition:.3s ease}
.v113-step.is-active .v113-step-label{color:var(--copper-light)}
.v113-step-detail{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .45s cubic-bezier(.22,.61,.36,1),opacity .35s ease;padding-right:8px}
.v113-step-detail>*{overflow:hidden}
.v113-step.is-active .v113-step-detail{grid-template-rows:1fr;opacity:1;padding-bottom:20px}
.v113-step-detail h3{margin:0 0 7px;font:400 clamp(1.75rem,4vw,2.65rem)/1.12 Georgia,serif;color:var(--ivory)}
.v113-step-detail p{margin:0;color:rgba(247,243,234,.64);max-width:690px;line-height:1.65}
@media(max-width:680px){
 .v112-hero{padding-top:92px}.v112-hero-copy{margin-bottom:8px}.v112-hero-copy .eyebrow{font-size:.67rem;line-height:1.45;letter-spacing:.11em}
 .v112-hero-copy h1{font-size:clamp(2.65rem,11.8vw,3.55rem);line-height:1.03}.v112-no-break{white-space:nowrap;font-size:.9em}
 .v112-hero-lede{font-size:1rem;line-height:1.6}.v113-brand-stage{min-height:320px;margin-top:10px}.v113-brand-animation{min-height:310px}
 .v113-values-row{top:61%;gap:8px;font-size:.62rem}.v113-resolve-name{font-size:clamp(2.45rem,12vw,4rem);letter-spacing:.16em;margin-left:.16em}
 .v112-hero-actions{gap:14px;justify-content:space-between}.v112-hero-actions .button{padding:15px 22px}.v112-hero-actions .text-link{font-size:.95rem}
 .v112-experience-visual{margin-bottom:16px;height:280px}.v113-process{margin-top:18px}
}
@media(prefers-reduced-motion:reduce){.v113-kin-row,.v113-values-row,.v113-advance,.v113-values-advance{animation:none!important;opacity:0!important}.v113-resolve{animation:none!important;opacity:1!important;transform:none!important}}

/* =========================================================
   Blueprint V1.14 — scroll-led experience + conversational proof
   ========================================================= */
/* Hero resolution becomes the cream bridge; actions arrive only after resolution. */
.v113-brand-stage{transition:background .9s cubic-bezier(.22,.61,.36,1),border-radius .9s ease;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);padding-left:max(20px,calc((100vw - 1120px)/2));padding-right:max(20px,calc((100vw - 1120px)/2))}
.v113-brand-stage.is-final{background:var(--ivory);color:var(--navy)}
.v113-brand-stage.is-final .v113-resolve-name{color:var(--navy)}
.v113-brand-stage.is-final .v113-resolve-mark{color:var(--copper);border-color:rgba(184,120,69,.72)}
.v113-brand-stage.is-final .v113-resolve p{color:var(--copper)}
.v112-hero-actions{opacity:0;transform:translateY(10px);pointer-events:none;transition:opacity .55s ease,transform .55s ease;background:var(--ivory);border:0}
.v112-hero-actions.is-ready{opacity:1;transform:none;pointer-events:auto}
.v112-hero-actions .text-link{color:var(--navy)}
.v112-hero-actions .button{box-shadow:none}
.v112-breath{display:none}

/* Keep the familiar rail, but let scrolling activate it and crossfade the visual. */
.v112-experience .shell{position:relative}
.v112-experience-visual{position:sticky;top:92px;z-index:2;background:#0b1927;box-shadow:0 18px 42px rgba(0,0,0,.16)}
.v112-experience-visual img{transition:opacity .28s ease,transform .55s ease;transform:scale(1.002)}
.v112-experience-visual.is-changing img{opacity:.18;transform:scale(1.012)}
.v113-process{padding-bottom:16vh}
.v113-step{min-height:28vh;display:flex;flex-direction:column;justify-content:center}
.v113-step.is-active .v113-step-label{text-shadow:0 0 22px rgba(202,139,91,.16)}

/* Featured Experience: live-feeling guided discovery rather than a static case-study list. */
.v112-work{overflow:hidden}
.v112-work-head{max-width:900px}
.v112-work-head h2{font-size:clamp(3.2rem,6.2vw,5.6rem)}
.v114-demo{display:grid;grid-template-columns:minmax(280px,.8fr) 1.2fr;gap:clamp(38px,7vw,90px);align-items:center;margin-top:54px}
.v114-phone{overflow:hidden;min-height:570px}
.v114-phone-screen{position:absolute;inset:38px 22px 24px;display:flex;flex-direction:column;justify-content:center;opacity:0;transform:translateY(18px);pointer-events:none;transition:opacity .48s ease,transform .58s cubic-bezier(.22,.61,.36,1)}
.v114-phone-screen.is-active{opacity:1;transform:none;pointer-events:auto}
.v114-phone-screen .v112-choice{background:#fff;transition:.35s ease}
.v114-phone-screen .v112-choice.is-selected{border-color:var(--copper);background:#f7efe6;box-shadow:0 0 0 2px rgba(184,120,69,.08)}
.v114-result{font:400 1.18rem/1.55 Georgia,serif;color:var(--slate);margin:4px 4px 16px}
.v114-demo-copy{align-self:center}
.v114-demo-kicker{color:var(--copper);font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;font-weight:800;margin:0 0 16px}
.v114-demo-copy>h3{margin:0 0 34px;font:400 clamp(2.2rem,4.3vw,4.2rem)/1.08 Georgia,serif;color:var(--navy)}
.v114-demo-copy>h3 em{font-style:normal;color:var(--copper)}
.v114-proof{display:grid;gap:0;border-top:1px solid rgba(19,38,58,.14)}
.v114-proof>div{display:grid;grid-template-columns:110px 1fr;gap:20px;padding:18px 0;border-bottom:1px solid rgba(19,38,58,.14);align-items:baseline}
.v114-proof span{color:var(--copper);font-size:.73rem;letter-spacing:.14em;font-weight:800}
.v114-proof p{margin:0;color:var(--slate);font-size:1.02rem}

@media(max-width:760px){
 .v113-brand-stage{margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px}
 .v112-hero-actions{margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px}
 .v112-experience-visual{top:82px;height:clamp(220px,38vh,300px);margin-top:26px}
 .v113-process{padding-bottom:8vh}
 .v113-step{min-height:25vh}
 .v114-demo{grid-template-columns:1fr;gap:42px;margin-top:40px}
 .v114-phone{width:min(330px,88vw);min-height:600px}
 .v114-demo-copy>h3{font-size:clamp(2.2rem,10vw,3.35rem)}
 .v114-proof>div{grid-template-columns:90px 1fr;gap:14px}
}
@media(prefers-reduced-motion:reduce){.v112-hero-actions{opacity:1;transform:none;pointer-events:auto}.v113-brand-stage{background:var(--ivory)}.v113-resolve-name{color:var(--navy)!important}}

/* =========================================================
   Blueprint V1.15 — identity-first hero
   KIN → KIN + ADVANCE → KINVANCE → cream proposition
   ========================================================= */
.v115-hero{background:#071725;overflow:hidden}
.v115-brand-phase{min-height:clamp(520px,78vh,760px);display:grid;place-items:center;padding:92px max(20px,calc((100vw - 1120px)/2)) 34px;transition:opacity .8s ease,transform .9s cubic-bezier(.22,.61,.36,1),max-height 1s ease,min-height 1s ease,padding 1s ease}
.v115-brand-phase .v113-brand-animation{width:min(100%,1040px);min-height:clamp(390px,60vh,590px)}
.v115-brand-phase .v113-kin-row,.v115-brand-phase .v113-values-row,.v115-brand-phase .v113-resolve{animation-iteration-count:1;animation-duration:7.2s;animation-fill-mode:forwards}
.v115-brand-phase .v113-advance,.v115-brand-phase .v113-values-advance{animation-iteration-count:1;animation-duration:7.2s;animation-fill-mode:forwards}
/* Hold the resolved KINVANCE state long enough to read before the page transforms. */
.v115-brand-phase .v113-resolve{animation-name:v115ResolveHold}
@keyframes v115ResolveHold{0%,58%{opacity:0;transform:scale(.985)}72%,100%{opacity:1;transform:scale(1)}}
.v115-proposition{background:var(--ivory);color:var(--navy);max-height:0;opacity:0;transform:translateY(28px);overflow:hidden;transition:max-height 1.15s cubic-bezier(.22,.61,.36,1),opacity .85s ease .15s,transform 1s cubic-bezier(.22,.61,.36,1) .08s}
.v115-proposition-inner{padding-top:clamp(70px,9vw,120px);padding-bottom:clamp(64px,8vw,105px)}
.v115-proposition .eyebrow{color:var(--copper);font-weight:800;margin-bottom:24px}
.v115-proposition h1{margin:0;max-width:940px;color:var(--navy);font:400 clamp(3.4rem,7.6vw,7.2rem)/.96 Georgia,serif;letter-spacing:-.035em}
.v115-proposition h1 span{display:block}
.v115-proposition h1 span:last-child{color:var(--navy);white-space:nowrap;font-size:.9em;margin-top:.08em}
.v115-lede{max-width:760px;margin:32px 0 0;color:rgba(7,23,37,.72);font-size:clamp(1.08rem,2vw,1.35rem);line-height:1.65}
.v115-actions{display:flex;align-items:center;gap:34px;margin-top:40px;opacity:0;transform:translateY(12px);transition:opacity .55s ease .75s,transform .55s ease .75s}
.v115-actions .text-link{color:var(--navy);font-weight:800}
.v115-hero.is-proposition .v115-brand-phase{opacity:0;transform:translateY(-20px) scale(.99);min-height:0;max-height:0;padding-top:0;padding-bottom:0;pointer-events:none}
.v115-hero.is-proposition .v115-proposition{max-height:1100px;opacity:1;transform:none}
.v115-hero.is-proposition .v115-actions{opacity:1;transform:none}
/* The old cream spacer is no longer needed; the proposition itself is the breath. */
.v115-hero + .v112-breath{display:none}
@media(max-width:700px){
 .v115-brand-phase{min-height:610px;padding-top:74px;padding-bottom:20px}
 .v115-brand-phase .v113-brand-animation{min-height:470px}
 .v115-brand-phase .v113-kin-row{font-size:clamp(2.65rem,12vw,4.3rem)}
 .v115-brand-phase .v113-values-row{top:62%;gap:8px;font-size:clamp(.56rem,2.45vw,.78rem);letter-spacing:0}
 .v115-brand-phase .v113-resolve-name{font-size:clamp(2.8rem,12.5vw,4.5rem);letter-spacing:.15em;margin-left:.15em}
 .v115-proposition-inner{padding-top:62px;padding-bottom:66px}
 .v115-proposition .eyebrow{font-size:.69rem;line-height:1.5;letter-spacing:.11em;margin-bottom:20px}
 .v115-proposition h1{font-size:clamp(3.15rem,13.5vw,4.45rem);line-height:.98}
 .v115-proposition h1 span:last-child{white-space:normal;font-size:.88em;line-height:1.02;margin-top:.12em}
 .v115-lede{font-size:1.03rem;line-height:1.62;margin-top:26px}
 .v115-actions{gap:18px;justify-content:space-between;margin-top:34px}
 .v115-actions .button{padding:15px 21px}
 .v115-actions .text-link{font-size:.95rem}
}
@media(prefers-reduced-motion:reduce){
 .v115-brand-phase{display:none}.v115-proposition{max-height:none;opacity:1;transform:none}.v115-actions{opacity:1;transform:none}
}


/* =========================================================
   Blueprint V1.18 — QA rebuilt Experience interaction
   Built from clean V1.15 markup, not V1.16/V1.17 patches.
   ========================================================= */

/* Keep the cream hero proposition clear of the fixed navigation. */
@media(max-width:700px){
  .v115-proposition-inner{padding-top:118px!important;}
}

/* The stage contains BOTH the sticky visual and the full process rail, so the
   sticky element has a real containing block that lasts through all 5 steps. */
.v118-experience,
.v118-experience .shell,
.v118-process-stage{
  overflow:visible!important;
  contain:none!important;
  transform:none!important;
}
.v118-process-stage{
  position:relative;
  margin-top:30px;
}
.v118-sticky-wrap{
  position:-webkit-sticky;
  position:sticky;
  top:88px;
  z-index:20;
  background:var(--navy-deep);
  padding:0 0 12px;
  pointer-events:none;
}
.v118-sticky-wrap .v112-experience-visual{
  position:relative!important;
  top:auto!important;
  z-index:1;
  margin:0!important;
  width:100%;
  height:clamp(270px,42vw,500px);
  border-radius:24px;
  overflow:hidden;
  background:var(--navy-deep);
  box-shadow:0 18px 42px rgba(0,0,0,.17);
}
.v118-sticky-wrap .v112-experience-visual img{
  width:100%;height:100%;object-fit:cover;display:block;
  opacity:1;transform:scale(1);
  transition:opacity .28s ease,transform .42s cubic-bezier(.22,.61,.36,1);
}
.v118-sticky-wrap .v112-experience-visual.is-changing img{
  opacity:.08;transform:scale(1.012);
}

/* Rail starts directly below the visual and scrolls while the visual remains pinned. */
.v118-process{
  --process-progress:0%;
  position:relative;
  z-index:2;
  margin:10px 0 0!important;
  padding:0 0 10vh!important;
  max-width:850px;
}
.v118-process::after{
  content:"";
  position:absolute;
  left:8px;
  top:18px;
  width:1px;
  height:var(--process-progress);
  max-height:calc(100% - 36px);
  background:linear-gradient(180deg,var(--copper-light),var(--copper));
  box-shadow:0 0 14px rgba(215,154,104,.25);
  transition:height .32s ease;
  pointer-events:none;
}
.v118-step{
  min-height:30vh!important;
  display:flex!important;
  flex-direction:column;
  justify-content:flex-start!important;
  padding-top:10px;
  margin:0!important;
}
.v118-step:last-child{
  min-height:34vh!important;
  padding-bottom:9vh;
}

/* Explicit full active state: node + label + headline + description all light up. */
.v118-step .v113-step-detail h3,
.v118-step .v113-step-detail p{
  transition:color .28s ease,opacity .28s ease,transform .36s ease;
}
.v118-step:not(.is-active) .v113-step-detail h3{
  color:rgba(247,243,234,.45);
}
.v118-step:not(.is-active) .v113-step-detail p{
  color:rgba(247,243,234,.30);
}
.v118-step.is-active .v113-step-detail h3{
  color:var(--ivory)!important;
  opacity:1;
}
.v118-step.is-active .v113-step-detail p{
  color:rgba(247,243,234,.72)!important;
  opacity:1;
}
.v118-step.is-active .v113-step-label{
  color:var(--copper-light)!important;
  text-shadow:0 0 22px rgba(202,139,91,.18);
}
.v118-step.is-active .v113-dot{
  background:var(--copper-light)!important;
  transform:scale(1.13);
  box-shadow:0 0 0 5px #071725,0 0 20px rgba(215,154,104,.25)!important;
}

@media(max-width:760px){
  .v118-process-stage{margin-top:26px;}
  .v118-sticky-wrap{top:76px;padding-bottom:10px;}
  .v118-sticky-wrap .v112-experience-visual{
    height:clamp(215px,31vh,260px);
    border-radius:18px;
  }
  .v118-process{margin-top:4px!important;padding-bottom:8vh!important;}
  .v118-step{
    min-height:28vh!important;
    padding-top:8px;
  }
  .v118-step:last-child{
    min-height:31vh!important;
    padding-bottom:8vh;
  }
}
@media(prefers-reduced-motion:reduce){
  .v118-sticky-wrap .v112-experience-visual img,
  .v118-process::after,
  .v118-step .v113-step-detail h3,
  .v118-step .v113-step-detail p{transition:none!important;}
}

/* Sticky must not inherit the old V1.12 main overflow constraint. That rule
   created a non-scrolling containing block and prevented position:sticky from
   pinning to the viewport. Keep horizontal clipping at the body level instead. */
body.v112{overflow-x:clip;}
.v112 main{overflow:visible!important;}
