/* ============================================================
   HOWWE — Intelligent Strategy Execution
   Design language adapted from GRAIL c247 WS1 deck
   Brand: navy #05263c · orange #ff6200 · Muli (Mulish)
   2026 craft: mesh gradients · live product cockpit ·
   bespoke concept diagrams · marquee · pointer-spotlight ·
   animated counters · scroll reveal
   ============================================================ */

:root {
  --navy:        #05263c;
  --navy-deep:   #03192a;
  --navy-mid:    #0a344f;
  --panel:       #082f49;
  --panel-2:     #0d3b58;

  --orange:      #ff6200;
  --orange-lt:   #ff8a3d;
  --orange-soft: #ffb27a;
  --orange-deep: #c44a00;

  --tl:    #eef3f6;
  --tl70:  rgba(238, 243, 246, 0.72);
  --tl55:  rgba(238, 243, 246, 0.68);
  --tl40:  rgba(238, 243, 246, 0.52);
  --tl12:  rgba(238, 243, 246, 0.12);

  --ink:     #05263c;
  --ink-70:  rgba(5, 38, 60, 0.70);
  --ink-55:  rgba(5, 38, 60, 0.55);
  --ink-40:  rgba(5, 38, 60, 0.40);

  --paper:   #f4f6f8;
  --paper-2: #e9eef2;
  --white:   #ffffff;
  --line:    #d8e0e6;

  --green:  #2bbd8f;
  --amber:  #ff9d2e;
  --red:    #e2614b;

  --max:    1220px;
  --radius: 18px;
  --shadow-card: 0 24px 60px -28px rgba(3, 18, 30, 0.45);
  --shadow-lift: 0 40px 90px -34px rgba(3, 18, 30, 0.6);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  line-height: 1.55; overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-weight: 900; letter-spacing: -0.018em; line-height: 1.02; color: var(--ink); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--tl); }
h1 em, h2 em, h3 em { font-style: normal; color: var(--orange); }
.d-hero { font-size: clamp(3rem, 6.4vw, 5.4rem); }
.d-1    { font-size: clamp(2.15rem, 4vw, 3.3rem); }
.d-2    { font-size: clamp(1.55rem, 2.5vw, 2.15rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--orange); }
.eyebrow.centered { justify-content: center; }

.lede { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; color: var(--ink-70); line-height: 1.4; }
.on-dark .lede { color: var(--tl); }
.copy { font-size: 1.07rem; color: var(--ink-70); line-height: 1.62; }
.on-dark .copy { color: var(--tl70); }
.copy strong, .lede strong { color: var(--orange); font-weight: 800; }
.on-dark .copy strong { color: var(--orange-lt); }
.divider { width: 60px; height: 4px; border-radius: 4px; background: var(--orange); margin: 22px 0; }

