:root {
  --ink: #07161f;
  --ink-soft: #0b202b;
  --ink-light: #12313e;
  --paper: #f8f5ee;
  --paper-deep: #eee9dd;
  --white: #fffdf8;
  --emerald: #2cb980;
  --emerald-bright: #5de0ad;
  --emerald-dark: #087052;
  --gold: #c8a96b;
  --muted: #66757b;
  --line: rgba(7, 22, 31, .13);
  --line-light: rgba(255, 255, 255, .13);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: min(1280px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.menu-open { overflow: hidden; }

::selection {
  color: var(--ink);
  background: var(--emerald-bright);
}

a { color: inherit; }
button,
input,
select { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.section { padding: 150px 0; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 3000;
  width: 0;
  height: 2px;
  background: var(--emerald-bright);
  box-shadow: 0 0 18px rgba(93, 224, 173, .6);
}

.ambient-cursor {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .12;
  background: radial-gradient(circle, rgba(93, 224, 173, .45), rgba(93, 224, 173, 0) 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .3s;
}

.site-header {
  position: fixed;
  z-index: 2000;
  inset: 0 0 auto;
  height: 92px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(7, 22, 31, .82);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.brand-mark rect {
  fill: rgba(255, 255, 255, .035);
  stroke: rgba(255, 255, 255, .2);
}

.brand-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-l {
  stroke: var(--emerald-bright);
  stroke-width: 3;
}

.mark-a {
  stroke: var(--white);
  stroke-width: 2.6;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: -.03em;
}

.brand-copy strong { color: var(--emerald-bright); }
.brand-copy span { font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav-links > a {
  position: relative;
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--emerald-bright);
  transition: right .35s var(--ease);
}

.nav-links > a:hover { color: var(--white); }
.nav-links > a:hover::after { right: 0; }

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 16px 11px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 3px;
}

.nav-cta span { color: var(--emerald-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

.hero {
  position: relative;
  min-height: 930px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, transparent 22%, transparent 78%, var(--ink) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: -34%;
  right: -7%;
  width: 850px;
  height: 850px;
  opacity: .24;
  background: radial-gradient(circle, rgba(22, 127, 102, .65), transparent 67%);
}

.hero-glow-two {
  bottom: -46%;
  left: 25%;
  width: 700px;
  height: 700px;
  opacity: .14;
  background: radial-gradient(circle, rgba(200, 169, 107, .5), transparent 69%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(510px, .82fr);
  align-items: center;
  gap: 48px;
  padding-top: 90px;
}

.hero-copy { padding-bottom: 18px; }

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-dark);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow { color: var(--emerald-bright); }
.section-index.light { color: var(--emerald-bright); }

.eyebrow-dot,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 0 5px rgba(93, 224, 173, .08), 0 0 16px rgba(93, 224, 173, .5);
  animation: breathe 2.6s ease-in-out infinite;
}

@keyframes breathe {
  50% { transform: scale(.65); opacity: .55; }
}

.hero h1 {
  max-width: 780px;
  margin: 30px 0 28px;
  font-size: clamp(3.7rem, 5.8vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -.072em;
  line-height: .94;
}

.serif-line,
h2 em {
  display: block;
  color: var(--emerald-bright);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.serif-line { font-style: italic; }

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--emerald-bright);
  box-shadow: 0 12px 35px rgba(44, 185, 128, .16);
}

.button-primary:hover {
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .02);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}

.proof-avatars { display: flex; }

.proof-avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink-light);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: .64rem;
  font-weight: 800;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: var(--emerald-dark);
}

.proof-avatars span:last-child { background: var(--gold); }

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: .69rem;
  line-height: 1.45;
}

.hero-proof strong {
  color: rgba(255, 255, 255, .85);
  font-size: .77rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.vector-stage {
  position: relative;
  width: min(590px, 43vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
}

.orbit-system {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit {
  fill: none;
  stroke: rgba(255, 255, 255, .11);
  stroke-width: 1;
  stroke-dasharray: 3 8;
  transform-origin: 300px 300px;
}

.orbit-one { animation: orbitSpin 55s linear infinite; }
.orbit-two { animation: orbitSpin 38s linear infinite reverse; }
.orbit-three {
  stroke: rgba(93, 224, 173, .18);
  animation: orbitSpin 24s linear infinite;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.growth-path {
  fill: none;
  stroke: url(#orbitGreen);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 10;
  animation: pathTravel 4s linear infinite;
}

@keyframes pathTravel { to { stroke-dashoffset: -44; } }

.orbit-nodes circle {
  fill: var(--emerald-bright);
  transform-box: fill-box;
  transform-origin: center;
  animation: nodePulse 3s ease-in-out infinite;
}

.orbit-nodes circle:nth-child(2) { animation-delay: -.8s; }
.orbit-nodes circle:nth-child(3) { animation-delay: -1.6s; }
.orbit-nodes circle:nth-child(4) { animation-delay: -2.4s; }

@keyframes nodePulse {
  50% { opacity: .35; transform: scale(.55); }
}

.axis-labels {
  fill: rgba(255, 255, 255, .28);
  font: 700 9px var(--sans);
  letter-spacing: 2px;
}

.core-sphere {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 194px;
  height: 194px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(93, 224, 173, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(93, 224, 173, .2), transparent 37%),
    rgba(11, 32, 43, .76);
  box-shadow: inset 0 0 40px rgba(93, 224, 173, .05), 0 0 80px rgba(2, 8, 12, .55);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.core-sphere::before,
.core-sphere::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(93, 224, 173, .12);
  border-radius: inherit;
}

.core-sphere::after {
  inset: -28px;
  border-style: dashed;
  animation: orbitSpin 20s linear infinite;
}

.core-kicker {
  color: rgba(255, 255, 255, .47);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.core-sphere strong {
  margin: 5px 0 2px;
  color: var(--white);
  font-size: 3.1rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.core-sphere small {
  color: var(--emerald-bright);
  font-size: 1rem;
}

.core-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--emerald-bright);
  font-size: .61rem;
  font-weight: 700;
}

.core-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.metric-card {
  position: absolute;
  z-index: 3;
  width: 185px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(9, 29, 39, .82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(16px);
  transition: transform .25s var(--ease);
}

.metric-card > span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .4);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--white);
  font-size: 1.22rem;
  letter-spacing: -.04em;
}

.metric-card-a {
  top: 12%;
  right: -1%;
  animation: cardFloat 6s ease-in-out infinite;
}

.metric-card-a svg {
  width: 100%;
  height: 28px;
  margin-top: 5px;
  fill: none;
  stroke: var(--emerald-bright);
  stroke-width: 1.8;
}

.metric-card-b {
  bottom: 17%;
  left: -2%;
  animation: cardFloat 7s -2s ease-in-out infinite;
}

.metric-card-c {
  right: 1%;
  bottom: 5%;
  animation: cardFloat 8s -4s ease-in-out infinite;
}

@keyframes cardFloat {
  50% { translate: 0 -9px; }
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 14px var(--emerald-bright);
}

.mini-bars {
  height: 25px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.mini-bars i {
  width: 11px;
  height: 24%;
  background: rgba(93, 224, 173, .25);
  border-radius: 1px;
  animation: miniBars 2.4s ease-in-out infinite alternate;
}

.mini-bars i:nth-child(2) { height: 42%; animation-delay: -.4s; }
.mini-bars i:nth-child(3) { height: 67%; animation-delay: -.8s; }
.mini-bars i:nth-child(4) { height: 52%; animation-delay: -1.2s; }
.mini-bars i:nth-child(5) { height: 93%; animation-delay: -1.6s; background: var(--emerald-bright); }

@keyframes miniBars { to { transform: scaleY(.72); opacity: .65; } }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .35);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--emerald-bright);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue { to { top: 100%; } }

.signal-rail {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--ink);
  background: var(--emerald-bright);
  border-block: 1px solid rgba(7, 22, 31, .18);
}

.signal-track {
  width: max-content;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: marquee 28s linear infinite;
}

.signal-track span {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  white-space: nowrap;
}

.signal-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes marquee { to { transform: translateX(-50%); } }

.section-intro { margin-bottom: 70px; }

.section-intro h2,
.method-copy h2,
.outcomes-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 23px 0 0;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .98;
}

.section-intro h2 em,
.method-copy h2 em,
.outcomes-copy h2 em,
.about-copy h2 em,
.contact-copy h2 em {
  font-style: italic;
}

h2.light { color: var(--white); }
h2.light em { color: var(--emerald-bright); }
p.light { color: rgba(255, 255, 255, .58); }

.split-intro,
.insights-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .55fr);
  gap: 110px;
  align-items: end;
}

