@font-face {
  font-family: "DM Sans";
  src: url("/DMSans-Variable.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("/DMSerifDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #09090b;
  --ink-soft: #151518;
  --panel: #111114;
  --card: #18181c;
  --paper: #f7f2e9;
  --paper-soft: #d9d1c5;
  --muted: #9c9894;
  --line: rgba(255, 248, 238, 0.12);
  --line-strong: rgba(255, 248, 238, 0.22);
  --amber: #efa72e;
  --amber-bright: #f6c96e;
  --orange: #d76b2e;
  --magenta: #c22a78;
  --magenta-bright: #e05b9d;
  --max: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --cta-surface: #18181c;
  --cta-surface-top: #24242a;
  --cta-text: #f7f2e9;
  --cta-depth: #050506;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--amber);
  font: 600 11px/1.4 "Consolas", "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "// ";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 248, 238, 0.05), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta) 15%, var(--amber) 50%, var(--orange) 85%, transparent);
  opacity: 0.5;
}

.nav-shell {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand-link {
  width: 146px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--paper-soft);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding-bottom: 3px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), var(--amber), var(--orange));
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.desktop-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--paper);
}

.footer-links a:hover {
  color: var(--amber-bright);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 22px;
  background: var(--card);
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button-small {
  min-height: 39px;
  justify-self: end;
  padding: 0 16px;
  font-size: 12px;
}

.button span {
  margin-left: 2px;
  color: var(--amber);
  transition: transform 0.2s ease;
}

.button:hover span {
  transform: translateX(4px);
}

.button-primary.button-small {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 2px 2px var(--cta-depth), 0 9px 18px rgba(0, 0, 0, 0.24);
}

.button-primary.button-small:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 2px 2px var(--cta-depth),
    0 11px 22px rgba(239, 167, 46, 0.16);
}

.button-primary.button-small:active {
  transform: translateY(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 1px var(--cta-depth),
    0 4px 10px rgba(0, 0, 0, 0.18);
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: var(--cta-text);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--cta-surface-top), var(--cta-surface));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 2px 2px var(--cta-depth), 0 14px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button-primary::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--amber), var(--orange));
  opacity: 0.85;
}

.button-primary span {
  position: relative;
  z-index: 1;
}

.button-primary:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--amber) 42%, var(--line-strong));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 3px 3px var(--cta-depth),
    0 20px 36px rgba(239, 167, 46, 0.16);
}

.button-primary:active {
  transform: translateY(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 1px var(--cta-depth),
    0 6px 14px rgba(0, 0, 0, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 167, 46, 0.62);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.footer-links a:focus-visible,
.email-link:focus-visible,
.brand-link:focus-visible {
  outline: 3px solid rgba(239, 167, 46, 0.68);
  outline-offset: 5px;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(239, 167, 46, 0.55);
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--amber);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-dark {
  color: var(--ink);
  border-bottom-color: rgba(9, 9, 11, 0.32);
}

.about-cta {
  margin-top: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-glow {
  position: absolute;
  width: 820px;
  height: 820px;
  right: -300px;
  top: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 167, 46, 0.14), rgba(194, 42, 120, 0.05) 38%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr);
  align-items: center;
  gap: 72px;
  padding-top: 74px;
  padding-bottom: 48px;
}

.hero-copy h1 {
  max-width: 850px;
  margin-top: 22px;
  font: 400 clamp(54px, 6.2vw, 88px) / 0.96 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 .gradient-text {
  display: inline-block;
  line-height: 1.08;
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(100deg, var(--amber-bright), var(--orange) 52%, var(--magenta-bright));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 700px;
  margin-top: 30px;
  color: var(--paper-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-evidence strong {
  display: block;
  font-size: 14px;
}

.hero-evidence span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 1px solid var(--line-strong);
  border-radius: 34px 156px 34px 34px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: border-color 420ms ease, box-shadow 420ms ease;
}

.portrait-frame:hover {
  border-color: rgba(246, 201, 110, 0.46);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(9, 9, 11, 0.94));
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 132px;
  bottom: 28px;
}

.portrait-caption span,
.portrait-caption small {
  display: block;
}

.portrait-slashes {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 72px;
  padding: 4px 6px;
  opacity: 0;
  filter: drop-shadow(0 8px 18px rgba(194, 42, 120, 0.26));
}

.portrait-slashes::before {
  content: "";
  position: absolute;
  inset: 5px -8px -5px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 167, 46, 0.17), transparent 68%);
  opacity: 0.8;
}

.portrait-slashes i {
  width: 13px;
  height: 68px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ef8f36, var(--orange));
  opacity: 0;
  transform: skew(-12deg) translateY(18px) scaleY(0);
  transform-origin: bottom;
}

.portrait-slashes i:first-child {
  background: linear-gradient(180deg, var(--magenta-bright), var(--magenta));
}

