:root {
  --paper: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #f1f2ef;
  --ink: #171817;
  --ink-soft: #30312f;
  --text: #5b5d59;
  --muted: #858781;
  --line: rgba(23, 24, 23, 0.1);
  --line-strong: rgba(23, 24, 23, 0.18);
  --yellow: #f8b31b;
  --yellow-hover: #ffc33d;
  --yellow-soft: #fff3d8;
  --blue: #114f70;
  --blue-soft: #e9f4f8;
  --green: #3f8f74;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 70px rgba(31, 34, 31, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-padding-top: 108px; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
button, a { font: inherit; -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { color: var(--ink); background: var(--yellow); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: clamp(92px, 10vw, 150px); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress { position: fixed; z-index: 999; inset: 0 0 auto; height: 3px; pointer-events: none; }
.page-progress span { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 0;
  left: 0;
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.admin-bar .site-header { top: 46px; }

@media (min-width: 783px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 58px; }
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 68px;
  align-items: center;
  padding: 7px 8px 7px 10px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 18px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 12px 36px rgba(24,28,24,.075);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled .site-header__inner { border-color: var(--line); background: rgba(255,255,255,.96); box-shadow: 0 14px 42px rgba(24,28,24,.11); }

.brand { display: flex; width: 112px; height: 46px; align-items: center; padding: 0 13px; border-radius: 12px; }
.brand img { width: 99px; height: auto; filter: brightness(0); }

.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3.3vw, 48px); }
.desktop-nav a { position: relative; color: var(--text); font-size: .77rem; font-weight: 600; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; border-radius: 2px; background: var(--yellow); content: ""; transform: scaleX(0); transition: transform .24s var(--ease); }
.desktop-nav a:hover, .desktop-nav a[aria-current="true"] { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="true"]::after { transform: scaleX(1); }

.header-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-inline: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
  transition: transform .22s var(--ease), background-color .22s ease, border-color .22s ease, box-shadow .22s var(--ease);
}
.header-cta { color: white; background: var(--ink); }
.header-cta span, .button > span { font-size: .93rem; transition: transform .22s var(--ease); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta:hover span, .button:hover > span { transform: translate(2px,-2px); }

.menu-toggle { display: none; width: 46px; height: 46px; cursor: pointer; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu { margin-top: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-soft); }
.mobile-menu nav { display: grid; margin-bottom: 12px; }
.mobile-menu nav a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; padding-inline: 7px; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 700; }
.mobile-menu nav a span { color: var(--muted); font-size: .63rem; }
.button--wide { width: 100%; }

.hero { position: relative; min-height: 100vh; padding: 160px 0 68px; overflow: hidden; background: var(--surface); }
.hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(23,24,23,.055) .7px, transparent .7px); background-size: 18px 18px; content: ""; opacity: .38; mask-image: linear-gradient(to bottom, black, transparent 74%); }
.hero__wash { position: absolute; top: 32px; right: -4%; width: 58%; height: 690px; border-radius: 50%; background: radial-gradient(circle at 58% 45%, rgba(252,226,163,.55), rgba(232,246,245,.48) 38%, rgba(230,232,255,.32) 63%, transparent 74%); filter: blur(20px); }
.hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr); gap: 64px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(248,179,27,.17); }
.eyebrow--light { color: rgba(255,255,255,.62); }