/* ============ LAYOUT ============ */
.section { position: relative; padding: clamp(78px, 9vw, 140px) 0; overflow: hidden; }
.section-inner { width: min(100% - 48px, var(--max)); margin: 0 auto; position: relative; z-index: 2; }
.section-heading { max-width: 780px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading .copy { margin-top: 16px; }

.bg-navy { background: linear-gradient(165deg, #06283f 0%, var(--navy) 52%, #042133 100%); }
.bg-navy-deep { background: var(--navy-deep); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }

/* drifting mesh blobs on dark surfaces */
.mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.mesh i {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  animation: drift 16s ease-in-out infinite;
}
.mesh i.o1 { width: 50vw; height: 50vw; top: -18%; right: -10%; background: rgba(255, 98, 0, 0.30); }
.mesh i.o2 { width: 42vw; height: 42vw; bottom: -22%; left: -12%; background: rgba(13, 59, 88, 0.7); animation-delay: -5s; }
.mesh i.o3 { width: 30vw; height: 30vw; top: 30%; left: 38%; background: rgba(255, 138, 61, 0.14); animation-delay: -9s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, -5%) scale(1.08); }
  66% { transform: translate(-4%, 4%) scale(0.95); }
}
/* grain removed — clean mesh-gradient surfaces only */

/* scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--orange), var(--orange-lt)); box-shadow: 0 0 12px rgba(255, 98, 0, 0.6); transition: width .08s linear; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px); transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(4, 25, 40, 0.82); backdrop-filter: blur(16px); padding-top: 12px; padding-bottom: 12px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06); }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--tl); }
.brand-mark span { color: var(--orange); }
.brand-line { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tl55); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 0.92rem; font-weight: 700; color: var(--tl70); transition: color .2s ease; }
.main-nav a:hover { color: var(--tl); }
.main-nav a.nav-cta { background: var(--orange); color: var(--white); padding: 11px 22px; border-radius: 30px; box-shadow: 0 12px 30px -10px rgba(255, 98, 0, 0.6); transition: transform .2s ease, box-shadow .2s ease; }
.main-nav a.nav-cta:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(255, 98, 0, 0.7); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--tl); border-radius: 2px; transition: .3s ease; }

/* ============ BUTTONS ============ */
.button { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1rem; padding: 15px 30px; border-radius: 32px; cursor: pointer; border: 0; transition: transform .2s ease, box-shadow .2s ease; }
.button-primary { background: var(--orange); color: var(--white); box-shadow: 0 16px 38px -12px rgba(255, 98, 0, 0.62); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgba(255, 98, 0, 0.74); color: var(--white); }
.button-primary .arrow { transition: transform .2s ease; }
.button-primary:hover .arrow { transform: translateX(4px); }
.button-ghost { background: transparent; color: var(--tl); border: 1.5px solid rgba(255, 255, 255, 0.22); }
.button-ghost:hover { border-color: var(--orange); color: var(--tl); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 150px clamp(20px, 4vw, 48px) 90px;
  background: radial-gradient(120% 90% at 80% 0%, #08395b 0%, transparent 55%), linear-gradient(160deg, #063150 0%, var(--navy) 50%, #03182a 100%);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 3; width: min(100%, var(--max)); margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }

.eyebrow-sequence { display: flex; gap: 0; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.eyebrow-sequence span { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tl70); position: relative; padding: 0 16px; }
.eyebrow-sequence span:first-child { padding-left: 0; }
.eyebrow-sequence span:not(:last-child)::after { content: ''; position: absolute; right: -2px; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.eyebrow-sequence span:nth-child(2) { color: var(--tl70); }

.hero h1 { color: var(--tl); margin-bottom: 22px; }
.hero-copy { color: var(--tl70); font-size: 1.12rem; line-height: 1.6; max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stat .hs-num { font-weight: 900; font-size: clamp(2.1rem, 3.4vw, 2.9rem); line-height: 1; color: var(--orange); letter-spacing: -0.02em; }
.hero-stat .hs-lab { font-size: 0.82rem; font-weight: 700; color: var(--tl55); margin-top: 8px; max-width: 150px; line-height: 1.3; }

/* live execution cockpit */
.cockpit {
  position: relative;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 22px; padding: 26px 26px 24px;
  backdrop-filter: blur(12px); box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.cockpit::before { content: ''; position: absolute; top: -45%; right: -25%; width: 70%; height: 130%; background: radial-gradient(circle, rgba(255, 98, 0, 0.22), transparent 62%); pointer-events: none; }
.cockpit-head { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; position: relative; }
.cockpit-head .livedot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(43, 189, 143, 0.6); animation: livepulse 2s ease-out infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(43, 189, 143, 0.55); } 70%, 100% { box-shadow: 0 0 0 9px rgba(43, 189, 143, 0); } }
.cockpit-head .cp-title { font-weight: 900; font-size: 1.02rem; color: var(--tl); }
.cockpit-head .cp-sub { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tl40); }
.cockpit-head .cp-ai { margin-left: auto; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; color: var(--orange-lt); border: 1px solid rgba(255, 138, 61, 0.4); border-radius: 20px; padding: 4px 11px; }

.cp-rows { display: flex; flex-direction: column; gap: 13px; position: relative; }
.cpr { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; padding: 13px 15px; border-radius: 13px; background: rgba(255, 255, 255, 0.035); border: 1px solid rgba(255, 255, 255, 0.07); }
.cpr.risk { border-color: rgba(255, 98, 0, 0.45); background: rgba(255, 98, 0, 0.07); animation: riskbreath 2.6s ease-in-out infinite; }
@keyframes riskbreath { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 98, 0, 0); } 50% { box-shadow: 0 0 22px -2px rgba(255, 98, 0, 0.35); } }
.cpr-name { font-size: 0.92rem; font-weight: 700; color: var(--tl); }
.cpr-pill { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.cpr-pill.ok { color: var(--green); background: rgba(43, 189, 143, 0.14); }
.cpr-pill.at { color: var(--orange-lt); background: rgba(255, 98, 0, 0.16); }
.cpr-pill.stall { color: var(--red); background: rgba(226, 97, 75, 0.16); }
.cpr-track { grid-column: 1 / -1; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.09); overflow: hidden; }
.cpr-fill { height: 100%; width: 0; border-radius: 6px; transition: width 1.3s var(--ease); }
.cpr-fill.ok { background: linear-gradient(90deg, #1f8e6e, var(--green)); }
.cpr-fill.at { background: linear-gradient(90deg, var(--orange-deep), var(--orange)); }
.cpr-fill.stall { background: linear-gradient(90deg, #9b3a2b, var(--red)); }
.is-visible .cpr-fill { width: var(--w); }

.cp-signal { margin-top: 16px; padding: 16px 18px; border-radius: 14px; position: relative; background: linear-gradient(135deg, rgba(255, 98, 0, 0.16), rgba(255, 98, 0, 0.05)); border: 1px solid rgba(255, 98, 0, 0.4); }
.cp-signal .sig-top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.cp-signal .sig-ic { color: var(--orange); }
.cp-signal .sig-k { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-lt); }
.cp-signal .sig-val { margin-left: auto; font-weight: 900; font-size: 1.05rem; color: var(--tl); }
.cp-signal .sig-body { font-size: 0.9rem; color: var(--tl70); line-height: 1.5; }
.cp-signal .sig-body b { color: var(--tl); font-weight: 800; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tl40); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .sh-line { width: 1px; height: 34px; background: linear-gradient(var(--orange), transparent); animation: shpulse 2s ease-in-out infinite; }
@keyframes shpulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ============ CUSTOMERS ============ */
.customers-section { background: var(--paper); }
.marquee { margin-top: 46px; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-row { display: flex; gap: 16px; width: max-content; animation: scrollx 42s linear infinite; }
.marquee-row.rev { animation-direction: reverse; margin-top: 16px; animation-duration: 50s; }
.marquee:hover .marquee-row { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.logo-cell { flex: 0 0 auto; width: 190px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; min-height: 92px; }
.logo-cell img { max-height: 40px; width: auto; object-fit: contain; filter: none; opacity: 1; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.testimonial-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 16px; overflow: hidden;
}
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); }
/* pointer spotlight */
.spot::after { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; pointer-events: none; background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 98, 0, 0.10), transparent 60%); }
.spot:hover::after { opacity: 1; }
.testimonial-card .quote-mark { color: var(--orange); font-size: 2.6rem; line-height: 0.4; font-weight: 900; height: 20px; }
.testimonial-card blockquote { font-size: 1.18rem; font-weight: 800; line-height: 1.4; color: var(--ink); letter-spacing: -0.01em; }
.testimonial-card .tperson { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-card .tperson img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card .tperson p { font-size: 0.9rem; font-weight: 700; color: var(--ink-70); line-height: 1.35; }

/* ============ EXECUTION GAP — clarity cascade ============ */
.execution-gap-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 58px; align-items: center; }

.cascade { position: relative; padding: 4px 0; }
.casc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.casc-head .ch-now { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tl55); }
.casc-head .ch-howwe { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em; color: var(--orange-lt); display: flex; align-items: center; gap: 8px; }
.casc-head .ch-howwe::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.casc-spine { position: relative; padding-left: 22px; }
/* descending signal spine with a travelling pulse */
.casc-spine::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 30px; width: 2px; background: linear-gradient(var(--orange), rgba(255, 98, 0, 0.08)); }
.casc-spine::after { content: ''; position: absolute; left: 2px; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); top: 6px; opacity: 0; }
[data-cascade].is-visible .casc-spine::after { animation: spinepulse 2.4s var(--ease) .3s; }
@keyframes spinepulse { 0% { opacity: 0; top: 6px; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { opacity: 0; top: calc(100% - 40px); } }
.casc-tier { position: relative; margin-bottom: 20px; }
.casc-tier:last-child { margin-bottom: 0; }
.casc-tier::before { content: ''; position: absolute; left: -16px; top: 26px; width: 14px; height: 2px; background: rgba(255, 98, 0, 0.5); }
.casc-rowhead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 9px; }
.casc-rowhead .cb-name { font-size: 0.96rem; font-weight: 700; color: var(--tl); }
.casc-rowhead .cb-vals { display: flex; align-items: baseline; gap: 9px; }
.casc-rowhead .cb-vals b { font-weight: 900; font-size: 1.2rem; color: var(--orange-lt); }
.casc-tier.lead .cb-vals b { color: var(--orange); }
.casc-rowhead .cb-vals i { font-style: normal; font-size: 0.84rem; font-weight: 700; color: var(--tl40); }
.casc-track { position: relative; height: 13px; border-radius: 8px; background: rgba(255, 255, 255, 0.07); overflow: visible; }
.casc-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; border-radius: 8px; background: linear-gradient(90deg, var(--orange-deep), var(--orange)); box-shadow: 0 0 18px -2px rgba(255, 98, 0, calc(var(--int) * 0.7)); transition: width 1.1s var(--ease); }
.casc-tier.lead .casc-fill { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }
[data-cascade].is-visible .casc-fill { width: var(--w); }
.casc-tick { position: absolute; top: -5px; height: 23px; width: 2px; background: repeating-linear-gradient(var(--orange-lt) 0 3px, transparent 3px 6px); }
.casc-tick::after { content: ''; position: absolute; top: -4px; left: -3px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--orange-lt); background: var(--navy); }
.casc-note { margin-top: 26px; font-size: 0.92rem; color: var(--tl70); line-height: 1.55; }
.casc-note strong { color: var(--tl); font-weight: 800; }
.casc-source-line { margin-top: 9px; font-size: 0.78rem; font-style: italic; color: var(--tl40); }