.portrait-caption span {
  font-size: 15px;
  font-weight: 700;
}

.portrait-caption small {
  margin-top: 4px;
  color: var(--paper-soft);
  font: 500 10px/1.5 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worked-with {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.rail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.rail-heading > p,
.capability-label {
  color: var(--muted);
  font: 500 10px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-heading > span {
  color: var(--muted);
  font-size: 11px;
}

.marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-left 28s linear infinite;
}

.marquee:hover .marquee-track,
.problem-reel:hover .problem-track {
  animation-play-state: paused;
}

.marquee-set {
  flex: none;
  display: flex;
  align-items: center;
}

.company-set {
  gap: 14px;
  padding-right: 14px;
}

.company-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.company-logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
}

.company-logo img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.company-logo:hover img {
  opacity: 1;
}

.logo-marquee {
  padding: 5px 0 4px;
}

.capability-rail {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  margin-top: 2px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.018);
}

.top-capability {
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 50%, rgba(239, 167, 46, 0.12), transparent 26%),
    linear-gradient(90deg, #111114 0%, var(--ink-soft) 62%, rgba(194, 42, 120, 0.09) 100%);
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.025);
}

.top-capability .capability-label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.top-capability .capability-label::before {
  content: "//";
  color: var(--amber-bright);
  font: 700 12px/1 "Consolas", monospace;
  letter-spacing: -0.12em;
}

.top-capability .capability-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
}

.capability-track {
  animation-duration: 42s;
}

.capability-set {
  gap: 38px;
  padding: 0 38px 0 0;
  margin: 0;
  list-style: none;
}

.capability-set li {
  position: relative;
  color: var(--paper-soft);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.capability-set li::before {
  content: "//";
  margin-right: 12px;
  color: var(--amber);
  font: 700 9px "Consolas", monospace;
  letter-spacing: -0.1em;
}

.capability-set li:nth-child(3n + 2)::before {
  color: var(--orange);
}

.capability-set li:nth-child(3n)::before {
  color: var(--magenta-bright);
}

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

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.nav-anchor {
  scroll-margin-top: 128px;
}

#edit.nav-anchor {
  scroll-margin-top: 210px;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-light .eyebrow {
  color: #a14c12;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading h2,
.about-copy h2,
.edit-copy h2,
.contact-grid h2,
.recognition-intro h2 {
  margin-top: 17px;
  font: 400 clamp(42px, 5vw, 68px) / 1.02 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.025em;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  max-width: 500px;
  color: var(--muted);
}

.section-light .split-heading > p {
  color: #5e5752;
}

.diagnosis-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 58px;
}

.diagnosis-heading h2 {
  max-width: 1120px;
  text-wrap: balance;
}

.diagnosis-heading .diagnosis-intro {
  position: relative;
  max-width: 920px;
  margin-top: 26px;
  padding-left: 28px;
  color: #5f5a54;
  font-size: 16px;
  line-height: 1.65;
}

.diagnosis-heading .diagnosis-intro::before {
  content: "";
  position: absolute;
  inset: 3px auto 3px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), var(--orange) 55%, var(--magenta));
}

.pathways-heading {
  max-width: 1120px;
}

.pathways-heading h2 span {
  display: block;
  white-space: nowrap;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: stretch;
}

.problem-reel {
  position: relative;
  isolation: isolate;
  height: 512px;
  overflow: hidden;
  clip-path: inset(0);
  contain: paint;
  border-top: 1px solid rgba(9, 9, 11, 0.18);
  border-bottom: 1px solid rgba(9, 9, 11, 0.18);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 8%, black 20%, black 92%, transparent 100%);
}

.problem-track {
  will-change: transform;
  animation: problem-scroll 48s linear infinite;
}

.problem-set {
  display: flex;
  flex-direction: column;
}

.problem-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(9, 9, 11, 0.18);
  min-height: 64px;
  padding: 11px 0;
}

.problem-row span {
  color: #89847f;
  font: 600 10px "Consolas", monospace;
  letter-spacing: 0.08em;
}

.problem-row p {
  color: #4e4a46;
  font-size: 17px;
  line-height: 1.45;
}

@keyframes problem-scroll {
  to {
    transform: translateY(-50%);
  }
}

.diagnosis-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  padding: 42px;
}

.diagnosis-card::after {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--orange), var(--magenta));
}

