/* ==========================================================================
   Entretech Consulting — site stylesheet
   Sections: tokens · reset · layout · typography · components · regions · pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --violet: #6D3BFF;
  --violet-dark: #5326D8;
  --violet-deep: #4A1FC7;
  --purple: #A855F7;
  --blue: #4F7CFF;
  --lilac: #C4A9FF;

  --grad-brand: linear-gradient(120deg, var(--violet), var(--purple));
  --grad-brand-wide: linear-gradient(118deg, var(--violet), var(--purple) 48%, var(--blue));
  --grad-mark: linear-gradient(135deg, var(--violet), var(--purple) 52%, var(--blue));
  --grad-tint: linear-gradient(140deg, #F6F3FE, #EEF2FF);

  /* Ink */
  --ink: #0B0917;
  --ink-strong: #332C52;
  --ink-body: #48416B;
  --ink-body-soft: #4F4870;
  --ink-muted: #5C5578;
  --ink-faint: #6A6386;
  --ink-inverse: #FFFFFF;
  --ink-inverse-soft: #C5BFDC;
  --ink-inverse-faint: #9C96B4;

  /* Surfaces & lines */
  --surface: #FFFFFF;
  --surface-alt: #FAFAFC;
  --surface-field: #FCFBFF;
  --tint: #F3EEFE;
  --tint-soft: #F5F2FE;
  --line: #EAE5F8;
  --line-soft: #EFEAFB;
  --line-faint: #F0EDFA;
  --line-field: #E7E1F7;
  --line-hover: #C9B6FB;
  --line-underline: #D6CCFA;
  --line-dark: #201B3A;

  /* Status */
  --positive: #33A06F;
  --positive-ink: #2F7A57;
  --positive-bg: #EAF7F0;
  --negative: #C0554F;
  --negative-bg: #FBEFEF;

  /* Type */
  --font-sans: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 22px;
  --r-3xl: 24px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-card: 0 10px 30px rgba(11, 9, 23, 0.05);
  --shadow-card-lift: 0 26px 56px rgba(11, 9, 23, 0.10);
  --shadow-soft: 0 14px 36px rgba(11, 9, 23, 0.07);
  --shadow-panel: 0 28px 66px rgba(11, 9, 23, 0.10);
  --shadow-menu: 0 34px 80px rgba(11, 9, 23, 0.16);
  --shadow-brand: 0 12px 32px rgba(109, 59, 255, 0.32);
  --shadow-brand-lift: 0 20px 46px rgba(109, 59, 255, 0.44);

  /* Metrics */
  --nav-h: 74px;
  --shell: 1280px;
  --gutter: clamp(18px, 5vw, 32px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 0.84, 0.32, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg { max-width: 100%; }

a {
  color: var(--violet);
  text-decoration: none;
  transition: color 260ms ease-out;
}
a:hover { color: var(--violet-dark); }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-weight: 600;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: top 200ms ease-out;
}
.skip-link:focus-visible { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
}
.shell--narrow { max-width: 1180px; }
.shell--prose { max-width: 760px; }
.shell--copy { max-width: 1100px; }
.shell--center { max-width: 1000px; text-align: center; }
.shell--cta { max-width: 860px; text-align: center; }

.section {
  position: relative;
  padding: 110px var(--gutter);
}
.section--flush-top { padding-top: 20px; }
.section--page-head { padding: 170px var(--gutter) 70px; overflow: hidden; }
.section--tint {
  background: var(--surface-alt);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.section--tint-top {
  background: var(--surface-alt);
  border-top: 1px solid var(--line-faint);
}
.section--clip { overflow: hidden; }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--split {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}

.stack { display: flex; flex-direction: column; }
.stack--sm { gap: 12px; }
.stack--md { gap: 18px; }
.stack--lg { gap: 26px; }

/* Ambient background blooms */
.bloom {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bloom--violet { background: radial-gradient(circle, rgba(109, 59, 255, 0.28), rgba(255, 255, 255, 0) 66%); }
.bloom--violet-soft { background: radial-gradient(circle, rgba(109, 59, 255, 0.20), rgba(255, 255, 255, 0) 66%); }
.bloom--purple { background: radial-gradient(circle, rgba(168, 85, 247, 0.22), rgba(255, 255, 255, 0) 66%); }
.bloom--purple-soft { background: radial-gradient(circle, rgba(168, 85, 247, 0.16), rgba(255, 255, 255, 0) 66%); }
.bloom--white { background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 64%); }
.bloom--on-dark { background: radial-gradient(circle, rgba(168, 85, 247, 0.34), rgba(0, 0, 0, 0) 66%); }

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(5vw, 4vh, 0) scale(1.14); }
}
@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
  50% { transform: translate3d(-4vw, -5vh, 0) scale(0.94); }
}
.bloom--drift-a { animation: drift-a 28s ease-in-out infinite; }
.bloom--drift-b { animation: drift-b 32s ease-in-out infinite; }

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.10), rgba(168, 85, 247, 0) 62%);
  transition: opacity 600ms ease-out;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}