.split-intro > p,
.insights-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principle-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: color .45s, background .45s;
}

.principle-card:first-child { border-left: 1px solid var(--line); }

.principle-card:hover {
  color: var(--white);
  background: var(--ink);
}

.principle-number {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.principle-icon {
  width: 66px;
  height: 66px;
  margin: 62px 0 28px;
  display: grid;
  place-items: center;
  color: var(--emerald-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .45s, border-color .45s, transform .6s var(--ease);
}

.principle-card:hover .principle-icon {
  color: var(--emerald-bright);
  border-color: rgba(93, 224, 173, .3);
  transform: rotate(8deg) scale(1.08);
}

.principle-icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin: 0 0 13px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.principle-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75;
  transition: color .45s;
}

.principle-card:hover p { color: rgba(255, 255, 255, .55); }

.card-vector {
  position: absolute;
  right: -120%;
  bottom: 0;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-bright), transparent);
  transition: right .9s var(--ease);
}

.principle-card:hover .card-vector { right: 100%; }

.services-section {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.services-orbit {
  position: absolute;
  top: -530px;
  right: -380px;
  width: 980px;
  height: 980px;
  opacity: .22;
  border: 1px solid rgba(93, 224, 173, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(93, 224, 173, .025), 0 0 0 220px rgba(93, 224, 173, .018);
}

.section-lede {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.services-bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 350px;
  grid-column: span 4;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  background: rgba(255, 255, 255, .025);
  transform-style: preserve-3d;
  transition: border-color .4s, background .4s, transform .2s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  opacity: 0;
  background: radial-gradient(circle, rgba(93, 224, 173, .15), transparent 69%);
  transition: opacity .4s;
}

.service-card:hover {
  border-color: rgba(93, 224, 173, .38);
  background: rgba(255, 255, 255, .045);
}

.service-card:hover::after { opacity: 1; }

.service-feature {
  min-height: 714px;
  grid-column: span 6;
  grid-row: span 2;
  padding: 36px;
}

.service-wide {
  min-height: 350px;
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-topline {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .34);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-topline i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}

.service-icon {
  width: 95px;
  height: 95px;
  margin: 70px 0 30px;
  display: grid;
  place-items: center;
  color: var(--emerald-bright);
  border: 1px solid rgba(93, 224, 173, .22);
  border-radius: 50%;
  background: rgba(93, 224, 173, .035);
}

.service-icon.small {
  width: 67px;
  height: 67px;
  margin: 54px 0 24px;
}

.service-icon svg {
  width: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.small svg { width: 38px; }

.service-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.38rem;
  letter-spacing: -.04em;
  line-height: 1.22;
}

.service-feature h3 { font-size: clamp(2rem, 3vw, 3rem); }

.service-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .83rem;
  line-height: 1.72;
}

.service-feature > ul {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.service-feature li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, .57);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  font-size: .63rem;
}