.card-label {
  color: var(--amber);
  font: 600 10px/1.5 "Consolas", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.diagnosis-card blockquote {
  margin-top: 36px;
  font: 400 clamp(34px, 3.6vw, 50px) / 1.08 "DM Serif Display", Georgia, serif;
}

.diagnosis-card > p:not(.card-label) {
  margin-top: 24px;
  color: var(--paper-soft);
}

.diagnosis-card .text-link {
  margin-top: 34px;
}

.pathways-section {
  background: radial-gradient(70% 70% at 100% 0%, rgba(239, 167, 46, 0.08), transparent 52%), var(--ink);
}

.pathways-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.pathway {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.pathway::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
}

.pathway-function {
  --accent: var(--amber);
  background: linear-gradient(150deg, rgba(239, 167, 46, 0.08), transparent 45%), var(--card);
}

.pathway-team {
  --accent: var(--orange);
}

.pathway-career {
  --accent: var(--magenta-bright);
}

.pathway-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font: 600 9px/1.5 "Consolas", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pathway-topline i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.pathway h3 {
  margin-top: 54px;
  font: 400 38px/1.05 "DM Serif Display", Georgia, serif;
}

.pathway-role {
  margin-top: 18px;
  color: var(--paper-soft);
  font-size: 15px;
}

.pathway ul {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.pathway li {
  position: relative;
  padding-left: 16px;
}

.pathway li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.pathway .text-link {
  width: fit-content;
  margin-top: auto;
}

.section-panel {
  background: var(--panel);
}

.offers-list {
  border-top: 1px solid var(--line-strong);
}

.starting-options {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -18px 0 38px;
  border-left: 3px solid var(--amber);
  padding-left: 16px;
}

.starting-options span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  padding: 8px 12px;
  color: var(--paper-soft);
  font: 600 9px/1 "Consolas", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-row {
  --offer-accent: var(--amber);
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.offer-row:nth-child(2) {
  --offer-accent: var(--orange);
}

.offer-row:nth-child(3) {
  --offer-accent: var(--magenta);
}

.offer-row:nth-child(4) {
  --offer-accent: var(--amber);
}

.offer-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 3px;
}

.offer-index {
  color: var(--offer-accent);
  font: 700 10px/1 "Consolas", monospace;
  letter-spacing: 0.09em;
}

.offer-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 31px;
  padding-left: 3px;
}

.offer-mark i {
  display: block;
  width: 6px;
  height: 29px;
  background: var(--offer-accent);
  transform: skew(-13deg);
  transform-origin: center;
}

.offer-mark i:last-child {
  opacity: 0.72;
}

.offer-mark {
  color: var(--offer-accent);
}

.offer-row h3 {
  max-width: 470px;
  margin-top: 22px;
  font: 400 clamp(30px, 3vw, 38px)/1.05 "DM Serif Display", Georgia, serif;
}

.offer-title {
  padding-top: 2px;
}

.offer-fit-label,
.offer-label {
  display: block;
  color: var(--offer-accent);
  font: 700 9px/1.3 "Consolas", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-start {
  max-width: 500px;
  margin-top: 9px;
  color: var(--paper-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.offer-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding-top: 2px;
}

.offer-scope p,
.offer-outcome p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.offer-scope p {
  color: var(--muted);
}

.offer-outcome {
  border-left: 1px solid var(--line-strong);
  padding-left: 26px;
}

.offer-outcome p {
  color: var(--paper-soft);
}

.consultancy-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 50px;
  border: 1px solid rgba(9, 9, 11, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 34px 36px;
}

.cta-mark {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 6px;
}

.cta-mark i {
  display: block;
  width: 8px;
  height: 52px;
  background: var(--magenta);
  transform: skew(-13deg);
}

.cta-mark i:last-child {
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.cta-copy strong {
  display: block;
  color: var(--ink);
  font: 400 clamp(25px, 2.4vw, 32px)/1.08 "DM Serif Display", Georgia, serif;
}

.cta-copy p {
  max-width: 780px;
  margin-top: 8px;
  color: #57514a;
  font-size: 15px;
  line-height: 1.55;
}

.consultancy-cta .button-primary {
  min-width: 158px;
  overflow: hidden;
  border-color: var(--line-strong);
  border-radius: 13px;
  background: linear-gradient(180deg, #24242a, var(--card));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 2px 2px #050506,
    0 14px 24px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.consultancy-cta .button-primary::before {
  display: block;
  inset: auto 12px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--amber), var(--orange));
  opacity: 0.82;
}

.consultancy-cta .button-primary span {
  margin-left: 10px;
  color: var(--amber);
  font-size: 18px;
  line-height: 1;
}

.proof-section {
  background: var(--ink);
}

.proof-section .section-heading {
  max-width: none;
}

.proof-heading span {
  display: block;
  white-space: nowrap;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 58%);
  padding: 36px 30px;
  transition: background-color 420ms ease, border-color 420ms ease;
}

.proof-card.is-counting {
  background-color: rgba(255, 255, 255, 0.025);
  border-bottom-color: rgba(252, 194, 73, 0.46);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--amber);
}

.proof-card:nth-child(2)::before {
  background: var(--orange);
}

.proof-card:nth-child(3)::before,
.proof-card:nth-child(4)::before {
  background: var(--magenta);
}

.proof-card > strong {
  display: block;
  color: var(--amber-bright);
  font: 400 clamp(58px, 5.4vw, 86px) / 0.95 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  transition: color 420ms ease, transform 420ms ease;
}

.proof-card.is-counting > strong {
  color: #ffe29a;
  transform: translateY(-3px);
}

.proof-card h3 {
  margin-top: 18px;
  font-size: 15px;
}

.proof-card p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

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

.case-notes article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 28px;
}

.case-notes span,
.recognition-list article > span {
  color: var(--amber);
  font: 600 10px/1.5 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-notes h3 {
  margin-top: 28px;
  font: 400 25px/1.15 "DM Serif Display", Georgia, serif;
}

.case-notes p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.recognition-section {
  background: var(--panel);
}

.recognition-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.recognition-intro {
  position: sticky;
  top: 120px;
}

.recognition-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 25px;
  color: var(--muted);
}

.speaker-note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.speaker-note img {
  width: 36px;
}

.speaker-note p {
  color: var(--paper-soft) !important;
  font-size: 13px;
}

.recognition-list {
  border-top: 1px solid var(--line-strong);
}

.recognition-list article {
  --recognition-accent: var(--amber);
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0 28px 22px;
}

.recognition-list article:nth-child(2) {
  --recognition-accent: var(--orange);
}

.recognition-list article:nth-child(3) {
  --recognition-accent: var(--magenta);
}

.recognition-list article:nth-child(4) {
  --recognition-accent: var(--amber);
}

.recognition-list article:nth-child(5) {
  --recognition-accent: var(--orange);
}

.recognition-list article::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--recognition-accent);
}

