/* source: main.css */
:root {
  --ink: #f7f3fb;
  --ink-2: #ded4e8;
  --muted: #a69aae;
  --muted-2: #746a7d;
  --night: #0b0612;
  --night-2: #130a1f;
  --night-3: #1b0e2b;
  --paper: #f6f2f8;
  --paper-2: #ebe3ef;
  --purple: #6f2bc4;
  --purple-deep: #3d0c70;
  --orange: #f27824;
  --orange-soft: #ffad62;
  --orange-vivid: #ff7a00;
  --rose: #c73e88;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(25,8,36,.13);
  --surface: rgba(255,255,255,.055);
  --surface-strong: rgba(255,255,255,.09);
  --shadow: 0 24px 80px rgba(4, 0, 10, .28);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 44px;
  --container: 1240px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2,.75,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: var(--night); }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 2000;
  transform: translateY(-160%); padding: 10px 16px; border-radius: 8px;
  background: var(--paper); color: var(--night); font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange-soft); outline-offset: 4px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 900px); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section--compact { padding: clamp(64px, 7vw, 105px) 0; }
.section--paper { background: var(--paper); color: #1d1026; }
.section--paper + .section--paper { padding-top: 0; }
.section--purple { background: #26113c; }
.section--grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}
.section > .container, .section > .container--narrow { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px;
  color: var(--orange-soft); font-size: 11px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--paper .eyebrow { color: #984314; }
.display {
  max-width: 1050px; margin: 0; font-size: clamp(3rem, 8.2vw, 8.3rem); font-weight: 730;
  line-height: .91; letter-spacing: -.068em; text-wrap: balance;
}
.h1 { margin: 0; font-size: clamp(2.8rem, 6.5vw, 6.5rem); line-height: .96; letter-spacing: -.06em; font-weight: 740; text-wrap: balance; }
.h2 { margin: 0; font-size: clamp(2.25rem, 5vw, 5rem); line-height: 1.01; letter-spacing: -.055em; font-weight: 720; text-wrap: balance; }
.h3 { margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.35rem); line-height: 1.12; letter-spacing: -.035em; font-weight: 690; }
.lead { max-width: 760px; margin: 24px 0 0; color: var(--ink-2); font-size: clamp(1.08rem, 1.55vw, 1.32rem); line-height: 1.72; }
.section--paper .lead { color: #5f5267; }
.kicker { max-width: 650px; margin: 20px 0 0; color: var(--muted); font-size: 1rem; }
.section--paper .kicker { color: #6d6173; }
.gradient-text { background: linear-gradient(105deg, var(--orange-soft), var(--orange) 40%, #d34f91 70%, #a76cff); color: transparent; -webkit-background-clip: text; background-clip: text; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 999px; text-decoration: none;
  font-size: 13px; font-weight: 760; letter-spacing: .015em; line-height: 1.1; white-space: nowrap; cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s ease, border-color .28s ease;
}
.button svg { width: 18px; height: 18px; transition: transform .28s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button--primary { background: linear-gradient(120deg, var(--orange), #e65b3a 45%, var(--purple)); color: white; box-shadow: 0 13px 38px rgba(176, 57, 94, .28); }
.button--primary:hover { box-shadow: 0 18px 50px rgba(176, 57, 94, .38); }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.04); color: var(--ink); }
.button--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); }
.section--paper .button--ghost { color: #26122f; border-color: rgba(38,18,47,.2); background: rgba(38,18,47,.035); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; font-weight: 720; }
.text-link svg { width: 17px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1200; background: transparent; }
.progress__bar { width: 100%; height: 100%; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--orange), var(--rose), var(--purple)); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1100; height: 82px;
  transition: background .35s ease, border-color .35s ease, height .35s var(--ease), transform .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { height: 68px; background: rgba(11,6,18,.82); border-color: rgba(255,255,255,.1); backdrop-filter: blur(20px) saturate(1.2); }
.header-inner { height: 100%; width: min(100% - 40px, var(--container)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand img { width: 39px; height: 39px; }
.brand__name { font-size: 14px; font-weight: 735; letter-spacing: -.018em; }
.brand__name span { color: var(--orange-vivid); font-weight: 500; text-shadow: 0 0 18px rgba(255,122,0,.18); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); margin-left: auto; }
.primary-nav a { position: relative; color: #c7bdce; text-decoration: none; font-size: 12px; font-weight: 660; letter-spacing: .055em; text-transform: uppercase; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--orange); transition: right .3s var(--ease); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: white; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-cta { min-height: 44px; padding-inline: 20px; flex-shrink: 0; overflow: visible; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.05); border-radius: 50%; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle svg { width: 21px; }
.mobile-menu { position: fixed; inset: 0; z-index: 1150; background: rgba(11,6,18,.97); backdrop-filter: blur(24px); padding: 24px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; display: grid; place-items: center; cursor: pointer; }
.mobile-menu__close svg { width: 22px; }
.mobile-menu__links { min-height: calc(100dvh - 130px); display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.mobile-menu__links a { padding: 10px 0; color: #c9bfd0; text-decoration: none; font-size: clamp(2rem, 9vw, 4rem); font-weight: 720; letter-spacing: -.05em; line-height: 1; }
.mobile-menu__links a[aria-current="page"] { color: white; }
.mobile-menu__links .button { align-self: flex-start; margin-top: 18px; font-size: 14px; padding-inline: 22px; }

.hero {
  min-height: 100svh; padding: 145px 0 80px; display: grid; align-items: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 77% 22%, rgba(111,43,196,.32), transparent 31%), radial-gradient(circle at 15% 83%, rgba(242,120,36,.15), transparent 28%), var(--night);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 70% 43%, black, transparent 65%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); align-items: center; gap: clamp(46px, 7vw, 105px); }
.hero__copy { position: relative; z-index: 2; }
.hero__copy .display { max-width: 900px; padding-right: .08em; font-size: clamp(3.7rem, 7.35vw, 8rem); line-height: .95; }
.hero__copy .display .gradient-text { display: inline-block; padding-right: .08em; }
.hero__actions { margin-top: 36px; }
.hero__note { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--muted); font-size: 12px; letter-spacing: .035em; }
.hero__note::before { content: ""; width: 40px; height: 1px; background: rgba(255,255,255,.3); }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.growth-map { width: min(100%, 580px); overflow: visible; filter: drop-shadow(0 40px 90px rgba(0,0,0,.35)); }
.growth-map .orbit { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; }
.growth-map .route { fill: none; stroke: url(#routeGradient); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 9 10; animation: route 24s linear infinite; }
.growth-map .route-thin { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; }
.growth-map .node-ring { fill: rgba(11,6,18,.92); stroke: rgba(255,255,255,.18); stroke-width: 1; }
.growth-map .node-core { fill: var(--orange); }
.growth-map .node-core.purple { fill: #a16af4; }
.growth-map .label { fill: #d8cedf; font: 600 12px var(--font); letter-spacing: .03em; }
.growth-map .label-small { fill: #8d8295; font: 500 10px var(--font); letter-spacing: .06em; text-transform: uppercase; }
.growth-map .tree-mark { transform-origin: 300px 300px; animation: breathe 7s ease-in-out infinite; }
@keyframes route { to { stroke-dashoffset: -380; } }
@keyframes breathe { 50% { transform: scale(1.035); } }
.floating-metric { position: absolute; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18,9,29,.68); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.floating-metric strong { display: block; font-size: 12px; color: white; }
.floating-metric span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }
.floating-metric--a { top: 14%; right: 2%; }
.floating-metric--b { left: 0; bottom: 18%; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #8e8297; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue::after { content: ""; width: 1px; height: 42px; background: linear-gradient(to bottom, var(--orange), transparent); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.logo-rail { position: relative; padding: 28px 0; border-block: 1px solid var(--line); background: #100918; overflow: hidden; }
.logo-rail::before, .logo-rail::after { content: ""; position: absolute; inset: 0 auto 0; width: 12vw; z-index: 2; pointer-events: none; }
.logo-rail::before { left: 0; background: linear-gradient(90deg, #100918, transparent); }
.logo-rail::after { right: 0; background: linear-gradient(-90deg, #100918, transparent); }
.logo-track { width: max-content; display: flex; align-items: center; gap: 18px; animation: marquee 38s linear infinite; }
.logo-rail:hover .logo-track { animation-play-state: paused; }
.case-pill { width: 270px; height: 104px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.1); background: #f7f7f7; border-radius: 15px; overflow: hidden; display: grid; place-items: center; }
.case-pill img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-intro { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(50px, 8vw, 130px); align-items: start; }
.split-intro__sticky { position: sticky; top: 120px; }
.editorial-copy { font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.52; letter-spacing: -.02em; color: #5b4f61; }

.journey-list { border-top: 1px solid var(--line-dark); }
.journey-item { display: grid; grid-template-columns: 90px minmax(180px,.45fr) minmax(0,1fr); gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.journey-item__number { color: #9c8ca4; font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.journey-item__stage { font-size: 12px; font-weight: 780; text-transform: uppercase; letter-spacing: .12em; color: #8b431c; }
.journey-item h3 { margin: 4px 0 12px; font-size: clamp(1.35rem, 2.3vw, 2.35rem); letter-spacing: -.04em; line-height: 1.08; }
.journey-item p { margin: 0; color: #66596d; }
.journey-item:hover h3 { color: var(--purple-deep); }

.system-shell { margin-top: 62px; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: var(--shadow); }
.system-row { display: grid; grid-template-columns: 100px minmax(220px,.7fr) minmax(0,1.3fr); gap: 30px; padding: 34px clamp(24px, 4vw, 55px); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.system-row:last-child { border-bottom: 0; }
.system-row:hover { background: rgba(255,255,255,.045); }
.system-row__number { font-size: 12px; color: var(--orange-soft); letter-spacing: .14em; }
.system-row h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.system-row p { margin: 0; color: var(--muted); max-width: 690px; }
.system-quote { margin: 48px auto 0; max-width: 950px; text-align: center; font-size: clamp(1.8rem, 4vw, 4.2rem); line-height: 1.02; font-weight: 700; letter-spacing: -.055em; }

.principles { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); margin-top: 58px; }
.principle { min-height: 300px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: space-between; transition: background .3s ease; }
.principle:hover { background: #efe7f2; }
.principle__icon { width: 42px; height: 42px; border: 1px solid rgba(43,16,55,.18); border-radius: 50%; display: grid; place-items: center; color: var(--purple); }
.principle__icon svg { width: 19px; }
.principle h3 { margin: 40px 0 10px; font-size: 1.35rem; letter-spacing: -.035em; line-height: 1.15; }
.principle p { margin: 0; color: #66596d; font-size: .94rem; }

.sector-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 50px; }
.sector { position: relative; min-height: 330px; padding: clamp(26px,3.5vw,46px); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; background: rgba(255,255,255,.035); display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; }
.sector::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; top: -90px; right: -70px; transition: transform .6s var(--ease), border-color .3s ease; }
.sector::after { content: ""; position: absolute; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; top: -38px; right: -18px; transition: transform .7s var(--ease); }
.sector:hover::before { transform: scale(1.15) translate(-8px,8px); border-color: rgba(242,120,36,.38); }
.sector:hover::after { transform: scale(.9) translate(-12px,12px); }
.sector__tags { position: relative; z-index: 1; margin-bottom: auto; color: var(--orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.sector h3 { position: relative; z-index: 1; max-width: 440px; margin-bottom: 14px; }
.sector p { position: relative; z-index: 1; max-width: 510px; margin: 0; color: var(--muted); }

.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 48px; }
.case-card { min-height: 150px; border: 1px solid var(--line-dark); border-radius: 18px; background: #fff; overflow: hidden; display: grid; place-items: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(30,10,40,.12); }
.case-card img { width: 100%; height: 100%; object-fit: cover; }

.cta-panel { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(38px,7vw,90px); background: radial-gradient(circle at 90% 20%, rgba(111,43,196,.45), transparent 35%), linear-gradient(145deg,#1b0c2a,#100718); box-shadow: var(--shadow); }
.cta-panel::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; right: -150px; bottom: -220px; }
.cta-panel .h2 { max-width: 900px; position: relative; }
.cta-panel .lead, .cta-panel .button-row { position: relative; }

/* Contraste específico dos CTAs do blog e dos artigos. */
.article-cta .cta-panel,
.blog-cta-panel {
  color: #fff;
  border-color: rgba(111,43,196,.36);
  background: radial-gradient(circle at 88% 18%, rgba(242,120,36,.26), transparent 34%), linear-gradient(145deg,#3a1558,#180a27 72%);
  box-shadow: 0 26px 80px rgba(35,10,52,.3);
}
.article-cta .cta-panel .eyebrow,
.blog-cta-panel .eyebrow { color: var(--orange-soft); }
.article-cta .cta-panel .h2,
.blog-cta-panel .h2 { color: #fff; }
.article-cta .cta-panel .lead,
.blog-cta-panel .lead { color: #eee6f4; }
.article-cta .cta-panel .button--ghost,
.blog-cta-panel .button--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.055);
}
.article-cta .cta-panel .button--ghost:hover,
.blog-cta-panel .button--ghost:hover {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.11);
}

.page-hero { min-height: 68svh; padding: 165px 0 80px; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: radial-gradient(circle at 75% 12%, rgba(111,43,196,.33), transparent 30%), var(--night); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.page-hero__inner { position: relative; }
.page-hero .h1 { max-width: 1080px; }
.page-hero .lead { max-width: 850px; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: #988ca1; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.timeline { position: relative; margin-top: 65px; }
.timeline::before { content: ""; position: absolute; left: 43px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom,var(--orange),var(--purple),rgba(255,255,255,.1)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 32px; padding: 0 0 82px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__dot { position: sticky; top: 120px; width: 86px; height: 86px; border-radius: 50%; border: 1px solid var(--line); background: #13091f; display: grid; place-items: center; color: var(--orange-soft); font-size: 12px; font-weight: 780; letter-spacing: .12em; z-index: 1; }
.timeline-item__content { border-top: 1px solid var(--line); padding-top: 28px; }
.timeline-item__label { color: var(--orange-soft); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .15em; }
.timeline-item h2 { margin: 9px 0 16px; font-size: clamp(2rem,4vw,4.2rem); letter-spacing: -.055em; line-height: 1.02; }
.timeline-item p { max-width: 850px; color: var(--ink-2); font-size: 1.03rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c6bbcd; font-size: 11px; }

.solution-map { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 52px; }
.solution-card { min-height: 360px; padding: clamp(26px,4vw,46px); border: 1px solid var(--line); border-radius: var(--radius-l); background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); display: flex; flex-direction: column; }
.solution-card__number { margin-bottom: auto; color: var(--orange-soft); font-size: 11px; letter-spacing: .14em; }
.solution-card h3 { margin: 50px 0 16px; font-size: clamp(1.7rem,3vw,3rem); }
.solution-card p { margin: 0; color: var(--muted); }
.solution-card ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.solution-card li { display: flex; gap: 10px; color: #c9bfd0; font-size: .92rem; }
.solution-card li::before { content: ""; width: 6px; height: 6px; margin-top: .62em; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

.process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 48px; }
.process { padding: 28px; border-top: 1px solid var(--line-dark); min-height: 260px; display: flex; flex-direction: column; }
.process__number { color: #9b4a1c; font-size: 11px; letter-spacing: .14em; }
.process h3 { margin: auto 0 14px; font-size: 1.55rem; }
.process p { margin: 0; color: #675a6e; }

.partner-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 42px; }
.partner-logo { min-height: 95px; flex: 1 1 220px; background: white; border: 1px solid var(--line-dark); border-radius: 14px; display: grid; place-items: center; padding: 16px; }
.partner-logo img { max-width: 170px; max-height: 62px; object-fit: contain; }

.profile-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: 55px; background: var(--line); border: 1px solid var(--line); }
.profile { min-height: 310px; padding: clamp(28px,4vw,48px); background: var(--night); }
.profile__number { color: var(--orange-soft); font-size: 11px; letter-spacing: .14em; }
.profile h3 { margin: 70px 0 14px; max-width: 450px; }
.profile p { margin: 0; color: var(--muted); }

.signals { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 48px; }
.signal { padding: 26px; min-height: 220px; border: 1px solid var(--line-dark); border-radius: var(--radius-m); background: rgba(255,255,255,.32); }
.signal::before { content: ""; display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); margin-bottom: 54px; }
.signal h3 { margin-bottom: 10px; font-size: 1.25rem; }
.signal p { margin: 0; color: #675a6e; font-size: .94rem; }

.blog-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #bdb2c4; padding: 9px 14px; font-size: 11px; font-weight: 720; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: white; border-color: rgba(242,120,36,.55); background: rgba(242,120,36,.1); }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 42px; }
.post-card { min-height: 410px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-l); background: rgba(255,255,255,.035); text-decoration: none; transition: transform .35s var(--ease), background .35s ease, border-color .35s ease; }
.post-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }
.post-card--featured { grid-column: span 2; min-height: 500px; background: radial-gradient(circle at 82% 18%,rgba(111,43,196,.35),transparent 36%),rgba(255,255,255,.045); }
.post-card__category { color: var(--orange-soft); font-size: 10px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.post-card h2 { margin: auto 0 16px; font-size: clamp(1.5rem,2.2vw,2.25rem); line-height: 1.08; letter-spacing: -.04em; }
.post-card--featured h2 { max-width: 720px; font-size: clamp(2.2rem,4vw,4.2rem); }
.post-card p { margin: 0 0 24px; color: var(--muted); }
.post-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); color: #8f8497; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.post-card[hidden] { display: none; }

.article-hero { min-height: 72svh; padding: 160px 0 78px; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: radial-gradient(circle at 78% 10%,rgba(111,43,196,.32),transparent 32%),var(--night); }
.article-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom,black,transparent 78%); opacity: .45; }
.article-hero__inner { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #93879b; font-size: 11px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: white; }
.article-hero .h1 { max-width: 1120px; font-size: clamp(2.8rem,6.4vw,6.3rem); }
.article-hero .lead { max-width: 900px; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) 280px; justify-content: space-between; gap: 70px; align-items: start; }
.article-body { color: #34283a; font-size: clamp(1.04rem,1.3vw,1.16rem); line-height: 1.84; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2 { margin: 2.4em 0 .7em; color: #1d1025; font-size: clamp(1.75rem,3vw,2.75rem); line-height: 1.08; letter-spacing: -.045em; }
.article-body h3 { margin: 2em 0 .65em; color: #25162d; font-size: 1.45rem; letter-spacing: -.025em; }
.article-body p { margin: 0 0 1.25em; }
.article-body ul, .article-body ol { margin: 0 0 1.4em; padding-left: 1.25em; }
.article-body li { margin: .45em 0; }
.article-body strong { color: #1d1025; }
.article-body a { color: var(--purple-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body blockquote { margin: 2em 0; padding: 28px 32px; border-left: 3px solid var(--orange); background: #eee6f1; font-size: 1.18rem; }
.article-aside { position: sticky; top: 100px; display: grid; gap: 14px; }
.aside-card { padding: 22px; border: 1px solid var(--line-dark); border-radius: var(--radius-m); background: rgba(255,255,255,.35); }
.aside-card h2 { margin: 0 0 15px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: #89401a; }
.toc { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.toc a { color: #625568; text-decoration: none; font-size: 13px; line-height: 1.35; }
.toc a:hover { color: var(--purple-deep); }
.related-list { display: grid; gap: 12px; }
.related-list a { padding-top: 12px; border-top: 1px solid var(--line-dark); color: #45364b; text-decoration: none; font-size: 13px; line-height: 1.35; font-weight: 650; }
.related-list a:first-child { padding-top: 0; border-top: 0; }
.related-list a:hover { color: var(--purple-deep); }
.article-cta { margin-top: 75px; }

.contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(430px,1.2fr); gap: clamp(45px,7vw,100px); align-items: start; }
.contact-list { display: grid; border-top: 1px solid var(--line-dark); margin-top: 38px; }
.contact-link { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; }
.contact-link__icon { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; color: var(--purple); }
.contact-link__icon svg { width: 18px; }
.contact-link small { display: block; color: #8a7d90; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-link strong { display: block; color: #2c1c33; font-size: .95rem; overflow-wrap: anywhere; }
.contact-link > svg { width: 18px; color: #8a7d90; }
.expectations { display: grid; gap: 16px; margin-top: 50px; }
.expectation { display: grid; grid-template-columns: 26px 1fr; gap: 13px; }
.expectation__check { width: 24px; height: 24px; border-radius: 50%; background: #2a123e; color: white; display: grid; place-items: center; }
.expectation__check svg { width: 14px; }
.expectation strong { display: block; color: #2a1b31; }
.expectation p { margin: 3px 0 0; color: #6a5e70; font-size: .94rem; }
.form-shell { padding: clamp(26px,4.5vw,48px); border: 1px solid var(--line-dark); border-radius: var(--radius-l); background: white; box-shadow: 0 28px 75px rgba(38,14,50,.1); }
.form-shell h2 { margin: 0; font-size: clamp(2rem,3vw,3rem); letter-spacing: -.045em; line-height: 1.02; }
.form-shell > p { color: #756879; margin: 12px 0 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #46364c; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d9cedd; border-radius: 11px; background: #fbf9fc; color: #26152e; padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(111,43,196,.1); background: white; }
.form-consent { margin: 18px 0 0; color: #85788a; font-size: 11px; }
.form-consent a { color: #4a205f; }
.form-submit { width: 100%; margin-top: 22px; border: 0; }

.thank-you { min-height: 100svh; display: grid; place-items: center; padding: 120px 0 70px; background: radial-gradient(circle at 50% 20%,rgba(111,43,196,.36),transparent 35%),var(--night); }
.thank-you__card { width: min(100%,760px); padding: clamp(35px,7vw,80px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.055); text-align: center; box-shadow: var(--shadow); }
.thank-you__mark { width: 82px; height: 82px; margin: 0 auto 28px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--purple)); display: grid; place-items: center; }
.thank-you__mark svg { width: 35px; }
.thank-you .h1 { font-size: clamp(2.8rem,7vw,5.8rem); }
.thank-you .lead { margin-inline: auto; }
.thank-you .button-row { justify-content: center; }

.legal-shell { max-width: 920px; }
.legal-intro { padding: 28px; border: 1px solid var(--line-dark); border-radius: var(--radius-m); background: white; margin-bottom: 50px; }
.legal-intro dl { display: grid; grid-template-columns: 150px 1fr; gap: 10px 18px; margin: 0 0 24px; }
.legal-intro dt { color: #8b7d91; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.legal-intro dd { margin: 0; font-weight: 650; }
.legal-body h2 { margin: 2.2em 0 .65em; font-size: clamp(1.5rem,3vw,2.25rem); letter-spacing: -.035em; }
.legal-body p, .legal-body li { color: #5f5364; }
.legal-body ul { padding-left: 1.25em; }

.landing-header { position: absolute; inset: 0 0 auto; z-index: 5; height: 84px; }
.landing-header .header-inner { justify-content: space-between; }
.landing-hero { min-height: 94svh; padding: 150px 0 90px; display: grid; align-items: center; background: radial-gradient(circle at 82% 16%,rgba(111,43,196,.4),transparent 33%),radial-gradient(circle at 18% 80%,rgba(242,120,36,.18),transparent 30%),var(--night); }
.landing-hero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); gap: 70px; align-items: center; }
.check-list { display: grid; gap: 12px; margin-top: 34px; }
.check-item { display: flex; align-items: flex-start; gap: 11px; color: #cec4d4; }
.check-item svg { width: 18px; margin-top: 4px; color: var(--orange-soft); flex: 0 0 auto; }
.landing-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-l); background: rgba(255,255,255,.055); backdrop-filter: blur(18px); }
.landing-panel__row { padding: 20px 0; border-top: 1px solid var(--line); }
.landing-panel__row:first-child { border-top: 0; padding-top: 0; }
.landing-panel__row:last-child { padding-bottom: 0; }
.landing-panel strong { display: block; font-size: 1.25rem; }
.landing-panel span { color: var(--muted); font-size: .92rem; }
.crm-shell { border-radius: var(--radius-l); overflow: hidden; background: white; min-height: 650px; box-shadow: 0 25px 70px rgba(20,5,29,.12); }
.crm-shell iframe { width: 100%; min-height: 650px; border: 0; display: block; }

.site-footer { position: relative; padding: 78px 0 30px; border-top: 1px solid var(--line); background: #09040f; }
.footer-grid { display: grid; grid-template-columns: minmax(240px,1.6fr) repeat(3,minmax(130px,.7fr)); gap: 45px; }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: var(--muted); font-size: .93rem; }
.footer-brand__line { color: var(--orange-soft) !important; }
.footer-col h2 { margin: 0 0 18px; color: #8f8397; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #c5bacb; text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: #706676; font-size: 11px; }

.cookie-banner { position: fixed; z-index: 1300; left: 18px; right: 18px; bottom: 18px; max-width: 820px; margin-inline: auto; padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(19,9,31,.96); box-shadow: 0 18px 70px rgba(0,0,0,.46); backdrop-filter: blur(20px); display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 3px; }
.cookie-banner p { margin: 0; color: #a99dae; font-size: 12px; line-height: 1.55; }
.cookie-banner p a { color: white; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; background: transparent; color: white; font-size: 11px; cursor: pointer; }
.cookie-actions .accept { background: var(--orange); border-color: var(--orange); color: #160812; font-weight: 750; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 900px; }
  .hero-visual { min-height: 520px; width: min(100%,680px); margin-inline: auto; }
  .principles { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: minmax(0,760px); justify-content: center; }
  .article-aside { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .container, .container--narrow, .header-inner { width: min(100% - 28px, var(--container)); }
  .site-header { height: 70px; }
  .brand img { width: 35px; height: 35px; }
  .hero { padding-top: 125px; min-height: auto; }
  .hero__copy .display { font-size: clamp(3.45rem,14.4vw,6.65rem); }
  .hero-visual { min-height: 430px; }
  .floating-metric--a { top: 5%; right: 0; }
  .floating-metric--b { bottom: 7%; }
  .scroll-cue { display: none; }
  .split-intro { grid-template-columns: 1fr; }
  .split-intro__sticky { position: static; }
  .journey-item { grid-template-columns: 55px 1fr; }
  .journey-item__content { grid-column: 2; }
  .system-row { grid-template-columns: 55px 1fr; }
  .system-row p { grid-column: 2; }
  .sector-grid, .solution-map, .profile-grid { grid-template-columns: 1fr; }
  .case-grid, .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .post-card--featured { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process { min-height: 220px; }
  .signals { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .landing-hero__grid { grid-template-columns: 1fr; }
  .landing-panel { max-width: 620px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-end; }
}

@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .section--compact { padding: 58px 0; }
  .display { font-size: clamp(3.2rem,17vw,5rem); }
  .h1 { font-size: clamp(2.8rem,14vw,4.5rem); }
  .h2 { font-size: clamp(2.2rem,11vw,3.8rem); }
  .lead { font-size: 1.03rem; line-height: 1.65; }
  .hero { padding-bottom: 60px; }
  .hero__grid { gap: 20px; }
  .hero-visual { min-height: 350px; margin-inline: -10px; }
  .floating-metric { display: none; }
  .logo-rail { padding: 20px 0; }
  .case-pill { width: 220px; height: 86px; }
  .journey-item { grid-template-columns: 38px 1fr; gap: 12px; padding: 26px 0; }
  .journey-item__stage { font-size: 10px; }
  .system-shell { border-radius: 26px; }
  .system-row { grid-template-columns: 35px 1fr; gap: 14px; padding: 25px 20px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 245px; }
  .sector { min-height: 300px; }
  .case-grid, .blog-grid { grid-template-columns: 1fr; }
  .post-card--featured { grid-column: auto; min-height: 430px; }
  .post-card { min-height: 360px; }
  .page-hero, .article-hero { min-height: auto; padding-top: 135px; }
  .timeline::before { left: 25px; }
  .timeline-item { grid-template-columns: 52px 1fr; gap: 15px; padding-bottom: 62px; }
  .timeline-item__dot { width: 52px; height: 52px; font-size: 10px; }
  .signals { grid-template-columns: 1fr; }
  .article-aside { grid-template-columns: 1fr; }
  .article-body { font-size: 1.02rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-shell { padding: 24px 18px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .logo-track .case-pill:nth-child(n+10) { display: none; }
}

@media (max-width: 560px) {
  .legal-intro dl { grid-template-columns: 1fr; gap: 4px; }
  .legal-intro dd { margin-bottom: 12px; overflow-wrap: anywhere; }
}


/* source: v2.css */
/*
  The Oak Growth — Digital Experience V2
  Camada visual autoral sobre a base estática existente.
*/
:root {
  --v2-bg: #08040d;
  --v2-bg-soft: #100719;
  --v2-bg-raised: #160a22;
  --v2-paper: #f3eef5;
  --v2-paper-soft: #e9e0ed;
  --v2-white: #fffaff;
  --v2-text: #f7effb;
  --v2-muted: #b5a8bc;
  --v2-purple: #7a2be6;
  --v2-purple-bright: #a65cff;
  --v2-orange: #ff6a00;
  --v2-orange-hot: #ff8a1f;
  --v2-pink: #e93c9a;
  --v2-line: rgba(255,255,255,.12);
  --v2-line-dark: rgba(26,10,37,.14);
  --v2-glass: rgba(18,8,28,.68);
  --v2-shadow: 0 28px 90px rgba(0,0,0,.35);
  --v2-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --v2-ease: cubic-bezier(.22,.8,.22,1);
}

html { background: var(--v2-bg); }
body {
  background:
    radial-gradient(circle at 85% -10%, rgba(122,43,230,.12), transparent 28rem),
    var(--v2-bg);
  font-family: var(--v2-sans);
  color: var(--v2-text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.9) 0 .35px, transparent .45px 3px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .35s; animation-timing-function: var(--v2-ease); }

.container { width: min(100% - 52px, 1320px); }
.container--narrow { width: min(100% - 52px, 920px); }
.section { padding: clamp(100px, 11vw, 176px) 0; }
.section--compact { padding: clamp(72px, 8vw, 118px) 0; }
.section--paper { background: var(--v2-paper); color: #1c1023; }
.section--purple { background: #150922; }
.section--grid { background: var(--v2-bg-soft); }
.section--grid::before {
  opacity: .24;
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 52% 40%, black, transparent 76%);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--v2-orange-hot);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.eyebrow::before { width: 42px; background: linear-gradient(90deg, var(--v2-orange), rgba(255,106,0,.2)); }
.section--paper .eyebrow { color: #9b3c06; }

.display, .h1, .h2, .h3 { text-rendering: geometricPrecision; }
.display {
  font-size: clamp(3.8rem, 8.25vw, 8.7rem);
  font-weight: 670;
  letter-spacing: -.075em;
  line-height: .88;
}
.h1 {
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
  font-weight: 660;
  letter-spacing: -.07em;
  line-height: .9;
}
.h2 {
  font-size: clamp(2.55rem, 5.1vw, 5.6rem);
  font-weight: 640;
  letter-spacing: -.065em;
  line-height: .95;
}
.h3 { font-weight: 630; letter-spacing: -.045em; }
.lead { color: #c7bbcD; line-height: 1.68; }
.section--paper .lead { color: #655a6b; }
.gradient-text {
  background: linear-gradient(100deg, #ffad52 0%, var(--v2-orange) 28%, var(--v2-pink) 66%, #b76cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Header */
.site-header {
  height: 94px;
  padding: 14px 0;
  border: 0;
  pointer-events: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 14px max(18px, calc((100vw - 1360px)/2)) 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(8,4,13,.82);
  border-radius: 8px;
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s var(--v2-ease), background .35s ease;
}
.site-header.is-scrolled { height: 82px; background: transparent; border: 0; }
.site-header.is-scrolled::before { opacity: 1; transform: none; background: rgba(8,4,13,.88); }
.header-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1280px);
  pointer-events: auto;
}
.brand { gap: 12px; }
.brand img { width: 42px; height: 42px; filter: drop-shadow(0 0 18px rgba(166,92,255,.16)); }
.brand__name {
  font-size: 14px;
  font-weight: 660;
  letter-spacing: -.018em;
}
.brand__name span {
  color: var(--v2-orange);
  font-weight: 430;
  text-shadow: 0 0 20px rgba(255,106,0,.23);
}
.primary-nav { gap: clamp(18px, 2.1vw, 31px); }
.primary-nav a {
  color: #b9aec0;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: .105em;
}
.primary-nav a::after { bottom: -11px; height: 2px; background: var(--v2-orange); }
.header-cta {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 11.5px;
  background: linear-gradient(105deg, var(--v2-orange), #f04d5e 55%, #8e2be5);
  box-shadow: 0 10px 32px rgba(225,64,102,.2);
}

/* Buttons */
.button {
  position: relative;
  min-height: 52px;
  padding-inline: 23px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .035em;
  overflow: hidden;
  isolation: isolate;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.25), transparent 38%);
  transform: translateX(-40%);
  transition: opacity .25s ease, transform .5s var(--v2-ease);
}
.button:hover::before { opacity: 1; transform: translateX(0); }
.button--primary { background: linear-gradient(110deg, var(--v2-orange), #ef4b67 52%, #832ce0); box-shadow: 0 14px 42px rgba(206,50,111,.24); }
.button--ghost { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.025); }

/* Home storytelling */
.page-home .hero {
  min-height: 100svh;
  padding: 150px 0 98px;
  background:
    radial-gradient(circle at var(--hero-x, 78%) var(--hero-y, 28%), rgba(130,48,230,.28), transparent 25rem),
    radial-gradient(circle at 12% 84%, rgba(255,106,0,.13), transparent 25rem),
    linear-gradient(180deg, #09040f 0%, #0b0612 75%, #0c0613 100%);
}
.page-home .hero::before {
  opacity: .5;
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 68% 42%, black, transparent 67%);
}
.page-home .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(8,4,13,.95));
  pointer-events: none;
}
.page-home .hero__grid {
  grid-template-columns: minmax(0,1.18fr) minmax(430px,.82fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.page-home .hero__copy::before {
  content: "01 / THE OAK GROWTH SYSTEM";
  display: block;
  margin-bottom: 42px;
  color: #766c7d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
}
.page-home .hero__copy .display {
  max-width: 900px;
  padding-right: .12em;
  font-size: clamp(4.15rem, 7.7vw, 8.45rem);
  line-height: .88;
  letter-spacing: -.078em;
}
.page-home .hero__copy .display .gradient-text { padding-right: .12em; }
.page-home .hero .lead { max-width: 760px; margin-top: 32px; font-size: clamp(1.05rem,1.35vw,1.25rem); }
.page-home .hero__actions { margin-top: 38px; }
.page-home .hero__note { margin-top: 31px; color: #918598; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.page-home .hero__note::before { width: 56px; background: linear-gradient(90deg,var(--v2-orange),transparent); }
.page-home .hero-visual {
  min-height: 650px;
  perspective: 900px;
}
.page-home .hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  width: min(84%, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 90px rgba(122,43,230,.08);
}
.page-home .hero-visual::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 20%;
  right: 12%;
  border-radius: 50%;
  background: var(--v2-orange);
  box-shadow: 0 0 0 8px rgba(255,106,0,.1), 0 0 32px rgba(255,106,0,.85);
}
.page-home .growth-map {
  width: min(100%,640px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 42px 100px rgba(0,0,0,.42));
}
.page-home .growth-map .orbit { stroke: rgba(255,255,255,.095); }
.page-home .growth-map .route { stroke-width: 2.6; }
.page-home .growth-map .node-ring { fill: rgba(12,5,19,.9); stroke: rgba(255,255,255,.22); }
.page-home .growth-map .node-core { fill: var(--v2-orange); filter: drop-shadow(0 0 7px rgba(255,106,0,.8)); }
.page-home .growth-map .node-core.purple { fill: var(--v2-purple-bright); filter: drop-shadow(0 0 7px rgba(166,92,255,.8)); }
.page-home .growth-map .label { fill: #eee5f3; font-size: 12px; }
.page-home .growth-map .label-small { fill: #83788a; }
.page-home .floating-metric {
  padding: 14px 16px;
  border-radius: 10px;
  border-color: rgba(255,255,255,.12);
  background: rgba(13,6,20,.72);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.page-home .floating-metric strong { font-size: 11px; font-weight: 620; }
.page-home .floating-metric span { font-size: 9px; }
.page-home .scroll-cue { z-index: 3; }

.story-rail {
  position: fixed;
  z-index: 900;
  right: max(18px, calc((100vw - 1450px)/2));
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.story-rail.is-visible { opacity: 1; }
.story-rail__item {
  display: grid;
  grid-template-columns: 8px auto;
  gap: 10px;
  align-items: center;
  color: #6f6575;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .3s ease;
}
.story-rail__item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: transform .3s var(--v2-ease), background .3s ease, box-shadow .3s ease;
}
.story-rail__item.is-active { color: #e9dff0; }
.story-rail__item.is-active::before { background: var(--v2-orange); border-color: var(--v2-orange); transform: scale(1.45); box-shadow: 0 0 14px rgba(255,106,0,.65); }

/* Journey — scroll narrative */
.page-home #jornada {
  background: linear-gradient(180deg, #f4eff6 0%, #eee6f1 100%);
  overflow: clip;
}
.page-home #jornada::before {
  content: "GROWTH CULTURE";
  position: absolute;
  top: 5%;
  right: -2%;
  color: rgba(54,22,67,.035);
  font-size: clamp(7rem,18vw,18rem);
  font-weight: 760;
  letter-spacing: -.08em;
  line-height: .8;
  white-space: nowrap;
}
.page-home .split-intro { grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(70px,9vw,150px); }
.page-home .split-intro__sticky { top: 140px; }
.page-home .split-intro__sticky .h2 { max-width: 520px; }
.page-home .journey-list { border-top-color: rgba(36,13,47,.18); }
.page-home .journey-item {
  position: relative;
  grid-template-columns: 64px minmax(220px,.65fr) minmax(0,1fr);
  gap: 28px;
  min-height: 170px;
  padding: 42px 0;
  border-bottom-color: rgba(36,13,47,.16);
  opacity: .55;
  transition: opacity .45s ease, transform .45s var(--v2-ease);
}
.page-home .journey-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom,var(--v2-orange),var(--v2-pink));
  transform: translateY(-50%);
  transition: height .45s var(--v2-ease);
}
.page-home .journey-item.is-active { opacity: 1; transform: translateX(8px); }
.page-home .journey-item.is-active::before { height: 56%; }
.page-home .journey-item__number { color: #9e8fa7; }
.page-home .journey-item__stage { color: #a3450b; }
.page-home .journey-item h3 { font-size: clamp(1.6rem,2.55vw,2.7rem); }
.page-home .journey-item p { font-size: 1rem; line-height: 1.75; }

/* System — connected rather than card list */
.page-home .system-shell {
  position: relative;
  margin-top: 78px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.page-home .system-shell::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 70px;
  bottom: 70px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,106,0,.8) 20%, rgba(166,92,255,.6) 80%, transparent);
}
.page-home .system-row {
  position: relative;
  grid-template-columns: 96px minmax(260px,.65fr) minmax(0,1fr);
  gap: 32px;
  min-height: 150px;
  padding: 44px 36px 44px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
}
.page-home .system-row:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.page-home .system-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255,106,0,.06), rgba(122,43,230,.08), transparent 75%);
  transition: opacity .35s ease;
}
.page-home .system-row:hover::before { opacity: 1; }
.page-home .system-row__number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: #100719;
  color: var(--v2-orange-hot);
  font-size: 9px;
}
.page-home .system-row h3 { font-size: clamp(1.55rem,2.15vw,2.35rem); }
.page-home .system-row p { font-size: .98rem; line-height: 1.75; }
.page-home .system-quote { margin-top: 88px; max-width: 1080px; }

/* Principles — editorial composition */
.page-home .principles {
  grid-template-columns: 1.15fr .9fr 1fr;
  margin-top: 72px;
  border-color: rgba(43,16,55,.16);
}
.page-home .principle {
  min-height: 370px;
  padding: 34px;
  border-color: rgba(43,16,55,.16);
}
.page-home .principle:nth-child(1) { grid-row: span 2; min-height: 760px; background: #251032; color: white; }
.page-home .principle:nth-child(1) p { color: #c8b9cf; }
.page-home .principle:nth-child(1) .principle__icon { color: var(--v2-orange); border-color: rgba(255,255,255,.2); }
.page-home .principle:nth-child(4) { grid-column: span 2; }
.page-home .principle:hover { background: #e8ddec; }
.page-home .principle:nth-child(1):hover { background: #2d123c; }
.page-home .principle__icon { border-radius: 50%; }
.page-home .principle h3 { font-size: clamp(1.5rem,2vw,2.15rem); }

/* Sectors and cases */
.page-home .sector-grid { grid-template-columns: 1.2fr .8fr; gap: 1px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.11); }
.page-home .sector {
  min-height: 390px;
  border: 0;
  border-radius: 0;
  background: #160a22;
}
.page-home .sector:nth-child(1), .page-home .sector:nth-child(4) { min-height: 470px; }
.page-home .sector::before { border-radius: 50%; width: 340px; height: 340px; opacity: .65; }
.page-home .sector::after {
  content: "↗";
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255,255,255,.48);
  font-size: 24px;
  transition: transform .4s var(--v2-ease), color .3s ease;
}
.page-home .sector:hover::after { transform: translate(4px,-4px); color: var(--v2-orange); }
.page-home .sector:hover { background: #1c0b2c; }
.page-home .logo-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 68px;
}
.page-home .logo-tile {
  position: relative;
  grid-column: span 4;
  min-height: 156px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6eff8 100%);
  box-shadow: 0 16px 34px rgba(32,12,44,.06);
  overflow: hidden;
  transition: transform .45s var(--v2-ease), box-shadow .45s var(--v2-ease), background .35s ease;
}
.page-home .logo-tile::before {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,106,0,.95), rgba(233,60,154,.78), rgba(122,43,230,.72));
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left;
  transition: opacity .35s ease, transform .45s var(--v2-ease);
}
.page-home .logo-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(32,12,44,.1);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7fd 100%);
}
.page-home .logo-tile:hover::before { opacity: 1; transform: scaleX(1); }
.page-home .logo-tile--wide { grid-column: span 6; }
.page-home .logo-tile--compact { grid-column: span 3; }
.page-home .logo-tile img {
  width: auto;
  max-width: 86%;
  max-height: 56px;
  object-fit: contain;
}
.page-home .logo-tile--wide img { max-height: 62px; }
.page-home .logo-tile__label {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: #8b7f92;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Generic page heroes */
.page-hero, .article-hero {
  min-height: 78svh;
  padding: 178px 0 96px;
  background:
    radial-gradient(circle at 82% 13%, rgba(126,44,230,.31), transparent 28rem),
    radial-gradient(circle at 12% 92%, rgba(255,106,0,.1), transparent 24rem),
    var(--v2-bg);
}
.page-hero::before, .article-hero::after { background-size: 82px 82px; opacity: .38; }
.page-hero::after, .article-hero::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 4vw;
  width: clamp(180px,30vw,440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(122,43,230,.07);
}
.page-hero__inner::before, .article-hero__inner::before {
  content: attr(data-page-index);
  display: block;
  margin-bottom: 34px;
  color: #756a7c;
  font-size: 9px;
  letter-spacing: .2em;
}
.page-hero .h1, .article-hero .h1 { max-width: 1160px; }
.page-hero__meta { color: #8e8296; }

/* Shared components */
.system-shell, .form-shell, .landing-panel, .legal-shell, .thank-you__card {
  border-color: rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
}
.cta-panel {
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 20%, rgba(166,92,255,.18), transparent 23rem),
    linear-gradient(120deg,#180925,#0d0714 70%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--v2-shadow);
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg,var(--v2-orange),var(--v2-pink),var(--v2-purple));
}

/* Blog */
.page-blog .blog-controls { border-radius: 10px; }
.page-blog .blog-grid { grid-template-columns: repeat(12,1fr); grid-auto-flow: dense; gap: 14px; }
.page-blog .post-card { grid-column: span 4; min-height: 430px; border-radius: 8px; }
.page-blog .post-card--featured { grid-column: span 8; min-height: 520px; }
.page-blog .post-card:nth-child(4n+3) { grid-column: span 8; }
.page-blog .post-card::before { background: linear-gradient(to top,rgba(8,4,13,.96),rgba(8,4,13,.1)); }
.page-blog .post-card:hover { transform: translateY(-5px); }
.page-blog .post-card h2, .page-blog .post-card h3 { font-weight: 620; }
.filter-button { border-radius: 999px; }

/* Articles */
.page-article .article-hero { min-height: 82svh; }
.page-article .article-hero .h1 { max-width: 1220px; }
.page-article .article-layout { grid-template-columns: minmax(0,820px) minmax(220px,280px); gap: clamp(70px,8vw,130px); }
.page-article .article-body { font-size: 1.075rem; line-height: 1.85; }
.page-article .article-body h2 { margin-top: 3.7em; font-size: clamp(2rem,3.5vw,3.6rem); letter-spacing: -.055em; }
.page-article .article-body h3 { margin-top: 2.8em; }
.page-article .article-body blockquote { border-left-color: var(--v2-orange); background: #eee5f1; border-radius: 0 8px 8px 0; }
.page-article .article-cta { border-radius: 10px; background: linear-gradient(125deg,#2b0c4c,#160820 65%,#3b1025); }
.page-article .article-cta .eyebrow { color: #ff9b42; }
.page-article .article-cta h2, .page-article .article-cta h3 { color: white; }
.page-article .article-cta p { color: #e4d9ea; }
.page-article .aside-card { border-radius: 8px; }

/* Contact and solution pages */
.contact-grid { gap: clamp(50px,8vw,110px); }
.contact-link, .solution-card, .profile, .process, .signal, .expectation {
  border-radius: 8px;
}
.solution-map { gap: 1px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.11); }
.solution-card { border: 0; background: #150a20; min-height: 390px; }
.solution-card:hover { background: #1b0b29; }
.process-grid { gap: 1px; background: rgba(35,14,45,.14); border: 1px solid rgba(35,14,45,.14); }
.process { border: 0; border-radius: 0; }

/* Footer */
.site-footer {
  background: #060309;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid { padding-top: 92px; }
.footer-col h2 { color: #7f7486; letter-spacing: .16em; }
.footer-col a { color: #b8acbf; }
.footer-col a:hover { color: white; }
.footer-brand__line { color: var(--v2-orange-hot) !important; }

/* Reveal language */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(5px);
  transition: opacity .85s var(--v2-ease), transform .85s var(--v2-ease), filter .85s var(--v2-ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

@media (max-width: 1180px) {
  .story-rail { display: none; }
  .page-home .hero__grid { grid-template-columns: 1fr; }
  .page-home .hero__copy { max-width: 960px; }
  .page-home .hero-visual { min-height: 580px; width: min(100%,760px); margin-inline: auto; }
  .page-home .principles { grid-template-columns: repeat(2,1fr); }
  .page-home .principle:nth-child(1) { grid-row: auto; min-height: 390px; }
  .page-home .principle:nth-child(4) { grid-column: auto; }
  .page-blog .post-card, .page-blog .post-card--featured, .page-blog .post-card:nth-child(4n+3) { grid-column: span 6; }
}

@media (max-width: 820px) {
  .container, .container--narrow, .header-inner { width: min(100% - 30px, 1320px); }
  .site-header { height: 78px; padding: 9px 0; }
  .site-header::before { inset: 8px 10px; }
  .header-inner { width: calc(100% - 28px); }
  .brand img { width: 37px; height: 37px; }
  .page-home .hero { padding-top: 128px; }
  .page-home .hero__copy::before { margin-bottom: 28px; }
  .page-home .hero__copy .display { font-size: clamp(3.75rem,14.8vw,7rem); line-height: .9; }
  .page-home .hero-visual { min-height: 500px; }
  .page-home .split-intro { grid-template-columns: 1fr; gap: 58px; }
  .page-home .split-intro__sticky { position: static; }
  .page-home .journey-item { grid-template-columns: 48px 1fr; }
  .page-home .journey-item__content { grid-column: 2; }
  .page-home .journey-item::before { left: -10px; }
  .page-home .system-row { grid-template-columns: 64px 1fr; padding-right: 0; }
  .page-home .system-row p { grid-column: 2; }
  .page-home .system-shell::before { left: 47px; }
  .page-home .system-row__number { margin-left: 31px; transform: translateX(-50%); }
  .page-home .principles { grid-template-columns: 1fr 1fr; }
  .page-home .sector-grid { grid-template-columns: 1fr; }
  .page-home .sector, .page-home .sector:nth-child(1), .page-home .sector:nth-child(4) { min-height: 350px; }
   .page-home .logo-tile { grid-column: span 6; }
  .page-home .logo-tile--wide, .page-home .logo-tile--compact { grid-column: span 6; }
  .page-blog .blog-grid { grid-template-columns: repeat(2,1fr); }
  .page-blog .post-card, .page-blog .post-card--featured, .page-blog .post-card:nth-child(4n+3) { grid-column: span 1; }
  .page-hero, .article-hero { min-height: auto; padding-top: 145px; }
  .page-article .article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body::before { opacity: .025; }
  .section { padding: 82px 0; }
  .display { letter-spacing: -.065em; }
  .h1, .h2 { letter-spacing: -.058em; }
  .button-row { gap: 10px; }
  .button { width: 100%; }
  .page-home .hero { padding: 118px 0 68px; }
  .page-home .hero__copy::before { font-size: 8px; line-height: 1.5; }
  .page-home .hero__copy .display { font-size: clamp(3.35rem,16.4vw,5.4rem); line-height: .91; letter-spacing: -.073em; }
  .page-home .hero .lead { margin-top: 25px; font-size: 1rem; }
  .page-home .hero__note { line-height: 1.6; }
  .page-home .hero-visual { min-height: 375px; margin-inline: -18px; }
  .page-home .hero-visual::before { right: 50%; width: min(82%, 340px); transform: translate(50%, -50%); }
  .page-home .journey-item { grid-template-columns: 35px 1fr; gap: 12px; padding: 32px 0; }
  .page-home .journey-item h3 { font-size: 1.55rem; }
  .page-home .system-shell::before { left: 17px; }
  .page-home .system-row { grid-template-columns: 36px 1fr; gap: 14px; padding: 30px 0; }
  .page-home .system-row__number { width: 28px; height: 28px; margin-left: 17px; }
  .page-home .system-quote { margin-top: 60px; }
  .page-home .principles { grid-template-columns: 1fr; }
  .page-home .principle, .page-home .principle:nth-child(1) { min-height: 300px; }
    .page-home .logo-wall { grid-template-columns: 1fr; }
  .page-home .logo-tile, .page-home .logo-tile--wide, .page-home .logo-tile--compact { grid-column: auto; min-height: 132px; }
  .page-home .logo-tile img { max-width: 82%; max-height: 48px; }
  .page-blog .blog-grid { grid-template-columns: 1fr; }
  .page-blog .post-card, .page-blog .post-card--featured, .page-blog .post-card:nth-child(4n+3) { min-height: 390px; }
  .page-hero, .article-hero { padding-top: 128px; padding-bottom: 68px; }
  .page-hero::after, .article-hero::before { width: 190px; right: -60px; top: 90px; }
  .cta-panel { border-radius: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; }
  .page-home .journey-item { opacity: 1; transform: none; }
  .page-home .journey-item::before { height: 44%; }
}

body.is-leaving { opacity: .985; transition: opacity .16s ease; }


/* source: v4.css */
/*
  The Oak Growth — V4 Hybrid Experience
  Combina impacto digital, precisão técnica e direção editorial.
*/
:root {
  --v4-serif: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --v4-orange: #ff6a00;
  --v4-orange-hot: #ff8d24;
  --v4-pink: #ea3b98;
  --v4-purple: #7b2be4;
  --v4-ink: #110817;
  --v4-paper: #f5f0f6;
  --v4-paper-warm: #eee6f0;
  --v4-line-dark: rgba(34, 14, 43, .15);
  --v4-ease: cubic-bezier(.22,.82,.22,1);
}

/* Editorial voice across the experience */
.gradient-text {
  font-family: var(--v4-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.035em;
  background: linear-gradient(105deg,#ffb24f 0%,var(--v4-orange) 30%,var(--v4-pink) 68%,#ae68ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.h1 .gradient-text, .h2 .gradient-text, .display .gradient-text { line-height: .92; }

/* More disciplined global surface language */
.section--paper { background: var(--v4-paper); }
.page-hero::after, .article-hero::before { border-radius: 50%; aspect-ratio: 1; }
.page-hero .h1, .article-hero .h1 { text-wrap: balance; }
.cta-panel { overflow: hidden; }

/* ---------- V4 HOME HERO ---------- */
.page-home .hero {
  min-height: 100svh;
  padding: 154px 0 88px;
  background:
    radial-gradient(circle at var(--hero-x,77%) var(--hero-y,29%),rgba(126,44,226,.26),transparent 27rem),
    radial-gradient(circle at 10% 85%,rgba(255,106,0,.11),transparent 27rem),
    linear-gradient(180deg,#09040f,#0a0511 76%,#0b0612);
}
.page-home .hero__grid {
  grid-template-columns: minmax(0,1.13fr) minmax(440px,.87fr);
  gap: clamp(42px,6vw,92px);
}
.page-home .hero__copy::before {
  content: "THE OAK GROWTH / GROWTH PARTNER B2B";
  margin-bottom: 38px;
  color: #827687;
  font-size: 9px;
  letter-spacing: .22em;
}
.page-home .hero__copy .display {
  max-width: 920px;
  font-size: clamp(4.15rem,7.55vw,8.3rem);
  line-height: .89;
  letter-spacing: -.076em;
}
.page-home .hero__copy .display .gradient-text {
  display: inline;
  padding-right: .06em;
}
.page-home .hero .lead { max-width: 745px; }
.page-home .hero__note { gap: 18px; }

.v4-orbit {
  position: relative;
  width: min(100%,620px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.v4-orbit::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(126,44,226,.09),transparent 64%);
  filter: blur(10px);
}
.v4-orbit svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 36px 90px rgba(0,0,0,.38)); }
.v4-ring { fill: none; stroke: rgba(255,255,255,.105); stroke-width: 1; }
.v4-ring--accent { stroke: url(#v4RingGradient); stroke-width: 1.5; stroke-dasharray: 7 10; animation: v4-ring-spin 34s linear infinite; transform-origin: 320px 320px; }
.v4-spoke { stroke: rgba(255,255,255,.13); stroke-width: 1; }
.v4-flow { fill: none; stroke: url(#v4FlowGradient); stroke-width: 2.3; stroke-linecap: round; stroke-dasharray: 6 9; animation: v4-flow 16s linear infinite; }
.v4-core-outer { fill: url(#v4CoreGradient); opacity: .92; }
.v4-core-inner { fill: #13081d; stroke: rgba(255,255,255,.14); stroke-width: 1; }
.v4-node-halo { fill: #0d0614; stroke: rgba(255,255,255,.2); stroke-width: 1; }
.v4-node-dot { fill: var(--v4-orange); filter: drop-shadow(0 0 7px rgba(255,106,0,.9)); }
.v4-node-dot--purple { fill: #ad67ff; filter: drop-shadow(0 0 7px rgba(173,103,255,.9)); }
.v4-label { fill: #f0e7f4; font: 620 12px var(--v2-sans); letter-spacing: .015em; }
.v4-label-sub { fill: #827788; font: 540 9px var(--v2-sans); letter-spacing: .1em; text-transform: uppercase; }
.v4-system-caption {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(260px,48%);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #918698;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@keyframes v4-ring-spin { to { transform: rotate(360deg); } }
@keyframes v4-flow { to { stroke-dashoffset: -190; } }

/* ---------- Root statement / editorial ledger ---------- */
.v4-root-statement {
  background: #0d0614;
  overflow: hidden;
}
.v4-root-statement::before {
  content: "ROOT / SYSTEM / GROWTH";
  position: absolute;
  left: -2%;
  bottom: -2%;
  color: rgba(255,255,255,.018);
  font-size: clamp(7rem,18vw,18rem);
  font-weight: 760;
  letter-spacing: -.07em;
  line-height: .72;
  white-space: nowrap;
}
.v4-statement-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,9vw,150px); align-items: end; }
.v4-statement-head .h2 { max-width: 730px; }
.v4-ledger { margin-top: 76px; border-top: 1px solid rgba(255,255,255,.13); }
.v4-ledger-row {
  display: grid;
  grid-template-columns: 76px minmax(230px,.75fr) minmax(0,1.25fr);
  gap: clamp(22px,4vw,62px);
  align-items: center;
  min-height: 118px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: padding .4s var(--v4-ease), background .35s ease;
}
.v4-ledger-row:hover { padding-inline: 20px; background: linear-gradient(90deg,rgba(255,106,0,.045),rgba(123,43,228,.045),transparent); }
.v4-ledger-num { color: var(--v4-orange-hot); font-size: 9px; letter-spacing: .2em; }
.v4-ledger-row h3 { margin: 0; font-size: clamp(1.35rem,2.1vw,2.15rem); font-weight: 600; }
.v4-ledger-row p { margin: 0; color: #aa9eb0; line-height: 1.75; }

/* ---------- Growth journey with living root ---------- */
.v4-journey { background: linear-gradient(180deg,#f5f0f6,#eee6f0); overflow: clip; }
.v4-journey::before {
  content: "GROWTH CULTURE";
  position: absolute;
  top: 7%;
  right: -2%;
  color: rgba(44,16,56,.035);
  font-size: clamp(7rem,18vw,17rem);
  font-weight: 760;
  letter-spacing: -.08em;
  line-height: .8;
  white-space: nowrap;
}
.v4-journey-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px,9vw,150px); align-items: start; }
.v4-journey-head__intro { position: sticky; top: 135px; }
.v4-journey-head__intro .h2 { max-width: 570px; }
.v4-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 0 32px;
}
.v4-rootline { position: relative; grid-row: 1 / span 4; grid-column: 1; }
.v4-rootline-track, .v4-rootline-fill {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
}
.v4-rootline-track { background: rgba(43,17,55,.13); }
.v4-rootline-fill {
  bottom: auto;
  height: var(--root-progress,0%);
  max-height: calc(100% - 36px);
  background: linear-gradient(to bottom,var(--v4-orange),var(--v4-pink),var(--v4-purple));
  box-shadow: 0 0 18px rgba(234,59,152,.22);
  transition: height .1s linear;
}
.v4-root-seed {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 15px;
  height: 21px;
  border-radius: 65% 35% 65% 35%;
  transform: translateX(-50%) rotate(42deg);
  background: linear-gradient(145deg,var(--v4-orange-hot),var(--v4-pink));
  box-shadow: 0 0 0 7px rgba(255,106,0,.08),0 0 24px rgba(255,106,0,.28);
}
.v4-stage {
  position: relative;
  grid-column: 2;
  min-height: 190px;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(145px,.5fr) minmax(0,1.5fr);
  gap: clamp(28px,5vw,70px);
  border-bottom: 1px solid var(--v4-line-dark);
  opacity: .48;
  transition: opacity .45s ease, transform .45s var(--v4-ease);
}
.v4-stage:first-of-type { border-top: 1px solid var(--v4-line-dark); }
.v4-stage::before {
  content: "";
  position: absolute;
  left: -62px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: var(--v4-paper);
  border: 2px solid rgba(55,22,67,.2);
  transition: background .35s ease,border-color .35s ease,box-shadow .35s ease,transform .35s var(--v4-ease);
}
.v4-stage.is-active { opacity: 1; transform: translateX(8px); }
.v4-stage.is-active::before {
  background: var(--v4-orange);
  border-color: var(--v4-orange);
  box-shadow: 0 0 0 7px rgba(255,106,0,.1),0 0 20px rgba(255,106,0,.34);
  transform: translate(-50%,-50%) scale(1.08);
}
.v4-stage__meta { color: #a2420b; font-size: 10px; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.v4-stage h3 { margin: 7px 0 0; font-size: clamp(1.65rem,2.7vw,2.85rem); }
.v4-stage__accent { display: block; margin-bottom: 10px; color: #9a3e76; font-family: var(--v4-serif); font-style: italic; font-size: 1.1rem; }
.v4-stage p { margin: 0; color: #675b6e; line-height: 1.78; }

/* ---------- Five pillars as an editorial system ---------- */
.v4-pillars-section { background: #0c0612; }
.v4-pillars-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,9vw,150px); align-items: end; }
.v4-pillars { margin-top: 75px; border-top: 1px solid rgba(255,255,255,.14); }
.v4-pillar {
  display: grid;
  grid-template-columns: 80px minmax(260px,.72fr) minmax(0,1.28fr);
  gap: clamp(24px,4vw,65px);
  align-items: center;
  min-height: 145px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.v4-pillar__num { color: var(--v4-orange-hot); font-size: 9px; letter-spacing: .2em; }
.v4-pillar h3 { margin: 0; font-size: clamp(1.45rem,2.2vw,2.35rem); }
.v4-pillar__metaphor { display: block; margin-top: 5px; color: #c967a4; font-family: var(--v4-serif); font-style: italic; }
.v4-pillar p { margin: 0; color: #a99dad; line-height: 1.75; }
.v4-quote {
  max-width: 1020px;
  margin: 90px auto 0;
  text-align: center;
  font-size: clamp(2.2rem,4.7vw,5rem);
  line-height: .98;
  font-weight: 570;
  letter-spacing: -.055em;
}

/* ---------- Differentiators, without generic cards ---------- */
.v4-difference { background: var(--v4-paper); }
.v4-difference-grid { margin-top: 66px; border-top: 1px solid var(--v4-line-dark); }
.v4-difference-row {
  display: grid;
  grid-template-columns: 60px minmax(230px,.7fr) minmax(0,1.3fr);
  gap: clamp(24px,5vw,76px);
  min-height: 130px;
  padding: 32px 0;
  align-items: center;
  border-bottom: 1px solid var(--v4-line-dark);
}
.v4-difference-row span { color: #a3420d; font-size: 9px; letter-spacing: .18em; }
.v4-difference-row h3 { margin: 0; font-size: clamp(1.35rem,2.2vw,2.3rem); }
.v4-difference-row p { margin: 0; color: #675b6e; line-height: 1.75; }

/* ---------- Refining sectors and proof ---------- */
.page-home .sector-grid { margin-top: 70px; }
.page-home .sector h3 { max-width: 520px; }
.page-home .logo-wall { gap: 12px; }
.page-home .logo-tile {
  min-height: 148px;
  border: 1px solid rgba(38,15,48,.075);
  box-shadow: none;
  background: rgba(255,255,255,.54);
}
.page-home .logo-tile:hover { box-shadow: 0 18px 36px rgba(31,12,40,.08); background: white; }
.page-home .logo-tile__label { opacity: .67; }

/* ---------- Secondary pages benefit from the editorial accent ---------- */
.page-method .timeline-item__content h2,
.page-solutions .solution-card h3,
.page-audience .profile h2,
.page-blog .post-card h2,
.page-blog .post-card h3 { letter-spacing: -.045em; }

@media (max-width:1180px) {
  .page-home .hero__grid { grid-template-columns: 1fr; }
  .v4-orbit { width: min(100%,720px); }
  .v4-system-caption { right: 6%; }
  .v4-statement-head,.v4-journey-head,.v4-pillars-intro { grid-template-columns: 1fr; gap: 42px; }
  .v4-journey-head__intro { position: static; }
}

@media (max-width:820px) {
  .page-home .hero { padding-top: 132px; }
  .page-home .hero__copy .display { font-size: clamp(3.7rem,14.4vw,6.9rem); }
  .v4-orbit { width: min(100%,620px); }
  .v4-ledger-row,.v4-pillar,.v4-difference-row { grid-template-columns: 52px 1fr; gap: 18px 24px; }
  .v4-ledger-row p,.v4-pillar p,.v4-difference-row p { grid-column: 2; }
  .v4-journey-track { grid-template-columns: 38px 1fr; gap: 0 22px; }
  .v4-stage { grid-template-columns: 1fr; gap: 14px; min-height: 175px; }
  .v4-stage::before { left: -42px; }
}

@media (max-width:560px) {
  .page-home .hero { padding: 118px 0 66px; }
  .page-home .hero__copy::before { margin-bottom: 24px; font-size: 7.5px; line-height: 1.5; }
  .page-home .hero__copy .display { font-size: clamp(3.25rem,15.8vw,5.25rem); line-height: .92; }
  .page-home .hero .lead { font-size: 1rem; }
  .v4-orbit { width: calc(100% + 18px); margin-inline: -9px; }
  .v4-label { font-size: 10px; }
  .v4-label-sub { display: none; }
  .v4-system-caption { position: static; width: 100%; margin-top: -12px; }
  .v4-ledger { margin-top: 48px; }
  .v4-ledger-row,.v4-pillar,.v4-difference-row { grid-template-columns: 34px 1fr; padding: 26px 0; }
  .v4-ledger-row h3,.v4-pillar h3,.v4-difference-row h3 { font-size: 1.45rem; }
  .v4-journey-track { grid-template-columns: 24px 1fr; gap: 0 15px; }
  .v4-stage { padding: 32px 0; }
  .v4-stage::before { left: -27px; width: 11px; height: 11px; }
  .v4-root-seed { width: 12px; height: 17px; }
  .v4-quote { margin-top: 62px; }
  .page-home .logo-tile { min-height: 128px; }
}

@media (prefers-reduced-motion:reduce) {
  .v4-ring--accent,.v4-flow { animation:none!important; }
  .v4-rootline-fill { height:100%!important; transition:none!important; }
  .v4-stage { opacity:1; transform:none; }
}


/* ---------- V4.1 contrast correction ---------- */
/* Light surfaces must always use dark typography. */
.v4-journey,
.v4-difference {
  color: var(--v4-ink);
}
.v4-journey .h2,
.v4-journey .h3,
.v4-journey .kicker,
.v4-journey .v4-stage h3,
.v4-difference .h2,
.v4-difference .h3,
.v4-difference .lead,
.v4-difference .v4-difference-row h3 {
  color: #211128;
}
.v4-journey .kicker,
.v4-difference .lead { color: #625568; }
.v4-journey .eyebrow,
.v4-difference .eyebrow { color: #8f3500; }

/* Dark and purple surfaces must always use high-contrast light typography. */
.v4-root-statement,
.v4-pillars-section,
.section--purple {
  color: #fff9ff;
}
.v4-root-statement .h2,
.v4-root-statement h3,
.v4-pillars-section .h2,
.v4-pillars-section h3,
.section--purple .h2,
.section--purple h3 {
  color: #fff9ff;
}
.v4-root-statement .lead,
.v4-pillars-section .lead,
.section--purple .lead { color: #d9cedf; }
.v4-pillars-section .v4-pillar__metaphor { color: #f29dcc; }
.page-home .sector h3 { color: #fff9ff; }
.page-home .sector p { color: #c9bdcf; }
.page-home .sector__tags { color: #ff9b48; }

/* Separate gradient palettes for light and dark backgrounds. */
.v4-journey .gradient-text,
.v4-difference .gradient-text,
.section--paper .gradient-text {
  background: linear-gradient(105deg,#9b3900 0%,#d84612 32%,#a01d68 68%,#5d239f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.v4-root-statement .gradient-text,
.v4-pillars-section .gradient-text,
.section--purple .gradient-text,
.cta-panel .gradient-text {
  background: linear-gradient(105deg,#ffd18c 0%,#ff8d24 31%,#ff78bd 69%,#d3a3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- V1 brand artwork restored ---------- */
.page-home .case-grid--v1 {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  grid-auto-flow: row;
  gap: 14px;
  margin-top: 58px;
}
.page-home .case-grid--v1 .case-card,
.page-home .case-grid--v1 .case-card:nth-child(n) {
  grid-column: auto;
  min-height: 0;
  aspect-ratio: 1980 / 688;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.page-home .case-grid--v1 .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(31,12,40,.09);
}
.page-home .case-grid--v1 .case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: none;
}
.page-home .case-grid--v1 .case-card:hover img {
  transform: none;
  filter: none;
}

@media (max-width:820px) {
  .page-home .case-grid--v1 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:560px) {
  .page-home .case-grid--v1 { grid-template-columns: 1fr; gap: 12px; }
}


/* ---------- V4.1 final polish ---------- */
/* CTA panels always sit on a dark surface, even inside light sections. */
.cta-panel,
.section--paper .cta-panel,
.article-cta .cta-panel {
  color: #fff9ff;
}
.cta-panel .h2,
.cta-panel h2,
.cta-panel h3,
.section--paper .cta-panel .h2,
.section--paper .cta-panel h2,
.section--paper .cta-panel h3 {
  color: #fff9ff;
}
.cta-panel .lead,
.cta-panel p,
.section--paper .cta-panel .lead,
.section--paper .cta-panel p {
  color: #ddd1e3;
}
.cta-panel .eyebrow,
.section--paper .cta-panel .eyebrow {
  color: #ff9b42;
}
.cta-panel .button--ghost,
.section--paper .cta-panel .button--ghost {
  color: #fff9ff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.035);
}
.cta-panel .button--ghost:hover,
.section--paper .cta-panel .button--ghost:hover {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.09);
}

/* Partner companies: keep the approved V1 artwork, but frame it consistently. */
.partner-section {
  background: linear-gradient(180deg,#f7f3f8 0%,#f1eaf3 100%);
}
.partner-section .lead { max-width: 780px; }
.partner-section .case-grid--v1 { margin-top: 54px; }
.partner-section .case-card {
  background: #fff;
  box-shadow: 0 10px 28px rgba(35,13,45,.045);
  transition: transform .42s var(--v4-ease), box-shadow .42s var(--v4-ease);
}
.partner-section .case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(35,13,45,.08);
}

/* Reduce decorative noise and preserve hierarchy. */
body::before { opacity: .022; }
.v4-root-statement::before,
.v4-journey::before { pointer-events: none; }
.page-home .sector::before { opacity: .48; }

/* Cleaner mobile diagram: preserve the system without tiny competing details. */
@media (max-width:560px) {
  body::before { opacity: 0; }
  .v4-orbit { width: 106%; margin-inline: -3%; }
  .v4-ring:nth-of-type(1) { opacity: .55; }
  .v4-spoke { opacity: .62; }
  .v4-label { font-size: 9.5px; }
  .v4-system-caption { display: none; }
  .partner-section .case-grid--v1 { margin-top: 38px; }
  .partner-section .case-card { border-radius: 14px; }
}


/* source: v5.css */
/*
  The Oak Growth — V5 Mature Experience
  Refinamento editorial, identidades por página, mobile intencional e conversão contextual.
*/
:root {
  --v5-bg: #08040d;
  --v5-bg-2: #100718;
  --v5-paper: #f5f0f6;
  --v5-paper-2: #ece4ef;
  --v5-ink: #201027;
  --v5-muted-dark: #675b6d;
  --v5-white: #fffaff;
  --v5-muted: #b6aabd;
  --v5-orange: #ff6900;
  --v5-pink: #e93b99;
  --v5-purple: #7929df;
  --v5-line: rgba(255,255,255,.11);
  --v5-line-dark: rgba(35,14,44,.14);
  --v5-serif: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  --v5-ease: cubic-bezier(.22,.82,.22,1);
}

/* A calmer, more mature rhythm. */
body { background: var(--v5-bg); }
.section { padding: clamp(96px,10vw,156px) 0; }
.section--compact { padding: clamp(70px,7vw,108px) 0; }
.display, .h1, .h2 { text-wrap: balance; }
.lead { max-width: 790px; }
.reveal { filter: blur(2.5px); transform: translateY(24px); }
.reveal.is-visible { filter: none; }

/* Header: less visual weight, stronger precision. */
.site-header::before {
  inset: 12px max(16px,calc((100vw - 1380px)/2));
  background: rgba(8,4,13,.78);
  border-color: rgba(255,255,255,.075);
  box-shadow: 0 12px 34px rgba(0,0,0,.16);
}
.site-header.is-scrolled::before { background: rgba(8,4,13,.91); }
.primary-nav a { letter-spacing: .095em; }
.header-cta { box-shadow: 0 9px 28px rgba(220,55,104,.18); }

/* ---------------- HOME / HERO ---------------- */
.page-home .hero {
  min-height: 100svh;
  padding: 150px 0 88px;
  background:
    radial-gradient(circle at var(--v5-x,78%) var(--v5-y,28%),rgba(121,41,223,.25),transparent 27rem),
    radial-gradient(circle at 9% 88%,rgba(255,105,0,.10),transparent 25rem),
    linear-gradient(180deg,#09040f 0%,#090410 78%,#0b0612 100%);
}
.page-home .hero::before { opacity: .33; background-size: 92px 92px; }
.page-home .hero__grid { grid-template-columns: minmax(0,1.15fr) minmax(430px,.85fr); gap: clamp(50px,7vw,104px); }
.page-home .hero__copy::before { content: "THE OAK / SISTEMA DE CRESCIMENTO B2B"; color: #7c7083; }
.page-home .hero__copy .display { max-width: 940px; font-size: clamp(4.1rem,7.65vw,8.35rem); line-height: .9; }
.page-home .hero .lead { margin-top: 30px; font-size: clamp(1.04rem,1.35vw,1.22rem); }
.page-home .hero__actions { margin-top: 36px; }
.page-home .hero__note { margin-top: 28px; }

.v5-system {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: min(100%,620px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .55s var(--v5-ease);
}
.v5-system__halo {
  position: absolute; inset: 9%; border-radius: 50%;
  background: radial-gradient(circle,rgba(121,41,223,.15),transparent 64%);
  filter: blur(16px);
}
.v5-system__rings { position:absolute; inset:7%; border-radius:50%; border:1px solid rgba(255,255,255,.11); }
.v5-system__rings::before, .v5-system__rings::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.09); }
.v5-system__rings::before { inset:16%; }
.v5-system__rings::after { inset:32%; }
.v5-system__route {
  position:absolute; inset:4%; border-radius:50%;
  border:1.5px dashed rgba(234,59,153,.58);
  mask-image: linear-gradient(115deg,transparent 16%,black 38%,black 76%,transparent 88%);
  animation: v5-orbit 30s linear infinite;
}
.v5-system__core {
  position:absolute; left:50%; top:50%; width:126px; aspect-ratio:1;
  transform:translate(-50%,-50%); border-radius:50%; display:grid; place-items:center;
  background: radial-gradient(circle at 38% 32%,#ff9c3d 0%,#e74384 44%,#7628df 100%);
  box-shadow: 0 0 0 18px rgba(121,41,223,.11), 0 30px 72px rgba(0,0,0,.42);
}
.v5-system__core::before { content:""; position:absolute; inset:18px; border-radius:50%; background:#13081d; border:1px solid rgba(255,255,255,.15); }
.v5-system__core img { position:relative; width:66px; height:66px; }
.v5-system__node {
  position:absolute; width:154px; padding:13px 14px 13px 42px;
  border-top:1px solid rgba(255,255,255,.16); color:#f5edf8;
  font-size:12px; font-weight:650; letter-spacing:.015em;
}
.v5-system__node::before {
  content:""; position:absolute; left:8px; top:11px; width:14px; height:14px; border-radius:50%;
  background:var(--node-color,var(--v5-orange)); box-shadow:0 0 0 7px color-mix(in srgb,var(--node-color,var(--v5-orange)) 14%,transparent),0 0 22px color-mix(in srgb,var(--node-color,var(--v5-orange)) 70%,transparent);
}
.v5-system__node span { display:block; margin-top:2px; color:#807587; font-size:8px; font-weight:600; letter-spacing:.13em; text-transform:uppercase; }
.v5-system__node--strategy { --node-color:#ff6900; left:0; top:20%; }
.v5-system__node--marketing { --node-color:#a45cff; right:0; top:22%; }
.v5-system__node--commercial { --node-color:#ff6900; right:1%; bottom:20%; }
.v5-system__node--technology { --node-color:#a45cff; left:0; bottom:18%; }
.v5-system__line { position:absolute; left:50%; top:50%; width:1px; height:28%; transform-origin:top; background:linear-gradient(to bottom,rgba(255,255,255,.17),transparent); }
.v5-system__line--1 { transform:rotate(-47deg); }
.v5-system__line--2 { transform:rotate(47deg); }
.v5-system__line--3 { transform:rotate(133deg); }
.v5-system__line--4 { transform:rotate(-133deg); }
.v5-system__caption { position:absolute; left:50%; bottom:3%; width:72%; transform:translateX(-50%); text-align:center; color:#897d90; font-size:9px; letter-spacing:.12em; text-transform:uppercase; }
@keyframes v5-orbit { to { transform:rotate(360deg); } }

/* Home: replace repeated card feel with editorial rhythm. */
.v4-ledger-row, .v4-pillar, .v4-difference-row { min-height: 126px; }
.v4-ledger-row:hover { padding-inline: 14px; }
.v4-stage { min-height: 176px; }
.v4-pillars-section { background: linear-gradient(180deg,#0b0510,#100719); }
.v4-difference { background: linear-gradient(180deg,#f7f3f8,#efe7f1); }
.page-home .sector-grid { grid-template-columns: repeat(12,1fr); gap:1px; }
.page-home .sector { grid-column:span 6; min-height:380px; }
.page-home .sector:nth-child(1), .page-home .sector:nth-child(4) { min-height:380px; }

/* Proof section: approved artwork, optically balanced rather than mechanically equal. */
.partner-section { background:linear-gradient(180deg,#f7f3f8,#eee6f0); }
.partner-section .case-grid--v1 { display:grid; grid-template-columns:repeat(12,1fr); gap:13px; }
.partner-section .case-card { grid-column:span 4!important; border-radius:16px!important; aspect-ratio:1980/688; background:#fff; }
.partner-section .case-card:nth-child(1), .partner-section .case-card:nth-child(5), .partner-section .case-card:nth-child(9) { grid-column:span 6!important; }
.partner-section .case-card img { object-fit:cover; }
.v5-proof-types { display:flex; flex-wrap:wrap; gap:9px; margin-top:32px; }
.v5-proof-types span { padding:8px 12px; border:1px solid rgba(35,14,44,.13); border-radius:999px; color:#65596c; font-size:10px; font-weight:650; letter-spacing:.08em; text-transform:uppercase; }

/* ---------------- PAGE IDENTITIES ---------------- */
.page-hero { isolation:isolate; }
.page-hero::after { opacity:.8; }
.page-method .page-hero { background: radial-gradient(circle at 80% 18%,rgba(255,105,0,.20),transparent 25rem),linear-gradient(180deg,#0b050f,#100718); }
.page-method .page-hero::after { border-color:rgba(255,137,45,.18); box-shadow:inset 0 0 90px rgba(255,105,0,.06); }
.page-solutions .page-hero { background: radial-gradient(circle at 83% 18%,rgba(121,41,223,.34),transparent 27rem),linear-gradient(180deg,#09040f,#11071b); }
.page-solutions .page-hero::after { border-radius:12px; transform:rotate(8deg); border-color:rgba(166,92,255,.16); }
.page-audience .page-hero { background: radial-gradient(circle at 78% 20%,rgba(233,59,153,.18),transparent 25rem),linear-gradient(180deg,#0b050f,#100718); }
.page-audience .page-hero::after { border-style:dashed; border-color:rgba(233,59,153,.17); }
.page-contact .page-hero { background: radial-gradient(circle at 82% 20%,rgba(255,105,0,.17),transparent 24rem),radial-gradient(circle at 18% 86%,rgba(121,41,223,.17),transparent 25rem),#0b050f; }
.page-contact .page-hero::after { border-color:rgba(255,255,255,.10); box-shadow:inset 0 0 90px rgba(255,105,0,.05); }
.page-blog .page-hero { background: radial-gradient(circle at 84% 16%,rgba(121,41,223,.24),transparent 26rem),linear-gradient(180deg,#09040f,#100719); }
.page-blog .page-hero::after { border-radius:50% 50% 10px 50%; transform:rotate(-8deg); }
.page-legal .page-hero { min-height:56svh; background:linear-gradient(180deg,#0b050f,#100718); }

/* Method: timeline feels like a living process. */
.page-method .timeline-item__dot { border-color:rgba(255,105,0,.36); }
.page-method .timeline-item:hover .timeline-item__dot { background:var(--v5-orange); color:#170811; }
.page-method .timeline::before { background:linear-gradient(to bottom,var(--v5-orange),var(--v5-pink),rgba(121,41,223,.18)); }

/* Solutions: modular, not generic cards. */
.page-solutions .solution-map { grid-template-columns:repeat(12,1fr); gap:1px; }
.page-solutions .solution-card { grid-column:span 4; min-height:390px; border-radius:0; }
.page-solutions .solution-card:nth-child(1), .page-solutions .solution-card:nth-child(5) { grid-column:span 8; }
.page-solutions .solution-card:hover { transform:none; background:linear-gradient(145deg,#1b0b29,#13091d); }
.page-solutions .process { min-height:240px; }

/* Audience: context-first profiles. */
.page-audience .profile-grid { gap:1px; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.10); }
.page-audience .profile { border:0; border-radius:0; min-height:390px; }
.page-audience .profile:hover { transform:none; }

/* Contact: more human and less corporate. */
.page-contact .contact-grid { align-items:start; }
.page-contact .form-shell { border-radius:18px; background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)); }
.page-contact .expectation { background:transparent; border-width:0 0 1px; border-radius:0; padding-inline:0; }
.page-contact .contact-link { border-radius:10px; }

/* Blog: magazine hierarchy. */
.page-blog .blog-controls { margin-top:36px; background:rgba(255,255,255,.035); }
.page-blog .blog-grid { gap:1px; background:rgba(35,14,44,.12); border:1px solid rgba(35,14,44,.12); }
.page-blog .post-card { border:0; border-radius:0; min-height:420px; }
.page-blog .post-card--featured { min-height:560px; }
.page-blog .post-card:hover { transform:none; }
.page-blog .post-card__category { letter-spacing:.14em; }

/* Articles: reading experience first. */
.page-article .article-body { font-size:1.085rem; line-height:1.88; }
.page-article .article-body > p:first-of-type { font-size:1.24rem; line-height:1.72; color:#413447; }
.page-article .article-aside { top:112px; }
.page-article .toc a { transition:color .25s ease, padding-left .25s var(--v5-ease); }
.page-article .toc a.is-reading { color:#8a2cbe; padding-left:8px; font-weight:720; }
.page-article .article-body h2 { scroll-margin-top:110px; }
.page-article .article-cta .cta-panel { border-radius:14px; }

/* Contextual CTAs feel connected to the page. */
.cta-panel { max-width:1180px; margin-inline:auto; }
.cta-panel .eyebrow { letter-spacing:.19em; }

/* Mobile is designed, not merely collapsed. */
@media (max-width:1180px) {
  .page-home .hero__grid { grid-template-columns:1fr; }
  .v5-system { width:min(100%,700px); }
  .page-solutions .solution-card, .page-solutions .solution-card:nth-child(1), .page-solutions .solution-card:nth-child(5) { grid-column:span 6; }
}
@media (max-width:820px) {
  .page-home .sector { grid-column:span 12; min-height:330px; }
  .partner-section .case-card, .partner-section .case-card:nth-child(n) { grid-column:span 6!important; }
  .page-solutions .solution-card, .page-solutions .solution-card:nth-child(n) { grid-column:span 6; }
}
@media (max-width:560px) {
  .section { padding:80px 0; }
  .page-home .hero { padding:116px 0 62px; }
  .page-home .hero__copy .display { font-size:clamp(3.2rem,15.6vw,5.15rem); }
  .page-home .hero-visual { min-height:auto; margin:30px 0 0; }
  .v5-system { width:100%; aspect-ratio:auto; transform:none!important; display:grid; grid-template-columns:1fr 1fr; gap:10px; padding-top:210px; }
  .v5-system__halo { inset:0 12% auto; height:210px; }
  .v5-system__rings { width:190px; height:190px; inset:0 auto auto 50%; transform:translateX(-50%); }
  .v5-system__route { width:205px; height:205px; inset:-7px auto auto 50%; transform:translateX(-50%); animation:none; }
  .v5-system__core { top:95px; width:94px; }
  .v5-system__core img { width:52px; height:52px; }
  .v5-system__line { display:none; }
  .v5-system__node { position:relative; inset:auto!important; width:auto; min-height:66px; padding:13px 12px 12px 38px; background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.10); border-radius:8px; }
  .v5-system__node::before { left:12px; top:15px; width:10px; height:10px; }
  .v5-system__node span { font-size:7px; }
  .v5-system__caption { position:relative; grid-column:1/-1; inset:auto; width:auto; transform:none; margin-top:6px; }
  .partner-section .case-card, .partner-section .case-card:nth-child(n) { grid-column:1/-1!important; border-radius:14px!important; }
  .v5-proof-types { gap:7px; }
  .v5-proof-types span { font-size:8.5px; }
  .page-solutions .solution-map { grid-template-columns:1fr; }
  .page-solutions .solution-card, .page-solutions .solution-card:nth-child(n) { grid-column:auto; min-height:320px; }
  .page-blog .post-card, .page-blog .post-card--featured { min-height:390px; }
  .page-article .article-body > p:first-of-type { font-size:1.12rem; }
}
@media (prefers-reduced-motion:reduce) {
  .v5-system, .v5-system__route { transition:none!important; animation:none!important; }
}


/* V5 partner certifications refinement */
.partner-strip--certified {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}
.partner-strip--certified .partner-logo {
  min-height: 182px;
  padding: 20px 24px;
  border: 1px solid rgba(38, 22, 49, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9fc 100%);
  box-shadow: 0 14px 36px rgba(32, 12, 44, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-strip--certified .partner-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.partner-logo--google img { max-width: 86%; max-height: 106px; }
.partner-logo--activecampaign img { max-width: 56%; max-height: 126px; }
.partner-logo--meta img { max-width: 86%; max-height: 106px; }

@media (max-width: 980px) {
  .partner-strip--certified { grid-template-columns: 1fr; gap: 16px; }
  .partner-strip--certified .partner-logo { min-height: 168px; }
  .partner-logo--google img { max-width: 80%; max-height: 98px; }
  .partner-logo--activecampaign img { max-width: 44%; max-height: 118px; }
  .partner-logo--meta img { max-width: 80%; max-height: 98px; }
}

@media (max-width: 560px) {
  .partner-strip--certified .partner-logo { min-height: 150px; padding: 16px 14px; border-radius: 18px; }
  .partner-logo--google img { max-width: 92%; max-height: 84px; }
  .partner-logo--activecampaign img { max-width: 52%; max-height: 94px; }
  .partner-logo--meta img { max-width: 92%; max-height: 84px; }
}



/* ===== V7 commercial system ===== */
:root{--v7-coral:#ff6a35;--v7-pink:#e64c93;--v7-violet:#8e4fe7;--v7-green:#2f8b6b;--v7-paper:#f8f5fa;--v7-ink:#211329}
body{background:var(--night)}
.v7-breadcrumb{display:flex;flex-wrap:wrap;gap:9px;color:#aa9caf;font-size:.76rem;letter-spacing:.04em;margin-bottom:30px}.v7-breadcrumb a{text-decoration:none}.v7-breadcrumb a:hover{color:#fff}.section--paper .v7-breadcrumb{color:#786a80}.v7-page-hero{padding:150px 0 92px;min-height:560px;display:grid;align-items:end;position:relative;overflow:hidden;background:radial-gradient(circle at 82% 20%,rgba(121,47,207,.35),transparent 34%),radial-gradient(circle at 14% 92%,rgba(242,120,36,.18),transparent 31%),#0b0612}.v7-page-hero:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,black,transparent 90%)}.v7-page-hero__content{position:relative;max-width:980px}.v7-page-hero .h1{max-width:970px}.v7-page-hero .lead{max-width:780px}.v7-hero-actions{margin-top:30px}
.v7-proof-band{background:#f6f1f8;color:#211329;padding:34px 0;border-bottom:1px solid rgba(35,15,49,.1)}.v7-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.v7-proof-card{display:grid;grid-template-columns:110px 1fr;gap:18px;align-items:center;padding:18px;border:1px solid rgba(36,16,48,.12);border-radius:18px;background:#fff;text-decoration:none;transition:.3s var(--ease)}.v7-proof-card:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(44,18,59,.1)}.v7-proof-logo{height:70px;border-radius:12px;overflow:hidden;background:#fafafa}.v7-proof-logo img{width:100%;height:100%;object-fit:cover}.v7-proof-card small{display:block;color:#8a758f;text-transform:uppercase;font-size:.67rem;letter-spacing:.12em}.v7-proof-card strong{display:block;margin-top:5px;font-size:1rem;line-height:1.25}.v7-proof-card span{display:block;margin-top:7px;color:#67576d;font-size:.82rem;line-height:1.45}
.v7-paths{background:#fff;color:var(--v7-ink)}.v7-section-heading{display:grid;grid-template-columns:.72fr 1.28fr;gap:60px;align-items:end;margin-bottom:48px}.v7-section-heading .lead{margin:0}.v7-path-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.v7-path-card{min-height:390px;padding:30px;border:1px solid rgba(34,13,48,.13);border-radius:24px;display:flex;flex-direction:column;text-decoration:none;background:linear-gradient(155deg,#fff,#f6eff8);transition:.35s var(--ease)}.v7-path-card:hover{transform:translateY(-7px);box-shadow:0 28px 60px rgba(40,16,54,.12)}.v7-path-card__icon{width:48px;height:48px;border:1px solid rgba(56,21,75,.16);border-radius:50%;display:grid;place-items:center;color:var(--purple);font-weight:800}.v7-path-card h3{font-size:clamp(1.55rem,2vw,2.2rem);line-height:1.05;letter-spacing:-.045em;margin:48px 0 16px}.v7-path-card p{color:#66566c;margin:0}.v7-path-card em{font-style:normal;margin-top:auto;padding-top:30px;color:#6f2bc4;font-weight:750;font-size:.82rem;text-transform:uppercase;letter-spacing:.08em}
.v7-case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:48px}.v7-case{border-radius:26px;overflow:hidden;background:#fff;color:#211329;border:1px solid rgba(31,11,44,.12);display:flex;flex-direction:column}.v7-case__media{height:180px;background:#f8f8f8;overflow:hidden}.v7-case__media img{width:100%;height:100%;object-fit:cover}.v7-case__body{padding:28px;display:flex;flex-direction:column;flex:1}.v7-case__tags{font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;color:#8a718e}.v7-case h3{font-size:1.55rem;line-height:1.08;letter-spacing:-.035em;margin:12px 0}.v7-case p{color:#66576d;margin:0}.v7-case a{margin-top:auto;padding-top:26px;color:#6426ac;font-weight:780;text-decoration:none}.v7-case a:hover{text-decoration:underline}
.v7-stats{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(255,255,255,.13);border-radius:24px;overflow:hidden;margin-top:50px}.v7-stat{padding:28px;border-right:1px solid rgba(255,255,255,.13)}.v7-stat:last-child{border:0}.v7-stat strong{display:block;font-size:2rem;line-height:1;color:#fff}.v7-stat span{display:block;margin-top:8px;color:#b7a9bf;font-size:.86rem}
.v7-link-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:42px}.v7-link-item{padding:22px 24px;border:1px solid rgba(36,14,49,.13);border-radius:16px;text-decoration:none;background:#fff;display:grid;grid-template-columns:1fr auto;gap:14px;align-items:center;transition:.25s}.v7-link-item:hover{border-color:rgba(111,43,196,.45);transform:translateX(4px)}.v7-link-item strong{display:block;font-size:1rem}.v7-link-item span{display:block;margin-top:3px;color:#796a80;font-size:.83rem}.v7-link-item i{font-style:normal;color:#6f2bc4;font-size:1.2rem}
.v7-diagnostic-teaser{background:linear-gradient(135deg,#1b0e2b,#351251 60%,#5d237d);overflow:hidden}.v7-diagnostic-teaser__grid{display:grid;grid-template-columns:1fr .85fr;gap:70px;align-items:center}.v7-score-preview{border:1px solid rgba(255,255,255,.15);border-radius:28px;padding:28px;background:rgba(255,255,255,.06);box-shadow:0 30px 90px rgba(0,0,0,.25)}.v7-score-preview__top{display:flex;justify-content:space-between;align-items:center}.v7-score-ring{width:116px;height:116px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--orange) 0 62%,rgba(255,255,255,.1) 62% 100%);position:relative}.v7-score-ring:after{content:"";position:absolute;width:88px;height:88px;background:#29123d;border-radius:50%}.v7-score-ring strong{position:relative;z-index:1;font-size:1.75rem}.v7-score-lines{display:grid;gap:12px;margin-top:26px}.v7-score-line{height:9px;background:rgba(255,255,255,.09);border-radius:999px;overflow:hidden}.v7-score-line span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--orange),var(--rose),#9a5df0)}
.v7-content-grid{display:grid;grid-template-columns:260px minmax(0,1fr);gap:54px;align-items:start}.v7-side-nav{position:sticky;top:100px;border:1px solid rgba(38,13,51,.12);border-radius:18px;padding:20px;background:#fff}.v7-side-nav strong{display:block;margin-bottom:12px;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:#8d7a92}.v7-side-nav a{display:block;padding:9px 0;text-decoration:none;color:#66576d;font-size:.9rem}.v7-side-nav a:hover{color:#6f2bc4}.v7-rich{max-width:820px}.v7-rich h2{font-size:clamp(1.8rem,3vw,3rem);line-height:1.07;letter-spacing:-.045em;margin:70px 0 18px}.v7-rich h2:first-child{margin-top:0}.v7-rich h3{font-size:1.35rem;margin:34px 0 12px}.v7-rich p,.v7-rich li{color:#5e5064}.v7-rich ul{padding-left:20px}.v7-callout{margin:34px 0;padding:24px;border-left:4px solid var(--orange);background:#efe7f2;border-radius:0 16px 16px 0}.v7-callout strong{color:#351344}.v7-evidence{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:30px 0}.v7-evidence article{padding:22px;border:1px solid rgba(39,14,52,.12);border-radius:18px;background:#fff}.v7-evidence h3{margin:0 0 8px;font-size:1.1rem}.v7-evidence p{margin:0;font-size:.9rem}
.v7-diagnostic{background:#f7f3f9;color:#211329}.diagnostic-shell{display:grid;grid-template-columns:310px minmax(0,1fr);gap:28px;align-items:start}.diagnostic-sidebar{position:sticky;top:100px;background:#251138;color:#fff;border-radius:24px;padding:27px}.diagnostic-progress{height:8px;border-radius:99px;background:rgba(255,255,255,.1);overflow:hidden;margin:20px 0}.diagnostic-progress span{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--orange),var(--rose));transition:width .3s}.diagnostic-sidebar small{color:#b7a8bf}.diagnostic-form{background:#fff;border:1px solid rgba(42,16,56,.12);border-radius:24px;padding:clamp(22px,4vw,44px)}.diagnostic-question{border:0;padding:0;margin:0 0 36px}.diagnostic-question legend{font-size:1.18rem;font-weight:780;line-height:1.35;margin-bottom:16px}.diagnostic-options{display:grid;gap:10px}.diagnostic-option{position:relative}.diagnostic-option input{position:absolute;opacity:0}.diagnostic-option label{display:block;padding:15px 16px;border:1px solid rgba(41,15,55,.14);border-radius:14px;cursor:pointer;color:#58475e;transition:.2s}.diagnostic-option input:checked+label{border-color:#7a35c7;background:#f1e7fb;color:#351244;box-shadow:0 0 0 2px rgba(122,53,199,.08)}.diagnostic-option label:hover{border-color:#9a6cc7}.diagnostic-actions{display:flex;gap:12px;justify-content:space-between;align-items:center;border-top:1px solid rgba(40,14,54,.1);padding-top:24px}.diagnostic-result{display:none}.diagnostic-result.is-visible{display:block}.diagnostic-result__stage{font-size:clamp(2.5rem,6vw,5.5rem);line-height:.95;letter-spacing:-.065em;margin:12px 0}.diagnostic-result__score{display:inline-flex;gap:8px;align-items:center;padding:8px 12px;border-radius:999px;background:#efe6f4;color:#5c287e;font-weight:750}.diagnostic-result__recommendations{display:grid;gap:10px;margin:25px 0}.diagnostic-result__recommendations li{padding:13px 15px;background:#f7f3f9;border-radius:12px;list-style:none;color:#57485d}.diagnostic-lead{margin-top:30px;padding-top:28px;border-top:1px solid rgba(41,15,55,.12)}.diagnostic-lead-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.diagnostic-lead-grid .field--full{grid-column:1/-1}
.v7-clusters{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:42px}.v7-cluster{padding:26px;border:1px solid rgba(40,15,54,.12);border-radius:20px;background:#fff}.v7-cluster span{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#f0e5f6;color:#6f2bc4;font-weight:800}.v7-cluster h3{font-size:1.25rem;margin:24px 0 10px}.v7-cluster p{color:#6b5c71;font-size:.9rem}.v7-cluster a{color:#6f2bc4;font-weight:750;text-decoration:none}.v7-search{margin-top:34px;display:grid;grid-template-columns:1fr auto;gap:10px}.v7-search input{min-height:56px;border:1px solid rgba(40,15,54,.15);border-radius:14px;padding:0 18px;color:#27142f;background:#fff}.v7-search-count{align-self:center;color:#78677e;font-size:.84rem}.v7-resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:30px}.v7-resource{padding:24px;border:1px solid rgba(40,15,54,.12);border-radius:18px;background:#fff;text-decoration:none}.v7-resource[hidden]{display:none}.v7-resource small{color:#8e7c93;text-transform:uppercase;letter-spacing:.08em}.v7-resource h3{font-size:1.13rem;line-height:1.2;margin:12px 0}.v7-resource p{color:#6a5a70;font-size:.86rem;margin:0}
.v7-team-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:45px}.v7-person{padding:34px;border:1px solid rgba(38,14,52,.13);border-radius:24px;background:#fff}.v7-person__avatar{width:72px;height:72px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#6f2bc4,#e54a90,#f27824);color:#fff;font-size:1.45rem;font-weight:850}.v7-person h3{font-size:1.7rem;margin:24px 0 4px}.v7-person__role{color:#7b397b;font-weight:720}.v7-person p{color:#67586d}.v7-person ul{padding-left:18px;color:#67586d}.v7-network{margin-top:18px;padding:30px;border:1px dashed rgba(39,14,52,.22);border-radius:20px;color:#625169}
.partner-strip--certified{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch}.partner-strip--certified .partner-logo{min-height:180px;padding:22px;border:1px solid rgba(38,22,49,.1);border-radius:20px;background:linear-gradient(180deg,#fff,#fbf9fc);box-shadow:0 14px 36px rgba(32,12,44,.05)}.partner-strip--certified .partner-logo img{width:auto;height:auto;max-width:100%;object-fit:contain}.partner-logo--google img{max-width:86%;max-height:106px}.partner-logo--activecampaign img{max-width:56%;max-height:126px}.partner-logo--meta img{max-width:86%;max-height:106px}
.v7-author-box{margin:56px 0;padding:24px;border:1px solid rgba(40,15,54,.12);border-radius:18px;background:#fff;display:grid;grid-template-columns:auto 1fr;gap:18px;align-items:center;color:#27142f}.v7-author-box__mark{width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:#2c123e;color:#fff;font-weight:850}.v7-author-box p{margin:3px 0 0;color:#6a5a70;font-size:.87rem}.v7-reading-progress{position:fixed;z-index:1200;left:0;top:0;height:3px;width:0;background:linear-gradient(90deg,var(--orange),var(--rose),#9b5eee);pointer-events:none}
.v7-form-meta{font-size:.75rem;color:#837488}.v7-conversion-levels{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:36px}.v7-conversion-level{padding:24px;border:1px solid rgba(255,255,255,.13);border-radius:18px;background:rgba(255,255,255,.04)}.v7-conversion-level small{color:#b6a7be;text-transform:uppercase;letter-spacing:.1em}.v7-conversion-level h3{margin:12px 0 8px}.v7-conversion-level p{color:#b8abc0;font-size:.88rem}
@media(max-width:980px){.primary-nav{display:none}.menu-toggle{display:flex}.header-cta{display:none}.v7-proof-grid,.v7-case-grid,.v7-clusters,.v7-resource-grid{grid-template-columns:repeat(2,1fr)}.v7-path-grid{grid-template-columns:1fr}.v7-path-card{min-height:300px}.v7-section-heading{grid-template-columns:1fr;gap:20px}.v7-diagnostic-teaser__grid,.diagnostic-shell,.v7-content-grid{grid-template-columns:1fr}.diagnostic-sidebar,.v7-side-nav{position:static}.v7-stats{grid-template-columns:repeat(2,1fr)}.v7-stat:nth-child(2){border-right:0}.v7-stat:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.13)}.v7-conversion-levels{grid-template-columns:1fr}}
@media(max-width:680px){.v7-page-hero{padding:120px 0 70px;min-height:500px}.v7-proof-grid,.v7-case-grid,.v7-clusters,.v7-resource-grid,.v7-team-grid,.v7-evidence,.v7-link-list{grid-template-columns:1fr}.v7-proof-card{grid-template-columns:96px 1fr}.v7-case__media{height:145px}.v7-stats{grid-template-columns:1fr}.v7-stat,.v7-stat:nth-child(2){border-right:0;border-bottom:1px solid rgba(255,255,255,.13)}.v7-stat:last-child{border-bottom:0}.diagnostic-form{padding:22px 16px}.diagnostic-lead-grid{grid-template-columns:1fr}.diagnostic-lead-grid .field--full{grid-column:auto}.diagnostic-actions{align-items:stretch;flex-direction:column}.diagnostic-actions .button{width:100%}.partner-strip--certified{grid-template-columns:1fr}.partner-strip--certified .partner-logo{min-height:150px}.partner-logo--activecampaign img{max-width:50%}.v7-author-box{grid-template-columns:1fr}.v7-search{grid-template-columns:1fr}.v7-score-preview__top{gap:18px}.v7-score-ring{width:96px;height:96px}.v7-score-ring:after{width:72px;height:72px}}
@media(prefers-reduced-motion:reduce){.v7-path-card,.v7-proof-card,.v7-link-item{transition:none}.v7-reading-progress{display:none}}

/* ===== V7.1 refinement layer ===== */
:root {
  --v71-orange: #ff6a00;
  --v71-coral: #f05457;
  --v71-pink: #dc3f8d;
  --v71-purple: #762bd5;
  --v71-line: rgba(38, 17, 49, .085);
  --v71-shadow: 0 22px 55px rgba(42, 18, 55, .075);
}

/* Clean, directional CTA gradient: orange at the left edge, purple at the right edge. */
.button--primary,
.header-cta,
.mobile-menu .button--primary {
  background-color: var(--v71-orange);
  background-image: linear-gradient(90deg,
    #ff6a00 0%,
    #ff6a00 8%,
    #f05457 42%,
    #d83f91 67%,
    #762bd5 92%,
    #762bd5 100%);
  background-size: 100% 100%;
  background-position: center;
  box-shadow: 0 14px 38px rgba(183, 55, 109, .23);
}
.button--primary::before,
.header-cta::before {
  opacity: .18;
  transform: none;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 46%);
}
.button--primary:hover::before,
.header-cta:hover::before { opacity: .28; transform: none; }
.button--primary:hover,
.header-cta:hover { box-shadow: 0 18px 45px rgba(151, 46, 137, .28); }

/* A stronger first message with a quieter, more editorial scale. */
.page-home .hero { padding-top: 144px; }
.page-home .hero__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: clamp(52px, 6.5vw, 100px);
}
.page-home .hero__copy .display {
  max-width: 780px;
  font-size: clamp(3.35rem, 5.55vw, 6.35rem);
  line-height: .94;
  letter-spacing: -.066em;
  text-wrap: balance;
}
.page-home .hero .lead {
  max-width: 690px;
  margin-top: 28px;
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.72;
}
.page-home .hero__actions { margin-top: 32px; }
.page-home .hero__note { margin-top: 26px; }
.page-home .hero-visual { min-height: 610px; }
.page-home .hero-visual::before,
.page-home .hero-visual::after { display: none; }

/* Refined integrated-growth diagram. */
.v71-orbit {
  width: min(100%, 600px);
  padding-bottom: 50px;
  aspect-ratio: auto;
}
.v71-orbit::before {
  inset: 11% 8% 18%;
  opacity: .72;
  background: radial-gradient(circle, rgba(117,43,213,.105), transparent 67%);
  filter: blur(18px);
}
.v71-orbit svg {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  filter: drop-shadow(0 30px 72px rgba(0,0,0,.34));
}
.v71-orbit .v4-ring { stroke: rgba(255,255,255,.09); stroke-width: 1; }
.v71-orbit .v71-ring--outer { stroke: rgba(255,255,255,.055); }
.v71-orbit .v4-ring--accent {
  stroke: url(#v71RingGradient);
  stroke-width: 1.35;
  stroke-dasharray: 5 10;
  opacity: .93;
}
.v71-orbit .v4-spoke { stroke: rgba(255,255,255,.105); stroke-width: 1; }
.v71-orbit .v4-flow {
  stroke: url(#v71FlowGradient);
  stroke-width: 2.1;
  stroke-dasharray: 5 10;
  opacity: .95;
}
.v71-orbit .v4-core-outer { fill: url(#v71CoreGradient); filter: drop-shadow(0 0 25px rgba(220,63,141,.34)); }
.v71-orbit .v4-core-inner { stroke: rgba(255,255,255,.18); }
.v71-orbit .v71-core-line { fill: none; stroke: rgba(225,93,249,.18); stroke-width: 1; }
.v71-orbit .v4-node-halo { fill: rgba(12,6,19,.96); stroke: rgba(255,255,255,.21); }
.v71-orbit .v4-label { fill: #f6edf8; font-size: 12.5px; font-weight: 680; letter-spacing: 0; }
.v71-orbit .v4-label-sub { fill: #897d90; font-size: 8.25px; font-weight: 600; letter-spacing: .095em; }
.v71-orbit-ticks path { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 1; }
.v71-orbit .v4-system-caption {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(360px, 78%);
  padding-top: 13px;
  transform: translateX(-50%);
  border-top-color: rgba(255,255,255,.16);
  color: #a195a7;
  text-align: center;
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: .09em;
}

/* Contexts replace company-led proof immediately after the hero. */
.v71-context-band { padding: 28px 0 30px; background: #f7f3f8; }
.v71-context-grid { gap: 0; border-top: 1px solid var(--v71-line); border-bottom: 1px solid var(--v71-line); }
.v71-context-card {
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 178px;
  padding: 27px 30px;
  border: 0;
  border-right: 1px solid var(--v71-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.v71-context-card:last-child { border-right: 0; }
.v71-context-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,.54);
}
.v71-context-index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(91,41,124,.13);
  color: #7433aa;
  font-size: .7rem;
  font-weight: 800;
}
.v71-context-card small { color: #907a92; }
.v71-context-card strong { margin-top: 8px; font-size: 1.06rem; }
.v71-context-card span:not(.v71-context-index) { margin-top: 9px; color: #6f6174; line-height: 1.6; }

/* Three paths: use the former empty area as an understated decision diagram. */
.v71-paths-heading {
  grid-template-columns: minmax(300px, .75fr) minmax(480px, 1.25fr);
  align-items: start;
  gap: clamp(60px, 9vw, 145px);
  margin-bottom: 54px;
}
.v71-paths-heading > div:first-child { max-width: 450px; }
.v71-paths-support .lead { max-width: 720px; color: #716278; }
.v71-decision-map {
  position: relative;
  min-height: 282px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 52%, rgba(116,43,213,.075), transparent 38%),
    linear-gradient(180deg, rgba(249,245,251,.88), rgba(255,255,255,.4));
}
.v71-decision-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(47,19,62,.06);
}
.v71-decision-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.v71-decision-map svg path { fill: none; stroke: url(#v71MapLine); stroke-width: 1.25; opacity: .56; }
.v71-decision-map svg circle { fill: #8b38c9; opacity: .75; }
.v71-map-node,
.v71-map-center {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 22px rgba(49,20,64,.06);
  color: #35203e;
  font-size: .79rem;
  font-weight: 720;
  white-space: nowrap;
}
.v71-map-node small,
.v71-map-center small { color: #9a7ba3; font-size: .56rem; letter-spacing: .11em; text-transform: uppercase; }
.v71-map-node--stage { top: 18px; left: 50%; transform: translateX(-50%); }
.v71-map-node--segment { left: 22px; bottom: 18px; }
.v71-map-node--problem { right: 22px; bottom: 18px; }
.v71-map-center {
  left: 50%; top: 53%; transform: translate(-50%,-50%);
  min-width: 156px; padding: 15px 20px; text-align: center; border-radius: 18px;
  color: white; background: linear-gradient(135deg,#3a174c,#63238b);
  box-shadow: 0 18px 38px rgba(74,27,99,.18);
}
.v71-map-center strong { font-size: .96rem; }
.v71-map-center small { color: #d5c4dc; }

/* Cards become editorial surfaces rather than boxed tiles. */
.v7-path-card,
.v7-case,
.v7-cluster,
.v7-resource,
.v7-person,
.v7-evidence article,
.v7-link-item {
  border-color: var(--v71-line);
  box-shadow: none;
}
.v7-path-card { min-height: 348px; border-radius: 18px; background: linear-gradient(155deg,#fff,#faf7fb); }
.v7-path-card:hover { transform: translateY(-4px); box-shadow: var(--v71-shadow); }
.v7-path-card h3 { margin-top: 42px; }

/* Cases: challenge first, company attribution second. */
.v7-case-grid { gap: 20px; }
.v7-case { border-radius: 19px; background: rgba(255,255,255,.82); }
.v7-case__media {
  height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(39,15,52,.055);
}
.v7-case__media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transform: none;
}
.v7-case__body { padding: 27px 28px 25px; }
.v7-case__tags { color: #8e7894; }
.v7-case h3 { margin-top: 14px; font-size: clamp(1.35rem,1.7vw,1.8rem); line-height: 1.12; }
.v7-case p { line-height: 1.65; }
.v71-case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(40,16,53,.07);
}
.v71-case-meta span { color: #8e7b94; font-size: .73rem; letter-spacing: .055em; text-transform: uppercase; }
.v71-case-meta a { margin: 0; padding: 0; white-space: nowrap; }

/* Official brand artwork, now without the baked blue outline and without hard cards. */
.partner-section { background: linear-gradient(180deg,#f7f3f8,#f2edf4); }
.page-home .case-grid--v1 { gap: 16px; margin-top: 50px; }
.page-home .case-grid--v1 .case-card,
.page-home .case-grid--v1 .case-card:nth-child(n) {
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: none;
  transition: transform .3s ease, background .3s ease;
}
.page-home .case-grid--v1 .case-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: #fff;
}
.page-home .case-grid--v1 .case-card img { object-fit: cover; }

/* Quieter and more varied internal hero openings. */
.page-hero,
.article-hero {
  min-height: 68svh;
  background:
    radial-gradient(circle at 83% 18%, rgba(126,44,230,.16), transparent 25rem),
    radial-gradient(circle at 12% 92%, rgba(255,106,0,.055), transparent 22rem),
    var(--v2-bg);
}
.page-hero::before,
.article-hero::after { opacity: .23; }
.page-hero::after,
.article-hero::before {
  width: clamp(150px,22vw,330px);
  border-color: rgba(255,255,255,.045);
  box-shadow: inset 0 0 60px rgba(122,43,230,.025);
  opacity: .58;
}
.page-method .page-hero::after { border-radius: 44% 56% 52% 48%; transform: rotate(-8deg); }
.page-solutions .page-hero::after { border-radius: 28px; transform: rotate(7deg); }
.page-audience .page-hero::after { border-radius: 50%; transform: scale(.9); }
.page-contact .page-hero::after { border-radius: 28px 70px 28px 70px; transform: rotate(-5deg); }
.page-blog .page-hero::after { border-radius: 50% 38% 50% 42%; }

.v7-page-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 84% 20%, rgba(121,47,207,.16), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(242,120,36,.075), transparent 28%),
    #0b0612;
}
.v7-page-hero::before { opacity: .62; background-size: 86px 86px; }
.page-case .v7-page-hero { background: radial-gradient(circle at 78% 22%,rgba(229,76,147,.12),transparent 29%),#0b0612; }
.page-cases .v7-page-hero { background: radial-gradient(circle at 82% 20%,rgba(116,43,213,.14),transparent 29%),#0b0612; }
.page-knowledge .v7-page-hero { background: radial-gradient(circle at 70% 18%,rgba(255,106,0,.08),transparent 28%),#0b0612; }
.page-diagnostic .v7-page-hero { background: radial-gradient(circle at 82% 20%,rgba(229,76,147,.14),transparent 29%),#0b0612; }
.page-team .v7-page-hero { background: radial-gradient(circle at 76% 20%,rgba(86,53,173,.13),transparent 30%),#0b0612; }
.page-segment .v7-page-hero { background: radial-gradient(circle at 84% 22%,rgba(47,139,107,.10),transparent 28%),#0b0612; }
.page-problem .v7-page-hero { background: radial-gradient(circle at 84% 22%,rgba(242,120,36,.10),transparent 28%),#0b0612; }

/* More disciplined typography and section rhythm. */
.h2 { text-wrap: balance; }
.section--paper .lead { color: #716378; }
.v7-page-hero .h1 { max-width: 900px; }
.v7-page-hero .lead { max-width: 740px; }
.v7-diagnostic-teaser__grid { gap: 84px; }

@media (max-width: 1080px) {
  .page-home .hero__grid { grid-template-columns: 1fr; }
  .page-home .hero__copy { max-width: 840px; }
  .page-home .hero-visual { width: min(100%,680px); margin-inline: auto; min-height: 560px; }
  .v71-paths-heading { grid-template-columns: 1fr; gap: 34px; }
  .v71-paths-heading > div:first-child { max-width: 680px; }
  .v71-paths-support { max-width: 760px; }
}

@media (max-width: 980px) {
  .v71-context-grid { grid-template-columns: 1fr; }
  .v71-context-card { border-right: 0; border-bottom: 1px solid var(--v71-line); min-height: auto; }
  .v71-context-card:last-child { border-bottom: 0; }
  .v71-case-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 680px) {
  .page-home .hero { padding: 116px 0 64px; min-height: auto; }
  .page-home .hero__copy .display {
    max-width: 100%;
    font-size: clamp(3rem,14.1vw,4.45rem);
    line-height: .94;
    letter-spacing: -.064em;
  }
  .page-home .hero .lead { margin-top: 23px; font-size: .98rem; }
  .page-home .hero__actions { margin-top: 28px; }
  .page-home .hero-visual { min-height: 390px; margin-inline: -13px; }
  .v71-orbit { width: 100%; padding-bottom: 42px; }
  .v71-orbit .v4-label { font-size: 11px; }
  .v71-orbit .v4-label-sub { font-size: 7px; letter-spacing: .075em; }
  .v71-orbit .v4-system-caption { width: 76%; font-size: 8px; }
  .v71-context-band { padding-block: 18px; }
  .v71-context-card { grid-template-columns: 36px 1fr; padding: 23px 8px; gap: 14px; }
  .v71-context-index { width: 32px; height: 32px; }
  .v71-decision-map { min-height: 360px; }
  .v71-decision-map svg { display: none; }
  .v71-map-node,
  .v71-map-center {
    position: relative;
    inset: auto;
    transform: none;
    width: calc(100% - 36px);
    margin: 13px 18px 0;
    border-radius: 14px;
    white-space: normal;
  }
  .v71-map-center { min-width: 0; text-align: left; margin-top: 18px; }
  .v7-case__media { height: 92px; }
  .v7-case__media img { width: 92%; height: 92%; }
  .page-hero, .article-hero { min-height: auto; }
  .page-hero::after, .article-hero::before { width: 150px; opacity: .35; }
  .v7-page-hero { min-height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  .v71-orbit .v4-ring--accent,
  .v71-orbit .v4-flow { animation: none; }
}


/* V7.1 final optical calibration */
.page-home .hero__copy .display {
  max-width: 840px;
  font-size: clamp(3.2rem, 4.85vw, 5.7rem);
  line-height: .95;
}
.page-home .case-grid--v1 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
}
.page-home .case-grid--v1 .case-card,
.page-home .case-grid--v1 .case-card:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
}
.v7-case__media img {
  width: 86%;
  height: 82%;
  object-fit: contain;
}
@media (max-width: 820px) {
  .page-home .case-grid--v1 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .page-home .hero__copy .display {
    font-size: clamp(2.75rem, 12.8vw, 4rem);
    line-height: .96;
  }
  .page-home .case-grid--v1 { grid-template-columns: 1fr !important; }
}

/* =========================================================
   V7.2 — deeper cases, calmer hero and protected mobile header
   ========================================================= */

/* Home: preserve the message, reduce the visual volume decisively. */
.page-home .hero__copy .display.v72-home-title,
.page-home .hero__copy .display {
  max-width: 760px;
  font-size: clamp(3rem, 4.15vw, 4.95rem);
  line-height: .98;
  letter-spacing: -.058em;
}
.page-home .hero__copy .gradient-text { display: inline; }
.page-home .hero .lead { max-width: 690px; }

/* Detailed case opening: text and brand identify the project without a giant logo banner. */
.v72-case-hero { min-height: 640px; padding-bottom: 86px; }
.v72-case-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: end;
}
.v72-case-hero .v7-page-hero__content { max-width: 920px; }
.v72-case-hero .h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.3vw, 6.25rem);
  line-height: .95;
}
.v72-case-hero .lead { max-width: 780px; }
.v72-case-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}
.v72-case-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #c9bed0;
  background: rgba(255,255,255,.035);
  font-size: .69rem;
  letter-spacing: .055em;
}
.v72-case-brand {
  align-self: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.v72-case-brand small {
  display: block;
  margin-bottom: 13px;
  color: #9f90a7;
  font-size: .62rem;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v72-case-brand > div {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px 26px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.v72-case-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

/* Case story: editorial flow with more persuasive depth. */
.v72-case-section { padding-top: clamp(76px, 9vw, 132px); }
.v72-case-layout { grid-template-columns: 220px minmax(0, 1fr); gap: clamp(44px, 6vw, 92px); }
.v72-case-nav {
  top: 116px;
  padding: 8px 0 8px 18px;
  border: 0;
  border-left: 1px solid rgba(38,13,51,.12);
  border-radius: 0;
  background: transparent;
}
.v72-case-nav strong { margin-bottom: 14px; }
.v72-case-nav a {
  position: relative;
  padding: 8px 0;
  color: #7b6c82;
}
.v72-case-nav a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ded3e2;
  transform: translateY(-50%);
}
.v72-case-nav a:hover::before { background: var(--v71-orange); }
.v72-case-story { max-width: 920px; }
.v72-case-story section { scroll-margin-top: 110px; }
.v72-case-story h2 {
  max-width: 850px;
  margin-top: 28px;
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  line-height: 1.02;
  text-wrap: balance;
}
.v72-case-story section + section { margin-top: clamp(88px, 10vw, 150px); }
.v72-kicker {
  margin: 0 0 16px !important;
  color: #a06232 !important;
  font-size: .68rem !important;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.v72-case-story > section > p:not(.v72-kicker),
.v72-opening-text {
  max-width: 810px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}
.v72-case-opening {
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(42,18,55,.08);
  border-radius: 24px;
  background: linear-gradient(145deg,#fff,#f8f3fa);
}
.v72-case-opening h2 { margin-top: 0; }
.v72-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 36px;
}
.v72-deliverables article {
  min-height: 246px;
  padding: 27px 27px 25px;
  border: 1px solid rgba(42,18,55,.085);
  border-radius: 19px;
  background: rgba(255,255,255,.86);
}
.v72-deliverables article > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #7a2fb2;
  background: #f0e6f5;
  font-size: .68rem;
  font-weight: 780;
}
.v72-deliverables h3 {
  margin: 31px 0 10px;
  font-size: 1.22rem;
  line-height: 1.16;
}
.v72-deliverables p { margin: 0; font-size: .91rem; line-height: 1.68; }
.v72-integration {
  padding: clamp(36px, 5vw, 66px);
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 90% 12%,rgba(132,51,221,.32),transparent 36%),
    radial-gradient(circle at 8% 92%,rgba(255,106,0,.14),transparent 32%),
    #16091f;
}
.v72-integration h2 { color: white; margin-top: 0; }
.v72-integration p:not(.v72-kicker) { color: #cec1d2 !important; }
.v72-integration .v72-kicker { color: #ff9e54 !important; }
.v72-evolution-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
  padding: 0 !important;
  list-style: none;
}
.v72-evolution-list li {
  position: relative;
  min-height: 104px;
  padding: 23px 23px 23px 53px;
  border: 1px solid rgba(42,18,55,.085);
  border-radius: 17px;
  background: white;
  line-height: 1.55;
}
.v72-evolution-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 13px;
  height: 13px;
  border: 3px solid white;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--v71-orange),var(--v71-purple));
  box-shadow: 0 0 0 1px rgba(108,39,155,.18);
}
.v72-transparency { margin-top: 76px; }
.v72-case-closing {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 38px;
  align-items: end;
  margin-top: 82px;
  padding-top: 50px;
  border-top: 1px solid rgba(42,18,55,.1);
}
.v72-case-closing h2 {
  margin: 10px 0 16px;
  max-width: 700px;
  font-size: clamp(2rem,3.6vw,3.8rem);
}
.v72-case-closing p { max-width: 650px; }
.v72-case-closing .button-row { justify-content: flex-end; }

/* Mobile header: keep the logo and menu icon safely inside the capsule. */
@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: calc(82px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 0 0;
  }
  .site-header::before,
  .site-header.is-scrolled::before {
    inset: calc(env(safe-area-inset-top) + 8px) 8px 8px;
    border-radius: 14px;
  }
  .header-inner {
    width: calc(100% - 16px);
    min-width: 0;
    padding: env(safe-area-inset-top) 14px 0;
    box-sizing: border-box;
    gap: 12px;
  }
  .header-inner > .brand {
    min-width: 0;
    max-width: calc(100% - 60px);
    flex: 1 1 auto;
    overflow: visible;
  }
  .header-inner > .brand img {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .header-inner > .brand .brand__name {
    min-width: 0;
    font-size: 13px;
    white-space: nowrap;
  }
  .header-actions { flex: 0 0 auto; margin-left: auto; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    border-radius: 14px;
    color: white;
    overflow: visible;
  }
  .menu-toggle svg { display: block; width: 22px; height: 22px; }
  .mobile-menu {
    padding: calc(20px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom));
  }
  .mobile-menu__top { min-height: 52px; }
  .v72-case-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .v72-case-brand { width: min(100%,560px); }
  .v72-case-layout { grid-template-columns: 1fr; }
  .v72-case-nav {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 12px;
    border-left: 0;
    scrollbar-width: thin;
  }
  .v72-case-nav strong { display: none; }
  .v72-case-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(42,18,55,.09);
    border-radius: 999px;
    background: white;
  }
  .v72-case-nav a::before { display: none; }
  .v72-case-closing { grid-template-columns: 1fr; align-items: start; }
  .v72-case-closing .button-row { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .page-home .hero { padding-top: calc(104px + env(safe-area-inset-top)); }
  .page-home .hero__copy .display.v72-home-title,
  .page-home .hero__copy .display {
    max-width: 340px;
    font-size: clamp(2.45rem, 10.7vw, 3.15rem);
    line-height: .99;
    letter-spacing: -.057em;
  }
  .page-home .hero .lead { font-size: .94rem; line-height: 1.62; }
  .page-home .hero__actions { gap: 10px; }
  .page-home .hero__actions .button { width: 100%; justify-content: center; }
  .v72-case-hero { min-height: auto; padding: calc(118px + env(safe-area-inset-top)) 0 68px; }
  .v72-case-hero .h1 { font-size: clamp(2.45rem,11.5vw,3.65rem); line-height: .98; }
  .v72-case-hero .lead { font-size: .98rem; }
  .v72-case-chips { gap: 6px; }
  .v72-case-chips span { font-size: .62rem; }
  .v72-case-brand { padding: 14px; border-radius: 18px; }
  .v72-case-brand > div { min-height: 105px; padding: 18px; }
  .v72-case-brand img { max-height: 64px; }
  .v72-case-opening,
  .v72-integration { padding: 28px 22px; border-radius: 20px; }
  .v72-case-story h2 { font-size: clamp(2rem,10vw,3rem); }
  .v72-case-story section + section { margin-top: 84px; }
  .v72-deliverables,
  .v72-evolution-list { grid-template-columns: 1fr; }
  .v72-deliverables article { min-height: auto; }
  .v72-case-closing { margin-top: 68px; }
  .v72-case-closing .button-row { width: 100%; }
  .v72-case-closing .button { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .header-inner > .brand .brand__name { font-size: 12px; }
  .header-inner > .brand img { flex-basis: 36px; width: 36px; height: 36px; }
  .menu-toggle { flex-basis: 44px; width: 44px; height: 44px; }
}

/* V7.2 final copy calibration */
@media (max-width: 680px) {
  .page-home .hero__copy .display.v72-home-title,
  .page-home .hero__copy .display {
    max-width: 330px;
    font-size: clamp(2.22rem, 9.8vw, 2.85rem);
    line-height: 1.01;
  }
  .v72-case-hero .h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.15rem);
    line-height: 1;
  }
}


/* ======================================================================
   V7.2.1 — CORRETIVO DE ACABAMENTO
   Botões, gradientes tipográficos, heróis, CTAs e mapa de decisão.
   ====================================================================== */

/* 1) Gradiente dos botões: uma única superfície, sem repetição nas pontas. */
.button--primary,
.header-cta,
.mobile-menu .button--primary {
  border: 0 !important;
  background-color: #762bd5 !important;
  background-image: linear-gradient(90deg,
    #ff6a00 0%,
    #ff6a00 5%,
    #f2524f 42%,
    #d93c91 68%,
    #762bd5 96%,
    #762bd5 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
  background-origin: border-box !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  overflow: hidden !important;
  isolation: isolate;
}
.button--primary::before,
.header-cta::before,
.mobile-menu .button--primary::before {
  display: none !important;
  content: none !important;
}

/* 2) Destaques tipográficos com mais saturação e contraste. */
.gradient-text {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background-image: linear-gradient(105deg,
    #ffb000 0%,
    #ff6a00 30%,
    #ff3e92 67%,
    #a33cff 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: center !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  opacity: 1 !important;
  filter: saturate(1.16) contrast(1.08);
}
.section--paper .gradient-text,
.v4-journey .gradient-text,
.v4-difference .gradient-text {
  background-image: linear-gradient(105deg,
    #a43c00 0%,
    #e34b00 31%,
    #b7196c 68%,
    #6822bd 100%) !important;
  filter: saturate(1.14) contrast(1.1);
}
.v4-root-statement .gradient-text,
.v4-pillars-section .gradient-text,
.section--purple .gradient-text,
.cta-panel .gradient-text,
.hero .gradient-text,
.page-hero .gradient-text,
.article-hero .gradient-text,
.v7-page-hero .gradient-text {
  background-image: linear-gradient(105deg,
    #ffc14f 0%,
    #ff7500 31%,
    #ff429e 68%,
    #b660ff 100%) !important;
  filter: saturate(1.22) contrast(1.1) drop-shadow(0 0 18px rgba(229,60,154,.08));
}

/* 3) Limpeza dos contornos geométricos soltos no topo das páginas internas. */
.page-hero::after,
.article-hero::before,
.page-method .page-hero::after,
.page-solutions .page-hero::after,
.page-audience .page-hero::after,
.page-contact .page-hero::after,
.page-blog .page-hero::after {
  display: none !important;
  content: none !important;
}

/* 4) CTA único: elimina o painel roxo duplicado por trás dos artigos. */
.page-article .article-cta,
.article-cta {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.article-cta .cta-panel,
.blog-cta-panel,
.page-article .article-cta .cta-panel {
  isolation: isolate;
  box-shadow: 0 24px 64px rgba(34,10,50,.20) !important;
}
.article-cta .cta-panel::before,
.blog-cta-panel::before {
  display: none !important;
  content: none !important;
}

/* 5) Mapa de decisão: composição centralizada, linhas livres dos rótulos. */
.v71-paths-heading {
  grid-template-columns: minmax(300px,.7fr) minmax(520px,1.3fr);
  gap: clamp(64px, 9vw, 150px);
}
.v71-paths-support {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
}
.v71-decision-map {
  width: min(100%, 690px);
  min-height: 304px;
  margin: 30px 0 0 auto;
  border: 1px solid rgba(47,19,62,.07);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 50%, rgba(116,43,213,.085), transparent 38%),
    linear-gradient(180deg, rgba(251,248,252,.96), rgba(255,255,255,.72));
  box-shadow: 0 20px 55px rgba(47,19,62,.045);
}
.v71-decision-map::before {
  display: none !important;
  content: none !important;
}
.v71-decision-map svg {
  inset: 16px 24px 18px;
  width: calc(100% - 48px);
  height: calc(100% - 34px);
  overflow: visible;
}
.v71-decision-map svg path {
  stroke-width: 1.35;
  opacity: .62;
}
.v71-decision-map svg circle { opacity: .82; }
.v71-map-node {
  gap: 2px;
  padding: 7px 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(250,247,251,.98);
  box-shadow: none;
  font-size: .8rem;
  line-height: 1.15;
}
.v71-map-node--stage {
  top: 14px;
  left: 54%;
  transform: translateX(-50%);
}
.v71-map-node--segment {
  left: 26px;
  bottom: 18px;
}
.v71-map-node--problem {
  right: 26px;
  bottom: 18px;
}
.v71-map-center {
  left: 54%;
  top: 52%;
  min-width: 176px;
  padding: 17px 22px;
  border-radius: 17px;
  transform: translate(-50%,-50%);
  background: linear-gradient(135deg,#351348 0%,#542076 58%,#6b2698 100%);
  box-shadow: 0 18px 38px rgba(65,21,91,.18);
}
.v71-map-center strong { font-size: 1rem; }

@media (max-width: 1080px) {
  .v71-paths-heading { grid-template-columns: 1fr; }
  .v71-paths-support { max-width: 780px; margin-left: 0; }
  .v71-decision-map { margin-left: 0; }
}

@media (max-width: 680px) {
  .v71-decision-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    min-height: 0;
    padding: 15px;
    margin-top: 24px;
    overflow: visible;
    border-radius: 18px;
  }
  .v71-decision-map svg { display: none !important; }
  .v71-map-node,
  .v71-map-center {
    position: static;
    inset: auto;
    width: auto;
    min-width: 0;
    margin: 0;
    transform: none;
    white-space: normal;
  }
  .v71-map-node {
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid rgba(47,19,62,.07);
    background: rgba(255,255,255,.78);
  }
  .v71-map-node--stage { grid-column: 1; }
  .v71-map-node--segment { grid-column: 2; }
  .v71-map-node--problem { grid-column: 1 / -1; }
  .v71-map-center {
    grid-column: 1 / -1;
    min-height: 88px;
    display: grid;
    align-content: center;
    text-align: left;
  }
}

/* --- V7.2.2 corrective pass: context indexes centered inside visible circles --- */
.v71-context-grid {
  align-items: stretch;
}
.v71-context-card {
  grid-template-columns: 56px minmax(0,1fr);
  align-items: start;
  gap: 18px;
}
.v71-context-index {
  position: relative;
  display: inline-grid;
  place-items: center;
  align-self: start;
  justify-self: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid rgba(91,41,124,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,240,251,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 18px rgba(51,19,70,.06);
  color: #6f2fa6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}
.v71-context-card strong {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .v71-context-card {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 16px;
  }
  .v71-context-index {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: .74rem;
  }
}
@media (max-width: 560px) {
  .v71-context-card {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 14px;
    padding: 24px 18px;
  }
  .v71-context-index {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: .72rem;
  }
}


/* --- V7.2.3 final correction: true circle centering + stable first paint --- */
.v7-proof-card.v71-context-card > .v71-context-index {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  vertical-align: middle;
}

/* Elements already visible on initial load do not animate from a hidden state. */
.reveal.is-initial-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* V7.2.3 stable corrective patch
   - Context cards no longer reserve a column for removed indexes.
   - Initial sections are static in HTML; global reveal remains unchanged below them. */
.v71-context-card {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}
.v71-context-index { display: none !important; }
