@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --background: hsl(222 47% 6%);
  --foreground: hsl(213 31% 91%);
  --card: hsl(222 40% 9%);
  --card-soft: hsl(217 33% 12% / .68);
  --border: hsl(217 33% 17%);
  --border-soft: rgb(255 255 255 / .06);
  --primary: hsl(217 91% 60%);
  --primary-soft: hsl(217 91% 60% / .10);
  --muted: hsl(215 20% 55%);
  --danger: #ff7a7a;
  --radius: 4px;
  --font-sans: "Commissioner", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background:
    linear-gradient(rgb(255 255 255 / .025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .025) 1px, transparent 1px),
    var(--background);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  animation: page-enter .55s ease-out both;
}
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; }
p { margin: 0; }
h1, h2, h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
}
.site-shell { width: min(100% - 40px, 1180px); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border-soft);
  background: hsl(222 47% 6% / .82);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; font-family: var(--font-mono); color: #fff; }
.brand span { display: grid; gap: 1px; min-width: 0; }
.brand strong { font-size: clamp(14px, 1.45vw, 17px); font-weight: 600; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 11px; line-height: 1.1; text-transform: uppercase; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.site-nav { display: flex; gap: 24px; color: var(--muted); font-family: var(--font-mono); font-size: 13px; }
.site-nav a:hover, .text-link:hover, .card-link:hover, .service-card a:hover, .back-link:hover { color: var(--primary); }
.nav-toggle { display: none; border: 1px solid var(--border); border-radius: var(--radius); background: transparent; color: var(--foreground); padding: 8px 10px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin: clamp(26px, 5vw, 58px) 0 clamp(54px, 8vw, 96px);
}
.hero h1 { max-width: 780px; font-size: clamp(34px, 5.4vw, 58px); margin: 20px 0; animation: text-reveal .8s .08s cubic-bezier(.16, 1, .3, 1) both; }
.lead { max-width: 780px; color: hsl(213 31% 91% / .76); font-size: clamp(16px, 1.7vw, 19px); }
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid hsl(217 91% 60% / .22);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 7px 13px;
  font-family: var(--font-mono);
  font-size: 13px;
  animation: fade-up .65s ease-out both;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 26px 0; }
.stats-grid div {
  min-height: 84px;
  border: 1px solid hsl(217 91% 60% / .2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, hsl(217 91% 60% / .14), hsl(222 40% 9% / .78)),
    var(--primary-soft);
  padding: 14px;
  animation: fade-up .55s ease-out both;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .04);
  overflow: hidden;
  position: relative;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.stats-grid div::before {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .11), transparent);
  transform: translateX(-55%) rotate(18deg);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}
.stats-grid div:hover {
  border-color: hsl(217 91% 60% / .46);
  box-shadow: 0 18px 46px hsl(217 91% 42% / .12);
  transform: translateY(-3px);
}
.stats-grid div:hover::before { transform: translateX(55%) rotate(18deg); }
.stats-grid strong,
.stats-grid span {
  position: relative;
  z-index: 1;
}
.stats-grid div:nth-child(2) { animation-delay: .08s; }
.stats-grid div:nth-child(3) { animation-delay: .16s; }
.stats-grid div:nth-child(4) { animation-delay: .24s; }
.stats-grid strong { display: block; color: var(--primary); font-family: var(--font-mono); font-size: 28px; line-height: 1; }
.stats-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
}
.button--ghost { border-color: var(--border); background: transparent; color: var(--foreground); }
.button:hover { transform: translateY(-1px); }
.button:disabled {
  border-color: var(--border);
  background: hsl(217 33% 17%);
  color: hsl(215 20% 55%);
  cursor: not-allowed;
  transform: none;
}
.portrait-card { position: relative; min-height: 480px; display: grid; place-items: center; }
.portrait-card::before, .portrait-card::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid hsl(217 91% 60% / .22);
  border-radius: var(--radius);
}
.portrait-card::after { inset: 56px 12px 12px 56px; border-color: rgb(255 255 255 / .08); }
.portrait-card__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, hsl(217 91% 60% / .28), transparent 31%),
    linear-gradient(145deg, hsl(222 40% 12%), hsl(222 47% 6%));
  padding: 24px;
  overflow: hidden;
  animation: float-card 6s ease-in-out infinite;
  transition: transform .18s ease-out, border-color .25s ease, box-shadow .25s ease;
}
.portrait-card__frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / .08);
}
.portrait-card__label { color: var(--primary); font-family: var(--font-mono); font-size: 12px; }
.portrait-card strong { max-width: 280px; color: #fff; font-family: var(--font-mono); font-size: 23px; line-height: 1.18; }
.portrait-card p { color: var(--muted); font-family: var(--font-mono); font-size: 13px; }
.portrait-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
  filter: saturate(.94) contrast(1.05);
}
.portrait-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, hsl(222 47% 6% / .28) 60%, hsl(222 47% 6% / .88) 100%),
    linear-gradient(90deg, hsl(222 47% 6% / .42), transparent 42%);
  pointer-events: none;
}
.portrait-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}
.portrait-card__frame:hover .portrait-card__photo {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.08);
}