.service-feature > a {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 36px;
  display: flex;
  gap: 12px;
  color: var(--emerald-bright);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}

.service-graph {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 58%;
  opacity: .55;
}

.service-graph svg { display: block; width: 100%; }
.graph-grid { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1; }
.graph-line { fill: none; stroke: var(--emerald-bright); stroke-width: 2; stroke-dasharray: 500; stroke-dashoffset: 500; transition: stroke-dashoffset 1.8s var(--ease); }
.service-card.is-visible .graph-line { stroke-dashoffset: 0; }

.service-pulse {
  position: absolute;
  right: 27px;
  bottom: 28px;
  width: 76px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.service-pulse i {
  width: 9px;
  height: 38%;
  background: rgba(93,224,173,.25);
}

.service-pulse i:nth-child(3) { height: 68%; }
.service-pulse i:nth-child(4) { height: 100%; background: var(--emerald-bright); }

.tax-ring {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(93, 224, 173, .35);
  border-radius: 50%;
  animation: orbitSpin 14s linear infinite;
}

.tax-ring span {
  color: var(--emerald-bright);
  font-size: .63rem;
  font-weight: 800;
  animation: orbitSpin 14s linear infinite reverse;
}

.audit-visual {
  position: relative;
  align-self: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: rgba(0, 0, 0, .13);
}

.audit-visual > div {
  display: flex;
  gap: 11px;
  margin: 10px 0;
}

.audit-visual i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.23);
}

.audit-visual b {
  width: 74%;
  height: 7px;
  background: rgba(255,255,255,.08);
}