.eyebrow--sm { font-size: 10.5px; letter-spacing: 0.16em; }
.eyebrow--muted { color: var(--ink-inverse-faint); }
.eyebrow--lilac { color: var(--lilac); }

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  padding: 8px 14px;
  white-space: nowrap;
  border: 1px solid #DCD0FC;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
}
.pill-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.display {
  margin: 0;
  font-size: clamp(2.9rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.042em;
}
.title-xl {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.title-lg {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.036em;
}
.title-md {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.034em;
}
.title-sm {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.title-xs {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.024em;
}

.gradient-text {
  background: linear-gradient(104deg, var(--violet), var(--purple) 46%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.72;
  color: var(--ink-body);
}
.lede--wide { max-width: 60ch; }
.lede--tight { max-width: 46ch; }

.body-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-body-soft);
}
.note {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-faint);
}

.measure-15 { max-width: 15ch; }
.measure-17 { max-width: 17ch; }
.measure-18 { max-width: 18ch; }
.measure-19 { max-width: 19ch; }
.measure-20 { max-width: 20ch; }
.measure-44 { max-width: 44ch; }
.measure-48 { max-width: 48ch; }
.measure-52 { max-width: 52ch; }
.measure-54 { max-width: 54ch; }
.measure-58 { max-width: 58ch; }
.measure-62 { max-width: 62ch; }

/* --------------------------------------------------------------------------
   Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 17px 28px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  transition: transform 420ms ease-out, box-shadow 420ms ease-out, background 420ms ease-out, color 420ms ease-out;
}
.btn--primary {
  background: var(--grad-brand);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  color: var(--ink-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lift);
}
.btn--sm {
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  box-shadow: 0 8px 22px rgba(109, 59, 255, 0.30);
}
.btn--sm:hover { box-shadow: 0 14px 32px rgba(109, 59, 255, 0.42); }
.btn--on-brand {
  background: var(--surface);
  color: var(--violet-deep);
  box-shadow: 0 16px 38px rgba(11, 9, 23, 0.22);
}
.btn--on-brand:hover {
  color: var(--violet-deep);
  transform: translateY(-2px);
}
.btn--ghost-inverse {
  background: transparent;
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost-inverse:hover {
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.14);
}
.btn--block { display: flex; width: 100%; padding: 16px; border-radius: 14px; }

.link-quiet {
  font-size: 15px;
  color: var(--ink-body);
  border-bottom: 1px solid var(--line-underline);
  padding-bottom: 3px;
  transition: color 380ms ease-out, border-color 380ms ease-out;
}
.link-quiet:hover {
  color: var(--violet);
  border-color: var(--violet);
}
.link-arrow {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--violet);
}
.link-back {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}
.link-back--inverse { color: var(--lilac); }
.link-back--inverse:hover { color: var(--ink-inverse); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-row--hero { gap: 22px; }
.cta-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   Icons (two-tone geometric sprite)
   -------------------------------------------------------------------------- */
.icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: none;
}
.icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--tint);
}
.icon-tile--sm { width: 34px; height: 34px; border-radius: 11px; }
.icon-tile--md { width: 42px; height: 42px; border-radius: 13px; }
.icon-tile--lg { width: 44px; height: 44px; border-radius: 14px; }
.icon-tile--xl { width: 48px; height: 48px; border-radius: 15px; }
.icon-tile--round {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F1ECFE;
}