.recognition-list article > span {
  color: var(--recognition-accent);
}

.recognition-list h3 {
  font-size: 18px;
  line-height: 1.35;
}

.recognition-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.media-platform {
  margin-top: 96px;
  border-top: 1px solid var(--line-strong);
  padding-top: 64px;
}

.media-heading {
  display: block;
  max-width: 980px;
  padding-bottom: 42px;
}

.media-heading h3 {
  max-width: 940px;
  margin-top: 16px;
  color: var(--paper);
  font: 400 clamp(34px, 4.2vw, 54px) / 1.04 "DM Serif Display", Georgia, serif;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.media-grid article {
  --media-accent: var(--amber);
  position: relative;
  min-height: 250px;
  border-top: 3px solid var(--media-accent);
  border-right: 1px solid var(--line);
  padding: 30px 30px 24px 0;
}

.media-grid article + article {
  padding-left: 30px;
}

.media-grid article:nth-child(2) {
  --media-accent: var(--orange);
}

.media-grid article:nth-child(3) {
  --media-accent: var(--magenta);
}

.media-grid article:last-child {
  border-right: 0;
}

.media-grid span {
  color: var(--media-accent);
  font: 600 9px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.28;
}

.media-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.media-upcoming {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 22px 28px;
}

.media-upcoming::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--magenta);
}

.media-upcoming span {
  color: var(--magenta-bright);
  font: 600 9px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-upcoming strong {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.3;
}

.media-upcoming p {
  color: var(--muted);
  font-size: 13px;
}

.about-grid {
  display: block;
}

.about-visual {
  display: block;
  min-width: 0;
  width: 100%;
  margin-top: 58px;
}

.about-credentials {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  border-radius: var(--radius);
  background: #ebe3d8;
  box-shadow: inset 0 0 0 1px rgba(9, 9, 11, 0.12);
}

.about-caption {
  display: grid;
  grid-template-columns: 158px repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
  padding: 0;
}

.about-caption p,
.about-caption span {
  min-height: 82px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 18px 22px;
}

.about-caption p {
  color: var(--muted);
  font: 600 9px/1.35 "Consolas", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-caption span {
  gap: 14px;
  color: var(--paper-soft);
  font: 600 10px/1.35 "Consolas", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-caption span:last-child {
  border-right: 0;
}

.about-caption span::before {
  content: "//";
  color: var(--amber);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.14em;
}

.about-caption span:nth-child(2)::before {
  color: var(--orange);
}

.about-caption span:nth-child(3)::before {
  color: var(--magenta-bright);
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 84px;
  align-items: start;
}

.about-lead {
  margin-top: 0 !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  line-height: 1.55;
}

.about-story {
  padding-top: 48px;
}

.about-story > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: #5e5752;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  background: #ebe3d8;
}

.about-facts div {
  display: block;
  position: relative;
  min-height: 152px;
  border-top: 0;
  border-right: 1px solid rgba(9, 9, 11, 0.14);
  padding: 32px 28px 28px;
}

.about-facts div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 52px;
  height: 3px;
  background: var(--amber);
}

.about-facts div:nth-child(2)::before {
  background: var(--orange);
}

.about-facts div:nth-child(3)::before {
  background: var(--magenta);
}

.about-facts div:first-child {
  border-top: 0;
}

.about-facts div:last-child {
  border-right: 0;
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.about-facts span {
  max-width: 290px;
  margin-top: 12px;
  color: #5e5752;
  font-size: 14px;
  line-height: 1.55;
}

.systems-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 68px 0 0;
}

.systems-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 84px;
  align-items: end;
  padding-bottom: 46px;
}