.hero h1 { max-width: 660px; margin-top: 23px; font-size: clamp(3rem, 5vw, 5.15rem); font-weight: 700; line-height: 1.02; letter-spacing: -.055em; }
.hero h1 em { position: relative; font-style: normal; font-weight: 600; }
.hero h1 em::after { position: absolute; z-index: -1; right: -3px; bottom: 1px; left: -3px; height: 12px; border-radius: 3px; background: rgba(248,179,27,.72); content: ""; transform: rotate(-.8deg); }
.hero__lede { max-width: 590px; margin-top: 25px; color: var(--text); font-size: clamp(.98rem,1.35vw,1.12rem); line-height: 1.72; letter-spacing: -.018em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.button--primary { color: var(--ink); background: var(--yellow); box-shadow: 0 12px 28px rgba(226,154,8,.18); }
.button--primary:hover { background: var(--yellow-hover); box-shadow: 0 16px 32px rgba(226,154,8,.24); }
.button--quiet { border-color: var(--line); background: rgba(255,255,255,.72); }
.button--quiet:hover { border-color: var(--line-strong); background: white; }

.hero__trust { display: grid; grid-template-columns: repeat(3,1fr); max-width: 560px; margin-top: 48px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero__trust li { display: flex; align-items: center; gap: 11px; padding-inline: 13px; border-left: 1px solid var(--line); }
.hero__trust li:first-child { padding-left: 0; border-left: 0; }
.hero__trust strong { font-size: 1.35rem; line-height: 1; letter-spacing: -.05em; }
.hero__trust span { color: var(--muted); font-size: .63rem; line-height: 1.35; }

.growth-console { position: relative; min-height: 590px; perspective: 1000px; }
.growth-console__halo { position: absolute; inset: 3% -6% -3%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,241,211,.42) 34%, rgba(220,240,245,.32) 60%, transparent 72%); filter: blur(14px); }
.console-window { position: absolute; z-index: 2; top: 40px; right: 0; left: 0; min-height: 510px; overflow: hidden; border: 1px solid rgba(23,24,23,.09); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 35px 80px rgba(35,41,36,.15); backdrop-filter: blur(12px); transform: rotateY(-3deg) rotateX(1deg); transition: transform .55s var(--ease); }
.growth-console:hover .console-window { transform: rotateY(0) rotateX(0) translateY(-4px); }
.console-window__bar { display: flex; height: 48px; align-items: center; justify-content: space-between; padding-inline: 18px; border-bottom: 1px solid var(--line); background: rgba(249,249,247,.82); }
.console-brand { display: flex; align-items: center; gap: 8px; font-size: .62rem; font-weight: 700; }
.console-brand i { position: relative; width: 18px; height: 18px; border: 5px solid var(--yellow); border-radius: 50%; }
.console-brand i::after { position: absolute; top: -6px; right: -7px; width: 10px; height: 11px; background: #f9f9f7; content: ""; transform: rotate(28deg); }
.console-status { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .54rem; font-weight: 600; }
.console-status i { width: 6px; height: 6px; border-radius: 50%; background: #36a56e; box-shadow: 0 0 0 4px rgba(54,165,110,.12); }
.console-summary { display: flex; align-items: center; justify-content: space-between; padding: 24px 24px 16px; }
.console-summary > div { display: grid; gap: 4px; }
.console-summary small, .console-kpis small { color: var(--muted); font-size: .51rem; font-weight: 700; letter-spacing: .09em; }
.console-summary strong { font-size: 1rem; }
.console-summary > span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--text); background: white; font-size: .53rem; }
.console-summary b { margin-left: 7px; color: var(--muted); }
.console-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding-inline: 24px; }
.console-kpis article { display: grid; min-height: 108px; align-content: end; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.console-kpis strong { margin-top: 4px; font-size: 1.35rem; line-height: 1; letter-spacing: -.05em; }
.console-kpis article > span { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: .5rem; }
.trend { display: inline-block; width: 12px; height: 7px; border-top: 2px solid var(--blue); transform: rotate(-9deg); }
.trend--up { border-color: var(--green); transform: rotate(-21deg); }
.console-main { display: grid; grid-template-columns: 1.45fr .72fr; gap: 9px; padding: 9px 24px 24px; }
.performance-chart, .channel-stack { min-height: 250px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.performance-chart__head { display: flex; align-items: center; justify-content: space-between; font-size: .58rem; font-weight: 700; }
.performance-chart__head small { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: .46rem; font-weight: 500; }
.performance-chart__head small i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.performance-chart__head small i:last-child { background: var(--blue); }
.performance-chart__plot { position: relative; height: 174px; margin-top: 12px; overflow: hidden; }
.chart-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,24,23,.06) 1px,transparent 1px); background-size: 100% 40px; }
.chart-area { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(17,79,112,.15),transparent 74%); clip-path: polygon(0 82%,12% 69%,31% 60%,49% 49%,68% 33%,87% 19%,100% 9%,100% 100%,0 100%); }
.chart-line { position: absolute; inset: 0; background: var(--blue); clip-path: polygon(0 81%,12% 68%,31% 59%,49% 48%,68% 32%,87% 18%,100% 8%,100% 10%,87% 20%,68% 34%,49% 50%,31% 61%,12% 70%,0 83%); }
.performance-chart__plot > i { position: absolute; z-index: 3; top: var(--y); left: var(--x); width: 7px; height: 7px; border: 2px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); transform: translate(-50%,-50%); }
.performance-chart__months { display: flex; justify-content: space-between; color: var(--muted); font-size: .4rem; font-weight: 600; }
.channel-stack p { margin-bottom: 12px; font-size: .58rem; font-weight: 700; }
.channel-stack > div { display: grid; grid-template-columns: 25px 1fr auto; gap: 7px; align-items: center; min-height: 43px; border-top: 1px solid var(--line); }
.channel-code { display: inline-flex; width: 23px; height: 23px; align-items: center; justify-content: center; border-radius: 6px; font-size: .43rem; font-weight: 800; }
.channel-code--search { color: #875c00; background: var(--yellow-soft); }
.channel-code--brand { color: #6a4da5; background: #f1eaff; }
.channel-code--web { color: var(--blue); background: var(--blue-soft); }
.channel-code--data { color: #37755f; background: #e7f4ee; }
.channel-stack strong { font-size: .49rem; }
.channel-stack small { color: var(--muted); font-size: .45rem; }
.console-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.9); border-radius: 11px; background: rgba(255,255,255,.88); box-shadow: 0 15px 35px rgba(31,35,31,.11); backdrop-filter: blur(12px); }
.console-note span { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 8px; color: #805700; background: var(--yellow-soft); font-size: .47rem; font-weight: 800; }
.console-note b { font-size: .52rem; }
.console-note--top { top: 8px; right: 8%; }
.console-note--bottom { right: -4%; bottom: 9px; }

.client-strip { position: relative; z-index: 3; margin-top: 70px; }
.client-strip > p { color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.client-strip__logos { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 21px; border-block: 1px solid var(--line); }
.client-strip__logos img { width: 100%; height: 72px; padding: 14px 24px; object-fit: contain; filter: grayscale(1); mix-blend-mode: multiply; opacity: .46; }
.client-strip__logos img + img { border-left: 1px solid var(--line); }

.section-intro { max-width: 780px; }
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro h2, .case-heading h2, .method-intro h2, .contact-card h2 { margin-top: 15px; font-size: clamp(2.4rem,4.6vw,4.35rem); font-weight: 600; line-height: 1.04; letter-spacing: -.05em; }
.section-intro > p:last-child { max-width: 670px; margin: 21px auto 0; color: var(--text); font-size: .98rem; }

.ecosystem { background: var(--paper); }
.ecosystem-board { display: grid; grid-template-columns: 330px 1fr; min-height: 650px; margin-top: 58px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-soft); }
.ecosystem-tabs { padding: 13px; border-right: 1px solid var(--line); background: #f3f3f0; }
.ecosystem-tabs button { position: relative; display: grid; width: 100%; min-height: 148px; grid-template-columns: 34px 1fr auto; grid-template-rows: auto auto; gap: 5px 12px; align-content: center; padding: 20px; cursor: pointer; border: 1px solid transparent; border-radius: 15px; text-align: left; background: transparent; transition: background-color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .22s var(--ease); }
.ecosystem-tabs button:hover { transform: translateX(3px); }
.ecosystem-tabs button[aria-selected="true"] { border-color: var(--line); background: white; box-shadow: 0 10px 26px rgba(31,34,31,.06); }
.ecosystem-tabs button > span { grid-row: 1 / 3; color: var(--muted); font-size: .58rem; font-weight: 700; }
.ecosystem-tabs strong { font-size: .91rem; }
.ecosystem-tabs small { grid-column: 2; color: var(--muted); font-size: .61rem; }
.ecosystem-tabs i { display: inline-flex; width: 25px; height: 25px; grid-column: 3; grid-row: 1 / 3; align-items: center; justify-content: center; align-self: center; border: 1px solid var(--line); border-radius: 50%; font-size: .62rem; font-style: normal; transition: background-color .2s ease,transform .2s var(--ease); }
.ecosystem-tabs button[aria-selected="true"] i { background: var(--yellow); transform: rotate(45deg); }
.ecosystem-visual { position: relative; min-width: 0; overflow: hidden; background: linear-gradient(145deg,#fff 0%,#fafaf8 54%,#eef6f6 100%); }
.ecosystem-visual__brand { position: absolute; right: -80px; bottom: -28px; width: 410px; opacity: .035; }
.ecosystem-visual__brand img { filter: brightness(0); }
.ecosystem-visual section { position: relative; z-index: 2; min-height: 650px; padding: 66px 55% 50px 62px; animation: panel-in .4s var(--ease); }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } }
.panel-label { color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .1em; }
.ecosystem-visual h3 { max-width: 430px; margin-top: 14px; font-size: clamp(2rem,3.4vw,3.35rem); font-weight: 600; line-height: 1.06; letter-spacing: -.045em; }
.ecosystem-visual section > p:nth-of-type(2) { max-width: 470px; margin-top: 20px; color: var(--text); font-size: .89rem; line-height: 1.7; }
.ecosystem-visual ul { display: grid; max-width: 420px; grid-template-columns: repeat(2,1fr); gap: 0 22px; margin-top: 26px; }
.ecosystem-visual li { position: relative; padding: 11px 0 11px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .69rem; font-weight: 600; }
.ecosystem-visual li::before { position: absolute; top: 18px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); content: ""; }

.system-map { position: absolute; top: 50%; right: 6%; width: 310px; height: 310px; border: 1px solid rgba(23,24,23,.12); border-radius: 50%; background: rgba(255,255,255,.72); box-shadow: inset 0 0 0 45px rgba(255,255,255,.42),0 26px 60px rgba(31,35,31,.08); transform: translateY(-50%); }
.system-map::before { position: absolute; inset: 55px; border: 1px dashed rgba(23,24,23,.14); border-radius: 50%; content: ""; }
.system-map > i { position: absolute; top: 50%; left: 50%; width: 78%; height: 78%; border: 1px solid rgba(248,179,27,.38); border-radius: 50%; transform: translate(-50%,-50%); }
.map-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: inline-flex; width: 82px; height: 82px; align-items: center; justify-content: center; border-radius: 26px; background: var(--yellow); box-shadow: 0 16px 30px rgba(221,149,7,.22); font-size: .57rem; font-weight: 800; letter-spacing: .05em; transform: translate(-50%,-50%) rotate(8deg); }
.map-node { position: absolute; z-index: 4; display: inline-flex; min-height: 34px; align-items: center; padding-inline: 12px; border: 1px solid var(--line); border-radius: 10px; background: white; box-shadow: 0 9px 22px rgba(31,34,31,.08); font-size: .55rem; font-weight: 700; }
.map-node--one { top: 17%; left: -3%; }.map-node--two { top: 9%; right: 1%; }.map-node--three { right: -6%; bottom: 21%; }
.system-map--acquisition .map-core { color: white; background: var(--blue); }.system-map--experience .map-core { color: #5d478c; background: #ede5ff; }.system-map--intelligence .map-core { color: #2d6f58; background: #dff0e9; }

.case-section { padding-inline: 16px; background: var(--paper); }
.case-shell { position: relative; padding: clamp(54px,7vw,88px); overflow: hidden; border-radius: 32px; color: white; background: #182022; box-shadow: 0 28px 75px rgba(20,27,28,.14); }
.case-shell::before { position: absolute; top: -280px; right: -180px; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle,rgba(42,119,145,.45),transparent 68%); content: ""; filter: blur(12px); }
.case-heading { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.case-heading h2 { max-width: 750px; }
.text-link { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 700; }
.text-link span { font-size: .83rem; }
.text-link--light { color: rgba(255,255,255,.84); }
.case-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.13fr) minmax(400px,.87fr); gap: 12px; margin-top: 56px; }
.case-story { display: flex; min-height: 540px; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.case-story__logo { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.case-story__logo img { width: 125px; height: 48px; padding: 6px; object-fit: contain; border-radius: 9px; background: white; }
.case-story__logo span { color: rgba(255,255,255,.52); font-size: .55rem; font-weight: 700; letter-spacing: .1em; }
.case-story > p { max-width: 580px; margin-block: 55px; color: rgba(255,255,255,.82); font-size: clamp(1.1rem,2vw,1.55rem); line-height: 1.5; letter-spacing: -.025em; }
.case-journey { display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr; align-items: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.case-journey div { display: grid; gap: 5px; }
.case-journey div > span { color: var(--yellow); font-size: .54rem; font-weight: 700; }
.case-journey strong { font-size: .7rem; }.case-journey small { color: rgba(255,255,255,.47); font-size: .55rem; line-height: 1.4; }
.case-journey > i { height: 1px; background: rgba(255,255,255,.2); }
.case-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.case-metrics article { display: flex; min-height: 264px; flex-direction: column; justify-content: end; padding: 25px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.075); }
.case-metrics article > small { margin-bottom: auto; color: rgba(255,255,255,.46); font-size: .52rem; font-weight: 700; letter-spacing: .08em; }
.case-metrics strong { font-size: clamp(2.5rem,4vw,4rem); line-height: .95; letter-spacing: -.065em; }
.case-metrics p { margin-top: 10px; color: rgba(255,255,255,.58); font-size: .62rem; }
.case-metrics__featured { color: var(--ink); border-color: transparent !important; background: var(--yellow) !important; }
.case-metrics__featured > small, .case-metrics__featured p { color: rgba(23,24,23,.6) !important; }
.case-note { position: relative; z-index: 2; margin-top: 18px; color: rgba(255,255,255,.4); font-size: .58rem; }

.method-section { background: white; }
.method-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.method-intro h2 { max-width: 760px; }
.method-intro > p { max-width: 410px; padding-bottom: 8px; color: var(--text); font-size: .93rem; }
.method-flow { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 58px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.method-flow li { position: relative; min-height: 290px; padding: 25px; border-left: 1px solid var(--line); background: #fafaf8; transition: background-color .22s ease,transform .22s var(--ease); }
.method-flow li:first-child { border-left: 0; }
.method-flow li:hover { z-index: 2; background: var(--yellow-soft); transform: translateY(-4px); }
.method-flow li > span { display: inline-flex; width: 35px; height: 35px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: white; font-size: .58rem; font-weight: 700; }
.method-flow li > div { position: absolute; right: 25px; bottom: 25px; left: 25px; }
.method-flow small, .authority-card small { color: var(--muted); font-size: .53rem; font-weight: 700; letter-spacing: .09em; }
.method-flow h3 { margin-top: 8px; font-size: 1rem; letter-spacing: -.025em; }
.method-flow p { margin-top: 10px; color: var(--text); font-size: .68rem; line-height: 1.55; }
.authority-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.authority-card { display: flex; min-height: 160px; align-items: center; gap: 20px; padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 28px rgba(31,34,31,.035); }
.authority-card img { width: 64px; height: 64px; object-fit: contain; }.authority-card > div { min-width: 0; }
.authority-card h3 { margin-top: 3px; font-size: .91rem; }.authority-card p { margin-top: 5px; color: var(--text); font-size: .63rem; line-height: 1.45; }
.authority-card__number { min-width: 73px; font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -.07em; }.authority-card__number sup { color: var(--yellow); font-size: 1rem; }
.authority-card__mark { display: flex; min-width: 76px; align-items: center; gap: 7px; font-size: .75rem; font-weight: 700; }.authority-card__mark i { display: block; width: 24px; height: 1px; background: var(--yellow); }

.contact-section { background: white; padding-top: 0; }
.contact-card { position: relative; display: grid; grid-template-columns: 1fr 330px; min-height: 570px; align-items: center; padding: clamp(45px,7vw,82px); overflow: hidden; border-radius: 30px; color: white; background: var(--ink); }
.contact-card::before { position: absolute; top: -180px; left: 40%; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle,rgba(248,179,27,.16),transparent 68%); content: ""; }
.contact-card__watermark { position: absolute; right: -160px; bottom: -28px; width: 570px; opacity: .045; }
.contact-card__content { position: relative; z-index: 2; max-width: 720px; }
.contact-card h2 { max-width: 710px; }.contact-card__content > p:nth-of-type(2) { max-width: 560px; margin-top: 22px; color: rgba(255,255,255,.63); font-size: .92rem; }
.contact-card__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.button--dark-quiet { border-color: rgba(255,255,255,.13); color: white; background: rgba(255,255,255,.05); }
.button--dark-quiet:hover { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.09); }
.contact-card__aside { position: relative; z-index: 2; display: grid; gap: 10px; }
.contact-card__aside > div { display: grid; grid-template-columns: 1fr 28px 1fr; min-height: 65px; align-items: center; padding-inline: 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.045); }
.contact-card__aside span { font-size: .6rem; font-weight: 600; }.contact-card__aside span:last-child { text-align: right; }.contact-card__aside i { position: relative; height: 1px; background: rgba(255,255,255,.19); }.contact-card__aside i::after { position: absolute; top: 50%; right: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); content: ""; transform: translateY(-50%); }

.site-footer { padding: 78px 0 20px; color: white; background: var(--ink); }
.site-footer__top { display: flex; align-items: start; justify-content: space-between; gap: 50px; padding-bottom: 64px; }
.footer-brand { display: grid; gap: 21px; }.footer-brand img { width: 150px; height: auto; }.footer-brand span { max-width: 350px; color: rgba(255,255,255,.46); font-size: .73rem; }
.footer-links { display: grid; grid-template-columns: repeat(2,160px); gap: 45px; }.footer-links > div { display: grid; gap: 8px; }.footer-links small { margin-bottom: 7px; color: rgba(255,255,255,.34); font-size: .53rem; font-weight: 700; letter-spacing: .1em; }.footer-links a { color: rgba(255,255,255,.68); font-size: .69rem; }.footer-links a:hover { color: var(--yellow); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: .57rem; }

/* Institutional pages and expanded content */
.desktop-nav a[aria-current="page"] { color: var(--ink); }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.page-hero { position: relative; padding: 182px 0 104px; overflow: hidden; background: var(--surface); }
.page-hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(23,24,23,.06) .7px,transparent .7px); background-size: 18px 18px; content: ""; opacity: .32; mask-image: linear-gradient(to bottom,black,transparent 88%); }
.page-hero::after { position: absolute; top: -250px; right: -100px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle,rgba(248,179,27,.22),rgba(210,235,245,.25) 42%,transparent 70%); content: ""; filter: blur(16px); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.62fr); gap: 80px; align-items: end; }
.page-hero h1 { max-width: 900px; margin-top: 22px; font-size: clamp(3.3rem,6.2vw,6.7rem); font-weight: 600; line-height: .98; letter-spacing: -.065em; }
.page-hero h1 em { font-style: normal; color: #a76c00; }
.page-hero__intro { max-width: 570px; color: var(--text); font-size: 1rem; line-height: 1.75; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.page-hero__meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; padding: 1px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--line); box-shadow: var(--shadow-soft); }
.page-hero__meta div { min-height: 118px; padding: 23px; background: rgba(255,255,255,.88); }
.page-hero__meta small { display: block; margin-bottom: 13px; color: var(--muted); font-size: .51rem; font-weight: 700; letter-spacing: .11em; }
.page-hero__meta strong { font-size: .86rem; line-height: 1.45; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; color: var(--muted); font-size: .58rem; font-weight: 600; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--ink); }
.content-section { padding-block: clamp(76px,9vw,132px); background: #fff; }
.content-section--soft { background: var(--surface); }
.content-section--ink { color: #fff; background: var(--ink); }
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.56fr); gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 790px; margin-top: 14px; font-size: clamp(2.35rem,4.6vw,4.5rem); font-weight: 600; line-height: 1.03; letter-spacing: -.052em; }
.section-heading > p { color: var(--text); font-size: .93rem; line-height: 1.72; }
.content-section--ink .section-heading > p { color: rgba(255,255,255,.58); }
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.service-card { position: relative; display: flex; min-height: 360px; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: #fff; box-shadow: 0 15px 46px rgba(23,24,23,.055); transition: transform .3s var(--ease),box-shadow .3s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(23,24,23,.09); }
.service-card::after { position: absolute; right: -80px; bottom: -120px; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle,var(--card-glow,rgba(248,179,27,.2)),transparent 68%); content: ""; }
.service-card__top,.service-card__bottom { position: relative; z-index: 1; }
.service-card__top { display: flex; justify-content: space-between; }
.service-card__index { color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .12em; }
.service-card__glyph { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(23,24,23,.08); border-radius: 20px; background: rgba(255,255,255,.7); box-shadow: 0 16px 32px rgba(23,24,23,.08); }
.service-card__glyph span { position: relative; width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%; }
.service-card__glyph span::before,.service-card__glyph span::after { position: absolute; content: ""; background: var(--yellow); }
.service-card__glyph span::before { top: 14px; left: -7px; width: 44px; height: 3px; }
.service-card__glyph span::after { top: -7px; left: 14px; width: 3px; height: 44px; }
.service-card h3 { max-width: 470px; font-size: clamp(1.75rem,3vw,2.8rem); font-weight: 600; line-height: 1.06; letter-spacing: -.045em; }
.service-card p { max-width: 500px; margin-top: 15px; color: var(--text); font-size: .78rem; line-height: 1.65; }
.service-card .text-link { margin-top: 21px; }
.capability-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.capability-list article { min-height: 220px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.capability-list span { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 48px; border-radius: 50%; color: var(--ink); background: var(--yellow); font-size: .58rem; font-weight: 800; }
.capability-list h3 { font-size: 1.12rem; letter-spacing: -.03em; }
.capability-list p { margin-top: 10px; color: var(--text); font-size: .72rem; line-height: 1.62; }
.process-list { display: grid; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li { display: grid; grid-template-columns: 90px minmax(200px,.65fr) 1fr; gap: 36px; align-items: start; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list > li > span { color: var(--yellow); font-size: .65rem; font-weight: 700; }
.process-list h3 { font-size: 1.35rem; letter-spacing: -.035em; }
.process-list p { max-width: 580px; color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.65; }
.split-feature { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr); gap: 80px; align-items: center; }
.split-feature h2 { margin-top: 15px; font-size: clamp(2.5rem,4.7vw,4.8rem); font-weight: 600; line-height: 1.02; letter-spacing: -.055em; }
.split-feature__copy > p { margin-top: 22px; color: var(--text); font-size: .9rem; line-height: 1.75; }
.system-panel { position: relative; min-height: 490px; padding: 28px; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; background: linear-gradient(145deg,#fff,#f7f7f3); box-shadow: var(--shadow-soft); }
.system-panel::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,24,23,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(23,24,23,.04) 1px,transparent 1px); background-size: 42px 42px; content: ""; }
.system-panel__header { position: relative; z-index: 1; display: flex; justify-content: space-between; color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .08em; }
.system-panel__core { position: absolute; top: 50%; left: 50%; display: grid; width: 130px; height: 130px; place-items: center; border: 1px solid rgba(23,24,23,.1); border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 0 0 22px rgba(248,179,27,.1),0 0 0 55px rgba(23,24,23,.035); transform: translate(-50%,-50%); }
.system-panel__core strong { max-width: 80px; text-align: center; font-size: .73rem; line-height: 1.35; }
.system-panel__node { position: absolute; z-index: 2; min-width: 130px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 14px 30px rgba(23,24,23,.08); font-size: .63rem; font-weight: 700; }
.system-panel__node small { display: block; margin-top: 4px; color: var(--muted); font-size: .49rem; font-weight: 500; }
.system-panel__node--a { top: 86px; left: 38px; }.system-panel__node--b { top: 105px; right: 32px; }.system-panel__node--c { bottom: 72px; left: 55px; }.system-panel__node--d { right: 50px; bottom: 62px; }
.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; }
.proof-strip article { min-height: 180px; padding: 26px; border-left: 1px solid var(--line); }.proof-strip article:first-child { border-left: 0; }
.proof-strip small { color: var(--muted); font-size: .51rem; font-weight: 700; letter-spacing: .1em; }
.proof-strip strong { display: block; margin-top: 36px; font-size: 2.35rem; line-height: 1; letter-spacing: -.055em; }
.proof-strip p { margin-top: 8px; color: var(--muted); font-size: .61rem; }
.case-list { display: grid; gap: 18px; }
.case-item { display: grid; grid-template-columns: minmax(270px,.72fr) minmax(0,1.28fr); min-height: 430px; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.case-item__visual { position: relative; display: flex; min-height: 360px; flex-direction: column; justify-content: space-between; padding: 34px; overflow: hidden; background: var(--case-bg,#f5eedc); }
.case-item__visual::after { position: absolute; right: -70px; bottom: -90px; width: 310px; height: 310px; border: 1px solid rgba(23,24,23,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.18),0 0 0 90px rgba(255,255,255,.12); content: ""; }
.case-item__visual img { position: relative; z-index: 1; width: 180px; height: 65px; object-fit: contain; object-position: left center; filter: grayscale(1); }
.case-item__visual span { position: relative; z-index: 1; font-size: .57rem; font-weight: 700; letter-spacing: .1em; }
.case-item__content { display: flex; flex-direction: column; justify-content: space-between; padding: 44px; }
.case-item__content h2 { max-width: 650px; font-size: clamp(2rem,3.8vw,3.7rem); font-weight: 600; line-height: 1.04; letter-spacing: -.05em; }
.case-item__content > p { max-width: 680px; margin-top: 18px; color: var(--text); font-size: .82rem; line-height: 1.7; }
.case-item__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.case-item__metrics div { padding-top: 17px; border-top: 1px solid var(--line); }
.case-item__metrics strong { display: block; font-size: 1.55rem; letter-spacing: -.045em; }.case-item__metrics small { color: var(--muted); font-size: .52rem; }
.statement { max-width: 1010px; margin-inline: auto; text-align: center; }
.statement h2 { font-size: clamp(2.7rem,5.5vw,5.8rem); font-weight: 600; line-height: 1; letter-spacing: -.06em; }
.statement p { max-width: 680px; margin: 27px auto 0; color: var(--text); font-size: .94rem; line-height: 1.75; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 58px; }
.principles article { min-height: 265px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.principles small { color: #a76c00; font-size: .54rem; font-weight: 700; letter-spacing: .1em; }.principles h3 { margin-top: 82px; font-size: 1.25rem; letter-spacing: -.035em; }.principles p { margin-top: 10px; color: var(--text); font-size: .72rem; line-height: 1.62; }
.contact-layout { display: grid; grid-template-columns: minmax(0,.82fr) minmax(440px,1.18fr); gap: 72px; align-items: start; }
.contact-layout h1 { margin-top: 19px; font-size: clamp(3.2rem,6vw,6.1rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; }
.contact-layout__copy > p { max-width: 540px; margin-top: 24px; color: var(--text); font-size: .92rem; line-height: 1.72; }
.contact-direct { display: grid; gap: 10px; margin-top: 34px; }.contact-direct a { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: .73rem; font-weight: 700; }
.contact-form { display: grid; gap: 15px; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.field { display: grid; gap: 8px; }.field label { font-size: .58rem; font-weight: 700; }.field input,.field select,.field textarea { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: var(--surface); color: var(--ink); font: inherit; font-size: .72rem; transition: border .2s,box-shadow .2s; }.field textarea { min-height: 126px; padding-top: 15px; resize: vertical; }.field input:focus,.field select:focus,.field textarea:focus { border-color: #d99a10; box-shadow: 0 0 0 3px rgba(248,179,27,.16); }
.form-note { color: var(--muted); font-size: .53rem; line-height: 1.5; }
.form-status { min-height: 20px; color: #62645e; font-size: .62rem; }
.footer-contact { max-width: 450px; margin-top: 27px; color: rgba(255,255,255,.55); font-size: .67rem; line-height: 1.7; }.footer-contact a:hover { color: var(--yellow); }
.footer-links--expanded { grid-template-columns: repeat(3,minmax(145px,1fr)); gap: 36px; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 15px; }

@media (max-width: 1020px) {
  .page-hero__grid,.section-heading,.split-feature,.contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .page-hero__meta { max-width: 680px; }.capability-list { grid-template-columns: repeat(2,1fr); }.proof-strip { grid-template-columns: repeat(2,1fr); }.proof-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }.proof-strip article:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-links--expanded { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 720px) {
  .page-hero { padding: 125px 0 72px; }.page-hero h1,.contact-layout h1 { font-size: clamp(2.65rem,12vw,4.4rem); }.page-hero__grid { gap: 34px; }.page-hero__meta { grid-template-columns: 1fr 1fr; }.page-hero__meta div { min-height: 98px; padding: 18px; }
  .section-heading { gap: 20px; margin-bottom: 34px; }.section-heading h2 { font-size: clamp(2.15rem,10vw,3.3rem); }.service-grid,.capability-list,.principles { grid-template-columns: 1fr; }.service-card { min-height: 330px; padding: 24px; }.service-card__glyph { width: 60px; height: 60px; }.capability-list article { min-height: 190px; }.capability-list span { margin-bottom: 35px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 12px; }.process-list p { grid-column: 2; }.split-feature { gap: 34px; }.system-panel { min-height: 430px; padding: 20px; }.system-panel__core { width: 105px; height: 105px; }.system-panel__node { min-width: 105px; padding: 11px; font-size: .56rem; }.system-panel__node--a { top: 72px; left: 15px; }.system-panel__node--b { top: 88px; right: 15px; }.system-panel__node--c { bottom: 68px; left: 18px; }.system-panel__node--d { right: 16px; bottom: 50px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }.proof-strip article { min-height: 145px; padding: 19px; }.proof-strip strong { margin-top: 25px; font-size: 1.9rem; }
  .case-item { grid-template-columns: 1fr; }.case-item__visual { min-height: 265px; }.case-item__content { padding: 27px; }.case-item__metrics { gap: 6px; }.case-item__metrics strong { font-size: 1.15rem; }
  .form-row { grid-template-columns: 1fr; }.contact-form { padding: 22px; }.footer-links--expanded { grid-template-columns: repeat(2,1fr); }.footer-links--expanded > div:last-child { grid-column: 1/-1; }
}

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease),transform .65s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero__layout { grid-template-columns: 1fr; gap: 20px; }.hero__content { max-width: 760px; }.growth-console { min-height: 570px; }.console-window { right: 4%; left: 4%; }.console-note--bottom { right: 0; }
  .ecosystem-visual section { padding-right: 48%; }.system-map { right: 3%; width: 280px; height: 280px; }
  .case-grid { grid-template-columns: 1fr; }.case-story { min-height: 470px; }
  .method-flow { grid-template-columns: repeat(2,1fr); }.method-flow li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }.method-flow li:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .site-header { width: calc(100% - 24px); top: 10px; }.site-header__inner { min-height: 62px; }.desktop-nav,.header-cta { display: none; }.menu-toggle { display: block; grid-column: 3; }.brand { width: 108px; }
  .hero { padding-top: 132px; }.hero h1 { font-size: clamp(3rem,9.5vw,4.8rem); }.client-strip__logos { grid-template-columns: repeat(3,1fr); }.client-strip__logos img:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }.client-strip__logos img:nth-child(n+4) { border-top: 1px solid var(--line); }
  .ecosystem-board { grid-template-columns: 1fr; }.ecosystem-tabs { display: grid; grid-template-columns: repeat(4,180px); overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }.ecosystem-tabs button { min-height: 112px; }.ecosystem-visual section { min-height: 600px; padding: 52px 48% 45px 42px; }
  .case-heading { align-items: start; flex-direction: column; }.case-metrics article { min-height: 220px; }
  .method-intro { grid-template-columns: 1fr; gap: 24px; }.authority-grid { grid-template-columns: 1fr; }.authority-card { min-height: 135px; }
  .contact-card { grid-template-columns: 1fr; }.contact-card__aside { display: none; }.contact-card__content { max-width: 720px; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 22px; }.container { width: calc(100% - 28px); }.section { padding-block: 82px; }
  .site-header { width: calc(100% - 18px); top: 8px; }.site-header__inner { min-height: 58px; padding: 5px 6px; border-radius: 15px; }.brand { width: 102px; height: 44px; padding-inline: 10px; }.brand img { width: 91px; }.menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: auto; padding: 118px 0 54px; }.hero__wash { top: 70px; right: -80%; width: 170%; height: 620px; }.hero__layout { gap: 15px; }.eyebrow { font-size: .58rem; line-height: 1.35; }.hero h1 { margin-top: 18px; font-size: clamp(2.6rem,12vw,4rem); line-height: 1.04; }.hero h1 em::after { height: 8px; }.hero__lede { margin-top: 20px; font-size: .9rem; }.hero__actions { align-items: stretch; flex-direction: column; margin-top: 25px; }.hero__actions .button { width: 100%; }.hero__trust { margin-top: 34px; padding-top: 20px; }.hero__trust li { display: grid; gap: 6px; padding-inline: 9px; }.hero__trust strong { font-size: 1.15rem; }.hero__trust span { font-size: .52rem; }
  .growth-console { min-height: 430px; margin-top: 18px; }.console-window { top: 26px; right: 0; left: 0; min-height: 390px; border-radius: 16px; transform: none; }.console-window__bar { height: 40px; padding-inline: 12px; }.console-summary { padding: 16px 14px 10px; }.console-summary > span { display: none; }.console-kpis { gap: 5px; padding-inline: 14px; }.console-kpis article { min-height: 80px; padding: 9px; }.console-kpis strong { font-size: .95rem; }.console-kpis article > span { display: none; }.console-main { grid-template-columns: 1fr; padding: 6px 14px 14px; }.performance-chart { min-height: 200px; padding: 11px; }.channel-stack { display: none; }.performance-chart__plot { height: 130px; }.console-note { display: none; }
  .client-strip { margin-top: 44px; }.client-strip > p { font-size: .54rem; }.client-strip__logos { grid-template-columns: repeat(2,1fr); }.client-strip__logos img { height: 64px; padding: 12px 20px; border-top: 1px solid var(--line); }.client-strip__logos img:nth-child(odd) { border-left: 0; }.client-strip__logos img:nth-child(even) { border-left: 1px solid var(--line); }
  .section-intro h2,.case-heading h2,.method-intro h2,.contact-card h2 { font-size: clamp(2.15rem,10.5vw,3.3rem); }.section-intro > p:last-child { font-size: .87rem; }
  .ecosystem-board { margin-top: 38px; }.ecosystem-tabs { grid-template-columns: repeat(4,145px); padding: 9px; }.ecosystem-tabs button { min-height: 100px; padding: 13px; }.ecosystem-tabs button > span { display: none; }.ecosystem-tabs strong { font-size: .76rem; }.ecosystem-tabs small { font-size: .52rem; }.ecosystem-visual section { min-height: 720px; padding: 37px 22px 330px; }.ecosystem-visual h3 { font-size: 2.25rem; }.ecosystem-visual section > p:nth-of-type(2) { font-size: .81rem; }.ecosystem-visual ul { gap: 0 13px; }.ecosystem-visual li { font-size: .59rem; }.system-map { top: auto; right: 50%; bottom: 25px; width: 260px; height: 260px; transform: translateX(50%); }
  .case-section { padding-inline: 0; }.case-shell { width: calc(100% - 18px); padding: 44px 16px; border-radius: 24px; }.case-heading { gap: 22px; }.case-grid { margin-top: 34px; }.case-story { min-height: 500px; padding: 21px; }.case-story > p { margin-block: 38px; font-size: 1rem; }.case-journey { grid-template-columns: 1fr; gap: 16px; }.case-journey > i { display: none; }.case-metrics { grid-template-columns: repeat(2,1fr); gap: 8px; }.case-metrics article { min-height: 190px; padding: 17px; }.case-metrics strong { font-size: clamp(2rem,10vw,3rem); }.case-metrics p { font-size: .55rem; }
  .method-flow { grid-template-columns: 1fr; margin-top: 38px; }.method-flow li { min-height: 220px; border-top: 1px solid var(--line); border-left: 0; }.method-flow li:first-child { border-top: 0; }.method-flow li:nth-child(4) { border-left: 0; }.authority-card { padding: 18px; }.authority-card p { font-size: .59rem; }
  .contact-section { padding-top: 0; }.contact-card { width: calc(100% - 18px); min-height: 610px; padding: 45px 22px; border-radius: 24px; }.contact-card__content > p:nth-of-type(2) { font-size: .84rem; }.contact-card__actions { align-items: stretch; flex-direction: column; }.contact-card__actions .button { width: 100%; }.button--dark-quiet { font-size: .65rem; }
  .site-footer { padding: 60px 18px 20px; }.site-footer__top { align-items: start; flex-direction: column; padding-bottom: 48px; }.footer-links { width: 100%; grid-template-columns: repeat(2,1fr); gap: 28px; }.site-footer__bottom { align-items: start; flex-direction: column; gap: 7px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.45rem; }.case-metrics { grid-template-columns: 1fr; }.case-metrics article { min-height: 165px; }.authority-card { gap: 12px; }.authority-card__number,.authority-card__mark { min-width: 63px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Home hero: clean radar direction */
.hero--radar { min-height: 960px; padding: 166px 0 0; isolation: isolate; background: #fbfbf8; }
.hero--radar::before { opacity: .58; background-image: linear-gradient(rgba(23,24,23,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(23,24,23,.035) 1px,transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom,black 0%,black 76%,transparent 100%); }
.hero--radar::after { position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 20% 48%,rgba(255,232,174,.3),transparent 26%),radial-gradient(circle at 82% 45%,rgba(207,229,241,.3),transparent 28%); content: ""; }
.hero-radar__inner { position: relative; z-index: 2; }
.hero-radar__content { max-width: 1050px; margin-inline: auto; text-align: center; }
.hero-badge { display: inline-flex; min-height: 31px; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(255,255,255,.72); box-shadow: 0 10px 28px rgba(23,24,23,.05); font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(10px); }
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(248,179,27,.15); }
.hero--radar h1 { max-width: 1050px; margin: 25px auto 0; font-size: clamp(3.7rem,6.5vw,6.5rem); font-weight: 700; line-height: .96; letter-spacing: -.07em; }
.hero--radar h1 em { display: inline-block; z-index: 1; }
.hero--radar h1 em::after { right: -5px; bottom: 3px; left: -5px; height: .25em; border-radius: 4px; background: rgba(248,179,27,.82); transform: rotate(-.5deg); }
.hero--radar h1 em::before { position: absolute; top: 42%; right: -36px; width: 52px; height: 52px; border: 2px solid rgba(23,24,23,.72); border-radius: 50%; content: ""; transform: translateY(-50%); box-shadow: inset 0 0 0 10px #fbfbf8,inset 0 0 0 11px rgba(23,24,23,.35); }
.hero--radar .hero__lede { max-width: 740px; margin: 27px auto 0; font-size: 1rem; line-height: 1.72; }
.hero--radar .hero__actions { justify-content: center; margin-top: 27px; }
.target-mini { position: relative; width: 21px; height: 21px; border: 1px solid currentColor; border-radius: 50%; }
.target-mini::before,.target-mini::after { position: absolute; top: 50%; left: 50%; content: ""; background: currentColor; transform: translate(-50%,-50%); }.target-mini::before { width: 29px; height: 1px; }.target-mini::after { width: 1px; height: 29px; }
.hero-radar__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; margin-top: 22px; }
.hero-radar__trust li { display: flex; align-items: center; gap: 7px; color: var(--text); font-size: .61rem; font-weight: 600; }
.hero-radar__trust li span { display: grid; width: 17px; height: 17px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #5d805e; background: rgba(255,255,255,.8); font-size: .48rem; }
.radar-scene { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.radar-scene__ring { position: absolute; top: 58%; left: 50%; border: 1px solid rgba(17,79,112,.09); border-radius: 50%; transform: translate(-50%,-50%); }
.radar-scene__ring--one { width: 590px; height: 590px; }.radar-scene__ring--two { width: 850px; height: 850px; }.radar-scene__ring--three { width: 1120px; height: 1120px; }
.radar-scene__sweep { position: absolute; top: 58%; left: 50%; width: 1120px; height: 1120px; border-radius: 50%; opacity: .42; background: conic-gradient(from 0deg,transparent 0 320deg,rgba(17,79,112,.12) 348deg,rgba(248,179,27,.16) 359deg,transparent 360deg); transform: translate(-50%,-50%); animation: radar-sweep 14s linear infinite; mask-image: radial-gradient(circle,transparent 0 9%,black 10% 52%,transparent 70%); }
.radar-scene__signal { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(248,179,27,.25); animation: radar-pulse 3.6s ease-out infinite; }.radar-scene__signal--one { top: 48%; left: 20%; }.radar-scene__signal--two { top: 36%; right: 18%; animation-delay: 1.7s; background: #5aae89; }
.radar-scene__coord { position: absolute; bottom: 24px; color: rgba(23,24,23,.28); font-size: .52rem; font-weight: 600; letter-spacing: .12em; }.radar-scene__coord--left { left: 7%; }.radar-scene__coord--right { right: 7%; }
.hero-radar__stage { position: relative; height: 270px; margin-top: 22px; }
.radar-target { position: absolute; bottom: -115px; left: 50%; width: 315px; height: 315px; border: 1px solid rgba(23,24,23,.1); border-radius: 50%; background: rgba(255,255,255,.7); box-shadow: 0 -20px 55px rgba(23,24,23,.08),0 0 0 18px rgba(255,255,255,.45); transform: translateX(-50%); backdrop-filter: blur(6px); }
.radar-target > span { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(17,79,112,.22); border-radius: 50%; transform: translate(-50%,-50%); }.radar-target > span:nth-child(1) { width: 230px; height: 230px; }.radar-target > span:nth-child(2) { width: 138px; height: 138px; }.radar-target > span:nth-child(3) { width: 62px; height: 62px; border: 10px solid var(--yellow); background: #fff; box-shadow: 0 0 0 1px rgba(23,24,23,.08); }
.radar-target::before,.radar-target::after { position: absolute; z-index: 2; top: 50%; left: 50%; content: ""; background: rgba(23,24,23,.18); transform: translate(-50%,-50%); }.radar-target::before { width: 270px; height: 1px; }.radar-target::after { width: 1px; height: 270px; }
.radar-target i { position: absolute; z-index: 4; top: 50%; left: 50%; width: 13px; height: 13px; border: 3px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); transform: translate(-50%,-50%); }.radar-target b { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 230deg,transparent 0 300deg,rgba(248,179,27,.13) 340deg,transparent 360deg); animation: target-spin 9s linear infinite; }
.radar-channel { position: absolute; z-index: 4; display: grid; grid-template-columns: 34px 1fr 7px; gap: 10px; align-items: center; min-width: 178px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.95); border-radius: 14px; background: rgba(255,255,255,.88); box-shadow: 0 18px 42px rgba(23,24,23,.1); backdrop-filter: blur(12px); animation: channel-float 5s ease-in-out infinite; }
.radar-channel--left { bottom: 77px; left: 11%; }.radar-channel--right { right: 11%; bottom: 82px; animation-delay: -2.4s; }.radar-channel .channel-code { width: 34px; height: 34px; font-size: .55rem; }.radar-channel div { display: grid; }.radar-channel small { color: var(--muted); font-size: .43rem; font-weight: 700; letter-spacing: .1em; }.radar-channel strong { margin-top: 1px; font-size: .62rem; }.radar-channel > i { width: 7px; height: 7px; border-radius: 50%; background: #44a77e; box-shadow: 0 0 0 4px rgba(68,167,126,.11); }
@keyframes radar-sweep { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes target-spin { to { transform: rotate(360deg); } }
@keyframes radar-pulse { 0% { box-shadow: 0 0 0 0 rgba(248,179,27,.3); opacity: 0; } 15% { opacity: 1; } 80% { box-shadow: 0 0 0 28px rgba(248,179,27,0); opacity: 1; } 100% { box-shadow: 0 0 0 30px rgba(248,179,27,0); opacity: 0; } }
@keyframes channel-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.logo-marquee { position: relative; z-index: 3; padding: 39px 0 45px; overflow: hidden; border-block: 1px solid var(--line); background: #fff; }
.logo-marquee .container > p { color: var(--muted); font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.logo-marquee__viewport { margin-top: 24px; overflow: hidden; mask-image: linear-gradient(90deg,transparent,black 8%,black 92%,transparent); }
.logo-marquee__track { display: flex; width: max-content; animation: logo-scroll 34s linear infinite; }.logo-marquee__viewport:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__group { display: flex; flex-shrink: 0; align-items: center; gap: 64px; padding-right: 64px; }
.logo-marquee__group img { width: 154px; height: 64px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s,opacity .2s,transform .2s; }.logo-marquee__group img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
@keyframes logo-scroll { to { transform: translateX(-50%); } }

.system-showcase { overflow: hidden; padding-block: clamp(72px,7vw,104px); background: #fff; }
.system-showcase__header { max-width: 820px; margin-bottom: clamp(34px,4.5vw,58px); }
.system-showcase__header h2 { max-width: 760px; margin-top: 15px; font-size: clamp(2.25rem,3.65vw,3.65rem); font-weight: 600; line-height: 1.03; letter-spacing: -.052em; }
.system-showcase__grid { display: grid; grid-template-columns: minmax(280px,.58fr) minmax(580px,1.42fr); gap: clamp(44px,6vw,82px); align-items: start; }
.system-showcase__copy > p { color: var(--text); font-size: .86rem; line-height: 1.75; }
.system-showcase__copy ul { display: grid; gap: 0; margin: 31px 0 25px; border-top: 1px solid var(--line); }
.system-showcase__copy li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }.system-showcase__copy li > span { color: #9a6900; font-size: .55rem; font-weight: 700; }.system-showcase__copy li div { display: grid; gap: 3px; }.system-showcase__copy li strong { font-size: .72rem; }.system-showcase__copy li small { color: var(--muted); font-size: .58rem; line-height: 1.5; }
.system-showcase .growth-console { min-height: 560px; }.system-showcase .console-window { top: 18px; }.system-showcase .console-note--bottom { right: -2%; }

@media (max-width: 1080px) {
  .hero--radar { min-height: 920px; padding-top: 148px; }.hero--radar h1 { font-size: clamp(3.6rem,8vw,5.8rem); }.system-showcase__grid { grid-template-columns: 1fr; }.system-showcase__copy { max-width: 720px; }.system-showcase .growth-console { width: min(760px,100%); margin-inline: auto; }
}

@media (max-width: 720px) {
  .hero--radar { min-height: 790px; padding: 119px 0 0; }.hero--radar::before { background-size: 46px 46px; }.hero-badge { max-width: 95%; min-height: 28px; padding-inline: 11px; font-size: .48rem; letter-spacing: .06em; }.hero--radar h1 { margin-top: 20px; font-size: clamp(2.7rem,12.5vw,4.25rem); line-height: .98; }.hero--radar h1 em::after { bottom: 1px; }.hero--radar h1 em::before { right: -22px; width: 34px; height: 34px; box-shadow: inset 0 0 0 6px #fbfbf8,inset 0 0 0 7px rgba(23,24,23,.3); }.hero--radar .hero__lede { margin-top: 21px; font-size: .82rem; line-height: 1.63; }.hero--radar .hero__actions { align-items: stretch; flex-direction: column; margin-top: 23px; }.hero--radar .hero__actions .button { width: 100%; }.hero-radar__trust { gap: 10px 15px; margin-top: 18px; }.hero-radar__trust li { font-size: .51rem; }.radar-scene__ring--one { width: 430px; height: 430px; }.radar-scene__ring--two { width: 620px; height: 620px; }.radar-scene__ring--three,.radar-scene__sweep { width: 810px; height: 810px; }.hero-radar__stage { height: 205px; margin-top: 11px; }.radar-target { bottom: -125px; width: 250px; height: 250px; }.radar-target > span:nth-child(1) { width: 185px; height: 185px; }.radar-target > span:nth-child(2) { width: 112px; height: 112px; }.radar-target::before { width: 215px; }.radar-target::after { height: 215px; }.radar-channel { min-width: 137px; padding: 8px; grid-template-columns: 28px 1fr 6px; gap: 7px; }.radar-channel .channel-code { width: 28px; height: 28px; }.radar-channel strong { font-size: .52rem; }.radar-channel small { font-size: .37rem; }.radar-channel--left { bottom: 45px; left: 0; }.radar-channel--right { right: 0; bottom: 50px; }.radar-scene__coord { display: none; }
  .logo-marquee { padding: 32px 0 37px; }.logo-marquee__group { gap: 38px; padding-right: 38px; }.logo-marquee__group img { width: 125px; height: 55px; }.logo-marquee__track { animation-duration: 27s; }
  .system-showcase__grid { gap: 25px; }.system-showcase__copy h2 { font-size: clamp(2.35rem,10vw,3.4rem); }.system-showcase .growth-console { min-height: 445px; margin-top: 10px; }.system-showcase .console-window { top: 27px; }
}

@media (max-width: 390px) {
  .hero--radar { min-height: 780px; }.hero--radar h1 { font-size: 2.62rem; }.hero-radar__trust { gap: 8px; }.radar-channel--left { left: -6px; }.radar-channel--right { right: -6px; }
}

/* Clean refinement: quieter hero, authentic platform marks, larger client logos */
.hero--radar { min-height: 900px; padding-top: 158px; }
.hero--radar::before { opacity: .34; background-size: 76px 76px; }
.hero--radar::after { opacity: .58; }
.hero-badge { border-color: rgba(23,24,23,.07); box-shadow: 0 7px 20px rgba(23,24,23,.035); }
.hero--radar h1 { max-width: 980px; font-size: clamp(3.65rem,6.05vw,6rem); }
.hero--radar h1 em::before { opacity: .62; }
.radar-scene__ring { border-color: rgba(17,79,112,.055); }
.radar-scene__ring--three { opacity: .38; }
.radar-scene__sweep { opacity: .2; animation-duration: 18s; }
.radar-scene__signal--two { display: none; }
.radar-scene__signal--one { opacity: .55; }
.radar-scene__coord { opacity: .45; }
.hero-radar__stage { height: 235px; margin-top: 10px; }
.radar-target { bottom: -125px; width: 280px; height: 280px; border-color: rgba(23,24,23,.075); box-shadow: 0 -16px 46px rgba(23,24,23,.055),0 0 0 15px rgba(255,255,255,.35); }
.radar-target > span:nth-child(1) { width: 205px; height: 205px; }.radar-target > span:nth-child(2) { width: 122px; height: 122px; }.radar-target > span:nth-child(3) { width: 54px; height: 54px; border-width: 8px; }.radar-target::before { width: 238px; }.radar-target::after { height: 238px; }.radar-target b { opacity: .45; animation-duration: 13s; }
.radar-channel { min-width: 170px; padding: 10px 12px; grid-template-columns: 36px 1fr 6px; border-color: rgba(23,24,23,.06); background: rgba(255,255,255,.76); box-shadow: 0 13px 30px rgba(23,24,23,.065); animation-duration: 7s; }
.radar-channel--left { bottom: 58px; left: 14%; }.radar-channel--right { right: 14%; bottom: 63px; }
.platform-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: rgba(255,255,255,.82); }
.platform-mark img { width: 25px; height: 25px; object-fit: contain; }
.radar-channel--right .platform-mark img { width: 27px; }
.logo-marquee { padding-block: 36px 40px; }
.logo-marquee__viewport { margin-top: 16px; }
.logo-marquee__group { gap: 50px; padding-right: 50px; }
.logo-marquee__group img { width: 190px; height: 82px; object-fit: cover; object-position: center; mix-blend-mode: multiply; filter: none; opacity: .7; }
.logo-marquee__group img:hover { filter: none; opacity: 1; }

@media (max-width: 1080px) {
  .hero--radar { min-height: 870px; padding-top: 143px; }.radar-channel--left { left: 7%; }.radar-channel--right { right: 7%; }
}

@media (max-width: 720px) {
  .hero--radar { min-height: 745px; padding-top: 116px; }.hero--radar::before { background-size: 54px 54px; }.hero--radar h1 { font-size: clamp(2.65rem,11.8vw,4rem); }.hero-radar__stage { height: 175px; }.radar-target { bottom: -130px; width: 220px; height: 220px; }.radar-target > span:nth-child(1) { width: 165px; height: 165px; }.radar-target > span:nth-child(2) { width: 100px; height: 100px; }.radar-target::before { width: 190px; }.radar-target::after { height: 190px; }.radar-channel { min-width: 132px; grid-template-columns: 29px 1fr 5px; padding: 7px; }.platform-mark { width: 29px; height: 29px; }.platform-mark img { width: 21px; height: 21px; }.radar-channel--right .platform-mark img { width: 22px; }.radar-channel--left { bottom: 33px; left: 0; }.radar-channel--right { right: 0; bottom: 37px; }
  .logo-marquee__group { gap: 30px; padding-right: 30px; }.logo-marquee__group img { width: 155px; height: 70px; }
}

/* Editorial hierarchy and tool ecosystem */
.hero--radar h1 { max-width: 940px; font-size: clamp(3.4rem,5.45vw,5.45rem); font-weight: 600; line-height: 1.01; letter-spacing: -.062em; }
.hero--radar h1 em { font-weight: 600; }
.hero--radar h1 em::before { display: none; }
.hero--radar h1 em::after { bottom: 2px; height: .19em; opacity: .8; }
.hero__lede strong,.section-intro > p strong,.system-showcase__copy > p strong,.method-intro > p strong { color: var(--ink-soft); font-weight: 600; }
.tool-ecosystem { position: absolute; z-index: 5; top: 30px; left: 50%; display: flex; width: min(790px,88%); flex-wrap: wrap; justify-content: center; gap: 8px; transform: translateX(-50%); }
.tool-chip { display: inline-flex; min-height: 41px; align-items: center; gap: 9px; padding: 5px 13px 5px 7px; border: 1px solid rgba(23,24,23,.065); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.78); box-shadow: 0 9px 22px rgba(23,24,23,.045); font-size: .57rem; font-weight: 600; backdrop-filter: blur(10px); }
.tool-chip__brand,.tool-chip__monogram { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; border-radius: 50%; background: rgba(246,246,243,.9); font-style: normal; }
.tool-chip__brand img { width: 19px; height: 19px; object-fit: contain; }
.tool-chip__brand--decoy { background: var(--ink); }.tool-chip__brand--decoy img { width: 17px; height: 17px; }
.tool-chip__monogram { font-size: .48rem; font-weight: 800; letter-spacing: -.02em; }
.tool-chip__monogram--rd { color: #fff; background: #6758d6; }.tool-chip__monogram--ai { color: #255a49; background: #e4f2ec; font-size: .75rem; }.tool-chip__monogram--gtm { color: #2368c4; background: #e7f0fb; }

@media (max-width: 1080px) {
  .hero--radar h1 { font-size: clamp(3.35rem,7.2vw,5.15rem); }
}

@media (max-width: 720px) {
  .hero--radar { min-height: 790px; }.hero--radar h1 { font-size: clamp(2.55rem,11vw,3.75rem); line-height: 1.02; }.tool-ecosystem { top: 13px; width: calc(100% + 12px); gap: 6px; }.tool-chip { min-height: 34px; gap: 6px; padding: 4px 9px 4px 5px; font-size: .47rem; }.tool-chip__brand,.tool-chip__monogram { width: 25px; height: 25px; flex-basis: 25px; }.tool-chip__brand img { width: 16px; height: 16px; }.tool-chip__brand--decoy img { width: 14px; height: 14px; }.hero-radar__stage { height: 220px; }.radar-target { bottom: -130px; }
}

/* Orbiting platform ecosystem */
.tool-ecosystem { inset: 0; width: 100%; transform: none; pointer-events: none; }
.tool-chip { position: absolute; animation: tool-drift 8s ease-in-out infinite; }
.tool-chip--google { top: 23px; left: 7%; }.tool-chip--meta { top: 19px; right: 7%; animation-delay: -2.1s; }.tool-chip--rd { top: 96px; left: 21%; animation-delay: -4.7s; }.tool-chip--openai { top: 91px; right: 22%; animation-delay: -1.2s; }.tool-chip--claude { top: 158px; left: 7%; animation-delay: -6.2s; }.tool-chip--gtm { top: 153px; right: 7%; animation-delay: -3.4s; }.tool-chip--hub { top: 181px; left: 50%; translate: -50% 0; animation-delay: -5.1s; }
.tool-chip__brand--wide { width: 84px; flex-basis: 84px; border-radius: 8px; background: transparent; }.tool-chip__brand--wide img { width: 78px; height: 20px; }
.tool-chip--rd { padding-right: 8px; }
@keyframes tool-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

@media (max-width: 720px) {
  .hero--radar { min-height: 825px; }.tool-ecosystem { top: 0; left: 0; width: 100%; transform: none; }.tool-chip--google { top: 0; left: 0; }.tool-chip--meta { top: 2px; right: 0; }.tool-chip--rd { top: 43px; left: 8%; }.tool-chip--openai { top: 43px; right: 7%; }.tool-chip--claude { top: 86px; left: 0; }.tool-chip--gtm { top: 88px; right: 0; }.tool-chip--hub { top: 132px; left: 50%; }.tool-chip__brand--wide { width: 66px; flex-basis: 66px; }.tool-chip__brand--wide img { width: 61px; height: 17px; }
}

/* Shorter hero and a controlled yellow contrast section */
.hero--radar { min-height: 755px; padding-top: 146px; }
.hero-radar__stage { height: 145px; margin-top: 13px; }
.tool-chip--google { top: 6px; left: 7%; }.tool-chip--meta { top: 3px; right: 7%; }.tool-chip--rd { top: 61px; left: 20%; }.tool-chip--openai { top: 57px; right: 21%; }.tool-chip--claude { top: 68px; left: 4%; }.tool-chip--gtm { top: 65px; right: 4%; }.tool-chip--hub { top: 99px; }
.radar-scene__coord { bottom: 14px; }

.yellow-insight { position: relative; padding-block: clamp(78px,8vw,116px); overflow: hidden; background: var(--yellow); }
.yellow-insight::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,24,23,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(23,24,23,.035) 1px,transparent 1px); background-size: 72px 72px; content: ""; mask-image: linear-gradient(90deg,transparent,black 18%,black 82%,transparent); }
.yellow-insight__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(370px,.72fr); gap: clamp(55px,8vw,110px); align-items: end; }
.yellow-insight .eyebrow { color: rgba(23,24,23,.62); }.yellow-insight .eyebrow > span { background: var(--ink); box-shadow: 0 0 0 4px rgba(23,24,23,.1); }
.yellow-insight h2 { max-width: 760px; margin-top: 15px; font-size: clamp(2.8rem,5vw,5.1rem); font-weight: 600; line-height: 1; letter-spacing: -.058em; }
.yellow-insight__copy > p { max-width: 550px; color: rgba(23,24,23,.72); font-size: .88rem; line-height: 1.75; }.yellow-insight__copy > p strong { color: var(--ink); font-weight: 600; }
.yellow-insight__signals { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }.yellow-insight__signals span { padding: 7px 10px; border: 1px solid rgba(23,24,23,.12); border-radius: 999px; background: rgba(255,255,255,.22); font-size: .52rem; font-weight: 600; }
.button--ink { margin-top: 26px; color: #fff; background: var(--ink); box-shadow: 0 12px 28px rgba(23,24,23,.13); }.button--ink:hover { background: #292b29; box-shadow: 0 16px 32px rgba(23,24,23,.18); }

@media (max-width: 900px) {
  .yellow-insight__grid { grid-template-columns: 1fr; gap: 30px; }.yellow-insight__copy { max-width: 650px; }
}

@media (max-width: 720px) {
  .hero--radar { min-height: 715px; padding-top: 112px; }.hero-radar__stage { height: 152px; margin-top: 8px; }.tool-chip--google { top: 0; left: 0; }.tool-chip--meta { top: 1px; right: 0; }.tool-chip--rd { top: 37px; left: 8%; }.tool-chip--openai { top: 37px; right: 7%; }.tool-chip--claude { top: 74px; left: 0; }.tool-chip--gtm { top: 76px; right: 0; }.tool-chip--hub { top: 111px; }.yellow-insight { padding-block: 72px; }.yellow-insight::before { background-size: 48px 48px; }.yellow-insight h2 { font-size: clamp(2.45rem,10.5vw,3.5rem); }.yellow-insight__copy > p { font-size: .8rem; }.yellow-insight__signals { gap: 5px; }.yellow-insight__signals span { font-size: .47rem; }.yellow-insight .button { width: 100%; }
}

.hero-radar__content .hero-radar__stage { margin-top: 4px; }

/* Desktop hero composition: tools use the open space around the copy */
.hero-radar__content { position: relative; z-index: 2; }
.hero-radar__inner > .hero-radar__stage { position: absolute; z-index: 3; inset: -42px -64px -78px; height: auto; margin: 0; pointer-events: none; }
.hero-radar__inner > .hero-radar__stage .tool-chip--google { top: 88px; left: 0; }
.hero-radar__inner > .hero-radar__stage .tool-chip--meta { top: 108px; right: 0; }
.hero-radar__inner > .hero-radar__stage .tool-chip--rd { top: 224px; left: -3%; }
.hero-radar__inner > .hero-radar__stage .tool-chip--openai { top: 242px; right: -3%; }
.hero-radar__inner > .hero-radar__stage .tool-chip--claude { top: 354px; left: 4%; }
.hero-radar__inner > .hero-radar__stage .tool-chip--gtm { top: 370px; right: 5%; }
.hero-radar__inner > .hero-radar__stage .tool-chip--hub { top: 570px; left: 50%; }

/* The brand accent is drawn on entry instead of appearing as a static block. */
.hero--radar h1 em::after {
  transform: rotate(-.8deg) scaleX(0);
  transform-origin: left center;
  animation: hero-highlight-draw .72s cubic-bezier(.22,.78,.24,1) .72s forwards;
}
@keyframes hero-highlight-draw {
  to { transform: rotate(-.8deg) scaleX(1); }
}

@media (max-width: 1180px) {
  .hero-radar__inner > .hero-radar__stage { inset: -35px -10px -70px; }.hero-radar__inner > .hero-radar__stage .tool-chip { min-height: 36px; padding-block: 3px; font-size: .5rem; }.hero-radar__inner > .hero-radar__stage .tool-chip--google { left: -1%; }.hero-radar__inner > .hero-radar__stage .tool-chip--meta { right: -1%; }.hero-radar__inner > .hero-radar__stage .tool-chip--claude { left: -2%; }.hero-radar__inner > .hero-radar__stage .tool-chip--gtm { right: -2%; }
}

@media (max-width: 900px) {
  .hero-radar__inner > .hero-radar__stage { position: relative; inset: auto; height: 142px; margin-top: 24px; }.hero-radar__inner > .hero-radar__stage .tool-chip--google { top: 0; left: 0; }.hero-radar__inner > .hero-radar__stage .tool-chip--meta { top: 0; right: 0; }.hero-radar__inner > .hero-radar__stage .tool-chip--rd { top: 42px; left: 15%; }.hero-radar__inner > .hero-radar__stage .tool-chip--openai { top: 42px; right: 15%; }.hero-radar__inner > .hero-radar__stage .tool-chip--claude { top: 82px; left: 0; }.hero-radar__inner > .hero-radar__stage .tool-chip--gtm { top: 82px; right: 0; }.hero-radar__inner > .hero-radar__stage .tool-chip--hub { top: 94px; left: 50%; }
}

@media (max-width: 560px) {
  .hero-radar__inner > .hero-radar__stage { height: 158px; margin-top: 18px; }.hero-radar__inner > .hero-radar__stage .tool-chip { min-height: 32px; }.hero-radar__inner > .hero-radar__stage .tool-chip--rd { top: 39px; left: 7%; }.hero-radar__inner > .hero-radar__stage .tool-chip--openai { top: 39px; right: 6%; }.hero-radar__inner > .hero-radar__stage .tool-chip--claude { top: 77px; }.hero-radar__inner > .hero-radar__stage .tool-chip--gtm { top: 77px; }.hero-radar__inner > .hero-radar__stage .tool-chip--hub { top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--radar h1 em::after { animation-delay: 0s; }
}

/* Hero and client proof read as one continuous opening composition. */
.logo-marquee {
  padding: 30px 0 52px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fbfbf8;
}
.logo-marquee .container > p { color: #666963; font-weight: 650; }
.logo-marquee .container > p strong { color: var(--ink); font-weight: 800; }
.logo-marquee__viewport { margin-top: 20px; }
.logo-marquee__group img {
  width: auto;
  height: auto;
  max-width: 176px;
  max-height: 63px;
  flex: 0 0 auto;
  filter: none;
  mix-blend-mode: normal;
  object-fit: contain;
  opacity: .86;
}
.logo-marquee__group img:hover {
  filter: none;
  opacity: 1;
  transform: none;
}
.logo-marquee__group { gap: 68px; padding-right: 68px; }
.logo-marquee__group img:nth-child(1) { width: 73px; }
.logo-marquee__group img:nth-child(2) { width: 103px; }
.logo-marquee__group img:nth-child(3) { width: 102px; }
.logo-marquee__group img:nth-child(4) { width: 109px; }
.logo-marquee__group img:nth-child(5) { width: 131px; }
.logo-marquee__group img:nth-child(6) { width: 136px; }
.logo-marquee__group img:nth-child(7) { width: 136px; }
.logo-marquee__group img:nth-child(8) { width: 74px; }
.logo-marquee__group img:nth-child(9) { width: 141px; }

@media (max-width: 900px) {
  .logo-marquee { padding-top: 24px; }
}

/* Quieter editorial scale across the homepage. */
.hero--radar h1 {
  font-size: clamp(2.65rem,calc(5.45vw - 15px),calc(5.45rem - 15px));
}
.hero-title__line { display: block; }
.hero--radar h1 em { font-size: calc(1em + 5px); }
.section-intro h2,
.case-heading h2,
.method-intro h2,
.contact-card h2 {
  font-size: clamp(2.15rem,4vw,3.65rem);
}
.ecosystem-visual h3 { font-size: clamp(1.85rem,3vw,2.9rem); }
.yellow-insight h2 { font-size: clamp(2.45rem,4.2vw,4.25rem); }

@media (max-width: 1080px) {
  .hero--radar h1 {
    font-size: clamp(2.55rem,calc(7.2vw - 15px),calc(5.15rem - 15px));
  }
}

@media (max-width: 720px) {
  .hero--radar h1 { font-size: clamp(2.3rem,calc(11vw - 8px),calc(3.75rem - 8px)); }
  .system-showcase__header h2 { font-size: clamp(2.05rem,9vw,2.9rem); }
  .section-intro h2,
  .case-heading h2,
  .method-intro h2,
  .contact-card h2 { font-size: clamp(2rem,9.2vw,2.85rem); }
  .ecosystem-visual h3 { font-size: clamp(1.8rem,8vw,2.55rem); }
  .yellow-insight h2 { font-size: clamp(2.2rem,9.5vw,3rem); }
}

/* Growth System title accent */
.system-title__line { display: block; }
.system-showcase__header h2 em { position: relative; display: inline-block; z-index: 0; font-style: normal; isolation: isolate; }
.system-showcase__header h2 em::after { position: absolute; z-index: -1; right: -3px; bottom: 1px; left: -3px; height: .19em; border-radius: 3px; background: rgba(248,179,27,.76); content: ""; transform: rotate(-.8deg) scaleX(1); transform-origin: left center; }
.js .system-showcase__header h2 em::after { transform: rotate(-.8deg) scaleX(0); }
.js .system-showcase__header.is-visible h2 em::after { animation: hero-highlight-draw .72s cubic-bezier(.22,.78,.24,1) .28s forwards; }

/* Binational operation: a market-specific bridge between the ecosystem and proof. */
.territory-section { position: relative; overflow: hidden; background: #edf3f5; }
.territory-section::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(17,79,112,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(17,79,112,.045) 1px,transparent 1px); background-size: 68px 68px; content: ""; mask-image: linear-gradient(90deg,transparent,black 15%,black 85%,transparent); }
.territory-section::after { position: absolute; top: -260px; right: -180px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.92),rgba(255,255,255,0) 68%); content: ""; }
.territory-panel { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(300px,.82fr) minmax(610px,1.18fr); gap: clamp(55px,7vw,100px); align-items: center; }
.territory-copy { max-width: 540px; }
.territory-copy h2 { margin-top: 16px; font-size: clamp(2.2rem,3.7vw,3.7rem); font-weight: 600; line-height: 1.03; letter-spacing: -.052em; }
.territory-copy > p:nth-of-type(2) { margin-top: 23px; color: var(--text); font-size: .86rem; line-height: 1.75; }
.territory-copy > p strong { color: var(--ink-soft); font-weight: 650; }
.territory-copy ul { display: grid; margin: 29px 0 25px; border-top: 1px solid rgba(17,79,112,.12); }
.territory-copy li { display: grid; min-height: 48px; grid-template-columns: 34px 1fr; align-items: center; border-bottom: 1px solid rgba(17,79,112,.12); color: var(--ink-soft); font-size: .67rem; font-weight: 600; }
.territory-copy li span { color: #557887; font-size: .49rem; letter-spacing: .08em; }
.territory-visual { padding: 17px; border: 1px solid rgba(17,79,112,.1); border-radius: 28px; background: rgba(255,255,255,.76); box-shadow: 0 28px 70px rgba(36,65,78,.1); backdrop-filter: blur(14px); }
.territory-visual__head { display: flex; min-height: 44px; align-items: center; justify-content: space-between; padding: 0 7px 13px; color: #58717c; font-size: .48rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.territory-visual__head span { display: flex; align-items: center; gap: 7px; }.territory-visual__head i { width: 7px; height: 7px; border-radius: 50%; background: #31a979; box-shadow: 0 0 0 4px rgba(49,169,121,.11); }
.territory-visual__head small { font-size: inherit; }
.territory-route { position: relative; display: grid; grid-template-columns: minmax(0,1fr) 92px minmax(0,1fr); align-items: stretch; }
.territory-route article { position: relative; min-height: 300px; padding: 24px; overflow: hidden; border: 1px solid rgba(17,79,112,.09); border-radius: 20px; background: rgba(255,255,255,.88); }
.territory-route article::after { position: absolute; right: -45px; bottom: -65px; width: 170px; height: 170px; border: 1px solid rgba(17,79,112,.08); border-radius: 50%; box-shadow: 0 0 0 24px rgba(17,79,112,.025),0 0 0 48px rgba(17,79,112,.018); content: ""; }
.market-code { display: flex; align-items: center; justify-content: space-between; margin-bottom: 47px; }
.market-code span { font-size: 1.3rem; filter: saturate(.78); }.market-code strong { color: rgba(17,79,112,.18); font-size: 2.9rem; font-weight: 700; line-height: 1; letter-spacing: -.08em; }
.territory-route article > small { color: #6b818a; font-size: .46rem; font-weight: 700; letter-spacing: .1em; }
.territory-route h3 { margin-top: 6px; font-size: 1.25rem; font-weight: 650; letter-spacing: -.035em; }
.territory-route article p { max-width: 240px; margin-top: 12px; color: var(--text); font-size: .63rem; line-height: 1.62; }
.territory-route article b { position: absolute; z-index: 1; bottom: 19px; left: 24px; color: #77909a; font-size: .43rem; font-weight: 700; letter-spacing: .08em; }
.territory-route__line { position: relative; display: flex; align-items: center; justify-content: center; }
.territory-route__line::before { width: 100%; height: 1px; background: linear-gradient(90deg,rgba(17,79,112,.15),var(--yellow),rgba(17,79,112,.15)); content: ""; }
.territory-route__line span { position: absolute; top: calc(50% - 30px); width: 92px; color: #55727f; font-size: .42rem; font-weight: 700; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.territory-route__line i { position: absolute; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(248,179,27,.16); animation: territory-pulse 2.4s ease-in-out infinite; }
.territory-signals { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-top: 8px; }
.territory-signals span { min-height: 39px; display: grid; place-items: center; border-radius: 10px; color: #5d7681; background: rgba(229,238,241,.7); font-size: .45rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@keyframes territory-pulse { 0%,100% { transform: scale(.85); box-shadow: 0 0 0 3px rgba(248,179,27,.12); } 50% { transform: scale(1); box-shadow: 0 0 0 8px rgba(248,179,27,.03); } }

@media (max-width: 1080px) {
  .territory-panel { grid-template-columns: 1fr; }.territory-copy { max-width: 720px; }.territory-visual { width: min(820px,100%); }
}

@media (max-width: 620px) {
  .territory-section::before { background-size: 48px 48px; }.territory-copy h2 { font-size: clamp(2.05rem,9.5vw,2.9rem); }.territory-copy > p:nth-of-type(2) { font-size: .8rem; }.territory-visual { padding: 10px; border-radius: 22px; }.territory-visual__head { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; padding: 4px 6px 14px; }.territory-route { grid-template-columns: 1fr; gap: 44px; }.territory-route article { min-height: 265px; }.territory-route__line { position: absolute; top: 50%; left: 50%; width: 1px; height: 44px; transform: translate(-50%,-50%); }.territory-route__line::before { width: 1px; height: 44px; background: linear-gradient(rgba(17,79,112,.15),var(--yellow),rgba(17,79,112,.15)); }.territory-route__line span { display: none; }.territory-signals { grid-template-columns: 1fr; }.territory-signals span { min-height: 34px; }
}

/* Evidence-led internal pages: real work replaces abstract placeholder diagrams. */
.evidence-panel { position: relative; min-height: 500px; margin: 0; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #ecece8; box-shadow: 0 28px 70px rgba(23,24,23,.12); }
.evidence-panel__image { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); border-radius: 20px; object-fit: cover; object-position: center; }
.evidence-panel__image--square { object-position: center 38%; }
.evidence-panel__bar { position: absolute; z-index: 2; top: 30px; right: 30px; left: 30px; display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.7); border-radius: 12px; background: rgba(255,255,255,.88); box-shadow: 0 12px 28px rgba(23,24,23,.08); backdrop-filter: blur(14px); }
.evidence-panel__bar span { color: #656862; font-size: .48rem; font-weight: 750; letter-spacing: .08em; }
.evidence-panel__tools { display: flex; align-items: center; gap: 7px; }
.evidence-panel__tools img { width: 25px; height: 25px; padding: 4px; border: 1px solid var(--line); border-radius: 8px; background: #fff; object-fit: contain; }
.evidence-panel__caption { position: absolute; z-index: 2; right: 30px; bottom: 30px; left: 30px; display: grid; gap: 6px; padding: 18px; border: 1px solid rgba(255,255,255,.74); border-radius: 16px; background: rgba(255,255,255,.91); box-shadow: 0 18px 40px rgba(23,24,23,.12); backdrop-filter: blur(16px); }
.evidence-panel__caption small { color: #777a74; font-size: .47rem; font-weight: 750; letter-spacing: .1em; }
.evidence-panel__caption strong { font-size: 1rem; letter-spacing: -.025em; }
.evidence-panel__caption p { color: var(--text); font-size: .62rem; line-height: 1.55; }
.evidence-panel--brand { display: grid; grid-template-columns: 1fr .82fr; gap: 10px; padding: 18px; background: #eeeae6; }
.evidence-panel--brand .evidence-panel__tile { position: relative; min-height: 464px; overflow: hidden; border-radius: 20px; }
.evidence-panel--brand .evidence-panel__tile:nth-child(2) { min-height: 220px; align-self: end; }
.evidence-panel__tile img { width: 100%; height: 100%; object-fit: cover; }
.evidence-panel--stack { display: flex; flex-direction: column; justify-content: center; gap: 13px; padding: 30px; background: linear-gradient(145deg,#f9faf8,#e9f0f0); }
.evidence-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; align-items: center; }
.evidence-flow article { display: grid; min-height: 122px; place-items: center; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 28px rgba(23,24,23,.055); text-align: center; }
.evidence-flow article img { max-width: 90px; max-height: 34px; object-fit: contain; }
.evidence-flow article small { color: var(--muted); font-size: .46rem; font-weight: 700; }
.evidence-flow__connector { height: 1px; margin-inline: 10%; background: linear-gradient(90deg,transparent,var(--yellow),transparent); }
.evidence-panel--stack > p { margin: 2px 2px 0; color: var(--text); font-size: .62rem; line-height: 1.6; }

.capability-list article { position: relative; overflow: hidden; transition: transform .25s var(--ease),box-shadow .25s var(--ease); }
.capability-list article:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(23,24,23,.07); }
.capability-list article::after { position: absolute; right: -38px; bottom: -46px; width: 105px; height: 105px; border: 1px solid rgba(23,24,23,.055); border-radius: 50%; box-shadow: 0 0 0 20px rgba(248,179,27,.04); content: ""; }
.capability-list--branded article > img { position: absolute; top: 25px; right: 25px; width: 40px; height: 40px; padding: 7px; border: 1px solid var(--line); border-radius: 12px; background: #fff; object-fit: contain; }
.content-section--ink .process-list li { transition: padding-left .25s var(--ease),background-color .25s ease; }
.content-section--ink .process-list li:hover { padding-left: 14px; background: rgba(255,255,255,.025); }
.text-link--button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 17px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(23,24,23,.045); text-decoration: none; }

.case-item__visual { padding: 0; background: #ecece8; }
.case-item__visual::after { display: none; }
.case-item__visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: none; }
.case-item__visual > span { position: absolute; z-index: 2; right: 18px; bottom: 18px; left: 18px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(23,24,23,.12); backdrop-filter: blur(12px); }
.case-item:nth-child(3) .case-item__visual > img { object-position: center 38%; }
.case-item .text-link { align-self: flex-start; min-height: 42px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }

.work-ribbon { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 56px; }
.work-ribbon figure { position: relative; min-height: 220px; margin: 0; overflow: hidden; border-radius: 18px; background: #eee; }
.work-ribbon img { width: 100%; height: 100%; object-fit: cover; }
.work-ribbon figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 10px; border-radius: 9px; background: rgba(255,255,255,.9); color: var(--ink); font-size: .5rem; font-weight: 700; backdrop-filter: blur(10px); }

@media (max-width: 720px) {
  .evidence-panel { min-height: 420px; padding: 11px; border-radius: 22px; }.evidence-panel__image { inset: 11px; width: calc(100% - 22px); height: calc(100% - 22px); border-radius: 15px; }.evidence-panel__bar { top: 20px; right: 20px; left: 20px; }.evidence-panel__caption { right: 20px; bottom: 20px; left: 20px; padding: 14px; }.evidence-panel--brand { grid-template-columns: 1fr; }.evidence-panel--brand .evidence-panel__tile { min-height: 390px; }.evidence-panel--brand .evidence-panel__tile:nth-child(2) { display: none; }.evidence-panel--stack { min-height: 455px; padding: 18px; }.evidence-flow { grid-template-columns: 1fr; }.evidence-flow article { min-height: 84px; }.evidence-flow__connector { width: 1px; height: 18px; margin: -4px auto; }.work-ribbon { grid-template-columns: repeat(2,1fr); margin-top: 38px; }.work-ribbon figure { min-height: 155px; }
}

/* Human, full-bleed pause in the homepage narrative. */
.people-section { position: relative; display: grid; min-height: clamp(640px,70vw,820px); align-items: center; overflow: hidden; color: #fff; background: #111; isolation: isolate; }
.people-section__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.people-section__veil { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(8,10,9,.91) 0%,rgba(8,10,9,.78) 30%,rgba(8,10,9,.28) 61%,rgba(8,10,9,.12) 100%),linear-gradient(0deg,rgba(8,10,9,.4),transparent 45%); }
.people-section__content { padding-block: clamp(90px,11vw,150px); }
.people-section__content h2 { max-width: 710px; margin-top: 18px; font-size: clamp(2.7rem,5vw,5rem); font-weight: 600; line-height: .99; letter-spacing: -.057em; }
.people-section__content > p:nth-of-type(2) { max-width: 590px; margin-top: 26px; color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.75; }
.people-section__content > p strong { color: #fff; font-weight: 650; }
.people-section__disciplines { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.people-section__disciplines span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.19); border-radius: 999px; background: rgba(255,255,255,.055); font-size: .53rem; font-weight: 650; backdrop-filter: blur(9px); }
.people-section .button { margin-top: 29px; }
.ecosystem-tabs button { grid-template-columns: 34px 1fr; }

.button--case { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.07); }
.button--case:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.12); }

/* Expanded client-ready footer. */
.site-footer { padding: 0 0 20px; overflow: hidden; }
.site-footer__lead { display: grid; grid-template-columns: minmax(260px,.75fr) minmax(360px,1.25fr); gap: 70px; align-items: end; padding-block: 80px 66px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__lead > div { display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.site-footer__lead > div > p { max-width: 250px; color: rgba(255,255,255,.67); font-size: .82rem; line-height: 1.55; }
.button--footer { min-height: 52px; border-color: rgba(255,255,255,.15); color: var(--ink); background: var(--yellow); box-shadow: 0 16px 38px rgba(0,0,0,.15); }
.button--footer:hover { background: var(--yellow-hover); }
.site-footer__main { display: grid; grid-template-columns: minmax(260px,1.2fr) repeat(2,minmax(140px,.68fr)) minmax(220px,.9fr); gap: clamp(35px,5vw,76px); padding-block: 62px 70px; }
.footer-office { max-width: 330px; }.footer-office small,.footer-column > small { display: block; margin-bottom: 18px; color: rgba(255,255,255,.34); font-size: .51rem; font-weight: 750; letter-spacing: .11em; }
.footer-office strong { display: block; font-size: .9rem; font-weight: 650; }.footer-office p { margin-top: 12px; color: rgba(255,255,255,.5); font-size: .66rem; line-height: 1.65; }
.footer-credentials { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }.footer-credentials span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.11); border-radius: 7px; color: rgba(255,255,255,.65); font-size: .45rem; font-weight: 650; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer-column a { color: rgba(255,255,255,.64); font-size: .66rem; line-height: 1.45; transition: color .2s ease; }.footer-column a:hover { color: var(--yellow); }
.footer-column--contact > a { color: rgba(255,255,255,.82); font-weight: 600; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }.footer-socials a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; background: rgba(255,255,255,.035); }.footer-socials a:hover { border-color: rgba(248,179,27,.45); background: rgba(248,179,27,.1); }.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }
.site-footer__bottom { min-height: 58px; padding-top: 19px; }.site-footer__bottom a:hover { color: #fff; }

.whatsapp-float { position: fixed; z-index: 30; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 16px 38px rgba(15,92,48,.28); transition: transform .22s var(--ease),box-shadow .22s var(--ease),background-color .22s ease; }
.whatsapp-float::before { position: absolute; inset: -5px; z-index: -1; border: 1px solid rgba(31,168,85,.28); border-radius: inherit; content: ""; animation: whatsapp-pulse 2.5s ease-out infinite; }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }.whatsapp-float:hover { color: #fff; background: #1ebe5d; box-shadow: 0 19px 44px rgba(15,92,48,.36); transform: translateY(-3px); }
@keyframes whatsapp-pulse { 0%,35% { opacity: 0; transform: scale(.92); } 60% { opacity: 1; } 100% { opacity: 0; transform: scale(1.13); } }

@media (max-width: 920px) {
  .site-footer__lead { grid-template-columns: 1fr; gap: 36px; }.site-footer__lead > div { align-items: flex-start; justify-content: space-between; }.site-footer__main { grid-template-columns: repeat(2,1fr); }.footer-office { max-width: 440px; }
}

@media (max-width: 860px) {
  body.menu-open::before { position: fixed; z-index: 35; inset: 0; background: rgba(11,13,12,.54); backdrop-filter: blur(3px); content: ""; }
  .site-header { z-index: 40; }
  .mobile-menu { position: fixed; z-index: 1; top: 0; left: 0; width: min(84vw,360px); height: 100dvh; margin: 0; padding: 98px 25px 26px; border: 0; border-radius: 0 24px 24px 0; background: #fff; box-shadow: 22px 0 60px rgba(0,0,0,.18); }
  .mobile-menu nav a { min-height: 62px; padding-inline: 3px; font-size: .92rem; }
  .mobile-menu .button { margin-top: 24px; }
}

@media (max-width: 640px) {
  .people-section { min-height: 720px; align-items: end; }.people-section__image { object-position: 57% center; }.people-section__veil { background: linear-gradient(0deg,rgba(8,10,9,.95) 0%,rgba(8,10,9,.82) 45%,rgba(8,10,9,.2) 82%); }.people-section__content { padding: 260px 14px 68px; }.people-section__content h2 { font-size: clamp(2.25rem,10.5vw,3.25rem); }.people-section__content > p:nth-of-type(2) { font-size: .78rem; }.people-section__disciplines { gap: 5px; }.people-section .button { width: 100%; }
  .site-footer { padding-inline: 18px; }.site-footer__lead { padding-block: 62px 44px; text-align: center; }.site-footer__lead .footer-brand { justify-items: center; }.site-footer__lead > div { align-items: stretch; flex-direction: column; gap: 18px; }.site-footer__lead > div > p { max-width: none; }.button--footer { width: 100%; }.site-footer__main { grid-template-columns: 1fr; gap: 36px; padding-block: 45px 52px; text-align: center; }.footer-office { max-width: none; }.footer-column { align-items: center; }.footer-credentials,.footer-socials { justify-content: center; }.site-footer__bottom { align-items: center; text-align: center; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 58px; height: 58px; padding: 0; justify-content: center; }.whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .whatsapp-float::before { animation: none; }
}

/* Concrete proof layer: published work and documented operating data. */
.yellow-insight::before { background-image: radial-gradient(circle at 18% 75%,rgba(255,255,255,.28),transparent 31%),radial-gradient(circle at 86% 8%,rgba(255,255,255,.2),transparent 28%); background-size: auto; mask-image: none; }
.yellow-insight__grid { grid-template-columns: minmax(0,.95fr) minmax(520px,1.05fr); align-items: center; }
.yellow-insight h2 { max-width: 700px; font-size: clamp(2.35rem,3.9vw,3.8rem); }
.yellow-insight__headline > p:last-child { max-width: 620px; margin-top: 22px; color: rgba(23,24,23,.7); font-size: .82rem; line-height: 1.7; }
.direction-proof { overflow: hidden; border: 1px solid rgba(23,24,23,.1); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 24px 55px rgba(106,70,0,.11); }
.direction-proof__head { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 18px; border-bottom: 1px solid rgba(23,24,23,.08); }
.direction-proof__head img { width: 105px; height: 38px; object-fit: contain; }.direction-proof__head span { color: rgba(23,24,23,.58); font-size: .47rem; font-weight: 750; letter-spacing: .1em; }
.direction-proof__metrics { display: grid; grid-template-columns: repeat(3,1fr); }
.direction-proof__metrics article { min-height: 135px; padding: 21px 18px; border-left: 1px solid rgba(23,24,23,.08); }.direction-proof__metrics article:first-child { border-left: 0; }
.direction-proof__metrics strong { display: block; font-size: clamp(1.65rem,2.3vw,2.45rem); font-weight: 650; line-height: 1; letter-spacing: -.055em; }.direction-proof__metrics small { display: block; max-width: 130px; margin-top: 12px; color: rgba(23,24,23,.6); font-size: .51rem; line-height: 1.45; }
.direction-proof__stack { display: flex; min-height: 49px; align-items: center; gap: 8px; padding: 8px 14px; border-top: 1px solid rgba(23,24,23,.08); background: rgba(255,255,255,.44); }
.direction-proof__stack span { display: inline-flex; align-items: center; gap: 6px; font-size: .49rem; font-weight: 700; }.direction-proof__stack img { width: 18px; height: 18px; object-fit: contain; }.direction-proof__stack i { color: rgba(23,24,23,.35); font-size: .55rem; font-style: normal; }

.panel-proof { position: absolute; top: 50%; right: 4%; width: 43%; height: 430px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: 0 25px 60px rgba(23,24,23,.11); transform: translateY(-50%) rotate(1.2deg); }
.panel-proof > img { width: 100%; height: 100%; object-fit: cover; }
.panel-proof:not(.panel-proof--square) > img { object-position: center; }
.panel-proof--square > img { object-position: center; }
.panel-proof figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; display: grid; gap: 3px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.72); border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(23,24,23,.1); backdrop-filter: blur(12px); }
.panel-proof figcaption strong { font-size: .67rem; }.panel-proof figcaption span { display: flex; align-items: center; gap: 6px; color: var(--text); font-size: .49rem; }.panel-proof figcaption span img { width: 16px; height: 16px; object-fit: contain; }
.panel-proof--tools { display: flex; flex-direction: column; justify-content: center; padding: 28px; background: linear-gradient(145deg,#fff,#eef5f5); transform: translateY(-50%) rotate(-1deg); }
.panel-proof--tools > p { color: var(--muted); font-size: .53rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.panel-proof--tools > div { display: grid; grid-template-columns: 1fr 25px 1fr 25px 1fr; align-items: center; margin-block: 55px; }
.panel-proof--tools span { display: grid; min-height: 78px; place-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 13px 30px rgba(23,24,23,.06); }.panel-proof--tools span img { max-width: 72px; max-height: 34px; }.panel-proof--tools i { height: 1px; background: var(--yellow); }
.panel-proof--tools > small { color: var(--text); font-size: .59rem; font-weight: 650; }

.service-card { min-height: 410px; padding: 28px; }
.service-card__thumb { width: 176px; height: 92px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #f5f5f2; box-shadow: 0 13px 30px rgba(23,24,23,.1); transform: rotate(1.5deg); }
.service-card:nth-child(even) .service-card__thumb { transform: rotate(-1.5deg); }
.service-card__thumb img { width: 100%; height: 100%; object-fit: cover; }.service-card__thumb--square img { object-position: center 28%; }.service-card__thumb--platform { display: grid; place-items: center; background: #fff; }.service-card__thumb--platform img { width: 112px; height: 42px; object-fit: contain; }
.method-deliverable { display: inline-flex; margin-top: 18px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 7px; color: #6d706a; background: #fff; font-size: .42rem; font-weight: 750; letter-spacing: .07em; }

.territory-projects { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; margin-top: 8px; }
.territory-projects article { display: grid; grid-template-columns: 115px 1fr; min-height: 82px; align-items: center; overflow: hidden; border: 1px solid rgba(17,79,112,.08); border-radius: 13px; background: rgba(255,255,255,.84); }
.territory-projects article > img { width: 115px; height: 82px; object-fit: cover; object-position: center; }
.territory-projects article > div { display: grid; gap: 4px; padding: 10px 12px; }.territory-projects strong { font-size: .58rem; }.territory-projects span { color: #687e87; font-size: .45rem; }

@media (max-width: 1080px) {
  .yellow-insight__grid { grid-template-columns: 1fr; }.yellow-insight__headline { max-width: 780px; }.yellow-insight__copy { max-width: 760px; }
}

@media (max-width: 720px) {
  .yellow-insight h2 { font-size: clamp(2.15rem,9.5vw,3rem); }.direction-proof__head { align-items: flex-start; flex-direction: column; gap: 8px; }.direction-proof__metrics { grid-template-columns: 1fr; }.direction-proof__metrics article { min-height: 95px; border-top: 1px solid rgba(23,24,23,.08); border-left: 0; }.direction-proof__metrics article:first-child { border-top: 0; }.direction-proof__metrics small { max-width: none; }.direction-proof__stack { flex-wrap: wrap; }.panel-proof { top: auto; right: 22px; bottom: 24px; left: 22px; width: auto; height: 275px; transform: none; }.panel-proof--tools { transform: none; }.ecosystem-visual section { padding-bottom: 330px; }.service-card { min-height: 370px; }.service-card__thumb { width: 136px; height: 74px; }.territory-route { display: none; }.territory-projects { grid-template-columns: 1fr; }.territory-projects article { grid-template-columns: 105px 1fr; }.territory-projects article > img { width: 105px; }
}

/* Portfolio editorial: the work itself is the evidence. */
.selected-work { background: #f2f2ef; }
.selected-work__intro { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: clamp(48px,8vw,112px); align-items: end; margin-bottom: clamp(52px,7vw,88px); }
.selected-work__intro h2 { max-width: 790px; margin-top: 18px; font-size: clamp(2.55rem,4.7vw,4.6rem); font-weight: 620; line-height: 1.02; letter-spacing: -.055em; }
.selected-work__intro > p { max-width: 430px; padding-bottom: 6px; color: var(--text); font-size: .85rem; line-height: 1.78; }

.work-feature { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(360px,.55fr); min-height: 590px; overflow: hidden; border-radius: 30px; background: var(--ink); box-shadow: 0 35px 80px rgba(23,24,23,.13); }
.work-feature__media { min-width: 0; margin: 0; overflow: hidden; background: #087bb1; }
.work-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: 46% center; transition: transform .8s var(--ease); }
.work-feature:hover .work-feature__media img { transform: scale(1.018); }
.work-feature__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px,5vw,70px); color: white; background: linear-gradient(145deg,#171817,#0d1112); }
.work-feature__identity { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.12); }
.work-feature__identity img { width: 120px; max-height: 45px; object-fit: contain; object-position: left center; filter: grayscale(1) brightness(0) invert(1); }
.work-feature__identity span { color: rgba(255,255,255,.52); font-size: .53rem; font-weight: 650; letter-spacing: .05em; text-align: right; text-transform: uppercase; }
.work-feature__label { margin-top: 31px; color: var(--yellow); font-size: .51rem; font-weight: 750; letter-spacing: .11em; }
.work-feature__content h3 { max-width: 460px; margin-top: 14px; font-size: clamp(2rem,3.2vw,3.15rem); font-weight: 590; line-height: 1.06; letter-spacing: -.048em; }
.work-feature__content > p:not(.work-feature__label) { max-width: 480px; margin-top: 23px; color: rgba(255,255,255,.63); font-size: .75rem; line-height: 1.72; }
.work-feature__results { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 34px 0 0; }
.work-feature__results div { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
.work-feature__results dt { color: rgba(255,255,255,.4); font-size: .43rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.work-feature__results dd { margin: 7px 0 0; color: #fff; font-size: .75rem; font-weight: 700; }
.work-feature__content .button { align-self: flex-start; margin-top: 38px; color: var(--ink); background: var(--yellow); }

.work-index { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.5vw,34px); margin-top: clamp(56px,7vw,88px); }
.work-entry { padding-top: 16px; border-top: 1px solid var(--line-strong); }
.work-entry figure { height: clamp(230px,25vw,340px); margin: 0 0 25px; overflow: hidden; border-radius: 18px; background: #e4e5e1; }
.work-entry figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.work-entry:hover figure img { transform: scale(1.025); }
.work-entry--portrait figure img { object-position: center 23%; }
.work-entry > div > span { color: var(--muted); font-size: .48rem; font-weight: 730; letter-spacing: .09em; }
.work-entry h3 { margin-top: 9px; font-size: 1.35rem; font-weight: 650; letter-spacing: -.035em; }
.work-entry p { min-height: 70px; margin-top: 12px; color: var(--text); font-size: .67rem; line-height: 1.65; }
.work-entry small { display: block; margin-top: 18px; color: var(--ink); font-size: .49rem; font-weight: 700; letter-spacing: .04em; }

/* Full-image footer: the real scene carries the idea, while content stays quiet. */
.site-footer.site-footer--image { position: relative; min-height: 760px; padding: 0 0 18px; overflow: hidden; isolation: isolate; color: white; background: #050a0d; }
.site-footer__image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.site-footer__overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(2,8,12,.22),rgba(2,8,12,.05) 58%,rgba(2,8,12,.16)),linear-gradient(180deg,rgba(2,8,12,.04) 0%,rgba(2,8,12,.16) 38%,rgba(2,8,12,.88) 68%,#05090c 100%); }
.site-footer--image .site-footer__main { position: relative; grid-template-columns: minmax(250px,1.25fr) repeat(2,minmax(140px,.7fr)) minmax(220px,.95fr); gap: clamp(32px,5vw,72px); margin-top: clamp(330px,35vw,390px); padding: 0 0 38px; }
.site-footer--image .footer-office { max-width: 310px; }
.footer-brand--main { display: block; width: fit-content; }
.footer-brand--main img { width: 142px; height: auto; }
.site-footer--image .footer-office p { max-width: 295px; margin-top: 24px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.68; }
.site-footer--image .footer-column > small { margin-bottom: 15px; color: var(--yellow); font-size: 12px; font-weight: 600; letter-spacing: .1em; }
.site-footer--image .footer-column { gap: 9px; }
.site-footer--image .footer-column a { color: rgba(255,255,255,.68); font-size: 12px; }
.site-footer--image .footer-column--contact > a { color: rgba(255,255,255,.88); font-weight: 600; }
.footer-contact-link { display: flex; align-items: center; gap: 9px; }
.footer-contact-link svg { flex: 0 0 auto; width: 16px; height: 16px; fill: var(--yellow); }
.site-footer--image .footer-socials { margin-top: 14px; }
.site-footer--image .footer-socials a { background: rgba(2,8,12,.16); }
.site-footer--image .site-footer__bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; min-height: 50px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.1); }
.method-section { padding-bottom: clamp(72px,7vw,105px); }

@media (max-width: 980px) {
  .selected-work__intro { grid-template-columns: 1fr; gap: 28px; }
  .work-feature { grid-template-columns: 1fr; }.work-feature__media { min-height: 430px; }.work-feature__content { padding: 46px; }
  .site-footer--image .site-footer__main { grid-template-columns: repeat(2,1fr); }
  .site-footer--image .site-footer__bottom { grid-template-columns: 1fr auto; }.site-footer--image .site-footer__legal { grid-column: 1; grid-row: 2; }
}

@media (max-width: 720px) {
  .selected-work { padding-block: 86px; }.selected-work__intro { margin-bottom: 42px; }.selected-work__intro h2 { font-size: clamp(2.45rem,11vw,3.3rem); }.selected-work__intro > p { font-size: .78rem; }
  .work-feature { min-height: 0; border-radius: 22px; }.work-feature__media { min-height: 255px; }.work-feature__content { padding: 32px 25px 36px; }.work-feature__identity { align-items: flex-start; flex-direction: column; gap: 12px; }.work-feature__identity span { text-align: left; }.work-feature__content h3 { font-size: 2.2rem; }.work-feature__results { grid-template-columns: 1fr; }.work-feature__results div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }.work-feature__content .button { width: 100%; }
  .work-index { grid-template-columns: 1fr; gap: 48px; margin-top: 58px; }.work-entry figure { height: 270px; }.work-entry p { min-height: 0; }
  .site-footer.site-footer--image { min-height: 1080px; margin: 0; padding-inline: 18px; }.site-footer__image { object-position: 54% center; }.site-footer__overlay { background: linear-gradient(180deg,rgba(2,8,12,.12) 0%,rgba(2,8,12,.36) 24%,rgba(2,8,12,.94) 43%,#05090c 100%); }
  .site-footer--image .site-footer__main { grid-template-columns: 1fr; gap: 31px; margin-top: 320px; padding: 0 0 34px; text-align: center; }.site-footer--image .footer-office { max-width: none; }.footer-brand--main { margin-inline: auto; }.site-footer--image .footer-office p { margin: 20px auto 0; }.site-footer--image .footer-column { align-items: center; }.site-footer--image .footer-socials { justify-content: center; }
  .site-footer--image .site-footer__bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; text-align: center; }.site-footer--image .site-footer__legal { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .work-feature__media img,.work-entry figure img { transition: none; }
}

/* 1.2.0 — quieter editorial system for the homepage body. */
.selected-work.section,
.ecosystem.section,
.content-section,
.territory-section.section,
.case-section.section,
.method-section.section { padding-block: clamp(86px,8.5vw,124px); }
.selected-work[id],
.people-section[id],
.ecosystem[id],
.case-section[id],
.method-section[id],
.site-footer[id] { scroll-margin-top: 96px; }

.selected-work__intro h2,
.section-intro h2,
.section-heading h2,
.territory-copy h2,
.case-heading h2,
.method-intro h2 {
  font-size: clamp(1.95rem,2.85vw,2.85rem);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -.042em;
}

/* Real work is presented as an editorial spread instead of a framed component. */
.selected-work { background: #fff; }
.selected-work__intro { grid-template-columns: minmax(0,1.08fr) minmax(300px,.72fr); margin-bottom: clamp(44px,5.5vw,70px); }
.selected-work__intro h2 { max-width: 680px; }
.work-feature {
  min-height: 520px;
  overflow: visible;
  border-block: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}
.work-feature__media { margin-block: 28px; background: #e8edf0; }
.work-feature__content { padding: clamp(34px,4.2vw,58px); color: var(--ink); background: transparent; }
.work-feature__identity { border-color: var(--line); }
.work-feature__identity img { filter: none; }
.work-feature__identity span { color: var(--muted); }
.work-feature__content h3 { max-width: 450px; font-size: clamp(1.8rem,2.45vw,2.45rem); font-weight: 580; line-height: 1.1; }
.work-feature__content > p:not(.work-feature__label) { color: var(--text); }
.work-feature__results div { border-color: var(--line); }
.work-feature__results dt { color: var(--muted); }
.work-feature__results dd { color: var(--ink); }
.work-entry figure { border-radius: 2px; }

/* The human section stays immersive, but typography and tags become calmer. */
.people-section { min-height: clamp(600px,62vw,730px); }
.people-section__content h2 { max-width: 620px; font-size: clamp(2.15rem,3.2vw,3.1rem); font-weight: 570; line-height: 1.07; letter-spacing: -.042em; }
.people-section__disciplines { gap: 12px 22px; }
.people-section__disciplines span { position: relative; padding: 0 18px 0 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.people-section__disciplines span:not(:last-child)::after { position: absolute; top: 50%; right: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); content: ""; transform: translateY(-50%); }

/* The ecosystem becomes an open working surface. */
.ecosystem { background: #fafaf8; }
.ecosystem .section-intro--center { max-width: 840px; margin-inline: 0; text-align: left; }
.ecosystem .section-intro > p:last-child { margin-right: 0; margin-left: 0; }
.ecosystem-board {
  grid-template-columns: 260px minmax(0,1fr);
  min-height: 560px;
  margin-top: 48px;
  overflow: visible;
  border: 0;
  border-block: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.ecosystem-tabs { padding: 0 28px 0 0; border-color: var(--line); background: transparent; }
.ecosystem-tabs button {
  min-height: 132px;
  padding: 20px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.ecosystem-tabs button:last-child { border-bottom: 0; }
.ecosystem-tabs button:hover { transform: none; }
.ecosystem-tabs button[aria-selected="true"] { padding-left: 18px; border-color: var(--line); border-left: 2px solid var(--yellow); background: transparent; box-shadow: none; }
.ecosystem-visual { background: #f5f5f1; }
.ecosystem-visual section { min-height: 560px; padding: 55px 53% 44px 52px; }
.ecosystem-visual h3 { font-size: clamp(1.75rem,2.45vw,2.45rem); font-weight: 580; }
.panel-proof { height: 360px; border-radius: 3px; box-shadow: 0 16px 38px rgba(23,24,23,.07); transform: translateY(-50%); }
.panel-proof figcaption { right: 0; bottom: 0; left: 0; border: 0; border-radius: 0; box-shadow: none; }
.panel-proof--tools { box-shadow: none; transform: translateY(-50%); }
.panel-proof--tools span { border-radius: 4px; box-shadow: none; }

/* Services read as a clear scope index, not a card collection. */
.content-section--soft { background: #f4f4f1; }
.section-heading { margin-bottom: 42px; }
.service-grid { gap: 0 clamp(34px,5vw,72px); }
.service-card {
  min-height: 285px;
  padding: 28px 0 36px;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-card:hover { transform: none; box-shadow: none; }
.service-card::after { display: none; }
.service-card__thumb,
.service-card:nth-child(even) .service-card__thumb { width: 158px; height: 84px; border-radius: 2px; box-shadow: none; transform: none; }
.service-card h3 { font-size: clamp(1.45rem,2vw,2rem); font-weight: 580; }

/* The binational story uses the section itself as the visual field. */
.territory-section { background: #edf2f3; }
.territory-section::before,
.territory-section::after { display: none; }
.territory-panel { gap: clamp(52px,7vw,94px); }
.territory-copy h2 { max-width: 500px; }
.territory-visual { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.territory-visual__head { padding: 0 0 16px; border-bottom: 1px solid rgba(17,79,112,.14); }
.territory-route article { min-height: 270px; padding: 25px 0; border: 0; border-bottom: 1px solid rgba(17,79,112,.14); border-radius: 0; background: transparent; }
.territory-route article::after { display: none; }
.territory-route article:first-child { padding-right: 20px; }
.territory-route article:last-child { padding-left: 20px; }
.territory-route article b { left: 0; }
.territory-route article:last-child b { left: 20px; }
.territory-projects { gap: 0 20px; margin-top: 24px; }
.territory-projects article { min-height: 92px; border: 0; border-bottom: 1px solid rgba(17,79,112,.14); border-radius: 0; background: transparent; }
.territory-projects article > img { height: 72px; border-radius: 2px; }

/* A atuação internacional vira uma paisagem institucional, sem miniaturas de projeto. */
.territory-stage { position: relative; min-height: 500px; padding: 0; border-block: 1px solid rgba(17,79,112,.15); }
.territory-stage__head { display: flex; min-height: 62px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(17,79,112,.12); color: #526f7c; font-size: .49rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.territory-stage__head span { display: flex; align-items: center; gap: 9px; }
.territory-stage__head i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(248,179,27,.13); }
.territory-stage__head small { font-size: inherit; }
.territory-countries { display: grid; min-height: 340px; grid-template-columns: minmax(0,1fr) 106px minmax(0,1fr); align-items: center; }
.territory-country { position: relative; display: flex; min-height: 292px; align-items: flex-start; flex-direction: column; justify-content: center; padding: 34px 28px; overflow: hidden; }
.territory-flag { width: 66px; margin-bottom: 24px; filter: drop-shadow(0 8px 15px rgba(17,79,112,.1)); }
.territory-flag img { display: block; width: 100%; height: 44px; border: 1px solid rgba(17,79,112,.1); border-radius: 5px; object-fit: cover; }
.territory-country > small { color: #617c88; font-size: .46rem; font-weight: 700; letter-spacing: .1em; }
.territory-country > strong { margin-top: 7px; color: var(--ink); font-size: 1.55rem; font-weight: 620; letter-spacing: -.035em; }
.territory-country > p { max-width: 260px; margin-top: 13px; color: var(--text); font-size: .64rem; line-height: 1.65; }
.territory-connection { display: grid; align-items: center; grid-template-columns: 1fr; justify-items: center; }
.territory-connection span { display: block; width: 100%; height: 1px; background: linear-gradient(90deg,rgba(17,79,112,.08),var(--yellow),rgba(17,79,112,.08)); }
.territory-connection b { margin-block: 12px; color: #55727f; font-size: .43rem; font-weight: 700; line-height: 1.45; letter-spacing: .07em; text-align: center; text-transform: uppercase; }
.territory-stage__statement { max-width: 590px; margin: 0 auto; padding: 22px 25px 24px; border-top: 1px solid rgba(17,79,112,.12); color: var(--blue); font-size: .67rem; font-weight: 600; line-height: 1.6; text-align: center; }
.territory-proof { max-width: 445px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(17,79,112,.14); color: #536c76; font-size: .7rem; line-height: 1.7; }
.territory-proof strong { color: var(--blue); }
.territory-proof + .text-link { margin-top: 28px; }

/* One full dark field contains the case; metrics no longer imitate dashboard cards. */
.case-section { padding-inline: 0; background: #182022; }
.case-shell { padding: 0; overflow: visible; border-radius: 0; background: transparent; box-shadow: none; }
.case-shell::before { display: none; }
.case-heading h2 { max-width: 660px; }
.case-grid { grid-template-columns: minmax(0,1.02fr) minmax(390px,.98fr); gap: clamp(46px,7vw,92px); }
.case-story { min-height: 430px; padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.case-story__logo img { width: 128px; height: auto; padding: 0; border-radius: 0; background: transparent; filter: brightness(0) invert(1); }
.case-story > p { max-width: 540px; margin-block: 56px; font-size: clamp(1.05rem,1.6vw,1.35rem); }
.case-metrics { gap: 0 28px; }
.case-metrics article {
  min-height: 200px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: transparent;
}
.case-metrics strong { font-size: clamp(2.35rem,3.2vw,3.25rem); font-weight: 600; }
.case-metrics__featured { color: var(--yellow); border-color: rgba(248,179,27,.45) !important; background: transparent !important; }
.case-metrics__featured > small,
.case-metrics__featured p { color: rgba(255,255,255,.52) !important; }

/* Method and credentials close the narrative as a structured editorial grid. */
.method-flow { margin-top: 48px; overflow: visible; border: 0; border-block: 1px solid var(--line-strong); border-radius: 0; }
.method-flow li { min-height: 245px; padding: 26px; background: transparent; }
.method-flow li:hover { background: #faf9f4; transform: none; }
.method-flow li > span { width: auto; height: auto; justify-content: flex-start; border: 0; border-radius: 0; color: #a66f00; background: transparent; }
.method-deliverable { padding: 0; border: 0; background: transparent; }
.authority-grid { gap: 0; margin-top: 34px; border-top: 1px solid var(--line-strong); }
.authority-card { min-height: 135px; padding: 26px 28px; border: 0; border-left: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.authority-card:first-child { padding-left: 0; border-left: 0; }

/* Footer finishes immediately after legal information. */
.site-footer.site-footer--image { min-height: 0; padding-bottom: 18px; }
.site-footer--image .site-footer__main { margin-top: clamp(285px,29vw,340px); padding-bottom: 70px; }
.site-footer--image .site-footer__bottom { grid-template-columns: 1fr auto; min-height: 0; padding-top: 16px; font-size: 12px; }

@media (max-width: 1080px) {
  .case-grid { grid-template-columns: 1fr; gap: 52px; }
  .case-story { min-height: 390px; }
}

@media (max-width: 860px) {
  .ecosystem-board { grid-template-columns: 1fr; }
  .ecosystem-tabs { padding: 0; border-right: 0; }
  .ecosystem-tabs button { min-height: 105px; }
  .ecosystem-visual section { min-height: 570px; padding: 48px 48% 42px 38px; }
  .authority-card { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .authority-card:first-child { border-top: 0; }
}

@media (max-width: 720px) {
  .selected-work.section,
  .ecosystem.section,
  .content-section,
  .territory-section.section,
  .case-section.section,
  .method-section.section { padding-block: 76px; }
  .selected-work__intro h2,
  .section-intro h2,
  .section-heading h2,
  .territory-copy h2,
  .case-heading h2,
  .method-intro h2 { font-size: clamp(1.85rem,8vw,2.4rem); }
  .selected-work__intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .work-feature { border-top: 0; }
  .work-feature__media { min-height: 260px; margin: 0; }
  .work-feature__content { padding: 32px 0 38px; }
  .work-feature__content h3 { font-size: 1.9rem; }
  .work-entry figure { border-radius: 2px; }
  .people-section { min-height: 650px; }
  .people-section__content h2 { font-size: clamp(1.95rem,8.4vw,2.5rem); }
  .people-section__disciplines { justify-content: flex-start; }
  .ecosystem-tabs { grid-template-columns: repeat(4,minmax(82px,1fr)); padding: 0; overflow: visible; }
  .ecosystem-tabs button { min-height: 74px; grid-template-columns: 1fr; padding: 12px 5px; border-bottom: 0; text-align: center; }
  .ecosystem-tabs button > span,
  .ecosystem-tabs button small { display: none; }
  .ecosystem-tabs strong { font-size: .61rem; }
  .ecosystem-tabs button[aria-selected="true"] { padding-left: 13px; border-left: 0; border-bottom: 2px solid var(--yellow); }
  .ecosystem-visual section { min-height: 530px; padding: 36px 20px 260px; }
  .ecosystem-visual h3 { font-size: 2rem; }
  .panel-proof { right: 0; bottom: 18px; left: 0; height: 225px; border-radius: 2px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; padding-block: 25px 32px; }
  .territory-visual__head { margin-top: 10px; }
  .territory-projects article { grid-template-columns: 96px 1fr; }
  .territory-projects article > img { width: 96px; }
  .case-shell { width: calc(100% - 28px); padding: 0; }
  .case-story { min-height: 420px; padding: 0; }
  .case-metrics { gap: 0 18px; }
  .case-metrics article { min-height: 155px; padding: 18px 0; }
  .method-flow li { min-height: 205px; padding: 22px 0; border-left: 0; }
  .method-flow li > div { right: 0; left: 0; }
  .authority-grid { margin-top: 26px; }
  .authority-card { min-height: 120px; padding: 22px 0; }
  .site-footer--image .site-footer__main { margin-top: 260px; padding-bottom: 65px; }
  .site-footer--image .site-footer__bottom { gap: 12px; padding-top: 18px; }
}

/* 1.3.0 — services and proof share one open editorial surface. */
.services-proof {
  padding-block: clamp(86px,8.5vw,124px);
  background: #fff;
}
.services-proof[id] { scroll-margin-top: 96px; }
.services-proof__intro {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(300px,.7fr);
  gap: clamp(48px,8vw,110px);
  align-items: end;
  margin-bottom: clamp(48px,6vw,76px);
}
.services-proof__intro h2 {
  max-width: 680px;
  margin-top: 16px;
  font-size: clamp(1.95rem,2.85vw,2.85rem);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -.042em;
}
.services-proof__intro > p {
  max-width: 430px;
  padding-bottom: 5px;
  color: var(--text);
  font-size: .85rem;
  line-height: 1.76;
}
.services-proof__intro > p strong { color: var(--ink-soft); font-weight: 600; }
.services-proof__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid var(--line-strong);
}
.service-proof {
  min-width: 0;
  padding: 34px clamp(34px,5vw,66px) 42px 0;
  border-bottom: 1px solid var(--line-strong);
}
.service-proof:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(34px,5vw,66px);
  border-left: 1px solid var(--line);
}
.service-proof > header {
  display: flex;
  min-height: 40px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.service-proof > header > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.service-proof > header > span::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}
.service-proof__logos {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.service-proof__logos img { width: 26px; height: 26px; object-fit: contain; }
.service-proof__logos--client img {
  width: auto;
  max-width: 112px;
  height: auto;
  max-height: 34px;
}
.service-proof__logos--wide img:first-child { width: 26px; height: 26px; }
.service-proof__logos--wide img:last-child { width: 82px; height: 30px; }
.service-proof h3 {
  margin-top: 31px;
  font-size: clamp(1.55rem,2.1vw,2.1rem);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.service-proof > p {
  max-width: 560px;
  margin-top: 14px;
  color: var(--text);
  font-size: .76rem;
  line-height: 1.72;
}
.service-proof__evidence {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}
.service-proof__evidence > div { display: grid; justify-items: start; }
.service-proof__evidence small {
  color: var(--muted);
  font-size: .47rem;
  font-weight: 700;
  letter-spacing: .09em;
}
.service-proof__evidence strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.75rem,2.5vw,2.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
}
.service-proof__evidence span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .57rem;
  line-height: 1.45;
}
.service-proof__evidence a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(23,24,23,.28);
  color: var(--ink);
  font-size: .6rem;
  font-weight: 700;
  transition: border-color .2s ease,color .2s ease;
}
.service-proof__evidence a:hover { border-color: var(--yellow); color: #8a5a00; }
.services-proof__note {
  max-width: 780px;
  margin-top: 17px;
  color: var(--muted);
  font-size: .55rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .services-proof__intro { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 720px) {
  .services-proof { padding-block: 76px; }
  .services-proof__intro { margin-bottom: 36px; }
  .services-proof__intro h2 { font-size: clamp(1.85rem,8vw,2.4rem); }
  .services-proof__intro > p { font-size: .78rem; }
  .services-proof__grid { grid-template-columns: 1fr; }
  .service-proof,
  .service-proof:nth-child(even) {
    padding: 27px 0 34px;
    border-left: 0;
  }
  .service-proof h3 { margin-top: 25px; font-size: 1.75rem; }
  .service-proof__evidence { margin-top: 31px; }
  .service-proof__evidence a { font-size: .57rem; }
}

@media (max-width: 420px) {
  .service-proof__evidence { align-items: flex-start; flex-direction: column; gap: 18px; }
}

/* 1.3.1 — dark photographic hero test, preserving the approved composition. */
.hero--radar.hero--dark {
  min-height: 825px;
  color: #fff;
  background: #061019;
}
.hero--dark .hero__background {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero--dark::after {
  z-index: -3;
  opacity: 1;
  background:
    linear-gradient(180deg,rgba(2,8,13,.18) 0%,rgba(2,8,13,.28) 48%,rgba(2,8,13,.48) 100%),
    radial-gradient(circle at 50% 36%,rgba(2,8,13,.06),rgba(2,8,13,.24) 58%,rgba(2,8,13,.4) 100%);
}
.hero--dark::before {
  z-index: -2;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
}
.hero--dark h1 { color: #fff; text-shadow: 0 2px 28px rgba(0,0,0,.18); }
.hero--dark .hero-radar__content { padding-top: 54px; }
.hero--dark .hero-radar__content h1 { margin-top: 0; }
.hero--dark .hero__lede { color: rgba(255,255,255,.7); }
.hero--dark .hero__lede strong { color: #fff; }
.hero--dark .hero-badge {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  background: rgba(3,11,17,.44);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.hero--dark .button--quiet {
  border-color: rgba(255,255,255,.2);
  color: #fff;
  background: rgba(5,14,21,.42);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
  backdrop-filter: blur(10px);
}
.hero--dark .button--quiet:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }
.hero--dark .hero-radar__trust li { color: rgba(255,255,255,.76); }
.hero--dark .hero-radar__trust li span {
  border-color: rgba(255,255,255,.18);
  color: #bfe5cf;
  background: rgba(3,11,17,.42);
}
.hero--dark .radar-scene__ring { border-color: rgba(255,255,255,.1); }
.hero--dark .radar-scene__ring--three { opacity: .7; }
.hero--dark .radar-scene__sweep {
  opacity: .32;
  background: conic-gradient(from 0deg,transparent 0 320deg,rgba(114,177,209,.12) 347deg,rgba(248,179,27,.2) 358deg,transparent 360deg);
}
.hero--dark .radar-scene__coord { color: rgba(255,255,255,.4); }
.hero--dark .tool-chip {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

@media (max-width: 720px) {
  .hero--radar.hero--dark { min-height: 825px; }
  .hero--dark .hero-radar__content { padding-top: 36px; }
  .hero--dark .hero__background { object-position: 62% center; }
  .hero--dark::after { background: linear-gradient(180deg,rgba(2,8,13,.28),rgba(2,8,13,.5)); }
}

/* The navigation stays transparent over the hero and becomes solid after scroll. */
.home .site-header:not(.is-scrolled) .site-header__inner {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.hero--dark h1 em::after { background: #f8b31b; opacity: 1; }
.home .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.home .site-header:not(.is-scrolled) .desktop-nav a { color: rgba(255,255,255,.8); }
.home .site-header:not(.is-scrolled) .desktop-nav a:hover { color: #fff; }
.home .site-header:not(.is-scrolled) .header-cta {
  border-color: rgba(255,255,255,.18);
  color: #fff;
  background: rgba(3,10,16,.32);
}
.home .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255,255,255,.18);
  background: rgba(3,10,16,.3);
}
.home .site-header:not(.is-scrolled) .menu-toggle span { background: #fff; }

/* 2.0.0 — cinematic navigation concept for the primary homepage. */
.hero--submarine .hero__background { object-position: center center; }
.hero--submarine > picture .hero__background { z-index: -5; }
.hero--submarine .hero__video {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero--submarine::after {
  background:
    linear-gradient(180deg,rgba(2,8,13,.12),rgba(2,8,13,.22) 48%,rgba(2,8,13,.46)),
    radial-gradient(circle at 50% 38%,rgba(2,8,13,.04),rgba(2,8,13,.2) 58%,rgba(2,8,13,.4));
}
.hero--submarine .radar-scene__ring { border-color: rgba(255,255,255,.075); }
.hero--submarine .radar-scene__sweep { opacity: .18; }

.services-proof--strip { background: #f8f7f3; }
.services-proof--strip .services-proof__grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.services-proof--strip .service-proof,
.services-proof--strip .service-proof:nth-child(even) {
  min-height: 450px;
  padding: 30px clamp(20px,2.2vw,34px) 34px;
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.services-proof--strip .service-proof:first-child { padding-left: 0; border-left: 0; }
.services-proof--strip .service-proof:last-child { padding-right: 0; }
.services-proof--strip .service-proof > header { min-height: 35px; }
.services-proof--strip .service-proof h3 { min-height: 64px; margin-top: 27px; font-size: clamp(1.35rem,1.65vw,1.7rem); }
.services-proof--strip .service-proof > p { min-height: 92px; font-size: .7rem; }
.services-proof--strip .service-proof__evidence { align-items: flex-start; flex-direction: column; gap: 17px; margin-top: 30px; }
.services-proof--strip .service-proof__evidence strong { font-size: clamp(1.55rem,1.9vw,1.95rem); }

.coordinates-section { position: relative; overflow: hidden; background: #fbfaf6; }
.coordinates-section::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(23,24,23,.075) .6px,transparent .6px); background-size: 18px 18px; content: ""; opacity: .18; mask-image: linear-gradient(90deg,transparent,black 30%,black 92%); }
.coordinates-section__grid { position: relative; display: grid; grid-template-columns: minmax(300px,.62fr) minmax(620px,1.38fr); gap: clamp(48px,6vw,90px); align-items: center; }
.coordinates-section__copy h2 { max-width: 450px; margin-top: 17px; font-size: clamp(2.15rem,3.45vw,3.45rem); font-weight: 580; line-height: 1.04; letter-spacing: -.05em; }
.coordinates-section__copy > p { max-width: 440px; margin-top: 24px; color: var(--text); font-size: .82rem; line-height: 1.76; }
.coordinates-section__copy > p strong { color: var(--ink-soft); font-weight: 600; }
.coordinate-map { position: relative; min-width: 0; }
.coordinate-map__mobile { display: none; }
.coordinate-map svg { display: block; width: 100%; height: auto; overflow: visible; }
.coordinate-map__guides { fill: none; stroke: rgba(23,24,23,.22); stroke-width: 1; }
.coordinate-map__guides circle:nth-child(2) { stroke: rgba(68,128,158,.28); stroke-dasharray: 5 7; }
.coordinate-map__routes { fill: none; stroke: var(--blue); stroke-width: 1.8; }
.coordinate-map__routes path { stroke-dasharray: 720; stroke-dashoffset: 0; }
.coordinate-map__points { fill: var(--blue); }
.coordinate-map text { font-family: inherit; }
.coordinate-map__labels { fill: var(--ink); font-size: 17px; font-weight: 600; }
.coordinate-map__target circle:first-child { fill: var(--yellow); stroke: rgba(248,179,27,.25); stroke-width: 10; }
.coordinate-map__target circle:nth-child(2) { fill: var(--ink); }
.coordinate-map__target text { fill: #a56a00; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.coordinate-map__target text:last-child { fill: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: 0; }
.js .coordinate-map.is-visible .coordinate-map__routes path { animation: coordinate-draw 1.1s var(--ease) both; }
.js .coordinate-map.is-visible .coordinate-map__routes path:nth-child(2) { animation-delay: .1s; }.js .coordinate-map.is-visible .coordinate-map__routes path:nth-child(3) { animation-delay: .2s; }.js .coordinate-map.is-visible .coordinate-map__routes path:nth-child(4) { animation-delay: .3s; }
@keyframes coordinate-draw { from { stroke-dashoffset: 720; } }

.coordinate-platforms { position: absolute; inset: 0; pointer-events: none; }
.coordinate-platform { --platform-anchor: translate(-50%,-50%); position: absolute; z-index: 2; display: inline-flex; min-height: 42px; align-items: center; gap: 8px; padding: 7px 12px 7px 8px; border: 1px solid rgba(17,79,112,.12); border-radius: 999px; color: var(--blue); background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(17,79,112,.08); backdrop-filter: blur(10px); transform: var(--platform-anchor); will-change: transform; animation: coordinate-platform-drift 5.8s cubic-bezier(.45,0,.55,1) infinite; }
.coordinate-platform img { flex: 0 0 26px; width: 26px; height: 26px; object-fit: contain; }
.coordinate-platform b { color: var(--ink); font-size: .56rem; font-weight: 600; line-height: 1; white-space: nowrap; }
.coordinate-platform--google { top: 5%; left: 75%; }
.coordinate-platform--meta { top: 16%; left: 90%; animation-duration: 6.4s; }
.coordinate-platform--rd { --platform-anchor: translate(-18%,-50%); top: 50%; left: 94.5%; flex-direction: row-reverse; padding: 7px 8px 7px 12px; animation-duration: 6.1s; }
.coordinate-platform--rd img { object-fit: cover; object-position: left center; }
.coordinate-platform--openai { top: 84%; left: 90%; animation-duration: 6.7s; }
.coordinate-platform--claude { top: 95%; left: 75%; animation-duration: 6.2s; }
.coordinate-platform--gtm { top: 84%; left: 60%; animation-duration: 6.6s; }
.coordinate-platform--hub { top: 16%; left: 60%; animation-duration: 6.3s; }
.coordinate-platform--hub img { width: 23px; height: 23px; border-radius: 50%; }
@keyframes coordinate-platform-drift { 0%,100% { transform: var(--platform-anchor) translateY(3px); } 50% { transform: var(--platform-anchor) translateY(-6px); } }

.route-section { position: relative; min-height: 760px; overflow: hidden; isolation: isolate; color: #fff; background: #030b11; }
.route-section__image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.route-section__overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(2,8,13,.9) 0%,rgba(2,8,13,.7) 37%,rgba(2,8,13,.12) 72%,rgba(2,8,13,.2)); }
.route-section__content { display: flex; min-height: 760px; align-items: flex-start; flex-direction: column; justify-content: center; }
.route-section__content h2 { max-width: 540px; margin-top: 17px; font-size: clamp(2.35rem,4vw,4rem); font-weight: 580; line-height: 1.02; letter-spacing: -.052em; }
.route-section__content h2 em { color: var(--yellow); font-style: normal; }
.route-section__content > p:not(.eyebrow) { max-width: 520px; margin-top: 24px; color: rgba(255,255,255,.66); font-size: .82rem; line-height: 1.75; }
.route-section__content > p strong { color: #fff; font-weight: 600; }
.route-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); width: min(620px,100%); margin-top: 44px; border-top: 1px solid rgba(248,179,27,.5); }
.route-steps li { position: relative; display: grid; gap: 7px; padding: 24px 20px 0 0; }
.route-steps li::before { position: absolute; top: -5px; left: 0; width: 8px; height: 8px; border: 1px solid var(--yellow); border-radius: 50%; background: #071019; content: ""; }
.route-steps li span { color: var(--yellow); font-size: .51rem; font-weight: 700; }.route-steps li strong { font-size: .72rem; }.route-steps li small { max-width: 145px; color: rgba(255,255,255,.48); font-size: .55rem; line-height: 1.5; }
.route-section__content .button { margin-top: 42px; }

.team-story { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(380px,.65fr); min-height: 680px; color: #fff; background: #071014; }
.team-story__media { min-width: 0; min-height: 680px; overflow: hidden; }
.team-story__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.team-story__content { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: clamp(48px,6vw,92px); background: linear-gradient(145deg,#111b1e,#071014); }
.team-story__content h2 { max-width: 430px; margin-top: 17px; font-size: clamp(2rem,3vw,3rem); font-weight: 580; line-height: 1.06; letter-spacing: -.045em; }
.team-story__content > p:not(.eyebrow) { max-width: 470px; margin-top: 24px; color: rgba(255,255,255,.64); font-size: .78rem; line-height: 1.74; }
.team-story__content > p strong { color: #fff; font-weight: 600; }
.team-story__content ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 29px; color: rgba(255,255,255,.72); font-size: .58rem; font-weight: 600; }
.team-story__content li { position: relative; padding-right: 15px; }.team-story__content li:not(:last-child)::after { position: absolute; top: 50%; right: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); content: ""; }
.team-story__content .button { margin-top: 33px; }

.home-concept-one .logo-marquee { background: #f8f7f3; }
.home-concept-one .logo-marquee--territory { padding-top: 4px; border-top: 0; background: #edf2f3; }
.home-concept-one .case-section { background: #071014; }
.home-concept-one [id] { scroll-margin-top: 96px; }

@media (max-width: 1100px) {
  .services-proof--strip .services-proof__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .services-proof--strip .service-proof:nth-child(3) { padding-left: 0; border-left: 0; }
  .coordinates-section__grid { grid-template-columns: minmax(280px,.7fr) minmax(490px,1.3fr); gap: 30px; }
  .territory-panel { grid-template-columns: 1fr; }
  .territory-copy { max-width: 720px; }
  .territory-stage { width: min(820px,100%); }
  .team-story { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .coordinates-section__grid { grid-template-columns: 1fr; }
  .coordinate-map { margin-top: 20px; }
  .coordinate-platforms { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 32px; }
  .coordinate-platform { position: static; flex: 0 0 auto; transform: none; will-change: auto; animation: none; }
  .coordinate-platform--rd { flex-direction: row; padding: 7px 12px 7px 8px; transform: none; }
  .team-story { grid-template-columns: 1fr; }
  .team-story__media { min-height: 470px; }
  .team-story__content { padding: 60px 7vw 70px; }
}

@media (max-width: 720px) {
  .hero--submarine .hero__background { object-position: center; }
  .hero--submarine .hero__video { object-position: center; }
  .hero--submarine::after { background: linear-gradient(180deg,rgba(2,8,13,.2),rgba(2,8,13,.34) 52%,rgba(2,8,13,.56)); }
  .services-proof--strip .services-proof__grid { grid-template-columns: 1fr; }
  .services-proof--strip .service-proof,
  .services-proof--strip .service-proof:nth-child(even),
  .services-proof--strip .service-proof:nth-child(3) { min-height: 0; padding: 27px 0 34px; border-left: 0; }
  .services-proof--strip .service-proof h3,
  .services-proof--strip .service-proof > p { min-height: 0; }
  .coordinate-map svg { display: none; }
  .coordinate-map { width: 100%; max-width: 100%; overflow: hidden; }
  .coordinate-map__mobile { display: grid; grid-template-columns: minmax(0,1fr) 116px; gap: 18px; align-items: center; min-height: 330px; }
  .coordinate-map__mobile ul { display: grid; gap: 0; }
  .coordinate-map__mobile li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; min-height: 61px; font-size: .68rem; font-weight: 600; }
  .coordinate-map__mobile li i { height: 1px; background: linear-gradient(90deg,var(--blue),rgba(17,79,112,.12)); transform: rotate(var(--route-angle,0)); transform-origin: right center; }
  .coordinate-map__mobile li:nth-child(1) { --route-angle: 12deg; }.coordinate-map__mobile li:nth-child(2) { --route-angle: 4deg; }.coordinate-map__mobile li:nth-child(3) { --route-angle: -4deg; }.coordinate-map__mobile li:nth-child(4) { --route-angle: -12deg; }
  .coordinate-map__mobile > div { position: relative; display: grid; min-height: 116px; align-content: center; justify-items: center; border: 1px solid rgba(23,24,23,.16); border-radius: 50%; text-align: center; box-shadow: 0 0 0 25px rgba(97,145,170,.05),0 0 0 50px rgba(97,145,170,.035); }
  .coordinate-map__mobile b { width: 18px; height: 18px; margin-bottom: 14px; border: 5px solid var(--yellow); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 8px rgba(248,179,27,.12); }
  .coordinate-map__mobile strong { color: #9b6500; font-size: .5rem; letter-spacing: .05em; }.coordinate-map__mobile small { max-width: 84px; margin-top: 4px; color: var(--muted); font-size: .46rem; line-height: 1.35; }
  .territory-stage { min-height: 0; }
  .territory-stage__head { min-height: 72px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .territory-countries { min-height: 0; grid-template-columns: 1fr; }
  .territory-country { min-height: 260px; padding: 34px 8px; }
  .territory-country--us { border-top: 1px solid rgba(17,79,112,.12); }
  .territory-flag { width: 62px; margin-bottom: 19px; }
  .territory-flag img { height: 41px; }
  .territory-connection { display: none; }
  .territory-stage__statement { padding-inline: 8px; text-align: left; }
  .home-concept-one .logo-marquee--territory { padding-top: 0; }
  .route-section,.route-section__content { min-height: 760px; }
  .route-section__image { object-position: 72% center; }
  .route-section__overlay { background: linear-gradient(180deg,rgba(2,8,13,.78),rgba(2,8,13,.42) 58%,rgba(2,8,13,.58)); }
  .route-section__content { justify-content: flex-start; padding-top: 82px; padding-bottom: 74px; }
  .route-section__content h2 { font-size: clamp(2.2rem,11vw,3.1rem); }
  .route-section__content > p:not(.eyebrow) { max-width: 340px; }
  .route-steps { grid-template-columns: 1fr; gap: 0; border-top: 0; border-left: 1px solid rgba(248,179,27,.5); }
  .route-steps li { padding: 0 0 22px 24px; }
  .route-steps li::before { top: 3px; left: -5px; }
  .team-story__media { min-height: 370px; }
  .team-story__content { padding: 58px 22px 66px; }
  .team-story__content h2 { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--submarine .hero__video { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .js .coordinate-map.is-visible .coordinate-map__routes path { animation: none; }
  .coordinate-platform { animation: none; }
}

/* RD Station owns the floating WhatsApp entry. Keep inline contact links. */
body .whatsapp-float,
body a:has(> #button_whatsapp),
body #button_whatsapp {
  display: none !important;
}