/* --------------------------------------------------------------------------
   Cards, chips, badges
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 26px;
}
.card--lg { border-radius: var(--r-2xl); padding: 32px; }
.card--xl { border-radius: var(--r-2xl); padding: 36px; }
.card--quiet { background: var(--surface-alt); }
.card--ink {
  background: var(--ink);
  border-color: transparent;
  color: var(--ink-inverse);
}
.card--lift {
  transition: transform 440ms ease-out, box-shadow 440ms ease-out, border-color 440ms ease-out;
}
.card--lift:hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
  box-shadow: 0 18px 42px rgba(11, 9, 23, 0.08);
}
.card--lift-lg:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-lift);
}
.card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
}
.card__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--ink-body-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink-strong);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 11px 17px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}
.chip--plain { color: var(--ink-body-soft); font-size: 14px; padding: 10px 16px; }
.chip--plain::before { content: none; }
.chip--link {
  transition: border-color 400ms ease-out, transform 400ms ease-out, box-shadow 400ms ease-out, color 400ms ease-out;
}
.chip--link:hover {
  border-color: var(--line-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(109, 59, 255, 0.12);
  color: var(--ink);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-row--center { justify-content: center; }

.tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--tint-soft);
  border-radius: var(--r-pill);
  padding: 6px 11px;
  white-space: nowrap;
}
.tag--muted {
  color: var(--ink-muted);
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
}
.tag--inverse {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 15px;
}

.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-strong);
}
.bullet-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
}
.bullet-list--inverse li { color: var(--ink-inverse-soft); }
.bullet-list--inverse li::before { background: var(--ink-faint); }
.bullet-list--lg li { font-size: 15.5px; line-height: 1.68; }
.bullet-list--lg li::before { margin-top: 8px; }

.stat__value {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.stat__value--gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-muted);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.stat-row--center { text-align: center; }

/* --------------------------------------------------------------------------
   Site navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background 420ms ease-out, box-shadow 420ms ease-out, border-color 420ms ease-out;
}
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: #EFECF9;
}
.site-nav__bar {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  white-space: nowrap;
  transition: color 300ms ease-out;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 24px;
  height: 24px;
  border-radius: var(--r-sm);
  background: var(--grad-mark);
  box-shadow: 0 6px 16px rgba(109, 59, 255, 0.34);
}
.brand__name {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  margin-left: auto;
  font-size: 15px;
  white-space: nowrap;
}
.site-nav__link {
  color: var(--ink-strong);
  transition: color 260ms ease-out;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--violet); }

.site-nav__services { position: relative; padding: 26px 0; }
.site-nav__services-btn {
  border: 0;
  background: none;
  padding: 0;
  font-size: 15px;
  color: var(--ink-strong);
  cursor: pointer;
  transition: color 260ms ease-out;
}
.site-nav__services-btn[aria-expanded="true"],
.site-nav__services-btn:hover { color: var(--violet); }

.site-nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-field);
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-nav__toggle span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: var(--ink);
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}
.mega.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega__panel {
  width: min(1000px, calc(100vw - 40px));
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-menu);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.mega__item {
  padding: 18px;
  border-radius: var(--r-lg);
  color: var(--ink);
  border: 1px solid var(--line-faint);
  transition: background 260ms ease-out;
}
.mega__item:hover { background: var(--tint-soft); color: var(--ink); }
.mega__title {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
}
.mega__body {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  background: var(--surface);
  overflow-y: auto;
  padding: 22px var(--gutter) 60px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
}
.mobile-menu.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 640px;
  margin: 0 auto;
}
.mobile-menu__nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-faint);
}
.mobile-menu__nav .btn {
  margin-top: 22px;
  border-bottom: 0;
  color: var(--ink-inverse);
  font-size: 15px;
}

/* Nav over a dark hero, before the page is scrolled */
.site-nav--over-dark:not(.is-scrolled) .brand,
.site-nav--over-dark:not(.is-scrolled) .brand:hover { color: var(--ink-inverse); }
.site-nav--over-dark:not(.is-scrolled) .site-nav__link,
.site-nav--over-dark:not(.is-scrolled) .site-nav__services-btn { color: rgba(255, 255, 255, 0.86); }
.site-nav--over-dark:not(.is-scrolled) .site-nav__link:hover,
.site-nav--over-dark:not(.is-scrolled) .site-nav__services-btn:hover { color: var(--ink-inverse); }
.site-nav--over-dark:not(.is-scrolled) .site-nav__toggle { border-color: rgba(255, 255, 255, 0.3); }
.site-nav--over-dark:not(.is-scrolled) .site-nav__toggle span { background: var(--ink-inverse); }

@media (max-width: 1079px) {
  .site-nav__links { display: none; }
  .mega { display: none; }
  .site-nav__toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ink-inverse-soft);
  padding: 86px var(--gutter) 40px;
}
.site-footer .bloom {
  top: -260px;
  left: 12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(109, 59, 255, 0.30), rgba(11, 9, 23, 0) 66%);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 44px;
}
.site-footer__intro { min-width: 220px; }
.site-footer__intro .brand,
.site-footer__intro .brand:hover { color: var(--ink-inverse); }
.site-footer__blurb {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-inverse-faint);
  max-width: 34ch;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__heading {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-inverse-faint);
}
.site-footer__col a {
  font-size: 14px;
  color: var(--ink-inverse-soft);
}
.site-footer__col a:hover { color: var(--ink-inverse); }
.site-footer__legal {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-inverse-faint);
}
.site-footer .btn--primary { margin-top: 20px; padding: 12px 20px; border-radius: var(--r-md); font-size: 14px; }

/* --------------------------------------------------------------------------
   Closing CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand-wide);
  padding: 112px var(--gutter);
  text-align: center;
  color: var(--ink-inverse);
}
.cta-band--tall { padding: 120px var(--gutter); }
.cta-band__title {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
  font-weight: 600;
  color: var(--ink-inverse);
}
.cta-band--tall .cta-band__title { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
.cta-band__body {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.cta-band .btn { margin-top: 32px; }
.cta-band .cta-row { margin-top: 38px; }
.cta-band .cta-row .btn { margin-top: 0; }

/* --------------------------------------------------------------------------
   Mockups (decorative product placeholders)
   -------------------------------------------------------------------------- */
