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