/* ============ SCROLL REVEAL + MOTION PRIMITIVES ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; } .reveal.d4 { transition-delay: .36s; } .reveal.d5 { transition-delay: .45s; }

/* headline line-mask reveal */
[data-lines] .reveal-line { display: block; overflow: hidden; padding-bottom: 0.04em; }
[data-lines] .reveal-line > span { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
[data-lines].is-visible .reveal-line:nth-child(1) > span { transition-delay: .05s; transform: none; }
[data-lines].is-visible .reveal-line:nth-child(2) > span { transition-delay: .17s; transform: none; }

/* magnetic + parallax helpers */
[data-magnetic] { transition: transform .25s var(--ease), box-shadow .2s ease; will-change: transform; }
.mesh, .cockpit { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  [data-lines] .reveal-line > span { transform: none !important; }
  .cpr-fill, .casc-fill { transition: none !important; }
  .mesh i, .cpr.risk, .cockpit-head .livedot, .sh-line, .cockpit-scan, .casc-spine::after, .rf-pulse { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* hero ROI proof — prominent, original copy */
.hero-proof { display: inline-grid; grid-template-columns: auto auto; column-gap: 22px; align-items: center; padding: 22px 28px; border-radius: 16px; background: linear-gradient(150deg, rgba(255, 98, 0, 0.12), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 98, 0, 0.3); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }
.hpi-label { grid-column: 1 / -1; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tl55); margin-bottom: 10px; }
.hpi-num { font-weight: 900; font-size: clamp(2.6rem, 4.4vw, 3.5rem); color: var(--orange); line-height: 0.9; letter-spacing: -0.02em; white-space: nowrap; }
.hpi-rest { display: flex; flex-direction: column; }
.hpi-unit { font-size: 1.1rem; font-weight: 800; color: var(--tl); }
.hpi-note { font-size: 0.92rem; font-weight: 600; color: var(--tl55); }

/* cockpit scan line */
.cockpit-scan { position: absolute; left: 0; right: 0; top: 0; height: 38%; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(255, 138, 61, 0.10), transparent); opacity: 0; }
.cockpit.is-visible .cockpit-scan { animation: scan 4.5s ease-in-out 1s infinite; }
@keyframes scan { 0% { transform: translateY(-40%); opacity: 0; } 18% { opacity: 1; } 50% { transform: translateY(190%); opacity: 0; } 100% { opacity: 0; } }

/* rhythm travelling pulse along the flow */
.rf-pulse { position: absolute; top: 46px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px 3px rgba(255, 98, 0, 0.7); transform: translate(-50%, -50%); z-index: 4; opacity: 0; }
.rhythm-flow.is-visible .rf-pulse { animation: flowpulse 5s linear 1s infinite; }
@keyframes flowpulse { 0% { left: 6%; opacity: 0; } 6% { opacity: 1; } 94% { opacity: 1; } 100% { left: 94%; opacity: 0; } }

/* ============ METHOD ============ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.pillar { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px 28px; box-shadow: var(--shadow-card); overflow: hidden; }
.pillar::after { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; pointer-events: none; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 98, 0, 0.08), transparent 60%); }
.pillar:hover::after { opacity: 1; }
.pillar-glyph { width: 58px; height: 58px; border-radius: 15px; background: linear-gradient(150deg, rgba(255, 98, 0, 0.14), rgba(255, 98, 0, 0.05)); border: 1px solid rgba(255, 98, 0, 0.22); display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 20px; }
.pillar-glyph svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.32rem; margin-bottom: 12px; }
.pillar .p-lede { font-weight: 800; color: var(--ink); font-size: 1.02rem; line-height: 1.4; margin-bottom: 12px; }
.pillar .copy { font-size: 0.95rem; line-height: 1.6; }

/* execution rhythm flow */
.rhythm { position: relative; border-radius: 26px; padding: clamp(40px, 5vw, 64px); overflow: hidden; }
.rhythm-body { position: relative; z-index: 2; }
.rhythm-head { text-align: center; margin-bottom: 34px; }
.rhythm-flow { position: relative; }
.rhythm-head .rh-k { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.rhythm-head .rh-t { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 900; color: var(--tl); margin-top: 8px; letter-spacing: -0.01em; }
.rhythm-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rf-step { position: relative; background: linear-gradient(158deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 24px 22px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }
.rf-step .rf-num { font-weight: 900; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 14px; }
.rf-step .rf-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 98, 0, 0.12); border: 1px solid rgba(255, 98, 0, 0.28); display: flex; align-items: center; justify-content: center; color: var(--orange-lt); margin-bottom: 16px; }
.rf-step .rf-ic svg { width: 22px; height: 22px; }
.rf-step h4 { font-size: 1.12rem; font-weight: 900; color: var(--tl); margin-bottom: 8px; letter-spacing: -0.01em; }
.rf-step .rf-d { font-size: 0.9rem; color: var(--tl70); line-height: 1.5; margin-bottom: 14px; }
.rf-step .rf-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-lt); border: 1px solid rgba(255, 138, 61, 0.35); border-radius: 20px; padding: 4px 11px; }
/* connectors between steps */
.rf-step:not(:last-child)::after { content: ''; position: absolute; top: 50%; right: -18px; width: 18px; height: 2px; background: linear-gradient(90deg, rgba(255, 98, 0, 0.7), rgba(255, 98, 0, 0.2)); z-index: 2; }
.rf-step:not(:last-child)::before { content: ''; position: absolute; top: 50%; right: -22px; width: 7px; height: 7px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: translateY(-50%) rotate(45deg); z-index: 3; }
/* software intelligence band + return loop */
.rf-band { margin-top: 18px; display: flex; align-items: center; gap: 14px; justify-content: center; padding: 16px 24px; border-radius: 14px; background: rgba(255, 98, 0, 0.07); border: 1px dashed rgba(255, 98, 0, 0.32); }
.rf-band .rb-ic { color: var(--orange); display: flex; }
.rf-band .rb-t { font-size: 0.96rem; color: var(--tl70); font-weight: 600; }
.rf-band .rb-t b { color: var(--orange-lt); font-weight: 800; }
.rf-loopnote { text-align: center; margin-top: 18px; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.06em; color: var(--tl40); display: flex; align-items: center; gap: 10px; justify-content: center; }
.rf-loopnote::before, .rf-loopnote::after { content: ''; width: 40px; height: 1px; background: rgba(255, 255, 255, 0.14); }

/* two cadence cards (Strategic Planning / Execution Rhythm) */
.cadence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.cadence-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 16px; padding: 28px 30px; }
.cadence-card .cc-tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 12px; }
.cadence-card h4 { font-size: 1.3rem; font-weight: 900; color: var(--tl); margin-bottom: 12px; }
.cadence-card .copy { font-size: 0.96rem; }

/* ============ INTELLIGENT ADVISOR ============ */
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-feature.reverse .copy-block { order: 2; }
.ability-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin-top: 26px; }
.ability-list li { position: relative; padding-left: 28px; font-size: 0.98rem; font-weight: 600; color: var(--tl); line-height: 1.4; }
.ability-list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: rgba(255, 98, 0, 0.16); border: 1px solid var(--orange); }
.ability-list li::after { content: ''; position: absolute; left: 5px; top: 8px; width: 6px; height: 3px; border-left: 1.5px solid var(--orange); border-bottom: 1.5px solid var(--orange); transform: rotate(-45deg); }