.mockup {
  --mk-shell: linear-gradient(150deg, #FBFAFF, #F2F0FE);
  --mk-border: #E7E0FA;
  --mk-line-soft: #EDE7FC;
  --mk-line: #E1D9F7;
  --mk-tile: #FFFFFF;
  --mk-accent-soft: #D9CCFB;
  --mk-dot: #EDE7FC;
  --mk-muted: var(--ink-faint);

  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--mk-shell);
  border: 1px solid var(--mk-border);
  display: flex;
  flex-direction: column;
}
.mockup--dark {
  --mk-shell: linear-gradient(150deg, #150E33, #231152);
  --mk-border: rgba(255, 255, 255, 0.14);
  --mk-line-soft: rgba(255, 255, 255, 0.12);
  --mk-line: rgba(255, 255, 255, 0.18);
  --mk-tile: rgba(255, 255, 255, 0.07);
  --mk-accent-soft: rgba(168, 85, 247, 0.45);
  --mk-dot: rgba(255, 255, 255, 0.22);
  --mk-muted: #B6AEDA;
}
.mockup--r18 { border-radius: 18px; }
.mockup--r22 { border-radius: var(--r-2xl); }

.mockup__glow-a,
.mockup__glow-b {
  position: absolute;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}
.mockup__glow-a {
  top: 0;
  right: 0;
  width: 60%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), rgba(255, 255, 255, 0) 66%);
}
.mockup__glow-b {
  bottom: 0;
  left: 0;
  width: 56%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.22), rgba(255, 255, 255, 0) 66%);
}

.mockup__chrome {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--mk-line-soft);
}
.mockup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mk-dot);
}
.mockup__label {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mk-muted);
}
.mockup__pill {
  margin-left: auto;
  width: 34px;
  height: 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--violet), var(--purple));
}

.mockup__main {
  position: relative;
  flex: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
}
.mockup__rail {
  flex: none;
  width: 52px;
  border-right: 1px solid var(--mk-line-soft);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup__rail span {
  height: 8px;
  border-radius: 3px;
  background: var(--mk-line);
}
.mockup__rail span:first-child { background: linear-gradient(90deg, var(--violet), var(--purple)); }
.mockup__body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 0 1 auto;
  min-height: 0;
  overflow: hidden;
}
.mockup__tile {
  border-radius: var(--r-sm);
  padding: 9px;
  background: var(--mk-tile);
}
.mockup__tile b,
.mockup__tile i {
  display: block;
  border-radius: 3px;
}
.mockup__tile b { height: 6px; width: 60%; background: var(--mk-line); }
.mockup__tile i { margin-top: 7px; height: 11px; width: 70%; background: var(--mk-accent-soft); }
.mockup__tile:first-child i { background: linear-gradient(90deg, var(--violet), var(--purple)); }

.mockup__chart {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--mk-tile);
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.mockup__chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--mk-accent-soft);
}
.mockup__chart span.is-peak { background: linear-gradient(180deg, var(--purple), var(--violet)); }

.mockup__rows {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup__row {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mk-tile);
  border-radius: var(--r-sm);
  padding: 0 10px;
}
.mockup__row em {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}
.mockup__row b {
  height: 7px;
  border-radius: 3px;
  background: var(--mk-line);
}
.mockup__row i {
  margin-left: auto;
  height: 7px;
  width: 16%;
  border-radius: 3px;
  background: var(--mk-accent-soft);
}
.mockup__toolbar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup__toolbar b {
  height: 9px;
  width: 34%;
  border-radius: 3px;
  background: var(--mk-line);
}
.mockup__toolbar i {
  margin-left: auto;
  height: 16px;
  width: 58px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--violet), var(--purple));
}