.systems-heading h2 {
  max-width: 690px;
  margin-top: 14px;
  color: var(--paper);
  font: 400 clamp(40px, 4.2vw, 56px) / 1.05 "DM Serif Display", Georgia, serif;
}

.systems-heading > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.systems-marquee {
  border-top: 1px solid var(--line-strong);
  background: var(--ink);
}

.systems-track {
  width: max-content;
  animation: marquee-left 170s linear infinite;
}

.systems-marquee:hover .systems-track {
  animation-play-state: running;
}

.systems-set {
  display: flex;
  align-items: stretch;
  padding-right: 1px;
}

.systems-set li {
  --platform-accent: var(--amber);
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(190px, auto);
  grid-template-rows: auto auto;
  min-width: 286px;
  min-height: 118px;
  align-items: center;
  align-content: center;
  gap: 5px 18px;
  border-right: 1px solid var(--line);
  padding: 0 28px;
  color: var(--paper-soft);
  white-space: nowrap;
}

.systems-set li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 52px;
  height: 3px;
  background: var(--platform-accent);
}

.systems-set li:nth-child(3n + 2) {
  --platform-accent: var(--orange);
}

.systems-set li:nth-child(3n) {
  --platform-accent: var(--magenta-bright);
}

.systems-set img {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15) brightness(1.35);
  opacity: 0.94;
}

.systems-set strong {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.25;
}

.systems-set span {
  color: var(--muted);
  font: 600 10px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ai-section::before {
  content: none;
}

.ai-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px 86px;
}

.ai-section .eyebrow {
  color: #a14c12;
}

.ai-heading h2 {
  max-width: 760px;
  margin-top: 15px;
  font: 400 clamp(50px, 5.2vw, 70px) / 1.04 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.025em;
}

.ai-intro {
  display: flex;
  align-items: end;
  padding-bottom: 8px;
}

.ai-intro p {
  max-width: 510px;
  color: #5e5752;
  font-size: 17px;
  line-height: 1.7;
}

.ai-decisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ai-system-panel {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  margin-top: 42px;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 22px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 24px 54px rgba(9, 9, 11, 0.12);
}

.ai-system-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--orange), var(--magenta-bright));
}

.ai-panel-head {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 248, 238, 0.13);
  padding: 22px 32px;
}

.ai-panel-head strong {
  color: var(--amber-bright);
  font: 700 11px/1.4 "Consolas", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-panel-head span {
  color: var(--muted);
  font: 600 10px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-decisions article {
  --ai-accent: #a36810;
  position: relative;
  min-height: 336px;
  border-right: 1px solid rgba(255, 248, 238, 0.13);
  padding: 40px 32px 38px;
}

.ai-decisions article + article {
  padding-left: 32px;
}

.ai-decisions article:nth-child(2) {
  --ai-accent: #b95722;
}

.ai-decisions article:nth-child(3) {
  --ai-accent: #af236c;
  border-right: 0;
}

.ai-decisions article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 48px;
  height: 3px;
  background: var(--ai-accent);
}

.ai-step-label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ai-step-label > span:last-child {
  color: var(--ai-accent);
  font: 700 10px/1.3 "Consolas", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-step-slashes {
  display: inline-flex;
  width: 18px;
  height: 21px;
  align-items: flex-start;
  gap: 4px;
}

.ai-step-slashes i {
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 1px;
  background: var(--ai-accent);
  transform: skewX(-14deg);
}

.ai-step-slashes i:last-child {
  margin-top: 3px;
  opacity: 0.82;
}

.ai-decisions h3 {
  max-width: 340px;
  margin-top: 34px;
  color: var(--paper);
  font: 400 29px/1.12 "DM Serif Display", Georgia, serif;
}

.ai-decisions p {
  max-width: 315px;
  margin-top: 15px;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.65;
}

.ai-applications {
  border-top: 1px solid rgba(255, 248, 238, 0.13);
  background: var(--card);
}

.ai-applications-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 15px;
  padding: 20px 32px;
}

.ai-applications-head strong {
  color: var(--paper);
  font: 700 11px/1.4 "Consolas", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-applications-mark {
  display: inline-flex;
  width: 20px;
  height: 25px;
  align-items: flex-start;
  gap: 5px;
}

.ai-applications-mark i {
  display: block;
  width: 5px;
  height: 21px;
  border-radius: 1px;
  background: var(--magenta-bright);
  transform: skewX(-14deg);
}

.ai-applications-mark i:last-child {
  margin-top: 4px;
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.ai-application-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 20px;
  list-style: none;
  padding: 10px 32px 38px;
}

.ai-application-list li {
  --application-accent: var(--amber);
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 148px;
  align-items: start;
  border-top: 1px solid rgba(255, 248, 238, 0.2);
  padding: 23px 0 12px;
}

.ai-application-list li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--application-accent);
  content: "";
}