.section, .trust-section, .page-hero, .article { margin-block: clamp(46px, 7vw, 88px); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 22px; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: 20px; }
.text-link, .card-link, .service-card a { color: hsl(213 31% 91% / .72); font-family: var(--font-mono); font-size: 14px; }
.card-grid, .feature-grid, .service-grid, .contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card, .feature-grid article, .contact-card, .service-card, .journal-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .82);
  padding: 20px;
  transform: translateY(0);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.motion-item { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.motion-item.is-visible { opacity: 1; transform: translateY(0); }
.card:hover, .service-card:hover, .journal-card:hover { border-color: hsl(217 91% 60% / .35); background: hsl(222 40% 11% / .92); transform: translateY(-3px); }
.card h2, .card h3 { margin: 14px 0 12px; }
.card p, .service-card p, .feature-grid article p, .contact-card span, .journal-card p, .prose, time { color: var(--muted); }
.case-card { min-height: 220px; display: flex; flex-direction: column; }
.case-card h2, .case-card h3 { font-size: clamp(19px, 1.75vw, 24px); line-height: 1.2; }
.case-card p { font-size: 15px; line-height: 1.6; }
.case-card .card-link { margin-top: auto; padding-top: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { border: 1px solid hsl(217 91% 60% / .25); color: hsl(217 91% 72%); border-radius: 999px; padding: 4px 8px; font-family: var(--font-mono); font-size: 11px; }
.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 24px;
}
.case-filter__button {
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: hsl(222 40% 9% / .72);
  color: hsl(213 31% 91% / .72);
  padding: 9px 13px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}
.case-filter__button:hover,
.case-filter__button.is-active {
  border-color: hsl(217 91% 60% / .5);
  background: hsl(217 91% 60% / .14);
  color: #fff;
  transform: translateY(-1px);
}
.case-card.is-hidden {
  display: none;
}
.inline-cta, .availability, .final-cta {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgb(255 255 255 / .012);
}
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; padding: 18px 20px; }
.inline-cta p { font-family: var(--font-mono); color: #fff; }
.trust-section {
  margin-top: calc(clamp(54px, 8vw, 96px) * -0.35);
}
.trust-layout {
  display: grid;
  gap: 18px;
}
.company-carousel,
.experience-grid article {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .78);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035);
}
.company-carousel {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.company-carousel__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: company-marquee 24s linear infinite;
}
.company-logo {
  width: 236px;
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 0 auto;
  border: 1px solid hsl(217 91% 60% / .18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, hsl(217 91% 60% / .08), hsl(222 40% 9% / .92)),
    hsl(222 40% 9% / .78);
  padding: 14px 18px;
  color: hsl(213 31% 91% / .86);
  font-family: var(--font-mono);
}
.company-logo .company-mark {
  width: 100%;
  max-width: 178px;
  height: 56px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}