.scan-line {
  position: absolute;
  z-index: 2;
  inset: -1px 0 auto;
  height: 1px;
  background: var(--emerald-bright);
  box-shadow: 0 0 15px var(--emerald-bright);
  animation: scan 3.5s ease-in-out infinite;
}

@keyframes scan { 50%, 100% { top: 100%; } }

.credit-status {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.46);
  font-size: .58rem;
}

.credit-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 13px var(--emerald-bright);
}

.automation-nodes {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: 75px;
  height: 44px;
}

.automation-nodes i {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--emerald-bright);
}

.automation-nodes i:nth-child(1) { left: 0; bottom: 0; }
.automation-nodes i:nth-child(2) { left: 31px; top: 0; }
.automation-nodes i:nth-child(3) { right: 0; bottom: 10px; }
.automation-nodes span {
  position: absolute;
  inset: 13px 4px;
  border-top: 1px solid rgba(93,224,173,.45);
  transform: rotate(-12deg);
}

.capability-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-light);
}

.capability-row span {
  padding: 20px 18px;
  color: rgba(255,255,255,.48);
  border-right: 1px solid var(--line-light);
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
}

.capability-row span:last-child { border: 0; }

.method-section { background: var(--paper); }

.method-layout {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(500px, 1fr);
  gap: 13vw;
}

.method-copy {
  position: sticky;
  top: 145px;
  align-self: start;
}

.method-copy h2 { font-size: clamp(3.1rem, 4.4vw, 4.8rem); }

.method-copy p {
  max-width: 480px;
  margin: 30px 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  color: var(--emerald-dark);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(8,112,82,.3);
}

.method-steps {
  position: relative;
  padding-left: 80px;
}

.method-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  overflow: visible;
}

.method-path-base,
.method-path-live {
  fill: none;
  stroke-width: 1.2;
}

.method-path-base { stroke: rgba(7,22,31,.12); }
.method-path-live { stroke: var(--emerald-dark); stroke-dasharray: 760; stroke-dashoffset: 760; transition: stroke-dashoffset 1.8s var(--ease); }
.method-steps.is-active .method-path-live { stroke-dashoffset: 0; }

.method-step {
  position: relative;
  min-height: 190px;
  padding: 0 0 54px 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.method-step:last-child { margin-bottom: 0; }

.method-step > span {
  position: absolute;
  top: 3px;
  left: -72px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--emerald-dark);
  background: var(--paper);
  border: 1px solid rgba(8,112,82,.26);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 800;
}