.ai-application-list li:nth-child(3n + 2) {
  --application-accent: var(--orange);
}

.ai-application-list li:nth-child(3n) {
  --application-accent: var(--magenta-bright);
}

.ai-application-list span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font: 700 9px/1.3 "Consolas", monospace;
}

.ai-application-list span::after {
  content: "//";
  color: var(--application-accent);
  font: 800 16px/1 "Consolas", monospace;
  letter-spacing: -0.18em;
}

.ai-application-list strong {
  display: block;
  max-width: 260px;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.4;
}

.ai-application-copy {
  padding-top: 1px;
}

.ai-application-list p {
  max-width: 280px;
  margin-top: 5px;
  color: var(--paper-soft);
  font-size: 12px;
  line-height: 1.55;
}

.edit-section {
  background: var(--ink);
}

.edit-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: 82px;
  align-items: start;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(239, 167, 46, 0.08), rgba(194, 42, 120, 0.05) 58%, transparent), var(--panel);
  padding: 58px;
}

.edit-copy h2 {
  max-width: 560px;
  font-size: clamp(48px, 4.8vw, 62px);
}

.edit-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.edit-form {
  margin-top: 32px;
}

.edit-form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.edit-form-row input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 20px;
  color: var(--paper);
  font: 500 14px "DM Sans", Arial, sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.edit-form-row input:focus-visible {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.07);
}

.edit-form-row .button {
  flex: none;
  margin-top: 0;
  white-space: nowrap;
}

.edit-confirm {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 32px;
  color: var(--paper);
  font: 600 15px "DM Sans", Arial, sans-serif;
}

.edit-topics {
  display: grid;
  gap: 0;
  padding-top: 38px;
}

.edit-topics-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font: 600 10px/1.4 "Consolas", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edit-topics-label::before {
  content: "//";
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.14em;
}

.edit-topics > div {
  position: relative;
  display: grid;
  grid-template-columns: 54px 190px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}

.edit-topics > div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--accent);
}

.topic-function {
  --accent: var(--amber);
}

.topic-team {
  --accent: var(--orange);
}

.topic-career {
  --accent: var(--magenta-bright);
}

.edit-topics span {
  color: var(--accent);
  font: 600 11px "Consolas", monospace;
}

.edit-topics h3 {
  color: var(--paper);
  font-size: 17px;
  line-height: 1.3;
}

.edit-topics p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.faq-section {
  position: relative;
  background: var(--panel);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: 88px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  max-width: 520px;
  margin-top: 16px;
  color: var(--paper);
  font: 400 clamp(48px, 4.2vw, 64px) / 1.02 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.025em;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 22px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--amber), var(--orange), var(--magenta-bright)) 1;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-list {
  position: relative;
  padding-top: 3px;
}

.faq-list::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0 12%, var(--orange) 12% 24%, var(--magenta-bright) 24% 36%, var(--line-strong) 36% 100%);
  content: "";
}

.faq-list details {
  --faq-accent: var(--amber);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details:nth-child(3n + 2) {
  --faq-accent: var(--orange);
}

.faq-list details:nth-child(3n) {
  --faq-accent: var(--magenta-bright);
}

.faq-list details[open] {
  background: rgba(255, 248, 238, 0.025);
  box-shadow: inset 3px 0 var(--faq-accent);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--faq-accent);
  border-radius: 50%;
  color: var(--faq-accent);
  font: 400 22px/1 "DM Sans", sans-serif;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  background: rgba(255, 248, 238, 0.06);
  transform: rotate(45deg);
}

.faq-list summary span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faq-accent);
  font: 700 10px/1.3 "Consolas", monospace;
}

.faq-list summary span::after {
  content: "//";
  color: var(--faq-accent);
  font-size: 15px;
  letter-spacing: -0.18em;
}

.faq-list summary strong {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.35;
}

.faq-list details > p {
  max-width: 680px;
  margin: -6px 32px 0 68px;
  padding-bottom: 28px;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(239, 167, 46, 0.68);
  outline-offset: 4px;
}