.company-mark__cutout {
  fill: hsl(222 40% 9%);
  stroke: hsl(222 40% 9%);
}
.company-mark__stripe,
.company-mark__signal {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}
.company-carousel:hover .company-carousel__track {
  animation-play-state: paused;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.experience-grid article {
  min-height: 132px;
  padding: 18px;
}
.experience-grid strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.14;
}
.experience-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.marquee-band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  border-block: 1px solid var(--border-soft);
  overflow: hidden;
  padding: 14px 0;
  background: rgb(255 255 255 / .012);
}
.marquee-row { display: flex; width: max-content; gap: 36px; padding: 7px 0; animation: marquee 36s linear infinite; color: hsl(213 31% 91% / .68); font-family: var(--font-mono); white-space: nowrap; }
.marquee-row--reverse { animation-direction: reverse; color: hsl(217 91% 72% / .74); }
.marquee-row--caps { text-transform: uppercase; }
.marquee-row span { padding-inline: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes company-marquee { to { transform: translateX(-50%); } }
@keyframes page-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes text-reveal { from { opacity: 0; transform: translateY(20px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card { display: grid; gap: 12px; min-height: 230px; }
.service-card span { color: var(--primary); font-family: var(--font-mono); }
.service-card__icon {
  width: 42px;
  height: 42px;
  color: hsl(217 91% 72%);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diagnostic-section,
.approach-section,
.process-map,
.anti-promise,
.consulting-layout {
  margin-block: clamp(48px, 7vw, 88px);
}
.diagnostic-board {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}
.diagnostic-note,
.symptom-list,
.approach-section,
.anti-promise,
.consulting-main,
.consulting-aside {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .76);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035);
}
.diagnostic-note {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, hsl(217 91% 60% / .12), hsl(222 40% 9% / .88)),
    var(--card);
}
.diagnostic-note span,
.consulting-aside span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}
.diagnostic-note strong {
  color: #fff;
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.18;
}
.diagnostic-note p,
.approach-copy p,
.approach-steps p,
.anti-promise li,
.artifact-list li,
.consulting-aside li {
  color: var(--muted);
}
.symptom-list,
.anti-promise ul,
.artifact-list,
.consulting-aside ol {
  display: grid;
  gap: 12px;
  margin: 0;
}
.symptom-list {
  list-style: none;
  padding: clamp(18px, 3vw, 28px);
}
.symptom-list li {
  position: relative;
  padding: 0 0 12px 28px;
  border-bottom: 1px solid var(--border-soft);
  color: hsl(213 31% 91% / .82);
}
.symptom-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.symptom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary);
  background: hsl(217 91% 60% / .18);
}
.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .88fr);
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, hsl(222 40% 9% / .84), hsl(217 91% 60% / .08)),
    hsl(222 40% 9% / .74);
}
.approach-copy p { margin-top: 16px; font-size: 17px; }
.practitioner-quote {
  border-left: 3px solid var(--primary);
  padding-left: 14px;
  color: #fff !important;
  font-family: var(--font-mono);
}
.approach-steps {
  display: grid;
  gap: 12px;
}
.approach-steps article {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgb(255 255 255 / .018);
  padding: 16px;
}
.approach-steps span,
.service-card--structured > span {
  display: inline-block;
  margin-bottom: 8px;
}
.service-card--structured {
  align-content: start;
  min-height: 0;
}
.service-card--structured dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.service-card--structured dt {
  color: hsl(213 31% 91% / .82);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.service-card--structured dd {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.process-map .section-head { margin-bottom: 14px; }
.flow-line {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.flow-line span {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid hsl(217 91% 60% / .24);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .82);
  color: hsl(213 31% 91% / .86);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}
.flow-line span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  z-index: 1;
  color: var(--primary);
}
.anti-promise {
  padding: clamp(22px, 4vw, 36px);
}
.anti-promise ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin-top: 22px;
}
.anti-promise li {
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
}
.anti-promise li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border: 1px solid var(--primary);
  background: hsl(217 91% 60% / .16);
}
.consulting-hero .hero__actions {
  margin-top: 24px;
}
.consulting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: 18px;
  align-items: start;
}
.consulting-main,
.consulting-aside {
  padding: clamp(22px, 4vw, 34px);
}
.artifact-list {
  margin-top: 20px;
  padding-left: 20px;
}
.artifact-list li::marker,
.consulting-aside li::marker {
  color: var(--primary);
}
.consulting-aside ol {
  margin-top: 16px;
  padding-left: 20px;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: start;
  margin-block: clamp(54px, 8vw, 104px);
}
.split-section h2 span { color: var(--primary); }
.split-section p { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.availability, .final-cta { max-width: 880px; margin: clamp(50px, 7vw, 88px) auto; padding: clamp(24px, 4.5vw, 42px); text-align: center; }
.availability p, .final-cta p { max-width: 680px; margin: 14px auto 20px; color: var(--muted); }
.final-cta .hero__actions { justify-content: center; }
.sales-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 22px;
  align-items: stretch;
  margin-block: clamp(48px, 7vw, 86px);
}
.sales-cta > div:first-child,
.sales-cta__panel {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .72);
  padding: clamp(22px, 4vw, 36px);
}
.sales-cta > div:first-child p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}
.sales-cta__panel {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(145deg, hsl(217 91% 60% / .12), hsl(222 40% 9% / .86)),
    var(--card);
}
.sales-cta__panel span {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
}
.sales-cta__panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.sales-cta__panel li::marker { color: var(--primary); }
.sales-cta__panel .button { justify-self: start; }
.journal-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.journal-card { display: grid; gap: 10px; min-height: 180px; }
.journal-card span { color: var(--primary); font-family: var(--font-mono); font-size: 13px; }
.journal-card strong { color: #fff; font-family: var(--font-mono); font-size: 19px; line-height: 1.24; }
.page-hero { max-width: 940px; }
.page-hero h1, .article h1 { font-size: clamp(33px, 5vw, 58px); margin-bottom: 18px; }
.list { border-top: 1px solid var(--border-soft); }
.list-row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
.list-row span { color: var(--muted); }
.article { max-width: 920px; }
.article > .lead {
  max-width: 780px;
  margin: 18px 0 30px;
  color: hsl(213 31% 91% / .74);
}
.article > .tags {
  margin: 14px 0 18px;
}
.article > time {
  display: inline-block;
  margin-bottom: 8px;
}
.back-link { display: inline-block; margin-bottom: 24px; color: var(--muted); font-family: var(--font-mono); font-size: 14px; }
.prose { max-width: 820px; }
.prose h2 { margin: 34px 0 12px; color: #fff; }
.prose p { margin: 0 0 16px; font-size: 17px; }
.contact-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr); gap: 18px; align-items: start; }
.contact-grid { grid-template-columns: 1fr; }
.contact-card strong { display: block; margin-top: 8px; color: #fff; font-family: var(--font-mono); font-size: 24px; }
.contact-card--with-icon {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
}
.contact-card--with-icon img {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.contact-card--with-icon strong {
  margin-top: 0;
}
.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .82);
  padding: clamp(20px, 3.5vw, 28px);
}
.contact-form h2 { font-size: clamp(23px, 2.6vw, 31px); }
.contact-form label { display: grid; gap: 7px; color: var(--muted); }
.contact-form a, .form-note a, .cookie-banner a { color: hsl(217 91% 72%); text-decoration: underline; text-underline-offset: 3px; }
.contact-form .button { justify-self: start; }
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-fields > label { min-width: 0; }
.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
}
.lead-magnet__copy {
  max-width: 760px;
}
.lead-magnet__copy h2 {
  margin: 0 0 16px;
  max-width: 860px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}