.mockup__lines { display: contents; }
.mockup__lines > span {
  height: 7px;
  border-radius: 3px;
  background: var(--mk-line);
}
.mockup__lines > span.is-title {
  flex: none;
  height: 10px;
  width: 52%;
  background: linear-gradient(90deg, var(--violet), var(--purple));
}
.mockup__quote {
  margin-top: 6px;
  border-radius: var(--r-sm);
  background: var(--mk-tile);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup__quote span {
  height: 6px;
  border-radius: 3px;
  background: var(--mk-line);
}
.mockup__quote span:first-child { background: var(--mk-accent-soft); }

.mockup__flow {
  position: relative;
  flex: 1;
  min-height: 0;
}
.mockup__node {
  position: absolute;
  width: 26%;
  height: 26%;
  border-radius: var(--r-sm);
  background: var(--mk-tile);
  border: 1px solid var(--mk-line-soft);
}
.mockup__node--a { left: 2%; top: 16%; background: linear-gradient(135deg, var(--violet), var(--purple)); border: 0; }
.mockup__node--b { left: 37%; top: 44%; }
.mockup__node--c { right: 2%; top: 12%; }
.mockup__node--d { right: 6%; bottom: 10%; background: var(--mk-accent-soft); border: 0; }
.mockup__wire { position: absolute; background: var(--mk-line); }
.mockup__wire--a { left: 27%; top: 34%; width: 14%; height: 2px; transform: rotate(24deg); }
.mockup__wire--b { left: 61%; top: 38%; width: 16%; height: 2px; transform: rotate(-26deg); }
.mockup__wire--c { right: 16%; top: 52%; width: 2px; height: 20%; }

.mockup__phone-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup__phone {
  width: 120px;
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--mk-line-soft);
  background: var(--mk-tile);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup__phone span { border-radius: 3px; background: var(--mk-line); height: 7px; }
.mockup__phone span:first-child { height: 8px; width: 46%; background: linear-gradient(90deg, var(--violet), var(--purple)); }
.mockup__phone .is-hero { height: 38px; border-radius: var(--r-sm); background: linear-gradient(135deg, rgba(109, 59, 255, 0.24), rgba(79, 124, 255, 0.18)); }
.mockup__phone .is-cta { margin-top: auto; height: 22px; border-radius: var(--r-sm); background: linear-gradient(90deg, var(--violet), var(--purple)); }

.mockup__mesh {
  flex: 1;
  min-height: 0;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(109, 59, 255, 0.34), rgba(168, 85, 247, 0.24) 44%, rgba(79, 124, 255, 0.28));
}
.mockup__mesh::before,
.mockup__mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.mockup__mesh::before {
  top: -30%;
  left: 10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 62%);
}
.mockup__mesh::after {
  bottom: -40%;
  right: 0;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45), rgba(255, 255, 255, 0) 62%);
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Home — hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px var(--gutter) 80px;
  overflow: hidden;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 9, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 9, 23, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(ellipse 92% 72% at 50% 34%, #000 28%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 92% 72% at 50% 34%, #000 28%, transparent 76%);
}
.hero__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 60px;
  align-items: center;
}
.hero__title { margin: 26px 0 0; font-weight: 600; }
.hero__title span { display: inline-block; }
.hero__lede {
  margin: 28px 0 0;
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--ink-body);
  max-width: 54ch;
}
.hero__actions { margin-top: 36px; }

/* Hero stage panel */
.stage {
  position: relative;
  margin: 10px 4px 0;
  perspective: 1300px;
}
.stage__halo {
  position: absolute;
  top: 6%;
  left: 4%;
  right: 4%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.30), rgba(255, 255, 255, 0) 66%);
  filter: blur(26px);
  pointer-events: none;
}
.stage__deck {
  position: relative;
  transform-style: preserve-3d;
}
.stage__sheet {
  position: absolute;
  height: 60px;
  border-radius: var(--r-xl);
  box-shadow: 0 18px 40px rgba(11, 9, 23, 0.07);
}
.stage__sheet--back {
  left: 6%;
  right: 6%;
  top: -22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  filter: blur(1.5px);
}
.stage__sheet--mid {
  left: 3%;
  right: 3%;
  top: -11px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  filter: blur(0.6px);
}
.stage__card {
  position: relative;
  height: 392px;
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 40px 90px rgba(11, 9, 23, 0.16);
  overflow: hidden;
}
.stage__panel {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 700ms var(--ease-smooth), transform 700ms var(--ease-smooth);
}
.stage__panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.stage__panel.is-past { transform: translateY(-16px) scale(0.985); }
.stage__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
}
.stage__head b {
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}
.stage__head span { color: var(--ink-faint); }

.stage__leaks {
  margin-top: 26px;
  flex: 1;
  min-height: 0;
  border-radius: var(--r-lg);
  border: 1px dashed #DDD3F8;
  background: rgba(250, 248, 255, 0.7);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.stage__leak {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--ink-faint);
}
.stage__leak::before {
  content: "";
  height: 9px;
  flex: 1;
  border-radius: var(--r-pill);
  background: #EDE7FC;
}
.stage__leak:first-of-type::before { background: #E4DCF9; }
.stage__leak span { white-space: nowrap; }
.stage__flag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11.5px;
  color: var(--violet);
  background: var(--tint);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  white-space: nowrap;
}

.stage__doc {
  margin-top: 22px;
  flex: 1;
  min-height: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 10px 26px rgba(11, 9, 23, 0.05);
}
.stage__doc > span { height: 8px; border-radius: var(--r-pill); background: #F0ECFA; }
.stage__doc > span.is-title {
  height: 11px;
  width: 52%;
  background: linear-gradient(90deg, var(--violet), var(--purple));
}
.stage__doc-inset {
  margin-top: 6px;
  border-radius: var(--r-md);
  background: #FAF8FF;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.stage__doc-inset span { height: 7px; border-radius: var(--r-pill); background: #EDE7FC; }
.stage__doc-inset span:first-child { background: #DFD5F8; }
.stage__badges {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.badge {
  font-size: 11.5px;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  white-space: nowrap;
  color: var(--violet);
  background: var(--tint);
}
.badge--positive { color: var(--positive-ink); background: var(--positive-bg); }
.badge--live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--positive-ink);
  background: var(--positive-bg);
  padding: 5px 11px;
}
.badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
}

.stage__verdicts {
  margin-top: 22px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.verdict {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  color: var(--ink-strong);
}
/* ::before is the tinted disc, ::after the mark centred inside it. */
.verdict::before {
  content: "";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--negative-bg);
}
.verdict::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 9px;
  height: 2px;
  margin: -1px 0 0 -4.5px;
  border-radius: 2px;
  background: var(--negative);
}
.verdict--yes::before { background: var(--positive-bg); }
.verdict--yes::after {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--positive);
}