.method-step small {
  color: var(--emerald-dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.method-step h3 {
  margin: 11px 0 10px;
  font-size: 1.8rem;
  letter-spacing: -.04em;
}

.method-step p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.outcomes-section {
  padding: 150px 0;
  color: var(--white);
  background: var(--ink-soft);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(550px, 1.1fr) minmax(370px, .8fr);
  gap: 9vw;
  align-items: center;
}

.outcomes-visual {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  background: #081922;
  box-shadow: 0 40px 90px rgba(0,0,0,.22);
}

.console-top {
  height: 49px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.console-top > div { display: flex; gap: 6px; }
.console-top > div span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.15); }
.console-top small { color: rgba(255,255,255,.3); font-size: .52rem; letter-spacing: .12em; text-align: center; }
.console-top > i { justify-self: end; color: var(--emerald-bright); font-size: .5rem; font-style: normal; font-weight: 800; }

.console-body { padding: 34px; }

.console-score {
  display: flex;
  align-items: baseline;
  gap: 17px;
}

.console-score small { color: rgba(255,255,255,.4); font-size: .66rem; }
.console-score strong { font-size: 2.6rem; letter-spacing: -.06em; }
.console-score sup { color: rgba(255,255,255,.28); font-size: .7rem; }
.trend-up { color: var(--emerald-bright); font-size: .58rem; }

.console-chart { height: 210px; margin: 27px 0 25px; }
.console-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-grid { fill: none; stroke: rgba(255,255,255,.055); stroke-width: 1; }
.chart-area { fill: url(#chartFill); opacity: 0; transition: opacity 1s .5s; }
.chart-stroke { fill: none; stroke: var(--emerald-bright); stroke-width: 2; stroke-dasharray: 800; stroke-dashoffset: 800; transition: stroke-dashoffset 2s var(--ease); }
.outcomes-visual.is-visible .chart-stroke { stroke-dashoffset: 0; }
.outcomes-visual.is-visible .chart-area { opacity: 1; }

.console-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.console-kpis > div { position: relative; padding: 18px 12px 2px; border-right: 1px solid var(--line-light); }
.console-kpis > div:last-child { border: 0; }
.console-kpis small { display: block; color: rgba(255,255,255,.33); font-size: .54rem; }
.console-kpis strong { display: block; margin-top: 4px; font-size: .88rem; }
.console-kpis i { position: absolute; top: 21px; right: 12px; width: 5px; height: 5px; border-radius: 50%; }
.console-kpis i.good { background: var(--emerald-bright); box-shadow: 0 0 10px var(--emerald-bright); }

.outcomes-copy h2 { font-size: clamp(3.4rem, 5vw, 5.5rem); }
.outcomes-copy > p { max-width: 510px; margin: 30px 0 55px; }

.outcome-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.outcome-stats > div { padding-top: 17px; border-top: 1px solid var(--line-light); }
.outcome-stats strong { display: block; color: var(--white); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.outcome-stats > div > span { display: block; color: rgba(255,255,255,.38); font-size: .58rem; }

.about-section { background: var(--paper-deep); }

.about-layout {
  display: grid;
  grid-template-columns: minmax(380px, .8fr) minmax(460px, .9fr);
  gap: 11vw;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 18px 0 0 18px;
}

.about-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 660px;
  display: block;
  object-fit: cover;
  filter: saturate(.65) contrast(1.05);
}

.about-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 18px 0 0 18px;
  background: linear-gradient(to top, rgba(7,22,31,.45), transparent 45%);
}

.image-frame {
  position: absolute;
  z-index: 1;
  inset: 0 18px 18px 0;
  border: 1px solid rgba(8,112,82,.28);
}

.about-caption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.7);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-caption i { width: 32px; height: 1px; background: rgba(255,255,255,.4); }
.about-copy h2 { font-size: clamp(3.1rem, 4.4vw, 4.8rem); }
.about-copy .lead { margin-top: 34px; color: var(--ink); font-size: 1.04rem; line-height: 1.85; }
.about-copy > p:not(.lead) { color: var(--muted); }

.about-copy blockquote {
  margin: 40px 0 0;
  padding: 26px 0 0 30px;
  color: var(--emerald-dark);
  border-top: 1px solid rgba(8,112,82,.22);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
}

.insights-section { background: var(--paper); }
.insights-heading h2 { font-size: clamp(3.1rem, 4.7vw, 5rem); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
}

.insight-card:hover {
  border-color: rgba(8,112,82,.3);
  box-shadow: 0 28px 70px rgba(7,22,31,.1);
  transform: translateY(-8px);
}

.insight-image {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: var(--ink-soft);
}

.insight-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,22,31,.45), transparent 70%); }
.insight-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.62); transition: transform .8s var(--ease), filter .5s; }
.insight-card:hover .insight-image img { transform: scale(1.055); filter: saturate(.9); }

.insight-category {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--emerald-bright);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-body {
  flex: 1;
  padding: 27px;
  display: flex;
  flex-direction: column;
}

.insight-date { color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.insight-body h3 { margin: 14px 0 13px; font-size: 1.26rem; letter-spacing: -.035em; line-height: 1.35; }
.insight-body p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.7; }
.insight-body a { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; color: var(--emerald-dark); font-size: .7rem; font-weight: 800; text-decoration: none; border-top: 1px solid var(--line); }

.insight-skeleton {
  min-height: 520px;
  background: linear-gradient(100deg, rgba(7,22,31,.025) 30%, rgba(7,22,31,.07) 50%, rgba(7,22,31,.025) 70%);
  background-size: 300% 100%;
  animation: skeleton 1.8s infinite;
}

@keyframes skeleton { to { background-position: -150% 0; } }

.contact-section {
  position: relative;
  padding: 150px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.contact-vector {
  position: absolute;
  border: 1px solid rgba(93,224,173,.1);
  border-radius: 50%;
}

.contact-vector-a { width: 720px; height: 720px; top: -490px; left: -240px; box-shadow: 0 0 0 80px rgba(93,224,173,.02), 0 0 0 160px rgba(93,224,173,.015); }
.contact-vector-b { width: 480px; height: 480px; right: -300px; bottom: -180px; box-shadow: 0 0 0 70px rgba(93,224,173,.018); }

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(400px, .8fr) minmax(550px, 1fr);
  gap: 10vw;
  align-items: center;
}