.lead-magnet__copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}
.lead-magnet__form h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
}
.lead-magnet__form .form-fields {
  grid-template-columns: 1fr;
}
.lead-magnet__form .button {
  width: 100%;
  justify-self: stretch;
}
.form-context {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid hsl(217 91% 60% / .32);
  border-radius: var(--radius-sm);
  background: hsl(217 91% 60% / .1);
  color: var(--foreground);
}
.form-context span { color: var(--muted); }
.contact-form--modal { border: 0; background: transparent; padding: 0; gap: 10px; }
.contact-form--modal .eyebrow { margin-bottom: 6px; }
.contact-form--modal h2 { font-size: clamp(22px, 2.4vw, 28px); }
.modal-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
}
.modal-fields__wide { grid-column: 1 / -1; }
.contact-form--modal input,
.contact-form--modal textarea {
  padding: 9px 10px;
}
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: hsl(222 47% 8%);
  color: var(--foreground);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.contact-modal {
  width: min(100% - 28px, 760px);
  max-height: min(92vh, 720px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .98);
  color: var(--foreground);
  padding: clamp(16px, 2.6vw, 24px);
  overflow: auto;
  box-shadow: 0 28px 90px rgb(0 0 0 / .48);
}
.contact-modal::backdrop { background: rgb(3 7 18 / .72); backdrop-filter: blur(6px); }
.consent-check {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px !important;
  font-size: 13px;
  line-height: 1.45;
}
.contact-form--modal .consent-check { font-size: 12px; line-height: 1.35; }
.consent-check input { width: 18px; height: 18px; margin-top: 1px; }
.form-note {
  color: hsl(215 20% 55% / .88);
  font-size: 13px;
  line-height: 1.5;
}
.contact-form--modal .form-note { font-size: 12px; line-height: 1.35; }
.contact-form--needs-consent .consent-check:first-of-type span { color: hsl(0 88% 78%); }
.contact-bubble {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 35;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.contact-bubble__toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid hsl(217 91% 60% / .48);
  border-radius: 50%;
  background: hsl(217 91% 60%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 48px hsl(217 91% 42% / .34);
}
.contact-bubble__toggle svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-bubble__panel {
  display: grid;
  gap: 8px;
  width: 184px;
  padding: 10px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .96);
  box-shadow: 0 20px 60px rgb(0 0 0 / .32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.contact-bubble:hover .contact-bubble__panel,
.contact-bubble:focus-within .contact-bubble__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.contact-bubble__action {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: hsl(213 31% 91% / .82);
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.contact-bubble__action:hover,
.contact-bubble__action:focus-visible {
  border-color: hsl(217 91% 60% / .32);
  background: hsl(217 91% 60% / .12);
  color: #fff;
}
.contact-bubble__action svg,
.contact-bubble__action img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}
.contact-bubble__action img {
  filter: brightness(0) invert(1);
}
.contact-bubble__action svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success {
  color: hsl(145 70% 72%);
  border: 1px solid hsl(145 70% 45% / .35);
  background: hsl(145 70% 35% / .09);
  border-radius: var(--radius);
  padding: 10px 12px;
}
.site-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 28px 0 36px; border-top: 1px solid var(--border-soft); color: var(--muted); }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; max-width: 720px; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.site-footer strong { display: block; color: #fff; font-family: var(--font-mono); }
.site-footer span { display: block; margin-top: 4px; }
.footer-legal {
  color: hsl(213 31% 91% / .72);
  font-size: 13px;
}
.footer-disclaimer {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: hsl(215 20% 55% / .84);
  font-size: 12px;
  line-height: 1.45;
}
.footer-links {
  display: grid;
  gap: 7px;
  min-width: min(100%, 280px);
  color: hsl(213 31% 91% / .68);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
}
.footer-cta { color: hsl(213 31% 91% / .78); font-family: var(--font-mono); font-size: 14px; }
.footer-links a:hover, .footer-cta:hover { color: var(--primary); }
.results-disclaimer {
  margin-top: 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgb(255 255 255 / .018);
  color: hsl(215 20% 55% / .9);
  padding: 14px 16px;
  font-size: 13px;
}
.legal-article .prose h1 { display: none; }
.prose blockquote {
  margin: 0 0 18px;
  border-left: 3px solid var(--primary);
  background: hsl(217 91% 60% / .08);
  padding: 12px 14px;
  color: hsl(213 31% 91% / .78);
}
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 14px;
  width: min(100% - 36px, 560px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: hsl(222 40% 9% / .97);
  color: var(--muted);
  padding: 16px;
  box-shadow: 0 22px 70px rgb(0 0 0 / .38);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner div { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner .button { min-height: 40px; padding: 8px 12px; font-size: 12px; }

.admin-body { background: var(--background); }
.admin-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; border-bottom: 1px solid var(--border-soft); background: var(--card); }
.admin-header nav { display: flex; align-items: center; gap: 14px; }
.admin-header button, .admin-table button { border: 1px solid var(--border); background: transparent; color: var(--foreground); border-radius: var(--radius); padding: 8px 10px; cursor: pointer; }
.admin-main { padding: 32px; }
.admin-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 240px)); gap: 16px; }
.admin-stats a { border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 20px; background: var(--card); }
.admin-stats span { display: block; color: var(--muted); }
.admin-stats strong { font-size: 44px; }
.admin-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 18px; background: var(--card); border: 1px solid var(--border-soft); }
.admin-table th, .admin-table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.admin-table form { display: inline; margin-left: 8px; }
.admin-form, .login-form { display: grid; gap: 14px; max-width: 860px; }
.admin-form label, .login-form label { display: grid; gap: 6px; color: var(--muted); }
input, textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); background: hsl(222 47% 8%); color: var(--foreground); padding: 11px 12px; font: inherit; }
textarea { resize: vertical; }
.field-help { color: hsl(215 20% 55% / .8); font-size: 12px; }
.tag-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}
.tag-preview span {
  border: 1px solid hsl(217 91% 60% / .28);
  border-radius: 999px;
  background: hsl(217 91% 60% / .1);
  color: hsl(217 91% 72%);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; }