.stage__metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric {
  border-radius: 14px;
  background: linear-gradient(160deg, #F6F2FE, #EFF3FF);
  padding: 16px;
}
.metric__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}
.metric__value {
  font-size: 1.55rem;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: -0.035em;
}
.metric__track {
  height: 6px;
  border-radius: var(--r-pill);
  background: #E3DBFA;
  margin-top: 12px;
  overflow: hidden;
}
.metric__fill {
  height: 100%;
  width: 24%;
  background: linear-gradient(90deg, var(--violet), var(--purple), var(--blue));
  transition: width 900ms ease-out;
}
.stage__bars {
  margin-top: 12px;
  flex: 1;
  min-height: 0;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.stage__bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #E3DBFA;
}
.stage__bars span.is-peak { background: linear-gradient(180deg, var(--purple), var(--violet)); }

.stage__progress {
  position: relative;
  margin-top: 26px;
  display: flex;
  justify-content: center;
}
.stage__progress-track {
  display: block;
  width: 196px;
  height: 8px;
  border-radius: var(--r-pill);
  background: #E7E1F7;
  overflow: hidden;
}
.stage__progress-fill {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  transition: width 700ms var(--ease-smooth);
}
.stage__caption {
  position: relative;
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Tilt scaffolding */
[data-tilt] { perspective: 1100px; }
[data-tilt-inner] { transform-style: preserve-3d; }
[data-tilt-sheen] {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  transition: opacity 400ms ease-out;
}

/* --------------------------------------------------------------------------
   Home — doors, process, pillars
   -------------------------------------------------------------------------- */
.doors-heading {
  margin: 0 0 26px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-faint);
  text-align: center;
}
.door {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 34px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform 440ms ease-out, box-shadow 440ms ease-out, border-color 440ms ease-out;
}
.door:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-lift);
  border-color: var(--line-hover);
  color: var(--ink);
}
.door__title {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.24;
}
.door__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-body-soft);
}
.door__more {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--violet);
}

.timeline-x {
  margin-top: 70px;
  position: relative;
}
.timeline-x__rail,
.timeline-x__draw {
  position: absolute;
  top: 27px;
  left: 5%;
  height: 2px;
}
.timeline-x__rail { right: 5%; background: var(--line); }
.timeline-x__draw {
  width: 0;
  max-width: 90%;
  background: linear-gradient(90deg, var(--violet), var(--purple), var(--blue));
}
.timeline-x__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 28px;
}
.timeline-x__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-marker {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--violet);
}
.step-marker--filled {
  background: var(--grad-mark);
  color: var(--ink-inverse);
  border-color: transparent;
}
.timeline-x h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}
.timeline-x p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-body-soft);
}

.deliverables {
  margin-top: 74px;
  background: var(--grad-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.deliverables h3 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.deliverables p {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-body-soft);
}
.deliverables__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.deliverables__list div {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 18px;
  font-size: 14.5px;
  border: 1px solid var(--line-soft);
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 420ms ease-out, box-shadow 420ms ease-out, border-color 420ms ease-out;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(11, 9, 23, 0.09);
  border-color: var(--line-hover);
}
.pillar h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
}
.pillar p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-body-soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Case study cards
   -------------------------------------------------------------------------- */
.case-card {
  display: block;
  color: var(--ink);
}
.case-card:hover { color: var(--ink); }
.case-card__inner {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.case-card__shot {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(150deg, #F4F0FE, #EAF0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-faint);
}
.case-card__shot > div {
  width: 84%;
  height: 78%;
}
.case-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-card__title {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.case-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-body-soft);
}
.case-card__result {
  border-top: 1px solid #F3F0FA;
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.case-card__metric {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-card__metric-label {
  font-size: 13px;
  color: var(--ink-faint);
}
.case-card[hidden] { display: none; }

/* Filter bar */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-faint);
}
.filters__btn {
  cursor: pointer;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-strong);
  transition: background 320ms ease-out, color 320ms ease-out, border-color 320ms ease-out;
}
.filters__btn:hover { border-color: var(--line-hover); }
.filters__btn[aria-pressed="true"] {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--ink-inverse);
}
.filters__count {
  margin-left: auto;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   Services page
   -------------------------------------------------------------------------- */
.service {
  scroll-margin-top: 110px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 12px 34px rgba(11, 9, 23, 0.05);
}
.service__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: start;
}
.service__num {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
}
.service__title {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.service__body {
  margin: 14px 0 0;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink-body);
  max-width: 44ch;
}
.service__tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.service__track {
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 24px;
}
.service__track h3 {
  margin: 12px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.service__track p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--ink-body-soft);
}
.anchor-nav {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.anchor-nav a {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-strong);
  transition: border-color 300ms ease-out, color 300ms ease-out;
}
.anchor-nav a:hover { border-color: var(--line-hover); color: var(--ink); }