.advisor-brief { position: relative; background: linear-gradient(158deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.022)); border: 1px solid rgba(255, 98, 0, 0.3); border-radius: 22px; padding: 30px 32px; box-shadow: var(--shadow-lift); overflow: hidden; }
.advisor-brief::before { content: ''; position: absolute; top: -40%; right: -25%; width: 65%; height: 130%; background: radial-gradient(circle, rgba(255, 98, 0, 0.2), transparent 62%); }
.advisor-brief .ab-kicker { display: flex; align-items: center; gap: 9px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tl55); margin-bottom: 16px; position: relative; }
.advisor-brief .ab-kicker .livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255, 98, 0, 0.6); animation: livepulse 2s ease-out infinite; }
.advisor-brief h3 { font-size: 1.6rem; color: var(--tl); margin-bottom: 12px; position: relative; }
.advisor-brief .ab-copy { font-size: 0.98rem; color: var(--tl70); line-height: 1.55; margin-bottom: 20px; position: relative; }
.advisor-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; margin-bottom: 20px; }
.advisor-metrics > div { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 13px; padding: 16px 18px; }
.advisor-metrics span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tl40); display: block; margin-bottom: 7px; }
.advisor-metrics strong { font-size: 1.4rem; font-weight: 900; color: var(--orange); }
.advisor-metrics .risk strong { color: var(--red); }
.advisor-action { position: relative; background: rgba(255, 98, 0, 0.1); border: 1px solid rgba(255, 98, 0, 0.32); border-radius: 13px; padding: 15px 18px; margin-bottom: 16px; }
.advisor-action span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-lt); display: block; margin-bottom: 6px; }
.advisor-action p { font-size: 0.96rem; color: var(--tl); line-height: 1.5; font-weight: 600; }
.advisor-control { position: relative; font-size: 0.92rem; font-weight: 800; color: var(--orange-lt); text-align: center; margin-top: 14px; }
.m-trend { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em; color: var(--green); }
.aa-owner { position: relative; display: flex; align-items: center; gap: 11px; margin-top: 15px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.aa-avatar { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 900; color: #fff; background: linear-gradient(150deg, #ff8a3d, #cf4d0d); }
.aa-owner-txt { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.aa-owner-txt b { font-size: 0.92rem; font-weight: 800; color: var(--tl); }
.aa-owner-txt em { font-style: normal; font-size: 0.74rem; color: var(--tl55); }
.aa-role { margin-right: auto; font-size: 0.82rem; font-weight: 700; color: var(--tl70); letter-spacing: 0.01em; }

/* — Success story — */
.success-story .section-heading h2 { max-width: 1040px; font-size: clamp(2rem, 3.9vw, 2.75rem); line-height: 1.12; }
@media (max-width: 720px) { .success-story .section-heading h2 br { display: none; } }
.ss-grid { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; margin-top: 44px; }
.ss-person { position: relative; border-radius: 18px; overflow: hidden; background: var(--navy-deep); border: 1px solid rgba(255, 255, 255, 0.09); }
.ss-person img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 26%; display: block; filter: brightness(0.98); }
.ss-person-meta { padding: 18px 20px 20px; }
.ss-person-meta b { display: block; font-size: 1.06rem; font-weight: 800; color: var(--tl); }
.ss-person-meta span { display: block; font-size: 0.9rem; font-weight: 700; color: var(--orange-lt); margin-top: 3px; }
.ss-person-meta em { display: block; font-style: normal; font-size: 0.8rem; color: var(--tl55); margin-top: 8px; line-height: 1.4; }
.ss-lead { font-size: 1.12rem; line-height: 1.6; color: var(--tl); }
.ss-blocks { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.ss-block { padding-left: 18px; border-left: 2px solid rgba(255, 98, 0, 0.5); }
.ss-tag { display: block; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.ss-block p { font-size: 0.98rem; line-height: 1.55; color: var(--tl70); }
.ss-quote { margin: 30px 0 0; font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; line-height: 1.3; color: var(--tl); letter-spacing: -0.01em; }
.ss-quote cite { display: block; font-style: normal; font-size: 0.9rem; font-weight: 700; color: var(--orange-lt); margin-top: 12px; }
.ss-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.ss-outcome { padding: 26px 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); }
.ss-outcome b { display: block; font-size: clamp(1.1rem, 1.75vw, 1.4rem); font-weight: 900; color: var(--orange); letter-spacing: -0.01em; white-space: nowrap; }
.ss-outcome span { display: block; font-size: 0.92rem; color: var(--tl70); margin-top: 8px; line-height: 1.45; }
.ss-cta { margin-top: 30px; }
@media (max-width: 820px) {
  .ss-grid { grid-template-columns: 1fr; }
  .ss-person { max-width: 320px; }
  .ss-outcomes { grid-template-columns: 1fr; }
}

/* Success story 2 — quote-led (no portrait) */
.ss2-grid { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; margin-top: 44px; }
.ss2-quote { padding: 26px 26px 28px; border-radius: 18px; display: flex; flex-direction: column; justify-content: flex-start;
  background: linear-gradient(158deg, rgba(255, 98, 0, 0.14), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 98, 0, 0.3); }
.ss2-quote blockquote { margin: 0; font-size: 1.24rem; line-height: 1.4; font-weight: 800; color: var(--tl); letter-spacing: -0.01em; }
.ss2-quote cite { display: block; font-style: normal; margin-top: 18px; }
.ss2-quote cite b { display: block; font-size: 0.98rem; font-weight: 800; color: var(--tl); }
.ss2-quote cite span { display: block; font-size: 0.85rem; font-weight: 700; color: var(--orange-lt); margin-top: 2px; }
.ss2-photo { position: sticky; top: 90px; }
.ss2-face { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #ff8a3d, #cf4d0d); border: 1px solid rgba(255, 255, 255, 0.15); }
.ss2-initials { font-weight: 900; font-size: 3.2rem; color: #fff; letter-spacing: 0.02em; }
.ss2-face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.ss2-quote-inline { margin: 30px 0 0; padding: 24px 28px; border-radius: 16px; font-size: 1.24rem; font-weight: 800; line-height: 1.42; color: var(--tl); letter-spacing: -0.01em;
  background: linear-gradient(158deg, rgba(255, 98, 0, 0.13), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 98, 0, 0.3); }
.ss2-quote-inline cite { display: block; font-style: normal; margin-top: 14px; font-size: 0.9rem; font-weight: 700; color: var(--orange-lt); letter-spacing: 0; }
.ss2-name { margin-top: 16px; }
.ss2-name b { display: block; font-size: 1.05rem; font-weight: 800; color: var(--tl); }
.ss2-name span { display: block; font-size: 0.9rem; font-weight: 700; color: var(--orange-lt); margin-top: 2px; }
.ss2-close { max-width: 780px; margin: 36px auto 0; text-align: center; font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 800; color: var(--tl); line-height: 1.4; }
.ss2-close span { display: block; font-size: 0.85rem; font-weight: 700; color: var(--orange-lt); margin-top: 12px; }
@media (max-width: 820px) { .ss2-grid { grid-template-columns: 1fr; } }
.aa-due { flex: 0 0 auto; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-lt); padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(255, 98, 0, 0.4); background: rgba(255, 98, 0, 0.1); white-space: nowrap; }
.advisor-cta { position: relative; display: flex; width: 100%; justify-content: center; margin-top: 18px; }

/* intelligence pipeline */
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.pl-step { position: relative; text-align: center; padding: 26px 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.035); border: 1px solid rgba(255, 255, 255, 0.09); }
.pl-step .pl-ic { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px; background: rgba(255, 98, 0, 0.12); border: 1px solid rgba(255, 98, 0, 0.28); display: flex; align-items: center; justify-content: center; color: var(--orange-lt); }
.pl-step .pl-ic svg { width: 24px; height: 24px; }
.pl-step h4 { font-size: 1.06rem; font-weight: 900; color: var(--tl); margin-bottom: 8px; letter-spacing: 0.02em; }
.pl-step p { font-size: 0.88rem; color: var(--tl70); line-height: 1.5; }
.pl-step:not(:last-child)::after { content: ''; position: absolute; top: 52px; right: -14px; width: 8px; height: 8px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: rotate(45deg); z-index: 3; }

/* ---- skip link (a11y) ---- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 2000; background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 800; font-size: 0.9rem; transition: top .15s ease; }
.skip-link:focus { top: 12px; outline: 2px solid #fff; }

.trust-intelligence { display: block; margin-top: 10px; color: var(--orange); font-weight: 900; }

.integrations-head { text-align: center; max-width: 760px; margin: 0 auto; }
.integration-wall { margin-top: 44px; display: flex; flex-direction: column; gap: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.iw-row { display: flex; gap: 14px; width: max-content; animation: scrollx 60s linear infinite; }
.iw-row.rev { animation-direction: reverse; animation-duration: 70s; }
.iw-row.slow { animation-duration: 80s; }
.integration-wall:hover .iw-row { animation-play-state: paused; }
.int-cell { flex: 0 0 auto; width: 176px; height: 96px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px; padding: 8px 12px; box-shadow: 0 10px 28px -16px rgba(0, 0, 0, 0.6); }
.int-cell img { max-height: 80px; max-width: 150px; width: auto; object-fit: contain; opacity: 1; }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.demo-form { background: linear-gradient(158deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 22px; padding: 32px 34px; box-shadow: var(--shadow-lift); }
.form-field { margin-bottom: 18px; }
.form-field label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 800; color: var(--tl); margin-bottom: 8px; }
.form-field label span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-lt); }
.form-field input, .form-field textarea { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 12px; padding: 13px 16px; color: var(--tl); font-family: inherit; font-size: 0.96rem; transition: border-color .2s ease, background .2s ease; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--tl40); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); background: rgba(255, 98, 0, 0.06); }
.form-field select { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 12px; padding: 13px 16px; color: var(--tl); font-family: inherit; font-size: 0.96rem; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23ff8a3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; transition: border-color .2s ease, background-color .2s ease; }
.form-field select:focus { outline: none; border-color: var(--orange); background-color: rgba(255, 98, 0, 0.06); }
.form-field select option { color: #07203a; }
.demo-form .button { width: 100%; justify-content: center; margin-top: 6px; }
.form-status { margin-top: 12px; font-size: 0.88rem; color: var(--orange-lt); text-align: center; }

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.office-card { background: rgba(255, 255, 255, 0.035); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 16px; padding: 26px 26px; }
.office-card > span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-lt); }
.office-card h3 { font-size: 1.3rem; color: var(--tl); margin: 8px 0 14px; }
.office-card address { font-style: normal; font-size: 0.92rem; color: var(--tl70); line-height: 1.6; margin-bottom: 16px; }
.office-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.office-links a { font-size: 0.86rem; font-weight: 700; color: var(--orange-lt); transition: color .2s ease; word-break: break-word; }
.office-links a:hover { color: var(--orange); }

@media (max-width: 920px) {
  .pillars, .rhythm-flow, .pipeline, .trust-grid, .cadence-grid, .office-grid { grid-template-columns: 1fr 1fr; }
  .split-feature { grid-template-columns: 1fr; gap: 36px; }
  .split-feature.reverse .copy-block { order: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .rf-step:not(:last-child)::after, .rf-step:not(:last-child)::before, .pl-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .pillars, .rhythm-flow, .pipeline, .trust-grid, .cadence-grid, .office-grid, .ability-list, .advisor-metrics { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); padding: 56px clamp(20px, 4vw, 48px); }
.footer-inner { width: min(100%, var(--max)); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.site-footer .brand-line { color: var(--tl40); }
.footer-tag { font-size: 0.9rem; color: var(--tl55); font-weight: 600; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .execution-gap-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .site-header { z-index: 1000; }
  /* The mobile nav is a fixed, full-screen overlay nested inside the header.
     A scrolled header's backdrop-filter makes the header a containing block for
     that fixed child in WebKit/Safari, which breaks the off-screen hide (and the
     open overlay's full-screen sizing). Drop the blur on mobile; keep a
     near-opaque background. visibility:hidden is a cross-browser safety net so a
     closed menu can never leak regardless of containing-block quirks. */
  .site-header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(4, 25, 40, 0.95); }
  .main-nav {
    position: fixed; inset: 0; width: 100%;
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    background: var(--navy-deep);
    padding: 88px 32px 40px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s ease, visibility .3s;
    z-index: 900; overflow-y: auto;
  }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav a { font-size: 1.2rem; }
  .main-nav a.nav-cta { margin-top: 6px; padding: 14px 30px; font-size: 1.05rem; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
}
@media (max-width: 560px) {
  .eyebrow-sequence span { padding: 0 10px; }
  .hero-stats { gap: 26px; }
  .casc-bar { width: 50%; }
}

/* ════════════════════════════════════════════════════════════
   ITERATION 3 — hero ROI · awareness chart · scroll method ·
   light advisor · CTA band · de-repetition
   ════════════════════════════════════════════════════════════ */

/* ---- HERO ROI (hero placement) ---- */
.hero-roi { position: relative; align-self: center; justify-self: end; width: 100%; max-width: 430px; padding: 40px 42px; border-radius: 24px;
  background: linear-gradient(158deg, rgba(255, 98, 0, 0.16), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 98, 0, 0.32);
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255, 255, 255, 0.08); overflow: hidden; }
.hero-roi::before { content: ''; position: absolute; bottom: -45%; left: -25%; width: 75%; height: 130%; background: radial-gradient(circle, rgba(255, 98, 0, 0.22), transparent 62%); }
.roi-arc { position: absolute; top: 22px; right: 24px; width: 116px; opacity: 0.8; }
.roi-arc svg { width: 100%; height: auto; }
.roi-curve { stroke-dasharray: 300; stroke-dashoffset: 300; }
.hero-roi.is-visible .roi-curve { animation: drawline 1.5s 0.4s var(--ease) forwards; }
.roi-dot { opacity: 0; } .hero-roi.is-visible .roi-dot { animation: fadein 0.5s 1.7s forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } } @keyframes fadein { to { opacity: 1; } }
.roi-label { position: relative; display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tl55); margin-bottom: 16px; }
.roi-num { position: relative; display: block; font-weight: 900; font-size: clamp(2.6rem, 4.4vw, 3.7rem); line-height: 0.9; color: var(--orange); letter-spacing: -0.02em; white-space: nowrap; }
.roi-unit { position: relative; display: block; font-size: 1.25rem; font-weight: 800; color: var(--tl); margin-top: 16px; }
.roi-note { position: relative; display: block; font-size: 0.95rem; font-weight: 600; color: var(--tl55); margin-top: 5px; }
.roi-why { position: relative; display: block; font-size: 0.88rem; font-weight: 600; color: var(--tl70); line-height: 1.5;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.12); }