.contact-copy h2 { font-size: clamp(3.5rem, 5.2vw, 5.5rem); }
.contact-copy > p { max-width: 510px; margin: 30px 0 47px; }

.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}

.contact-direct a {
  padding-top: 16px;
  text-decoration: none;
  border-top: 1px solid var(--line-light);
}

.contact-direct small { display: block; color: rgba(255,255,255,.35); font-size: .57rem; text-transform: uppercase; }
.contact-direct span { display: block; margin-top: 5px; color: rgba(255,255,255,.83); font-size: .72rem; font-weight: 700; }

.contact-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}

.panel-head {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid var(--line-light);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.panel-head > div { display: flex; align-items: center; gap: 9px; }

.field-grid {
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}

.field-grid label {
  padding: 20px 0 13px;
  border-bottom: 1px solid var(--line-light);
}

.field-grid label > span { display: block; color: rgba(255,255,255,.35); font-size: .55rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field-grid input,
.field-grid select {
  width: 100%;
  margin-top: 7px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font-size: .78rem;
}

.field-grid select { color-scheme: dark; }
.field-grid input::placeholder { color: rgba(255,255,255,.22); }
.field-grid label:focus-within { border-color: var(--emerald-bright); }
.field-full { grid-column: 1 / -1; }

.submit-button {
  width: 100%;
  margin-top: 28px;
  border: 0;
}

.form-note { margin: 12px 0 0; color: rgba(255,255,255,.25); font-size: .55rem; text-align: center; }
.form-status { min-height: 20px; margin-top: 8px; color: var(--emerald-bright); font-size: .66rem; text-align: center; }

.site-footer {
  padding: 85px 0 30px;
  color: var(--white);
  background: #041017;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
  padding-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}

.footer-top > p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.25;
  text-align: right;
}

.footer-grid {
  padding: 54px 0 62px;
  display: grid;
  grid-template-columns: .75fr 1.15fr 1.1fr 1.4fr;
  gap: 55px;
}

.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid small { margin-bottom: 8px; color: rgba(255,255,255,.3); font-size: .55rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a,
.footer-grid span { color: rgba(255,255,255,.57); font-size: .7rem; text-decoration: none; }
.footer-grid a:hover { color: var(--emerald-bright); }
.footer-grid .footer-cta { padding: 24px; background: rgba(255,255,255,.035); border: 1px solid var(--line-light); }
.footer-cta a { width: 100%; display: flex; justify-content: space-between; color: var(--white); font-weight: 700; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.25);
  border-top: 1px solid var(--line-light);
  font-size: .58rem;
}

.footer-bottom a { color: inherit; text-decoration: none; }

.cookie-banner {
  position: fixed;
  z-index: 5000;
  right: 22px;
  bottom: 22px;
  width: min(540px, calc(100vw - 44px));
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  background: rgba(7,22,31,.96);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 55px rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1; margin: 0; color: rgba(255,255,255,.55); font-size: .63rem; line-height: 1.6; }
.cookie-banner p a { color: var(--emerald-bright); }
.cookie-banner > div { display: flex; gap: 7px; }
.cookie-banner button { padding: 8px 12px; color: rgba(255,255,255,.65); background: transparent; border: 1px solid rgba(255,255,255,.18); cursor: pointer; font-size: .6rem; }
.cookie-banner button:last-child { color: var(--ink); background: var(--emerald-bright); border-color: var(--emerald-bright); }

.whatsapp-button {
  position: fixed;
  z-index: 1900;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--emerald-bright);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(0,0,0,.24);
  transition: transform .3s var(--ease), background .3s;
}