.split-bar {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   How we work — vertical timeline
   -------------------------------------------------------------------------- */
.hww-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 72px;
  align-items: start;
}
.hww-aside { position: sticky; top: 120px; }
.hww-aside h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.032em;
  font-weight: 600;
  line-height: 1.12;
}
.hww-aside p {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-body);
}
.timeline-y {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 52px;
}
.timeline-y__rail,
.timeline-y__draw {
  position: absolute;
  left: 19px;
  top: 12px;
  width: 2px;
}
.timeline-y__rail { bottom: 12px; background: var(--line); }
.timeline-y__draw {
  height: 0;
  background: linear-gradient(180deg, var(--violet), var(--purple), var(--blue));
}
.timeline-y__item {
  position: relative;
  padding-bottom: 54px;
}
.timeline-y__marker {
  position: absolute;
  left: -52px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--violet);
}
.timeline-y__item h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.timeline-y__item p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-body-soft);
  max-width: 58ch;
}
.timeline-y__ends-label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}
.timeline-y__ends {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-strong);
}

.fit-card h2,
.fit-card h3 {
  margin: 16px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}

/* --------------------------------------------------------------------------
   Who we help & About
   -------------------------------------------------------------------------- */
.situation {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 440ms ease-out, box-shadow 440ms ease-out, border-color 440ms ease-out;
}
.situation:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(11, 9, 23, 0.10);
  border-color: var(--line-hover);
}
.situation h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.situation p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-body-soft);
}
.situation a { margin-top: 6px; }

.quote-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-2xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card blockquote {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-strong);
}
.quote-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), var(--purple));
  color: var(--ink-inverse);
  font-size: 15px;
  font-weight: 600;
}
.avatar--sm { width: 40px; height: 40px; font-size: 14px; }
.quote-card__name {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.quote-card__role {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-muted);
}

.person {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
}
.person__portrait {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: linear-gradient(150deg, #EFE9FE, #E7EEFF);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-faint);
}
.person__portrait::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 150%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.30), rgba(255, 255, 255, 0) 64%);
}
.person__initials {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), var(--purple));
  color: var(--ink-inverse);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 30px rgba(109, 59, 255, 0.32);
}
.person__meta { padding: 22px; }
.person__meta h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}
.person__meta div {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--ink-muted);
}