/* ---- TESTIMONIALS — editorial full-bleed portraits, quote overlay ---- */
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 54px; }
.testimonial-card { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; padding: 0; overflow: hidden;
  background: var(--navy-deep); display: block; box-shadow: 0 30px 60px -34px rgba(3, 18, 30, 0.55); }
.testimonial-card::before { display: none; }
.testimonial-card .tphoto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.97); transition: filter .5s var(--ease), transform .8s var(--ease); }
.testimonial-card:nth-child(1) .tphoto { object-position: center 30%; }
.testimonial-card:nth-child(2) .tphoto { object-position: center 36%; }
.testimonial-card:nth-child(3) .tphoto { object-position: center 22%; }
/* navy duotone + scrim */
.testimonial-card::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 25, 40, 0.12) 0%, rgba(4, 25, 40, 0) 30%, rgba(3, 18, 30, 0.62) 64%, rgba(3, 18, 30, 0.96) 100%); }
.testimonial-card:hover .tphoto { filter: brightness(1); }
.testimonial-card .tbody { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-card blockquote { font-size: 1.16rem; line-height: 1.32; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.testimonial-card .tname { font-size: 0.86rem; color: var(--tl55); font-weight: 600; padding-top: 14px; position: relative; }
.testimonial-card .tname::before { content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 2px; background: var(--orange); }
.testimonial-card .tname b { display: block; color: #fff; font-weight: 900; font-size: 1rem; margin-bottom: 2px; }

/* ---- AWARENESS CHART (original viz) ---- */
.awareness-chart { display: grid; gap: 12px; align-self: center; }
.awareness-chart-head { display: flex; align-items: center; margin-bottom: 4px; }
.awareness-chart-head span { color: var(--tl55); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.awareness-row { --card: 22%; --target-right: 0%; }
.awareness-track { position: relative; height: 52px; overflow: hidden; border-radius: 11px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.07); transition: border-color .2s ease, box-shadow .2s ease; }
.awareness-chart:hover .awareness-track, .awareness-chart:focus-within .awareness-track { border-color: rgba(255, 98, 0, 0.3); }
.awareness-card { position: absolute; inset: 0 auto 0 0; width: var(--card); display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 15px; color: var(--ink); background: #fff; overflow: hidden; border-radius: 10px; z-index: 2; }
.awareness-card strong { font-size: clamp(1.05rem, 1.3vw, 1.4rem); line-height: 0.95; font-weight: 900; }
.awareness-card span { font-size: 0.62rem; font-weight: 800; line-height: 1.1; letter-spacing: 0.02em; }
.awareness-progress { position: absolute; inset: 0 var(--target-right) 0 var(--card); display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 16px; background: linear-gradient(90deg, rgba(255, 98, 0, 0.28), rgba(255, 98, 0, 0.82)); border-radius: 0 10px 10px 0; opacity: 0; transform: scaleX(0); transform-origin: left center; transition: transform .68s var(--ease), opacity .22s ease; }
.awareness-row:nth-child(3) .awareness-progress { transition-delay: .05s; }
.awareness-row:nth-child(4) .awareness-progress { transition-delay: .1s; }
.awareness-row:nth-child(5) .awareness-progress { transition-delay: .15s; }
.awareness-progress > strong { color: #fff; font-size: 1.05rem; line-height: 1; font-weight: 900; opacity: 0; transform: translateX(-8px); transition: opacity .2s ease, transform .22s ease; }
.chevrons { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.chevrons span { width: 14px; height: 28px; clip-path: polygon(0 0, 66% 0, 100% 50%, 66% 100%, 0 100%, 34% 50%); background: rgba(255, 98, 0, 0.42); }
.chevrons span:nth-child(2) { background: rgba(255, 98, 0, 0.68); }
.chevrons span:nth-child(3) { background: var(--orange); }
.awareness-chart:hover .awareness-progress, .awareness-chart:focus-within .awareness-progress { opacity: 1; transform: scaleX(1); }
.awareness-chart:hover .awareness-progress > strong, .awareness-chart:focus-within .awareness-progress > strong { opacity: 1; transform: translateX(0); }

/* Touch devices have no hover — reveal the "with Howwe" state once the chart scrolls into view */
@media (hover: none) {
  [data-awareness].is-visible .awareness-progress { opacity: 1; transform: scaleX(1); }
  [data-awareness].is-visible .awareness-progress > strong { opacity: 1; transform: translateX(0); }
}
.awareness-note { margin-top: 14px; color: var(--tl); font-size: 0.92rem; line-height: 1.5; }
.awareness-note strong { font-weight: 900; }
.awareness-source { color: var(--tl55); font-size: 0.84rem; font-style: italic; margin-top: 4px; }

/* inline text CTA */
.text-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; font-weight: 800; font-size: 1rem; color: var(--orange); }
.on-dark .text-cta { color: var(--orange-lt); }
.text-cta .arrow { transition: transform 0.2s ease; }
.text-cta:hover .arrow { transform: translateX(5px); }
.section-cta { text-align: center; margin-top: clamp(40px, 5vw, 64px); }
.section-cta .text-cta { margin-top: 0; }

/* ---- METHOD: scroll-driven system build ---- */
.method-story { position: relative; overflow: clip; }
.method-story > .mesh { position: absolute; }
.method-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: stretch; padding: clamp(70px, 8vw, 120px) 0; }
.stage-col { position: relative; }
.story-stage { position: sticky; top: 13vh; height: 74vh; max-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 26px; padding: 30px; overflow: hidden;
  background: radial-gradient(125% 95% at 50% 0%, rgba(255, 98, 0, 0.10), transparent 55%), linear-gradient(160deg, #06283f, #03182a);
  border: 1px solid rgba(255, 255, 255, 0.09); box-shadow: var(--shadow-lift); }
.stage-svg { width: 100%; height: auto; max-height: 78%; }
.stage-svg text { font-family: 'Mulish', sans-serif; }
.node-t { font-size: 12px; font-weight: 900; letter-spacing: 1px; fill: #2a1300; }
.node-s { font-size: 13px; font-weight: 800; fill: var(--tl); }
.goal { fill: #ff7a1f; }
.goal-glow { fill: rgba(255, 98, 0, 0.35); }
.init rect { fill: rgba(255, 255, 255, 0.05); stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.5; }
.owner { fill: var(--orange); }
.ibar { fill: rgba(255, 255, 255, 0.12); } .ifill { fill: var(--orange); }
.acts circle { fill: rgba(255, 255, 255, 0.32); }
.adv-leaders circle { fill: rgba(255, 255, 255, 0.28); }
.adv-lab, .acts-lab, .rg-lab { fill: var(--tl55); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.conn { stroke: rgba(255, 138, 61, 0.55); stroke-width: 2; fill: none; stroke-dasharray: 240; stroke-dashoffset: 240; transition: stroke-dashoffset 1s var(--ease); }
.scanbeam { fill: rgba(255, 160, 80, 0.55); }
.risk-ring { fill: none; stroke: var(--orange); stroke-width: 2.5; }
.sig rect { fill: rgba(6, 26, 40, 0.92); stroke: rgba(255, 98, 0, 0.5); stroke-width: 1.5; }
.sig-k2 { fill: var(--orange-lt); font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.sig-v2 { fill: var(--tl); font-size: 11px; font-weight: 700; }
/* layer states */
.g-conn .conn, .g-cascade, .g-software, .g-rhythm { opacity: 0; transition: opacity 0.6s var(--ease); }
.g-advisory { transition: opacity 0.6s var(--ease); }
[data-active="1"] .g-advisory { opacity: 1; }
[data-active="2"] .g-advisory, [data-active="3"] .g-advisory, [data-active="4"] .g-advisory { opacity: 0.5; }
[data-active="2"] .g-cascade, [data-active="3"] .g-cascade, [data-active="4"] .g-cascade { opacity: 1; }
[data-active="2"] .conn, [data-active="3"] .conn, [data-active="4"] .conn { opacity: 1; stroke-dashoffset: 0; }
[data-active="3"] .g-software, [data-active="4"] .g-software { opacity: 1; }
[data-active="4"] .g-rhythm { opacity: 1; }
[data-active="3"] .scanbeam, [data-active="4"] .scanbeam { animation: beam 2.8s var(--ease) infinite; transform-box: view-box; }
@keyframes beam { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: 0.9; } 55% { transform: translateY(165px); opacity: 0; } 100% { opacity: 0; } }
.stage-caption { margin-top: 16px; position: relative; width: 100%; height: 46px; }
.stage-caption span { position: absolute; left: 0; right: 0; top: 0; opacity: 0; transition: opacity 0.5s var(--ease); font-size: 1rem; font-weight: 700; color: var(--tl); text-align: center; line-height: 1.4; }
[data-active="1"] .sc-1, [data-active="2"] .sc-2, [data-active="3"] .sc-3, [data-active="4"] .sc-4 { opacity: 1; }

.story-panels { display: flex; flex-direction: column; }
.story-intro { min-height: 40vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 5vh; }
.story-panel { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; opacity: 0.32; transition: opacity 0.45s var(--ease); }
.story-panel.active { opacity: 1; }
.sp-num { font-weight: 900; font-size: 1rem; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 16px; }
.story-panel h3 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--tl); margin-bottom: 16px; }
.story-panel p { font-size: 1.25rem; color: var(--tl70); line-height: 1.5; max-width: 440px; }
.story-panel .button { margin-top: 28px; align-self: flex-start; }

/* ---- ADVISOR on light ---- */
.bg-paper .ability-list li { color: var(--ink); }
.bg-paper .advisor-brief { background: linear-gradient(158deg, #06283f, #03182a); border: 1px solid rgba(255, 98, 0, 0.3); }

/* ---- light integration wall ---- */
.light-wall .int-cell { border: 1px solid var(--line); box-shadow: var(--shadow-card); }

.button-dark { background: var(--navy-deep); color: #fff; box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.45); }
.button-dark:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.55); }

/* ---- iteration-3 responsive ---- */
@media (max-width: 920px) {
  .hero-roi { justify-self: stretch; max-width: none; }
  .method-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-stage { position: relative; top: 0; height: auto; max-height: none; aspect-ratio: 1 / 1; margin-bottom: 20px; }
  /* mobile: show the fully assembled system */
  .story-stage .g-cascade, .story-stage .g-software, .story-stage .g-rhythm, .story-stage .g-advisory { opacity: 1 !important; }
  .story-stage .conn { opacity: 1 !important; stroke-dashoffset: 0 !important; }
  .story-stage .stage-caption .sc-4 { opacity: 1; }
  .story-panel { min-height: auto; opacity: 1; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .story-intro { min-height: auto; padding-bottom: 10px; }
}

/* ════════════════════════════════════════════════════════════
   METHOD — integrated strategy board (copy lives inside the artifact)
   ════════════════════════════════════════════════════════════ */
.method-os { position: relative; overflow: clip; }
.os-board { max-width: 940px; margin: 54px auto 0; border-radius: 22px; overflow: hidden;
  background: linear-gradient(162deg, #082c46, #041d30); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-lift); }
.osb-head { display: flex; align-items: center; gap: 11px; padding: 17px 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); }
.osb-head .osb-title { font-weight: 900; color: var(--tl); font-size: 1.05rem; }
.osb-head .osb-sub { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tl40); }
.osb-head .osb-ai { margin-left: auto; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; color: var(--orange-lt); border: 1px solid rgba(255, 138, 61, 0.4); border-radius: 20px; padding: 4px 11px; }

.osb-region { display: grid; grid-template-columns: 184px 1fr; gap: 26px; padding: 28px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.osr-side { position: relative; padding-left: 26px; }
.osr-side::before { content: ''; position: absolute; left: 0; top: 3px; width: 15px; height: 15px; border-radius: 50%; background: var(--navy-deep); border: 3px solid var(--orange); box-shadow: 0 0 14px rgba(255, 98, 0, 0.55); z-index: 2; }
.osb-region:not(:last-of-type) .osr-side::after { content: ''; position: absolute; left: 6px; top: 18px; bottom: -46px; width: 2px; background: linear-gradient(rgba(255, 98, 0, 0.55), rgba(255, 98, 0, 0.18)); }
.osr-no { display: block; font-weight: 900; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 7px; }
.osr-tag { font-weight: 900; font-size: 1.18rem; color: var(--tl); letter-spacing: -0.01em; }
.osr-desc { font-size: 0.96rem; color: var(--tl70); line-height: 1.5; margin-bottom: 16px; max-width: 540px; }

.goal-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 20px; border-radius: 13px; background: rgba(255, 98, 0, 0.08); border: 1px solid rgba(255, 98, 0, 0.28); }
.goal-k { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-lt); }
.goal-v { font-weight: 800; color: var(--tl); font-size: 1.06rem; flex: 1; min-width: 200px; }
.goal-prog { display: flex; align-items: center; gap: 11px; }
.goal-prog i { display: block; width: 96px; height: 7px; border-radius: 7px; background: rgba(255, 255, 255, 0.14); position: relative; overflow: hidden; }
.goal-prog i::after { content: ''; position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--orange-deep), var(--orange)); border-radius: 7px; transition: width 1.2s var(--ease); }
[data-board].is-visible .goal-prog i::after { width: var(--w); }
.goal-prog b { color: var(--orange-lt); font-weight: 900; }

.inits { display: flex; flex-direction: column; gap: 10px; }
.initrow { display: grid; grid-template-columns: 1fr auto 116px 92px; gap: 18px; align-items: center; padding: 13px 16px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.initrow.risk { border-color: rgba(255, 98, 0, 0.4); background: rgba(255, 98, 0, 0.06); }
.ir-name { font-weight: 700; color: var(--tl); font-size: 0.96rem; }
.ir-owner { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--tl70); white-space: nowrap; }
.ir-owner i { width: 27px; height: 27px; border-radius: 50%; background: linear-gradient(135deg, #0d3b58, #082f49); display: flex; align-items: center; justify-content: center; font-size: 0.64rem; font-weight: 900; font-style: normal; color: var(--orange-lt); border: 1px solid rgba(255, 138, 61, 0.32); }
.ir-track { height: 7px; border-radius: 7px; background: rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.ir-track i { position: absolute; inset: 0; width: 0; border-radius: 7px; transition: width 1.1s var(--ease); }
[data-board].is-visible .ir-track i { width: var(--w); }
.ir-track i.ok { background: linear-gradient(90deg, #1f8e6e, var(--green)); }
.ir-track i.at { background: linear-gradient(90deg, var(--orange-deep), var(--orange)); }
.ir-track i.stall { background: linear-gradient(90deg, #9b3a2b, var(--red)); }
.ir-status { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 10px; border-radius: 20px; white-space: nowrap; text-align: center; }
.ir-status.ok { color: var(--green); background: rgba(43, 189, 143, 0.14); }
.ir-status.at { color: var(--orange-lt); background: rgba(255, 98, 0, 0.16); }
.ir-status.stall { color: var(--red); background: rgba(226, 97, 75, 0.16); }
.inits-foot { margin-top: 12px; font-size: 0.82rem; color: var(--tl40); font-weight: 600; }

.os-signal { padding: 17px 20px; border-radius: 13px; background: linear-gradient(135deg, rgba(255, 98, 0, 0.16), rgba(255, 98, 0, 0.05)); border: 1px solid rgba(255, 98, 0, 0.4); }
.oss-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.oss-ic { color: var(--orange); }
.oss-k { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--orange-lt); }
.oss-v { margin-left: auto; font-weight: 900; color: var(--tl); font-size: 1.1rem; }
.oss-body { font-size: 0.94rem; color: var(--tl70); line-height: 1.5; }
.oss-body b { color: var(--tl); font-weight: 800; }

.osb-foot { display: flex; align-items: center; justify-content: center; padding: 18px 26px; background: rgba(255, 255, 255, 0.03); flex-wrap: wrap; }
.osb-foot span { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.03em; color: var(--tl55); padding: 0 22px; position: relative; }
.osb-foot span:not(:last-child)::after { content: '\2192'; position: absolute; right: -5px; color: var(--orange); }

.method-cta { text-align: center; margin-top: 34px; }

@media (max-width: 760px) {
  .osb-region { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
  .osb-region:not(:last-of-type) .osr-side::after { display: none; }
  .initrow { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .initrow .ir-track { grid-column: 1 / -1; order: 3; }
  .osb-foot span { padding: 4px 14px; font-size: 0.74rem; }
  .osb-foot span:not(:last-child)::after { display: none; }
}

/* ════════════════════════════════════════════════════════════
   METHOD — original text blocks · premium frameless visuals
   ════════════════════════════════════════════════════════════ */
.method-blocks { position: relative; overflow: clip; }
.mblock { align-items: center; margin-top: clamp(64px, 7vw, 112px); gap: clamp(44px, 5vw, 84px); }
.mb-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.mb-tag::before { content: ''; width: 26px; height: 2px; background: var(--orange); }
.mb-lede { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 800; color: var(--tl); line-height: 1.28; margin-bottom: 16px; letter-spacing: -0.01em; }

/* frameless viz: soft glow instead of a hard box */
.mb-viz { position: relative; padding: clamp(24px, 3vw, 48px); display: flex; flex-direction: column; justify-content: center; min-height: 320px; }
.mb-viz::before { content: ''; position: absolute; inset: 8% 6%; border-radius: 30px; background: radial-gradient(58% 56% at 50% 36%, rgba(255, 98, 0, 0.10), transparent 72%); pointer-events: none; z-index: 0; }
.mb-viz > * { position: relative; z-index: 1; }

/* — Advisory: four-ability execution cycle (sales-deck style) — */
.adv-cycle-viz { flex-direction: column; }
.adv-cycle {
  width: 100%; max-width: 560px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(170px, 280px) 1fr;
  grid-template-rows: auto auto auto;
  align-items: center; justify-items: center;
  column-gap: 12px; row-gap: 14px;
}
.ac-ring { grid-column: 2; grid-row: 2; width: 100%;
  opacity: 0; transform: scale(0.96); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.ac-ring svg { width: 100%; height: auto; display: block; overflow: visible; }
.mblock.is-visible .ac-ring { opacity: 1; transform: none; }

.ac-label { display: flex; flex-direction: column; gap: 2px; max-width: 210px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.mblock.is-visible .ac-label { opacity: 1; transform: none; }
.ac-top { grid-column: 2; grid-row: 1; text-align: center; align-items: center; }
.ac-bottom { grid-column: 2; grid-row: 3; text-align: center; align-items: center; }
.ac-left { grid-column: 1; grid-row: 2; text-align: right; align-items: flex-end; }
.ac-right { grid-column: 3; grid-row: 2; text-align: left; align-items: flex-start; }
.ac-num { font-size: 0.72rem; font-weight: 900; color: var(--orange); letter-spacing: 0.08em; }
.ac-title { font-size: 0.98rem; font-weight: 800; color: var(--tl); line-height: 1.16; letter-spacing: -0.01em; }
.ac-sub { font-size: 0.8rem; font-weight: 600; color: var(--tl55); line-height: 1.22; }

.mblock.is-visible .ac-top { transition-delay: 0.12s; }
.mblock.is-visible .ac-right { transition-delay: 0.24s; }
.mblock.is-visible .ac-bottom { transition-delay: 0.36s; }
.mblock.is-visible .ac-left { transition-delay: 0.48s; }

.avo-cap { text-align: center; margin-top: 24px; font-size: 0.92rem; font-weight: 600; color: var(--tl55); }
.avo-cap span { color: var(--orange); font-weight: 900; margin: 0 4px; }

@media (max-width: 560px) {
  .adv-cycle { grid-template-columns: 1fr minmax(130px, 1fr) 1fr; column-gap: 6px; }
  .ac-title { font-size: 0.88rem; }
  .ac-sub { font-size: 0.74rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ac-ring, .ac-label { opacity: 1 !important; transform: none !important; }
}

/* — Method: strategy-to-execution flow (sales-deck style) — */
.method-flow-block { display: block; }
.mf-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.mf-intro .mb-lede { margin-bottom: 12px; }

.mf-diagram { position: relative; max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 84px minmax(0, 1fr) 232px; column-gap: 22px; align-items: center; }
.mf-loop { grid-column: 1; grid-row: 1 / 8; align-self: stretch; position: relative; }
.mf-loop-line { position: absolute; right: 2px; top: 18px; bottom: 34px; width: 66px;
  border: 2.5px dashed rgba(255, 138, 61, 0.6); border-right: none; border-radius: 60px 0 0 60px; }
.mf-loop-line::after { content: ''; position: absolute; right: -8px; top: -2px;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 9px solid rgba(255, 138, 61, 0.75); }
.mf-loop-label { position: absolute; left: -2px; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tl55); white-space: nowrap; }

.mf-step, .mf-conn { grid-column: 2; }
.r1 { grid-row: 1; } .r2 { grid-row: 2; } .r3 { grid-row: 3; } .r4 { grid-row: 4; }
.r5 { grid-row: 5; } .r6 { grid-row: 6; } .r7 { grid-row: 7; }
.mf-step { position: relative; display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 14px;
  border: 1.5px solid rgba(255, 138, 61, 0.40); background: rgba(255, 255, 255, 0.035); }
.mf-no { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.95rem; color: #fff; background: linear-gradient(150deg, #ff8a3d, #cf4d0d); }
.mf-play { font-size: 0.78rem; }
.mf-txt { display: flex; flex-direction: column; gap: 2px; }
.mf-txt b { font-size: 1.04rem; font-weight: 800; color: var(--tl); letter-spacing: -0.01em; }
.mf-txt em { font-style: normal; font-size: 0.84rem; color: var(--tl55); }
.mf-step.is-exec { background: linear-gradient(150deg, rgba(255, 98, 0, 0.92), rgba(183, 67, 10, 0.92)); border-color: var(--orange);
  box-shadow: 0 18px 44px -20px rgba(255, 98, 0, 0.6); }
.mf-step.is-exec .mf-txt b { color: #fff; }
.mf-step.is-exec .mf-txt em { color: rgba(255, 255, 255, 0.85); }
.mf-step.is-exec .mf-no { background: #fff; color: var(--orange-deep); }

.mf-conn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 0; }
.mf-arrow { width: 22px; height: 26px; background: var(--orange); clip-path: polygon(38% 0, 62% 0, 62% 52%, 100% 52%, 50% 100%, 0 52%, 38% 52%); }
.mf-arrow-lab { font-size: 0.64rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }

.mf-rhythm { grid-column: 3; position: relative; align-self: stretch; padding-left: 28px;
  display: flex; flex-direction: column; justify-content: center; }
.rhy-plan { grid-row: 3 / 6; }
.rhy-exec { grid-row: 7; }
.mf-rhythm::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 13px;
  border: 2px solid rgba(255, 138, 61, 0.6); border-left: none; border-radius: 0 5px 5px 0; }
.mf-rhythm b { display: block; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.mf-rhythm strong { display: block; font-size: 0.98rem; font-weight: 800; color: var(--tl); }
.mf-rhythm span { display: block; font-size: 0.84rem; color: var(--tl55); margin-top: 2px; }

@media (max-width: 820px) {
  .mf-diagram { grid-template-columns: 64px minmax(0, 1fr); column-gap: 16px; }
  .mf-rhythm { grid-column: 1 / -1; align-self: auto; padding-left: 16px; }
  .rhy-plan { grid-row: 8; margin-top: 26px; }
  .rhy-exec { grid-row: 9; margin-top: 14px; }
  .mf-loop-line { width: 38px; }
  .mf-txt b { font-size: 0.96rem; }
}

/* — Dual challenge of execution — */
.dc-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 18px; margin-top: 48px; }
.dc-card { position: relative; padding: 34px 32px; border-radius: 20px; display: flex; flex-direction: column; gap: 16px; }
.dc-hold { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.10); }
.dc-handle { background: linear-gradient(160deg, rgba(255, 98, 0, 0.95), rgba(183, 67, 10, 0.95)); border: 1px solid var(--orange);
  box-shadow: 0 34px 70px -34px rgba(255, 98, 0, 0.55); }
.dc-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.dc-hold .dc-ico { color: var(--orange); background: rgba(255, 98, 0, 0.12); border: 1px solid rgba(255, 98, 0, 0.3); }
.dc-handle .dc-ico { color: #fff; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.3); }
.dc-ico svg { width: 28px; height: 28px; }
.dc-tag { font-size: 0.76rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.dc-hold .dc-tag { color: var(--orange); }
.dc-handle .dc-tag { color: #07203a; }
.dc-card p { font-size: 1.05rem; line-height: 1.6; }
.dc-hold p { color: var(--tl70); }
.dc-handle p { color: #fff; }
.dc-handle p b { color: #fff; font-weight: 800; }
.dc-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 0 4px; }
.dc-amp { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: #fff; background: linear-gradient(150deg, #ff8a3d, #cf4d0d); box-shadow: 0 0 0 7px rgba(255, 98, 0, 0.12); }
.dc-center-lab { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tl55); text-align: center; max-width: 72px; line-height: 1.3; }
.dc-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 26px 32px; border-radius: 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); }
.dc-foot p { font-size: 1.08rem; font-weight: 700; color: var(--tl); max-width: 640px; line-height: 1.5; }
.dc-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.dc-chips span { font-size: 0.82rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange);
  padding: 9px 17px; border-radius: 30px; border: 1px solid rgba(255, 98, 0, 0.4); background: rgba(255, 98, 0, 0.08); }
@media (max-width: 760px) {
  .dc-grid { grid-template-columns: 1fr; }
  .dc-center { flex-direction: row; gap: 14px; padding: 4px 0; }
  .dc-center-lab { max-width: none; }
}

/* — form status + consent — */
.form-status:empty { display: none; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }
.form-consent { margin-top: 10px; font-size: 0.78rem; color: var(--tl55); line-height: 1.5; }
.form-consent a { color: var(--orange-lt); text-decoration: underline; }

/* — footer: compliance + legal — */
.site-footer .footer-inner { flex-direction: column; align-items: stretch; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 22px 40px; flex-wrap: wrap; }
.footer-compliance { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 0; padding: 0; }
.footer-compliance li { position: relative; font-size: 0.8rem; font-weight: 700; color: var(--tl55); padding-left: 22px; }
.footer-compliance li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; background: rgba(43, 189, 143, 0.15); border: 1px solid var(--green); }
.footer-compliance li::after { content: ''; position: absolute; left: 4.5px; top: 49%; width: 5px; height: 2.5px; border-left: 1.5px solid var(--green); border-bottom: 1.5px solid var(--green); transform: translateY(-65%) rotate(-45deg); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-copy { font-size: 0.82rem; color: var(--tl40); margin: 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; font-weight: 700; color: var(--tl55); transition: color .2s ease; }
.footer-links a:hover { color: var(--orange-lt); }

/* — homepage FAQ accordion — */
.faq { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 44px auto 0; }
.faq-item { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; background: rgba(255, 255, 255, 0.035); overflow: hidden; }
.faq-item[open] { border-color: rgba(255, 98, 0, 0.4); background: rgba(255, 98, 0, 0.05); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1.08rem; font-weight: 800; color: var(--tl); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--orange); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 2px 24px 22px; color: var(--tl70); font-size: 0.98rem; line-height: 1.62; }
.faq-a a { color: var(--orange-lt); font-weight: 700; }

.method-cta { text-align: center; margin-top: clamp(54px, 6vw, 84px); }

@media (max-width: 920px) {
  .rc-cards { grid-template-columns: 1fr; }
  .mb-viz { min-height: 0; padding: 20px 0; }
}

/* ════════════ ported from v2: hero orbit · scroll cue · tilt · CTA ════════════ */
.hero-orbit { position: absolute; right: -6vw; top: 50%; transform: translateY(-50%); width: min(54vw, 720px); aspect-ratio: 1; z-index: 1; pointer-events: none; opacity: 0.6; }
.hero-orbit span { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 138, 61, 0.18); animation: heroSpin 40s linear infinite; }
.hero-orbit span:nth-child(2) { inset: 15%; border-color: rgba(255, 138, 61, 0.26); animation-duration: 28s; animation-direction: reverse; }
.hero-orbit span:nth-child(3) { inset: 32%; border-color: rgba(255, 138, 61, 0.34); animation-duration: 18s; }
.hero-orbit span::before { content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
@keyframes heroSpin { to { transform: rotate(360deg); } }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 14px; }
.hero-scroll span { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 3px; background: var(--orange); animation: heroScroll 1.8s ease-in-out infinite; }
@keyframes heroScroll { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

.tilt { transition: transform 0.2s var(--ease); transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  .hero-orbit span, .hero-scroll span { animation: none !important; }
}
