:root {
  --ink: #25334d;
  --ink-soft: #34415c;
  --paper: #f3f5f9;
  --white: #ffffff;
  --blue: #425cf6;
  --blue-dark: #2f47d7;
  --navy: #23439a;
  --grey: #667085;
  --grey-soft: #e9edf4;
  --line: rgba(72, 86, 116, 0.18);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 92, 246, .08), transparent 67%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 5vw;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; background: var(--blue); border-radius: 50%; }
.brand-mark svg { width: 27px; fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand strong, .brand small { display: block; }
.brand strong { font: 700 14px/1.2 var(--display); letter-spacing: -.02em; }
.brand small { margin-top: 2px; color: var(--grey); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 28px; font: 600 13px/1 var(--display); }
nav a { text-decoration: none; }
.nav-cta { display: inline-flex; align-items: center; gap: 20px; padding: 13px 18px; color: var(--white); background: var(--blue); border-radius: 100px; }
.nav-cta span { color: var(--white); transition: transform .2s ease; }
.nav-cta:hover span { transform: translate(2px, -2px); }

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
  grid-template-rows: 1fr auto;
  gap: 40px 6vw;
  min-height: 850px;
  overflow: hidden;
  padding: 150px 7vw 0;
}

.topography { position: absolute; right: -6%; top: 0; width: 59%; height: 84%; z-index: -1; opacity: .45; }
.topography svg { width: 100%; height: 100%; }
.topography path { fill: none; stroke: #aeb9cb; stroke-width: 1; }

.hero-copy { align-self: center; max-width: 920px; padding-bottom: 48px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: var(--blue); font: 700 11px/1.3 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 2px; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.055em; }
h1 { max-width: 920px; font-size: clamp(48px, 6.2vw, 94px); line-height: .99; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-intro { max-width: 760px; margin: 32px 0 0; color: #536079; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 56px; padding: 0 24px; border-radius: 3px; font: 700 13px/1.2 var(--display); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(66,92,246,.18); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 36px rgba(66,92,246,.23); }
.button span { font-size: 17px; }
.text-link { color: #484c54; font: 600 13px/1 var(--display); text-decoration: none; }
.text-link span { display: inline-block; margin-left: 6px; color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.diagnostic-card { align-self: end; position: relative; max-width: 390px; margin: 0 0 64px auto; padding: 28px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.94); box-shadow: 0 24px 80px rgba(35,67,154,.12); backdrop-filter: blur(14px); }
.diagnostic-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.diagnostic-head span { color: var(--grey); font-size: 12px; }
.diagnostic-head strong { color: var(--blue); font: 700 12px/1 var(--display); text-transform: uppercase; letter-spacing: .08em; }
.diagnostic-lead { margin: 24px 0 20px; font: 700 22px/1.25 var(--display); letter-spacing: -.03em; }
.diagnostic-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.diagnostic-card li { display: flex; align-items: center; gap: 12px; min-height: 38px; padding: 0 12px; background: var(--grey-soft); font-size: 13px; }
.diagnostic-card li span { color: var(--blue); font: 700 11px/1 var(--display); }
.diagnostic-card blockquote { margin: 22px 0 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.signature { display: flex; flex-direction: column; gap: 3px; padding-top: 16px; border-top: 1px solid var(--line); }
.signature strong { font: 700 13px/1.2 var(--display); }
.signature span { color: var(--grey); font-size: 11px; }

.scope-bar { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; min-height: 78px; margin: 0 -7vw; padding: 0 7vw; color: var(--white); background: var(--navy); }
.scope-bar span { font: 600 12px/1 var(--display); }
.scope-bar i { width: 4px; height: 4px; background: #aebdff; border-radius: 50%; }
.scope-bar p { margin-left: auto; color: #d8deff; font: 500 11px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }

.expertise { padding: 128px 7vw 120px; background: var(--white); }
.section-heading { display: grid; grid-template-columns: .7fr 1.35fr .75fr; gap: 50px; align-items: end; max-width: 1280px; margin: 0 auto 70px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { font-size: clamp(40px, 4.9vw, 72px); line-height: 1.03; }
.section-heading > p:last-child { margin: 0; color: var(--grey); font-size: 16px; line-height: 1.65; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 1280px; margin: 0 auto; background: #dce1ea; border: 1px solid #dce1ea; }
.expertise-card { min-height: 320px; padding: 30px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.expertise-card:hover { position: relative; z-index: 2; transform: translateY(-6px); box-shadow: 0 24px 55px rgba(35,67,154,.12); }
.expertise-card.accent { background: #f1f3ff; }
.card-number { display: block; color: #9ca0a8; font: 600 12px/1 var(--display); }
.expertise-card h3 { margin: 105px 0 16px; font: 700 22px/1.2 var(--display); letter-spacing: -.03em; }
.expertise-card p { margin: 0; color: var(--grey); font-size: 15px; line-height: 1.65; }

.accompaniment { padding: 126px 7vw; color: var(--white); background: var(--navy); }
.accompaniment-intro { display: grid; grid-template-columns: .7fr 1.35fr .75fr; gap: 50px; align-items: end; max-width: 1280px; margin: 0 auto 84px; }
.eyebrow.light { color: #cbd4ff; }
.accompaniment-intro h2 { font-size: clamp(40px, 4.9vw, 72px); line-height: 1.03; }
.accompaniment-intro h2 em { color: #dbe2ff; }
.accompaniment-intro > p:last-child { margin: 0; color: #aeb2bc; font-size: 16px; line-height: 1.65; }
.process-pitch { max-width: 1280px; margin: 0 auto 64px; padding: 36px 42px; color: var(--ink); background: var(--white); border-left: 5px solid #9aaeff; }
.process-pitch p { max-width: 1050px; margin: 0; font: 600 clamp(19px, 2vw, 27px)/1.55 var(--display); letter-spacing: -.025em; }
.steps { max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.2); }
.step { display: grid; grid-template-columns: .7fr 2.1fr; gap: 50px; padding: 52px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.step-marker { display: flex; align-items: flex-start; }
.step-marker span { display: grid; place-items: center; width: 54px; height: 54px; color: var(--navy); background: var(--white); border-radius: 50%; font: 800 18px/1 var(--display); }
.step-content { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 7vw; }
.step-kicker { grid-column: 1 / -1; margin: 0 0 10px; color: #8f9dff; font: 700 11px/1.2 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.step-content h3 { margin: 0; font: 700 clamp(27px, 2.6vw, 39px)/1.15 var(--display); letter-spacing: -.04em; }
.step-content > p:not(.step-kicker) { margin: 18px 0 0; color: #c2c5cc; font-size: 16px; line-height: 1.7; }
.step-content ul { grid-column: 2; grid-row: 2 / span 2; margin: 0; padding: 0; list-style: none; }
.step-content li { position: relative; padding: 13px 0 13px 24px; color: #dddfe4; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; line-height: 1.45; }
.step-content li::before { content: ""; position: absolute; left: 0; top: 20px; width: 8px; height: 2px; background: #aebdff; }

.posture { padding: 120px 7vw; background: var(--paper); }
.posture-copy { display: grid; grid-template-columns: .7fr 1.35fr .75fr; gap: 50px; align-items: start; max-width: 1280px; margin: 0 auto 72px; }
.posture-copy h2 { font-size: clamp(38px, 4.3vw, 64px); line-height: 1.06; }
.posture-copy > p:last-child { margin: 4px 0 0; color: var(--grey); font-size: 16px; line-height: 1.7; }
.posture-verbs { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.posture-verbs span { padding: 30px 20px; background: rgba(255,255,255,.52); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font: 700 clamp(19px, 2vw, 27px)/1.2 var(--display); letter-spacing: -.035em; }
.posture-verbs span:nth-child(2), .posture-verbs span:nth-child(4) { color: var(--blue); }
.fit-line { max-width: 1280px; margin: 34px auto 0; padding: 24px 0 0; border-top: 1px solid var(--line); }
.fit-line p { margin: 0; color: var(--grey); font-size: 15px; line-height: 1.65; }
.fit-line strong { margin-right: 6px; color: var(--ink); }

.contact { padding: 110px 7vw 28px; color: var(--white); background: var(--blue); }
.contact-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; align-items: end; max-width: 1280px; margin: 0 auto; }
.contact h2 { font-size: clamp(43px, 5.5vw, 78px); line-height: 1.03; }
.contact h2 em { color: var(--white); }
.contact-action { padding-bottom: 6px; }
.contact-action p { margin: 0 0 26px; color: #e0e4ff; font-size: 16px; line-height: 1.65; }
.button-white { width: 100%; color: var(--blue); background: var(--white); }
.button-white:hover { box-shadow: 0 14px 34px rgba(35,67,154,.25); }
.email-link { display: inline-block; margin-top: 18px; color: #e4e7ff; font-size: 13px; text-underline-offset: 4px; }
footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; max-width: 1280px; margin: 100px auto 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.25); color: #ccd3ff; font-size: 11px; }
.footer-brand { color: var(--white); font: 700 13px/1 var(--display); text-decoration: none; }
.footer-brand span { color: #dbe2ff; }
footer p { margin: 0; text-align: center; }
footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-card { min-height: 280px; }
  .expertise-card h3 { margin-top: 70px; }
}

@media (max-width: 960px) {
  nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 0; padding-top: 140px; }
  .hero-copy { padding-bottom: 0; }
  .diagnostic-card { width: min(100%, 420px); margin: 0; }
  .topography { width: 95%; height: 45%; right: -25%; }
  .section-heading, .accompaniment-intro, .posture-copy { grid-template-columns: 1fr 1.5fr; }
  .section-heading > p:last-child, .accompaniment-intro > p:last-child, .posture-copy > p:last-child { grid-column: 2; }
  .step { grid-template-columns: .4fr 2.1fr; }
  .contact-inner { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 720px) {
  .site-header { padding: 18px 20px; }
  .nav-cta { padding: 12px 15px; }
  .hero { gap: 36px; padding: 124px 22px 0; }
  h1 { font-size: clamp(42px, 12.5vw, 61px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .button-primary { width: 100%; }
  .scope-bar { flex-wrap: wrap; gap: 12px; margin: 0 -22px; padding: 21px 22px; }
  .scope-bar p { flex-basis: 100%; margin: 5px 0 0; line-height: 1.5; }
  .expertise, .posture { padding: 84px 22px 80px; }
  .section-heading, .accompaniment-intro, .posture-copy { display: block; margin-bottom: 44px; }
  .section-heading h2, .accompaniment-intro h2, .posture-copy h2 { margin-bottom: 25px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 250px; }
  .accompaniment { padding: 84px 22px; }
  .process-pitch { margin-bottom: 48px; padding: 28px 24px; }
  .step { grid-template-columns: 1fr; gap: 25px; padding: 42px 0; }
  .step-content { display: block; }
  .step-content ul { margin-top: 22px; }
  .posture-verbs { grid-template-columns: 1fr 1fr; }
  .contact { padding: 82px 22px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 45px; }
  footer { grid-template-columns: 1fr auto; gap: 14px; margin-top: 75px; }
  footer p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cursor-glow { display: none; }
}