.prose-column {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--ink-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prose-column p { margin: 0; }

/* --------------------------------------------------------------------------
   Case study detail
   -------------------------------------------------------------------------- */
.cs-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0B0917, #1B0F45 46%, #31157E);
  padding: 168px var(--gutter) 100px;
  color: var(--ink-inverse);
}
.cs-hero__title {
  margin: 22px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 18ch;
}
.cs-hero__lede {
  margin: 22px 0 0;
  font-size: 1.16rem;
  line-height: 1.72;
  color: #C9C2E4;
  max-width: 58ch;
}
.cs-hero__shot {
  margin-top: 52px;
  perspective: 1400px;
}
.cs-hero__frame {
  position: relative;
  border-radius: var(--r-3xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  height: min(50vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-hero__frame > div:not([data-tilt-sheen]) {
  width: 86%;
  height: 82%;
}
.figure-frame {
  position: relative;
  border-radius: var(--r-3xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #F4F0FE, #EAF0FF);
  height: min(44vh, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.figure-frame > div:not([data-tilt-sheen]) {
  width: 86%;
  height: 82%;
}
.cs-story {
  display: flex;
  flex-direction: column;
  gap: 74px;
}
.cs-copy {
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--ink-body);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-copy p { margin: 0; }
.cs-section-title {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.14;
}
.pull-quote {
  margin: 0;
  background: var(--grad-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 44px;
}
.pull-quote p {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.pull-quote footer {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 26px;
  color: var(--ink);
  transition: transform 420ms ease-out, border-color 420ms ease-out, box-shadow 420ms ease-out;
}
.mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
  box-shadow: 0 18px 42px rgba(11, 9, 23, 0.08);
  color: var(--ink);
}
.mini-card h3 {
  margin: 12px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}
.mini-card__meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-faint);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-faint);
}
.stats-strip .stat__value { font-size: clamp(2.1rem, 3.4vw, 2.9rem); }

/* --------------------------------------------------------------------------
   Insights & article
   -------------------------------------------------------------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  transition: transform 440ms ease-out, box-shadow 440ms ease-out, border-color 440ms ease-out;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(11, 9, 23, 0.09);
  border-color: var(--line-hover);
  color: var(--ink);
}
.post-card[hidden] { display: none; }
.post-card__shot {
  height: 176px;
  padding: 14px 14px 0;
  background: var(--grad-tint);
  border-bottom: 1px solid var(--line-faint);
}
.post-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-card__title {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.post-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-body-soft);
  flex: 1;
}
.post-card__meta {
  font-size: 13px;
  color: var(--ink-faint);
}

.featured {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-3xl);
  padding: 34px;
  color: var(--ink);
  transition: transform 440ms ease-out, box-shadow 440ms ease-out, border-color 440ms ease-out;
}
.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(11, 9, 23, 0.10);
  border-color: var(--line-hover);
  color: var(--ink);
}
.featured[hidden] { display: none; }
.featured__shot { height: 260px; }
.featured__title {
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.16;
}
.featured__text {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-body);
  max-width: 48ch;
}
.featured__meta {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-muted);
}

.read-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 3px;
  width: 0;
  z-index: 59;
  background: linear-gradient(90deg, var(--violet), var(--purple), var(--blue));
  transition: width 120ms linear;
}
.article-head {
  position: relative;
  padding: 160px var(--gutter) 40px;
  overflow: hidden;
}
.article-head h1 {
  margin: 22px 0 0;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  font-weight: 600;
}
.article-byline {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: var(--ink-muted);
}
.article-byline strong {
  color: var(--ink);
  font-weight: 500;
}
.article-byline .tag {
  font-family: inherit;
  font-size: 12.5px;
  letter-spacing: normal;
  text-transform: none;
  padding: 6px 12px;
}
.article-cover { margin-top: 40px; height: min(42vh, 360px); }

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--ink-strong);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prose p { margin: 0; }
.prose > .prose__standfirst {
  font-size: 1.24rem;
  line-height: 1.72;
  color: var(--ink);
}
.prose h2 {
  margin: 16px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.024em;
  color: var(--ink);
}
.prose__callout {
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--violet);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-strong);
}

/* --------------------------------------------------------------------------
   Forms — contact & landing
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: 34px;
  box-shadow: var(--shadow-panel);
}
.form-panel h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.form-panel__note {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form--lp { margin-top: 22px; gap: 15px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field > span {
  font-size: 13.5px;
  color: var(--ink-body-soft);
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line-field);
  border-radius: var(--r-md);
  padding: 13px 15px;
  background: var(--surface-field);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 260ms ease-out;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--violet); }
.form__status {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
}
.form button[type="submit"] { margin-top: 6px; }

.slots {
  border: none;
  margin: 0 0 26px;
  padding: 0;
}
.slots legend {
  font-size: 13.5px;
  color: var(--ink-body-soft);
  padding: 0 0 12px;
}
.slots__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.slot {
  flex: 1 1 100px;
  min-width: 96px;
  text-align: center;
  padding: 14px 6px;
  border-radius: 14px;
  border: 1px solid var(--line-field);
  background: var(--surface-field);
  color: var(--ink-strong);
  cursor: pointer;
  transition: border-color 300ms ease-out, background 300ms ease-out, color 300ms ease-out;
}
.slot[aria-pressed="true"] {
  border-color: var(--violet);
  background: var(--tint-soft);
  color: var(--violet-deep);
}
.slot__day {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}
.slot__time {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
}

.contact-details {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-faint);
  font-size: 15px;
  color: var(--ink-body-soft);
  line-height: 1.9;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Landing page (standalone shell)
   -------------------------------------------------------------------------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-faint);
}
.lp-header__bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-header__phone {
  font-size: 14px;
  color: var(--ink-body-soft);
  white-space: nowrap;
}
@media (max-width: 639px) {
  .lp-header__phone { display: none; }
}
.lp-hero {
  position: relative;
  padding: 70px var(--gutter) 80px;
  overflow: hidden;
}
.lp-hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 52px;
  align-items: start;
}
.lp-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 15ch;
}
.lp-points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-points li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--ink-strong);
}
.lp-points .icon-tile--round { margin-top: 1px; }
.lp-proof {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-faint);
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.lp-proof .stat__value { font-size: 1.8rem; letter-spacing: -0.035em; }
.lp-proof .stat__label { margin-top: 3px; font-size: 13px; }
.lp-booking { scroll-margin-top: 90px; }
.lp-steps {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.lp-steps li {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 26px;
}
.lp-steps h3 {
  margin: 12px 0 0;
  font-size: 1.06rem;
  font-weight: 600;
}
.lp-steps p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--ink-body-soft);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
}
.lp-quote {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.lp-footer {
  background: var(--ink);
  color: var(--ink-inverse-faint);
  padding: 34px var(--gutter);
}
.lp-footer__bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.lp-footer__bar a { color: var(--ink-inverse-soft); }
.lp-footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Narrow viewports
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .section { padding: 72px var(--gutter); }
  .section--page-head { padding-top: 130px; }
  .hero { padding-top: 120px; min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .deliverables { padding: 30px; gap: 32px; }
  .pull-quote { padding: 30px; }
  .form-panel { padding: 24px; }
  .hww-aside { position: static; }
  .site-footer { padding-top: 60px; }
  .site-footer__legal { margin-top: 40px; }
}