.contact-section {
  position: relative;
  padding: 115px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0 33.333%, var(--orange) 33.333% 66.666%, var(--magenta) 66.666%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  column-gap: 90px;
  row-gap: 30px;
  align-items: stretch;
}

.contact-heading {
  grid-column: 1 / -1;
}

.contact-heading h2 {
  max-width: 1080px;
  font-size: clamp(52px, 5.6vw, 74px);
}

.contact-title span {
  display: block;
}

.contact-grid .eyebrow {
  color: #a14c12;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: #6b6459;
  font: 600 11px/1.4 "Consolas", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(9, 9, 11, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  padding: 12px 14px;
  color: var(--ink);
  font: 500 14px/1.4 "DM Sans", Arial, sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 78px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #928c82;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.form-error {
  color: #b3261e;
  font-size: 12.5px;
  line-height: 1.4;
}

.form-field input[aria-invalid="true"] {
  border-color: #b3261e;
}

.booking-step {
  display: flex;
  flex-direction: column;
}

.booking-step[hidden] {
  display: none;
}

.booking-confirm {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ink);
  font: 600 15px "DM Sans", Arial, sans-serif;
}

.booking-confirm-mark {
  color: var(--orange);
  font: 700 13px "Consolas", monospace;
  letter-spacing: -0.08em;
}

.booking-embed {
  overflow: hidden;
  border: 1px solid rgba(9, 9, 11, 0.14);
  border-radius: var(--radius, 18px);
  background: #fff;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-form .button-primary {
  align-self: flex-start;
  margin-top: 4px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-heading .button {
  margin-top: 0;
  color: var(--paper);
  white-space: nowrap;
}

.contact-intro {
  max-width: 540px;
  margin-top: 0;
  color: #5e5752;
  font-size: 17px;
  line-height: 1.65;
}

.contact-body,
.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-outcomes-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8b5720;
  font: 700 10px/1.4 "Consolas", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-outcomes-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(9, 9, 11, 0.18);
}

.contact-outcomes {
  margin-top: 12px;
}

.contact-outcomes li {
  --outcome-accent: #a36810;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(9, 9, 11, 0.14);
  padding: 18px 0;
}

.outcome-mark {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 54px;
}

.outcome-mark span {
  color: var(--outcome-accent);
  font: 700 10px/1.3 "Consolas", monospace;
}

.outcome-mark b {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  width: 28px;
  height: 28px;
}

.outcome-mark i {
  display: block;
  width: 6px;
  height: 27px;
  border-radius: 1px;
  background: var(--outcome-accent);
  transform: skewX(-14deg);
}

.outcome-mark i:last-child {
  margin-top: 3px;
  opacity: 0.82;
}

.contact-outcomes li:nth-child(2) {
  --outcome-accent: #b95722;
}

.contact-outcomes li:nth-child(3) {
  --outcome-accent: #af236c;
}

.contact-outcomes strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.site-footer {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-grid img {
  width: 145px;
}

.footer-grid > div:first-child p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  color: var(--paper-soft);
  font: 600 12px "DM Sans", Arial, sans-serif;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-social:hover {
  color: var(--amber-bright);
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--paper-soft);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font: 500 10px/1.6 "Consolas", monospace;
}

.footer-legal-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-legal-text p:last-child {
  max-width: none;
  text-align: left;
}