.whatsapp-button:hover { background: var(--white); transform: translateY(-4px) scale(1.03); }
.whatsapp-button svg { width: 28px; fill: currentColor; }

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 44px, 960px); }
  .hero { min-height: 840px; }
  .hero-layout { grid-template-columns: 1fr .8fr; }
  .hero h1 { font-size: clamp(3.5rem, 6vw, 5.2rem); }
  .vector-stage { width: min(520px, 46vw); }
  .metric-card { width: 165px; }
  .service-feature { grid-column: span 8; }
  .service-card { grid-column: span 4; }
  .service-wide { grid-column: span 8; }
  .method-layout { gap: 8vw; }
  .outcomes-layout { grid-template-columns: 1.05fr .75fr; gap: 6vw; }
  .contact-layout { gap: 6vw; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 36px, 720px); }
  .section { padding: 105px 0; }
  .ambient-cursor { display: none; }
  .site-header { height: 76px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(7,22,31,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .35s, visibility .35s, transform .45s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { padding: 17px 0; color: var(--white); border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
  .nav-links .nav-cta { margin-top: 28px; padding: 14px 17px; border: 0; font-family: var(--sans); font-size: .8rem; }
  .menu-toggle.active span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { height: auto; min-height: 100svh; padding: 135px 0 95px; }
  .hero-layout { grid-template-columns: 1fr; gap: 45px; padding-top: 0; }
  .hero-copy { position: relative; z-index: 4; }
  .hero h1 { max-width: 680px; font-size: clamp(3.6rem, 10vw, 5.5rem); }
  .hero-lede { max-width: 580px; }
  .hero-visual { min-height: 520px; }
  .vector-stage { width: min(560px, 86vw); }
  .scroll-cue { display: none; }
  .split-intro,
  .insights-heading { grid-template-columns: 1fr; gap: 30px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 310px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle-icon { margin-top: 45px; }
  .service-feature,
  .service-card,
  .service-wide { grid-column: span 12; }
  .service-feature { min-height: 650px; }
  .service-card:not(.service-feature) { min-height: 340px; }
  .capability-row { grid-template-columns: 1fr 1fr; }
  .capability-row span:nth-child(2) { border-right: 0; }
  .capability-row span:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .method-layout { grid-template-columns: 1fr; gap: 75px; }
  .method-copy { position: static; }
  .outcomes-layout { grid-template-columns: 1fr; gap: 75px; }
  .outcomes-copy { grid-row: 1; }
  .about-layout { grid-template-columns: 1fr; gap: 70px; }
  .about-media { max-width: 590px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card:last-child { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 85px 0; }
  .brand-copy span { display: none; }
  .hero { padding-top: 120px; }
  .hero-grid { background-size: 48px 48px; }
  .hero h1 { margin: 24px 0; font-size: clamp(3.05rem, 15vw, 4.4rem); line-height: .94; }
  .hero-lede { font-size: .92rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 28px; }
  .hero-visual { min-height: 390px; }
  .vector-stage { width: 100vw; margin-left: -14px; }
  .axis-labels { display: none; }
  .metric-card { width: 148px; padding: 12px; }
  .metric-card-a { right: 2%; top: 9%; }
  .metric-card-b { left: 2%; bottom: 12%; }
  .metric-card-c { display: none; }
  .core-sphere { width: 150px; height: 150px; }
  .core-sphere strong { font-size: 2.5rem; }
  .signal-track { min-height: 54px; }
  .section-intro h2,
  .method-copy h2,
  .outcomes-copy h2,
  .about-copy h2,
  .contact-copy h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .section-intro { margin-bottom: 50px; }
  .principle-card { padding: 28px; }
  .service-card,
  .service-feature { min-height: 390px; padding: 24px; }
  .service-feature { min-height: 630px; }
  .service-feature > a { left: 24px; bottom: 25px; }
  .service-graph { width: 75%; }
  .service-wide { display: block; }
  .audit-visual { margin-top: 35px; }
  .capability-row { grid-template-columns: 1fr; }
  .capability-row span { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .capability-row span:last-child { border: 0; }
  .method-steps { padding-left: 55px; }
  .method-vector { width: 55px; }
  .method-step { padding-left: 16px; }
  .method-step > span { left: -55px; width: 36px; height: 36px; }
  .outcomes-section { padding: 90px 0; }
  .console-body { padding: 20px; }
  .console-score { flex-wrap: wrap; gap: 8px 15px; }
  .console-chart { height: 150px; }
  .outcome-stats { gap: 8px; }
  .outcome-stats strong { font-size: 1.5rem; }
  .about-media img { min-height: 470px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card:last-child { grid-column: auto; }
  .contact-section { padding: 90px 0; }
  .contact-direct { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px 19px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 30px; }
  .footer-top > p { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100vw - 24px); align-items: stretch; flex-direction: column; }
  .cookie-banner > div { justify-content: flex-end; }
  .whatsapp-button { right: 17px; bottom: 17px; }
}

@media (hover: none) {
  .ambient-cursor { display: none; }
}

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