.check input { width: auto; }
.check.consent-check {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: flex-start;
}
.form-error { color: var(--danger); border: 1px solid rgb(255 122 122 / .35); background: rgb(255 122 122 / .08); border-radius: var(--radius); padding: 10px 12px; }
.login-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-form { width: min(100%, 420px); border: 1px solid var(--border-soft); background: var(--card); border-radius: var(--radius); padding: 28px; }

@media (max-width: 920px) {
  .hero, .lead-magnet, .split-section, .sales-cta, .diagnostic-board, .approach-section, .consulting-layout { grid-template-columns: 1fr; }
  .portrait-card { min-height: 360px; }
  .stats-grid, .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid, .feature-grid, .service-grid, .journal-preview, .contact-grid, .contact-layout { grid-template-columns: 1fr; }
  .anti-promise ul { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-shell { width: min(100% - 28px, 1180px); }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 72px; right: 14px; flex-direction: column; min-width: 220px; padding: 16px; background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius); }
  .site-nav.is-open { display: flex; }
  .hero { margin-top: 28px; }
  .inline-cta, .section-head, .site-footer, .admin-header { flex-direction: column; align-items: flex-start; }
  .footer-links { text-align: left; }
  .form-fields { grid-template-columns: 1fr; }
  .modal-fields { grid-template-columns: 1fr; }
  .list-row { grid-template-columns: 1fr; gap: 4px; }
  .admin-table { display: block; overflow-x: auto; }
  .experience-grid { grid-template-columns: 1fr; }
  .company-logo { width: 210px; min-height: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