.footer-legal a {
  color: var(--paper-soft);
  text-decoration: underline;
  text-decoration-color: rgba(239, 167, 46, 0.5);
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--amber-bright);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .pathways-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pathway-function {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .offer-row {
    grid-template-columns: 52px minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
  }

  .offer-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .offer-outcome {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recognition-layout,
  .about-grid,
  .edit-card,
  .systems-heading,
  .ai-layout,
  .faq-layout {
    gap: 54px;
  }

  .media-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ai-application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(var(--max), calc(100% - 36px));
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-portrait {
    max-width: 520px;
  }

  .portrait-frame {
    aspect-ratio: 0.88;
    border-radius: 30px 150px 30px 30px;
  }

  .worked-with-grid,
  .split-heading,
  .diagnosis-grid,
  .recognition-layout,
  .about-grid,
  .edit-card,
  .systems-heading,
  .ai-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .capability-rail {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 18px;
  }

  .section {
    padding: 88px 0;
  }

  .nav-anchor {
    scroll-margin-top: 32px;
  }

  #edit.nav-anchor {
    scroll-margin-top: 68px;
  }

  .split-heading {
    gap: 22px;
  }

  .proof-heading span {
    white-space: normal;
  }

  .pathways-grid,
  .case-notes {
    grid-template-columns: 1fr;
  }

  .pathway-function {
    grid-column: auto;
  }

  .pathway {
    min-height: 470px;
  }

  .offer-row {
    grid-template-columns: 42px 1fr;
    gap: 22px;
    padding: 40px 0;
  }

  .offer-card-head {
    grid-row: 1 / span 2;
  }

  .offer-title,
  .offer-body {
    grid-column: 2;
  }

  .offer-body {
    margin-top: 28px;
    padding-top: 0;
  }

  .recognition-intro {
    position: static;
  }

  .faq-intro {
    position: static;
  }

  .ai-intro {
    padding-bottom: 0;
  }

  .ai-decisions {
    grid-template-columns: 1fr;
  }

  .ai-decisions article,
  .ai-decisions article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 238, 0.13);
    padding: 36px 32px;
  }

  .ai-decisions article:last-child {
    border-bottom: 0;
  }

  .ai-panel-head {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ai-application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edit-card {
    padding: 34px;
  }

  .media-heading {
    max-width: 720px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid article,
  .media-grid article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 32px;
  }

  .media-grid article:last-child {
    border-bottom: 0;
  }

  .media-upcoming {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 22px;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-story {
    padding-top: 0;
  }

  .about-visual {
    margin-top: 44px;
  }
}

@media (max-width: 580px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand-link {
    width: 124px;
  }

  .button-small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-grid {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .pathways-heading h2 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultancy-cta {
    grid-template-columns: 34px 1fr;
    gap: 22px 18px;
    padding: 28px 24px;
  }

  .cta-mark {
    grid-row: 1 / span 2;
    gap: 5px;
    align-self: start;
    padding: 2px 0 0;
  }

  .cta-mark i {
    width: 6px;
    height: 42px;
  }

  .consultancy-cta .button-primary {
    grid-column: 2;
    justify-self: start;
  }

  .hero-evidence,
  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 9, 11, 0.14);
    padding: 30px 18px 24px;
  }

  .about-facts div:last-child {
    border-bottom: 0;
  }

  .about-facts div::before {
    left: 18px;
  }

  .worked-with-grid {
    gap: 16px;
  }

  .rail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .company-set {
    gap: 12px;
    padding-right: 12px;
  }

  .portrait-slashes {
    right: 18px;
    bottom: 16px;
    transform: scale(0.86);
    transform-origin: bottom right;
  }

  .portrait-caption {
    left: 20px;
    right: 104px;
    bottom: 22px;
  }

  .problem-reel {
    height: 448px;
  }

  .problem-row {
    min-height: 64px;
  }

  .section-heading h2,
  .about-copy h2,
  .edit-copy h2,
  .systems-heading h2,
  .ai-heading h2,
  .faq-intro h2,
  .contact-grid h2,
  .recognition-intro h2 {
    font-size: 42px;
  }

  .systems-section {
    padding-top: 54px;
  }

  .systems-heading {
    gap: 22px;
    padding-bottom: 34px;
  }

  .systems-set li {
    grid-template-columns: 46px minmax(170px, auto);
    min-width: 250px;
    min-height: 100px;
    padding: 0 22px;
  }

  .systems-set li::before {
    left: 22px;
  }

  .systems-set img {
    width: 36px;
    height: 36px;
  }

  .ai-decisions {
    margin-top: 0;
  }

  .ai-system-panel {
    margin-top: 26px;
    border-radius: 18px;
  }

  .ai-panel-head,
  .ai-decisions article,
  .ai-decisions article + article,
  .ai-applications-head {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ai-application-list {
    grid-template-columns: 1fr;
  }

  .ai-application-list li {
    min-height: auto;
    padding: 15px 0;
  }

  .ai-decisions article::before {
    left: 24px;
  }

  .diagnosis-card,
  .pathway,
  .case-notes article {
    padding: 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 240px;
  }

  .recognition-list article {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .media-platform {
    padding-top: 48px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid article,
  .media-grid article + article {
    min-height: auto;
    padding: 24px 0 28px;
  }

  .media-grid article:last-child {
    border-bottom: 0;
  }

  .media-grid strong {
    margin-top: 26px;
  }

  .about-caption {
    grid-template-columns: 1fr;
  }

  .about-caption p,
  .about-caption span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-caption span:last-child {
    border-bottom: 0;
  }

  .edit-card {
    width: calc(100% - 24px);
    padding: 26px;
  }

  .edit-topics > div {
    grid-template-columns: 32px 1fr;
  }

  .edit-topics p {
    grid-column: 2;
  }

  .faq-list summary {
    grid-template-columns: 42px 1fr 32px;
    gap: 12px;
    min-height: 82px;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .faq-list summary strong {
    font-size: 16px;
  }

  .faq-list details > p {
    margin-left: 46px;
    margin-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-text p:last-child {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track,
  .problem-track,
  .portrait-slashes,
  .portrait-slashes i {
    animation: none !important;
    opacity: 1;
  }

  .portrait-slashes i {
    transform: skew(-12deg) translateY(0) scaleY(1) !important;
  }
}
