@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,400&display=swap");

:root {
  --ink: #f7f4ea;
  --muted: #b8b7af;
  --paper: #061426;
  --panel: #0a1a2d;
  --panel-soft: #102844;
  --white: #ffffff;
  --black: #030912;
  --gold: #d7a842;
  --gold-soft: #f0c76b;
  --blue: #47a7d8;
  --blue-deep: #071a2d;
  --clay: #bd624b;
  --line: rgba(247, 244, 234, 0.14);
  --line-strong: rgba(215, 168, 66, 0.38);
  --shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 16%, rgba(215, 168, 66, 0.12), transparent 30%),
    linear-gradient(rgba(247, 244, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 234, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #071a2d 0%, #061426 44%, #030912 100%);
  background-size: auto, 64px 64px, 64px 64px, auto;
  font-family:
    Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

main {
  display: flex;
  flex-direction: column;
}

section[id="start"] {
  order: 0;
}

#problem {
  order: 10;
}

#pattern {
  order: 20;
}

#principle {
  order: 30;
}

#hours {
  order: 40;
}

#advisory {
  order: 50;
}

#signature-keynote {
  order: 60;
}

#case-studies {
  order: 70;
}

#resources {
  order: 80;
}

#about {
  order: 90;
}

#credibility {
  order: 100;
}

#authority {
  order: 110;
}

#stages {
  order: 120;
}

#video-testimonials {
  order: 150;
}

#newsletter {
  order: 160;
}

#contact {
  order: 170;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 30px);
  padding: 0 clamp(18px, 2vw, 32px);
  color: var(--ink);
  background: rgba(5, 14, 26, 0.96);
  border-bottom: 1px solid rgba(218, 178, 92, 0.18);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 14, 26, 0.98);
  border-bottom: 1px solid rgba(218, 178, 92, 0.26);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
  min-width: clamp(160px, 16vw, 250px);
  height: calc(var(--header-height) - 16px);
}

.official-logo-space {
  display: block;
  width: clamp(160px, 16vw, 250px);
  height: calc(var(--header-height) - 26px);
  max-height: 100%;
  border: 0;
  background: transparent;
}

.official-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: clamp(160px, 16vw, 250px);
  height: calc(var(--header-height) - 18px);
  max-height: 100%;
}

.official-mark {
  display: block;
  width: clamp(44px, 4.4vw, 62px);
  height: auto;
  max-height: calc(var(--header-height) - 22px);
  object-fit: contain;
}

.official-wordmark {
  display: grid;
  gap: 5px;
  color: var(--cream);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.official-wordmark span {
  font-size: clamp(0.84rem, 1.03vw, 1.18rem);
  font-weight: 920;
  letter-spacing: 0.27em;
}

.official-wordmark em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.48rem, 0.55vw, 0.66rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.95vw, 18px);
  margin-left: auto;
  font-size: clamp(0.69rem, 0.62vw, 0.8rem);
  font-weight: 820;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.36);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(215, 168, 66, 0.72);
  border-radius: 4px;
  padding: 0 clamp(14px, 1.4vw, 24px);
  color: var(--gold-soft);
  font-size: clamp(0.72rem, 0.68vw, 0.84rem);
  font-weight: 900;
  white-space: nowrap;
  background: rgba(215, 168, 66, 0.06);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(215, 168, 66, 0.14);
  border-color: rgba(246, 211, 123, 0.9);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 42px) clamp(20px, 6vw, 88px) 64px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  background-image: url("assets/hero-dario-profile-signal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 0.94;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.99) 0%, rgba(7, 26, 45, 0.95) 38%, rgba(7, 26, 45, 0.44) 58%, rgba(7, 26, 45, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 9, 18, 0.72), rgba(16, 40, 68, 0.03));
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(700px, 100%);
}

.hero-content-with-video {
  width: min(1540px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.hero-text-panel {
  min-width: 0;
}

.hero-tv-card {
  align-self: center;
  display: grid;
  gap: 14px;
  max-width: 590px;
  margin-left: auto;
  border: 1px solid rgba(215, 168, 66, 0.5);
  padding: clamp(12px, 1.5vw, 18px);
  background:
    linear-gradient(145deg, rgba(8, 11, 13, 0.72), rgba(20, 46, 70, 0.56)),
    rgba(8, 11, 13, 0.8);
  box-shadow: var(--shadow);
  opacity: 0.9;
}

.hero-tv-heading {
  display: grid;
  gap: 4px;
}

.hero-tv-heading .eyebrow {
  margin: 0;
}

.hero-tv-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(247, 244, 234, 0.82);
  font-size: 0.98rem;
  font-weight: 740;
  line-height: 1.38;
}

.hero-tv-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(247, 244, 234, 0.16);
  background: var(--black);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-context {
  width: min(640px, 100%);
  margin: -4px 0 20px;
  color: rgba(247, 244, 234, 0.82);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 860;
  line-height: 1.35;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 8.8ch;
  font-size: clamp(4.35rem, 7.35vw, 7.85rem);
}

h2 {
  max-width: 15ch;
  font-size: 4.35rem;
}

.hero h1 span {
  display: block;
  overflow-wrap: normal;
}

.hero-title-accent,
.title-accent {
  color: var(--gold-soft);
}

h3 {
  font-size: 1.16rem;
  font-weight: 880;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 780;
  line-height: 1.24;
}

.hero-support {
  width: min(560px, 100%);
  margin: 20px 0 0;
  color: rgba(247, 244, 234, 0.78);
  font-size: 1.22rem;
}

.signature-line {
  width: min(570px, 100%);
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.45;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 880;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-secondary,
.button-dark {
  border-color: rgba(247, 244, 234, 0.38);
  color: var(--ink);
  background: rgba(247, 244, 234, 0.04);
}

.button-dark {
  border-color: var(--line-strong);
}

.button-muted {
  opacity: 0.78;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(820px, 100%);
  margin-top: 32px;
}

.trust-strip span {
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 8px 10px;
  color: rgba(247, 244, 234, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1540px, 100%);
  margin: 0 auto;
}

.section-inner:is(
  .monday-feature,
  .keynote-feature,
  .story-grid,
  .hours-layout,
  .about-layout,
  .magnitude-panel-visual,
  .pattern-visual-panel,
  .principle-visual-panel,
  .media-proof-grid,
  .video-proof-grid
) {
  width: min(1540px, 100%);
  max-width: none;
}

.split-grid,
.pattern-grid,
.proof-grid,
.final-grid,
.what-i-do,
.principle-layout,
.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.78fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.hours-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  align-items: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.55fr);
  gap: clamp(30px, 5vw, 72px);
  margin-bottom: clamp(34px, 6vw, 64px);
}

.large-copy,
.section-heading > p,
.principle-copy p,
.diagnostic-questions,
.hours-layout p,
.final-grid p {
  color: var(--muted);
  font-size: 1.2rem;
}

.large-copy p,
.principle-copy p,
.hours-layout p,
.final-grid p,
.section-heading > p {
  margin: 0;
}

.large-copy,
.principle-copy,
.diagnostic-questions,
.hours-layout > div:first-child {
  display: grid;
  gap: 22px;
}

.section-lead {
  color: var(--gold-soft) !important;
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.82rem !important;
  font-style: italic;
  line-height: 1.18;
}

.problem-band,
.advisory-band {
  background:
    linear-gradient(180deg, rgba(247, 244, 234, 0.042), rgba(247, 244, 234, 0.018)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.symptom-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(215, 168, 66, 0.28);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(71, 167, 216, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.symptom-grid::before {
  position: absolute;
  inset: auto -6% -42% auto;
  content: "Activity";
  color: rgba(247, 244, 234, 0.035);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.symptom-grid details {
  position: relative;
  min-height: 92px;
  border: 1px solid rgba(247, 244, 234, 0.11);
  padding: 18px;
  color: var(--ink);
  background: rgba(3, 9, 18, 0.34);
}

.symptom-grid summary {
  min-height: 56px;
  display: flex;
  align-items: end;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.symptom-grid summary::-webkit-details-marker {
  display: none;
}

.symptom-grid summary::before {
  position: absolute;
  top: 14px;
  left: 18px;
  content: "+";
  color: var(--gold-soft);
  font-size: 1.25rem;
  line-height: 1;
}

.symptom-grid details[open] summary::before {
  content: "-";
}

.symptom-grid details:last-child summary::before,
.symptom-grid details:last-child[open] summary::before {
  content: "-";
  color: var(--clay);
}

.symptom-grid details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
  line-height: 1.45;
}

.punchline {
  color: var(--gold-soft) !important;
  font-weight: 900;
}

.pattern-band,
.credibility-band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pattern-visual-band {
  padding-block: clamp(42px, 7vw, 96px);
}

.pattern-visual-panel {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(215, 168, 66, 0.7) rgba(255, 255, 255, 0.08);
}

.pattern-visual-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(215, 168, 66, 0.42);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.pattern-list {
  position: relative;
  display: grid;
  gap: 18px;
  counter-reset: pattern;
}

.pattern-list::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 28px;
  content: "";
  width: 1px;
  background: linear-gradient(var(--gold), rgba(215, 168, 66, 0.08));
}

.pattern-list article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(247, 244, 234, 0.14);
  background:
    linear-gradient(90deg, rgba(215, 168, 66, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.pattern-list span,
.focus-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 168, 66, 0.34);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.pattern-list p,
.focus-card p,
.hours-card p {
  margin: 0;
  color: var(--muted);
}

.pattern-list p {
  font-size: clamp(1.05rem, 1.75vw, 1.42rem);
  line-height: 1.45;
}

.diagnosis-line {
  margin-top: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line-strong);
  padding: clamp(22px, 4vw, 34px);
  color: var(--gold-soft);
  background: rgba(215, 168, 66, 0.075);
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.3rem;
  text-align: center;
}

.principle-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(71, 167, 216, 0.13), transparent 46%),
    linear-gradient(310deg, rgba(215, 168, 66, 0.08), transparent 48%),
    var(--black);
}

.principle-visual-band {
  padding-block: clamp(42px, 7vw, 88px) clamp(58px, 8vw, 104px);
}

.principle-visual-panel {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(215, 168, 66, 0.7) rgba(255, 255, 255, 0.08);
}

.principle-visual-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(215, 168, 66, 0.42);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.architecture-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(215, 168, 66, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 168, 66, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.architecture-map::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  content: "Execution Architecture";
  width: min(68%, 420px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215, 168, 66, 0.38);
  padding: 18px;
  color: rgba(247, 244, 234, 0.18);
  background: rgba(3, 9, 18, 0.62);
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.architecture-map details {
  position: relative;
  z-index: 1;
  min-height: 76px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(71, 167, 216, 0.1), rgba(215, 168, 66, 0.05)),
    rgba(16, 22, 27, 0.76);
}

.architecture-map summary {
  display: flex;
  align-items: center;
  font-weight: 840;
  cursor: pointer;
  list-style: none;
}

.architecture-map summary::-webkit-details-marker {
  display: none;
}

.architecture-map summary::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(215, 168, 66, 0.46);
}

.architecture-map details[open] summary::after {
  background: var(--white);
}

.architecture-map details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.what-i-do {
  position: relative;
  margin-top: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(215, 168, 66, 0.28);
  padding: clamp(28px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.08), rgba(71, 167, 216, 0.055) 46%, rgba(255, 255, 255, 0.018)),
    rgba(16, 22, 27, 0.82);
  box-shadow: var(--shadow);
}

.what-i-do::before {
  display: none;
}

.what-i-do > * {
  position: relative;
  z-index: 1;
}

.what-i-do h2 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 3.7vw, 3.85rem);
}

.what-i-do .eyebrow {
  color: var(--gold-soft);
}

.diagnostic-questions ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagnostic-questions li,
.diagnostic-questions details {
  border-left: 2px solid var(--gold);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 820;
}

.diagnostic-questions li {
  padding: 12px 0 12px 16px;
}

.diagnostic-questions details {
  padding: 0;
}

.diagnostic-questions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 18px 14px 16px;
  cursor: pointer;
  list-style: none;
}

.diagnostic-questions summary::-webkit-details-marker {
  display: none;
}

.diagnostic-questions summary::after {
  flex: 0 0 auto;
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215, 168, 66, 0.48);
  color: var(--gold-soft);
  font-size: 1.4rem;
  line-height: 1;
}

.diagnostic-questions details[open] summary::after {
  content: "-";
}

.diagnostic-questions details p {
  margin: 0;
  padding: 0 18px 18px 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.diagnostic-questions details strong {
  color: var(--gold-soft);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.buyer-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.buyer-path-card {
  display: grid;
  gap: 18px;
  min-height: 360px;
  border: 1px solid rgba(247, 244, 234, 0.14);
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.09), rgba(71, 167, 216, 0.045)),
    rgba(16, 22, 27, 0.76);
  box-shadow: var(--shadow);
}

.buyer-path-card > span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(215, 168, 66, 0.46);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 940;
}

.buyer-path-card h3 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.buyer-path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.buyer-path-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.buyer-path-card li {
  border-left: 2px solid rgba(215, 168, 66, 0.7);
  padding-left: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 840;
}

.buyer-path-card a {
  align-self: end;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 940;
  text-transform: uppercase;
}

.proof-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.proof-architecture-grid article {
  display: grid;
  gap: 12px;
  min-height: 170px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(215, 168, 66, 0.08), rgba(71, 167, 216, 0.04)),
    rgba(16, 22, 27, 0.72);
}

.proof-architecture-grid span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 940;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-architecture-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.42;
}

.offer-page-hero,
.service-page-hero {
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--header-height) + 70px);
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.98), rgba(7, 26, 45, 0.86) 48%, rgba(7, 26, 45, 0.3)),
    url("assets/kulic-tv-hero-poster-executive.png") center right / cover no-repeat;
}

.service-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.99), rgba(7, 26, 45, 0.94) 54%, rgba(7, 26, 45, 0.62)),
    url("assets/kulic-principle-execution-system-2026.png") center / cover no-repeat;
}

.offer-hero-copy {
  width: min(900px, 100%);
}

.offer-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 8rem);
}

.offer-hero-copy .section-lead {
  width: min(780px, 100%);
  margin: 24px 0 0;
}

.offer-hero-copy > p:not(.eyebrow, .section-lead) {
  width: min(780px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.28rem;
}

.offer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.offer-grid,
.service-lane-grid,
.faq-grid,
.example-grid {
  display: grid;
  gap: 16px;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-tile,
.faq-item,
.example-tile,
.service-lane {
  border: 1px solid rgba(247, 244, 234, 0.13);
  background:
    linear-gradient(145deg, rgba(215, 168, 66, 0.08), rgba(71, 167, 216, 0.045)),
    rgba(16, 22, 27, 0.75);
}

.offer-tile,
.faq-item,
.example-tile {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
}

.offer-tile span,
.example-tile span,
.service-lane span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 940;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-tile h3,
.faq-item h3,
.example-tile h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.offer-tile p,
.faq-item p,
.example-tile p,
.service-lane p,
.service-lane li {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.48;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.3fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(215, 168, 66, 0.34);
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.14), rgba(71, 167, 216, 0.06)),
    rgba(16, 22, 27, 0.82);
  box-shadow: var(--shadow);
}

.price-card {
  display: grid;
  gap: 10px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.price-card strong {
  color: var(--gold-soft);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.price-card span {
  color: var(--muted);
  font-weight: 800;
}

.service-lane-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-lane {
  display: grid;
  gap: 18px;
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
}

.service-lane h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.service-lane ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-lane li {
  border-left: 2px solid rgba(215, 168, 66, 0.72);
  padding-left: 12px;
  color: var(--ink);
  font-weight: 780;
}

.faq-grid,
.example-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secondary-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 3vw, 30px);
}

.secondary-service-links a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.075), rgba(71, 167, 216, 0.045)),
    rgba(16, 22, 27, 0.58);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.22;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.secondary-service-links a:hover,
.secondary-service-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 168, 66, 0.5);
  color: var(--gold-soft);
}

.secondary-service-links span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 168, 66, 0.34);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 940;
}

.focus-card,
.hours-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(16, 22, 27, 0.82);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 18px;
}

.service-card h3,
.service-card p,
.service-card span,
.service-card a {
  margin-left: 10px;
  margin-right: 10px;
}

.service-card a {
  margin-top: auto;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card a:hover,
.service-card a:focus-visible,
.download-grid a:hover,
.download-grid a:focus-visible {
  color: var(--white);
}

.service-visual {
  min-height: 190px;
  border: 1px solid rgba(247, 244, 234, 0.12);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.24), rgba(71, 167, 216, 0.08)),
    linear-gradient(90deg, rgba(247, 244, 234, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(247, 244, 234, 0.06) 1px, transparent 1px),
    var(--panel-soft);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.visual-operating-model {
  background-image:
    linear-gradient(180deg, rgba(8, 11, 13, 0.02), rgba(8, 11, 13, 0.08)),
    url("assets/service-execution-architecture-summary.png");
  background-position: center top;
  background-size: cover;
}

.visual-procurement {
  background-image:
    linear-gradient(135deg, rgba(8, 11, 13, 0.08), rgba(215, 168, 66, 0.05)),
    url("assets/service-procurement-execution-problem.png");
  background-position: center top;
  background-size: cover;
}

.visual-diagnostics {
  background-image:
    linear-gradient(135deg, rgba(8, 11, 13, 0.08), rgba(215, 168, 66, 0.05)),
    url("assets/monday-execution-questions.png");
  background-position: center top;
  background-size: cover;
}

.visual-ai {
  background-image:
    linear-gradient(135deg, rgba(8, 11, 13, 0.08), rgba(215, 168, 66, 0.05)),
    url("assets/work-cold-chain-platform-leader.png");
  background-position: center top;
  background-size: cover;
}

.visual-executive {
  background-image:
    linear-gradient(135deg, rgba(8, 11, 13, 0.08), rgba(215, 168, 66, 0.05)),
    url("assets/service-executive-advisory.png");
  background-position: center top;
  background-size: cover;
}

.visual-keynotes {
  background-image:
    linear-gradient(135deg, rgba(8, 11, 13, 0.08), rgba(215, 168, 66, 0.05)),
    url("assets/service-keynotes-workshops.png");
  background-position: center top;
  background-size: cover;
}

.story-band,
.keynote-band,
.resources-band {
  background:
    linear-gradient(120deg, rgba(215, 168, 66, 0.12), transparent 42%),
    var(--panel);
  border-top: 1px solid var(--line);
}

.case-studies-band {
  background:
    linear-gradient(135deg, rgba(71, 167, 216, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(215, 168, 66, 0.09), transparent 48%),
    var(--paper);
  border-top: 1px solid var(--line);
}

.next-monday-band {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(71, 167, 216, 0.08) 44%, transparent),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.monday-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.monday-visual {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 66, 0.46);
  background: #f7f4ea;
  box-shadow: var(--shadow);
}

.monday-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.monday-copy {
  display: grid;
  gap: 18px;
}

.monday-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.monday-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.monday-proof span {
  border: 1px solid rgba(215, 168, 66, 0.32);
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.86rem;
  font-weight: 850;
}

.resource-feature,
.keynote-feature,
.story-grid,
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.resource-feature p,
.keynote-feature p,
.story-grid p,
.about-layout p {
  color: var(--muted);
  font-size: 1.16rem;
}

.keynote-band,
.story-band,
.case-studies-band,
.resources-band {
  padding-block: clamp(62px, 8vw, 104px);
}

.story-bridge {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-visual-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 66, 0.42);
  background: var(--black);
  box-shadow: var(--shadow);
}

.story-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-proof-strip span {
  border: 1px solid rgba(215, 168, 66, 0.38);
  padding: 10px 13px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keynote-feature {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 0.7fr);
  margin-bottom: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line-strong);
  padding: clamp(16px, 2.6vw, 28px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.16), rgba(71, 167, 216, 0.08) 48%, rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.keynote-band .keynote-feature {
  margin-bottom: 0;
}

.keynote-cover-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 66, 0.44);
  background: var(--black);
}

.keynote-cover-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.1;
  object-fit: cover;
  object-position: center;
  background: var(--black);
}

.keynote-cover-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border: 1px solid rgba(215, 168, 66, 0.52);
  padding: 8px 11px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 940;
  text-transform: uppercase;
}

.keynote-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.keynote-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 3.5vw, 4.2rem);
}

.keynote-copy p {
  margin: 0;
}

.keynote-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keynote-meta span {
  border: 1px solid rgba(247, 244, 234, 0.16);
  padding: 8px 12px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 940;
  text-transform: uppercase;
}

.resource-library {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  border-top: 1px solid rgba(215, 168, 66, 0.34);
  border-bottom: 1px solid rgba(247, 244, 234, 0.1);
  padding-top: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(24px, 4vw, 42px);
}

.resource-library .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.resource-library-heading {
  display: grid;
  gap: 18px;
}

.resource-library h2 {
  max-width: 18ch;
  font-size: clamp(2.55rem, 4.8vw, 5.2rem);
}

.resource-library p {
  max-width: 780px;
  margin: 0;
}

.resource-library .resource-actions {
  justify-content: flex-end;
  min-width: min(360px, 100%);
  margin-top: 0;
}

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
}

.pricing-strip span {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(215, 168, 66, 0.34);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-strip strong {
  color: var(--ink);
  font-size: 1rem;
}

.pricing-strip small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.pricing-strip em {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 920;
}

.resource-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 5vw, 56px);
}

.download-grid a,
.download-grid article {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.download-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.download-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.resource-category-grid article a {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  align-self: end;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 940;
  text-transform: uppercase;
}

.selected-asset-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid rgba(247, 244, 234, 0.14);
  border-bottom: 1px solid rgba(247, 244, 234, 0.14);
}

.selected-asset-list a {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
  min-height: 168px;
  border-right: 1px solid rgba(247, 244, 234, 0.1);
  padding: 22px clamp(16px, 2vw, 26px);
}

.selected-asset-list a:last-child {
  border-right: 0;
}

.selected-asset-list a:hover,
.selected-asset-list a:focus-visible {
  background: rgba(255, 255, 255, 0.026);
  transform: translateY(-2px);
}

.selected-asset-list span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-asset-list strong {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.3vw, 1.28rem);
  line-height: 1.34;
}

.selected-asset-list em {
  align-self: end;
  justify-self: start;
  border: 1px solid rgba(247, 244, 234, 0.16);
  padding: 10px 12px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 940;
  text-transform: uppercase;
}

.credibility-strip-band {
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(215, 168, 66, 0.34);
  border-bottom: 1px solid rgba(247, 244, 234, 0.1);
}

.credibility-strip span {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 118px;
  border-right: 1px solid rgba(247, 244, 234, 0.1);
  padding: 22px clamp(16px, 3vw, 32px);
}

.credibility-strip span:last-child {
  border-right: 0;
}

.credibility-strip strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.72rem);
  line-height: 1.1;
}

.credibility-strip small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.credibility-points {
  display: grid;
  gap: 10px;
  margin-top: clamp(22px, 4vw, 34px);
  border-top: 1px solid rgba(215, 168, 66, 0.3);
  padding-top: 18px;
}

.credibility-points span {
  display: grid;
  gap: 4px;
  border-left: 2px solid rgba(215, 168, 66, 0.42);
  padding-left: 12px;
}

.credibility-points strong {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 940;
  text-transform: uppercase;
}

.credibility-points small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.36;
}

.case-study-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.54fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(215, 168, 66, 0.34);
  padding: clamp(16px, 2.8vw, 28px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.12), rgba(71, 167, 216, 0.06)),
    rgba(255, 255, 255, 0.032);
  box-shadow: var(--shadow);
}

.case-study-feature > a,
.case-study-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 234, 0.14);
  background: rgba(3, 9, 18, 0.78);
}

.case-study-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  object-position: center top;
}

.case-study-feature h3 {
  color: var(--ink);
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  line-height: 1.04;
}

.case-study-feature p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 4vw, 44px);
}

.case-study-grid a {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  min-height: 290px;
  padding: 14px;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.case-study-grid .compact-proof-link {
  grid-template-rows: auto 1fr;
  min-height: 138px;
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.08), rgba(71, 167, 216, 0.045)),
    rgba(3, 9, 18, 0.7);
}

.case-study-grid .compact-proof-link strong {
  align-self: end;
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.case-study-grid a:hover,
.case-study-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215, 168, 66, 0.52);
}

.case-study-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.case-study-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.case-study-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.16;
}

.about-band {
  background:
    linear-gradient(180deg, rgba(247, 244, 234, 0.036), rgba(247, 244, 234, 0.014)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.profile-signal {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.profile-photo,
.about-portrait {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.16), rgba(8, 11, 13, 0.1)),
    url("assets/profile-dario-boardroom.jpg") center / cover,
    var(--panel-soft);
}

.profile-photo {
  width: 112px;
  aspect-ratio: 1;
}

.profile-signal p {
  font-size: 1rem;
}

.about-portrait {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.about-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(215, 168, 66, 0.34);
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(71, 167, 216, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(215, 168, 66, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.about-layout .about-portrait {
  min-height: clamp(540px, 54vw, 760px);
  border: 0;
  border-right: 1px solid rgba(215, 168, 66, 0.34);
  background-position: center top;
  box-shadow: none;
}

.about-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  padding: clamp(30px, 6vw, 76px);
  overflow: hidden;
}

.about-copy::before {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(18px, 4vw, 60px);
  content: "";
  width: min(28vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 168, 66, 0.16);
  opacity: 0.32;
  background:
    linear-gradient(135deg, transparent 48%, rgba(215, 168, 66, 0.22) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(71, 167, 216, 0.18) 49% 51%, transparent 52%);
  pointer-events: none;
}

.about-copy > * {
  position: relative;
  z-index: 1;
}

.about-copy h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.1vw, 4.85rem);
  line-height: 1.12;
}

.about-copy p:not(.eyebrow):not(.human-slogan):not(.punchline) {
  max-width: 62ch;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.journey-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.journey-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-grid article {
  display: grid;
  gap: 12px;
  min-height: 240px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.journey-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.journey-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.journey-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.journey-panel.journey-graphic {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.8vw, 30px);
  padding: clamp(18px, 2.8vw, 28px);
  background:
    radial-gradient(circle at 80% 4%, rgba(215, 168, 66, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(247, 244, 234, 0.05), rgba(247, 244, 234, 0.018)),
    var(--panel);
}

.journey-heading {
  display: grid;
  gap: 8px;
}

.journey-heading h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1.9rem, 3.8vw, 4.1rem);
  line-height: 1;
}

.journey-panel.journey-graphic .journey-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.journey-panel.journey-graphic .journey-grid article {
  position: relative;
  min-height: clamp(340px, 29vw, 460px);
  align-content: end;
  overflow: hidden;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, transparent 12%, rgba(3, 9, 18, 0.48) 56%, rgba(3, 9, 18, 0.94)),
    radial-gradient(circle at 50% 18%, rgba(215, 168, 66, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.journey-panel.journey-graphic .journey-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(135deg, rgba(71, 167, 216, 0.18), transparent 46%),
    repeating-linear-gradient(90deg, rgba(247, 244, 234, 0.08) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.journey-panel.journey-graphic .journey-grid span,
.journey-panel.journey-graphic .journey-grid strong,
.journey-panel.journey-graphic .journey-grid p {
  position: relative;
  z-index: 1;
}

.journey-panel.journey-graphic .journey-grid span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(215, 168, 66, 0.48);
  color: var(--gold-soft);
  background: rgba(3, 9, 18, 0.72);
  font-size: 1rem;
}

.journey-panel.journey-graphic .journey-grid strong {
  font-size: clamp(1.02rem, 1.35vw, 1.32rem);
  text-transform: uppercase;
}

.journey-panel.journey-graphic .journey-grid p {
  font-size: 0.92rem;
  line-height: 1.42;
}

.journey-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(215, 168, 66, 0.28);
  padding-top: 18px;
}

.journey-footer span {
  min-height: 74px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(215, 168, 66, 0.24);
  padding: 0 clamp(12px, 2vw, 24px);
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 800;
}

.journey-footer span:last-child {
  border-right: 0;
}

.human-slogan {
  margin: 0;
  color: var(--gold-soft) !important;
  font-size: clamp(1.5rem, 3vw, 2.45rem) !important;
  font-weight: 940;
  line-height: 1.05;
}

.magnitude-panel,
.reference-panel,
.media-proof-grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(38px, 6vw, 72px);
}

.magnitude-panel {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vw, 54px);
}

.magnitude-panel-visual {
  display: block;
  max-width: min(1520px, calc(100vw - clamp(32px, 7vw, 112px)));
  margin-inline: auto;
  border-top: 0;
  padding-top: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.magnitude-panel-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(215, 168, 66, 0.36);
  background: var(--black);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.magnitude-copy h3,
.reference-panel h3,
.recommendation-stack h3,
.media-stack h3 {
  margin: 0;
  color: var(--ink);
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.03;
}

.magnitude-copy p,
.recommendation-stack p,
.media-stack p {
  color: var(--muted);
}

.career-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 52px;
}

.career-graph::before {
  content: "";
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(215, 168, 66, 0.04), rgba(215, 168, 66, 0.9), rgba(71, 167, 216, 0.7), rgba(215, 168, 66, 0.9));
}

.career-node {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 58px 0 0;
  border: 1px solid var(--line);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background:
    radial-gradient(circle at 30px 22px, rgba(215, 168, 66, 0.16), transparent 34px),
    transparent;
}

.career-node span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-soft);
  background: var(--black);
  font-size: 0.86rem;
  font-weight: 940;
  z-index: 1;
}

.career-node strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.career-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.career-node-current span {
  border-color: var(--white);
  color: var(--black);
  background: var(--gold);
}

.magnitude-visual {
  margin: 22px 0 0;
  border: 1px solid rgba(215, 168, 66, 0.28);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.1), rgba(71, 167, 216, 0.04)),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.magnitude-visual a {
  display: block;
}

.magnitude-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1179 / 660;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.magnitude-visual figcaption {
  margin: 0;
  border-top: 1px solid rgba(247, 244, 234, 0.12);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.reference-panel {
  grid-template-columns: minmax(460px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.1), transparent 48%),
    var(--panel);
}

.reference-panel h3 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.35vw, 2.25rem);
  line-height: 1.08;
}

.reference-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
}

.reference-logo-wall span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 244, 234, 0.16);
  padding: 10px 12px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(247, 244, 234, 0.055), rgba(215, 168, 66, 0.035)),
    rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 920;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.hours-band {
  background:
    radial-gradient(circle at right 18% top 20%, rgba(111, 82, 184, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 234, 0.03), rgba(71, 167, 216, 0.045)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.hours-copy-block {
  display: grid;
  gap: 22px;
}

.hours-process {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.hours-process span {
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 820;
}

.hours-process strong {
  color: var(--ink);
  font-size: 1rem;
}

.hours-process small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 640;
  line-height: 1.42;
}

.hours-cta-row,
.hours-visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hours-visual-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(215, 168, 66, 0.45);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.16), rgba(71, 167, 216, 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hours-visual-card img {
  display: block;
  width: 100%;
  max-height: 760px;
  aspect-ratio: 0.71 / 1;
  object-fit: contain;
  object-position: top center;
  background: var(--black);
}

.hours-visual-actions a {
  flex: 1 1 150px;
  border: 1px solid rgba(247, 244, 234, 0.16);
  padding: 10px 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hours-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 16px;
  margin-top: clamp(24px, 4vw, 46px);
}

.hours-card {
  min-height: 0;
}

.card-kicker {
  color: var(--gold-soft) !important;
  font-size: 0.72rem;
  font-weight: 940;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-card h3,
.hours-card p,
.card-kicker {
  overflow-wrap: normal;
  word-break: normal;
}

.hours-card strong {
  color: var(--ink);
  font-size: clamp(2.55rem, 4.2vw, 3.6rem);
  line-height: 1;
  white-space: nowrap;
}

.featured-card {
  border-color: rgba(215, 168, 66, 0.62);
  background:
    linear-gradient(180deg, rgba(215, 168, 66, 0.14), rgba(16, 22, 27, 0.92)),
    var(--panel);
  transform: translateY(-18px);
}

.hours-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(30px, 5vw, 54px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hours-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

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

.credibility-grid article {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.credibility-grid strong {
  color: var(--gold-soft);
  font-size: 2.3rem;
  line-height: 1;
}

.credibility-grid span {
  color: var(--muted);
}

.quote-row,
.media-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 6vw, 62px);
}

.media-proof-grid {
  gap: clamp(20px, 4vw, 34px);
}

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 780;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 940;
  text-transform: uppercase;
}

.recommendation-stack,
.media-stack {
  display: grid;
  align-content: start;
  gap: 16px;
}

.media-link-list {
  display: grid;
  gap: 10px;
}

.media-link-list a {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.media-link-list a:hover,
.media-link-list a:focus-visible {
  border-color: rgba(215, 168, 66, 0.58);
  transform: translateY(-2px);
}

.media-link-list span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 940;
  text-transform: uppercase;
}

.media-link-list strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.media-link-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.authority-band,
.stage-band,
.video-proof-band,
.newsletter-band {
  background:
    linear-gradient(180deg, rgba(247, 244, 234, 0.032), rgba(247, 244, 234, 0.012)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.authority-card,
.award-strip article,
.contribution-grid article,
.stage-timeline article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(247, 244, 234, 0.14);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.1), rgba(71, 167, 216, 0.055)),
    rgba(255, 255, 255, 0.035);
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: var(--shadow);
}

.authority-feature {
  grid-column: span 2;
  border-color: rgba(215, 168, 66, 0.56);
}

.authority-card span,
.award-strip span,
.contribution-grid span,
.stage-timeline span,
.archive-link-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.authority-card h3,
.authority-card p,
.award-strip p,
.contribution-grid p,
.stage-timeline p {
  margin: 0;
}

.authority-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.06;
}

.authority-card p,
.award-strip p,
.contribution-grid p,
.stage-timeline p {
  color: var(--muted);
  line-height: 1.52;
}

.authority-card a,
.archive-link-grid a {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(215, 168, 66, 0.42);
  text-underline-offset: 4px;
}

.award-strip,
.contribution-grid,
.stage-timeline {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 4vw, 42px);
}

.award-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.award-strip strong,
.contribution-grid strong,
.stage-timeline strong,
.archive-link-grid strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

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

.stage-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 4vw, 42px);
}

.event-orbit span {
  border: 1px solid rgba(247, 244, 234, 0.14);
  padding: 10px 12px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 940;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-archive {
  margin-top: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.media-archive summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 28px);
  color: var(--ink);
  font-weight: 940;
  text-transform: uppercase;
}

.media-archive summary::-webkit-details-marker {
  display: none;
}

.media-archive summary::after {
  content: "+";
  float: right;
  color: var(--gold-soft);
}

.media-archive[open] summary::after {
  content: "-";
}

.archive-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px);
}

.archive-link-grid a {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(247, 244, 234, 0.13);
  padding: 16px;
  background: rgba(3, 9, 18, 0.34);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.archive-link-grid a:hover,
.archive-link-grid a:focus-visible {
  border-color: rgba(215, 168, 66, 0.58);
  transform: translateY(-2px);
}

.archive-link-grid em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}

.video-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-proof-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(247, 244, 234, 0.14);
  padding: 14px 14px 20px;
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.1), rgba(71, 167, 216, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.video-proof-card:hover,
.video-proof-card:focus-visible {
  border-color: rgba(215, 168, 66, 0.62);
  transform: translateY(-2px);
}

.video-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(247, 244, 234, 0.16);
  background: var(--black);
  object-fit: cover;
}

.video-proof-card span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.video-proof-card strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.video-proof-card p {
  margin: 0;
  color: var(--muted);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border: 1px solid var(--line-strong);
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.12), rgba(71, 167, 216, 0.08) 48%, rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.newsletter-copy {
  display: grid;
  gap: 18px;
}

.newsletter-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.newsletter-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-highlights span {
  border: 1px solid rgba(247, 244, 234, 0.16);
  padding: 8px 11px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 940;
  text-transform: uppercase;
}

.newsletter-form {
  display: grid;
  gap: 18px;
}

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

.newsletter-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 244, 234, 0.18);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(3, 9, 18, 0.56);
  font: inherit;
  text-transform: none;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
  border-color: rgba(215, 168, 66, 0.76);
  outline: 2px solid rgba(215, 168, 66, 0.18);
  outline-offset: 0;
}

.full-field {
  grid-column: 1 / -1;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.86rem !important;
  font-weight: 650 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-status {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 780;
}

.final-cta {
  padding-block: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(215, 168, 66, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(71, 167, 216, 0.12), transparent 46%),
    var(--black);
}

.final-grid {
  align-items: center;
}

.contact-line {
  margin-top: 30px;
  color: rgba(247, 244, 234, 0.74);
  font-style: normal;
}

.contact-line a {
  color: var(--gold-soft);
  font-weight: 840;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 6vw, 64px) clamp(20px, 5vw, 72px) 30px;
  color: rgba(247, 244, 234, 0.72);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 16px 0 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer nav strong {
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(247, 244, 234, 0.74);
  font-weight: 760;
}

.site-footer > span {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 0.84rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 12px;
    font-size: 0.7rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .focus-grid,
  .buyer-path-grid,
  .hours-grid,
  .case-study-grid,
  .secondary-service-links,
  .proof-architecture-grid,
  .offer-grid,
  .service-lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
    min-height: 40px;
    padding-inline: 12px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    padding: 12px 20px 24px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 66px;
  }

  .hero-content-with-video {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-tv-card {
    width: min(720px, 100%);
    margin: 12px 0 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.78)),
      linear-gradient(0deg, rgba(5, 6, 7, 0.5), rgba(5, 6, 7, 0.16));
  }

  .split-grid,
  .pattern-grid,
  .proof-grid,
  .final-grid,
  .section-heading,
  .what-i-do,
  .principle-layout,
  .hours-layout,
  .resource-feature,
  .keynote-feature,
  .case-study-feature,
  .story-bridge,
  .story-grid,
  .about-layout,
  .magnitude-panel,
  .journey-panel,
  .reference-panel,
  .authority-grid,
  .award-strip,
  .contribution-grid,
  .stage-timeline,
  .archive-link-grid,
  .video-proof-grid,
  .pattern-visual-panel,
  .principle-visual-panel,
  .newsletter-panel,
  .media-proof-grid,
  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .about-layout .about-portrait {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 168, 66, 0.34);
  }

  .journey-panel.journey-graphic .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-panel.journey-graphic .journey-grid article {
    min-height: 260px;
  }

  .journey-footer {
    grid-template-columns: 1fr;
  }

  .journey-footer span {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 168, 66, 0.18);
  }

  .journey-footer span:last-child {
    border-bottom: 0;
  }

  .authority-feature {
    grid-column: auto;
  }

  .career-graph {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .career-graph::before {
    display: none;
  }

  h2 {
    max-width: 16ch;
    font-size: 3.3rem;
  }

  h1 {
    font-size: 4.5rem;
  }

  .hero-copy {
    font-size: 1.5rem;
  }

  .hero-support,
  .signature-line,
  .large-copy,
  .section-heading > p,
  .principle-copy p,
  .diagnostic-questions,
  .hours-layout p,
  .final-grid p {
    font-size: 1.08rem;
  }

  .section-lead {
    font-size: 1.5rem !important;
  }

  .diagnosis-line,
  .hours-card strong,
  .credibility-grid strong {
    font-size: 2rem;
  }

  .focus-grid,
  .buyer-path-grid,
  .hours-grid,
  .case-study-grid,
  .secondary-service-links,
  .proof-architecture-grid,
  .offer-grid,
  .service-lane-grid,
  .faq-grid,
  .example-grid,
  .quote-row,
  .media-proof-grid,
  .credibility-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .hours-card,
  .buyer-path-card {
    min-height: auto;
  }

  .about-portrait {
    min-height: 360px;
  }

  .hours-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .selected-asset-list,
  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .selected-asset-list a {
    grid-template-columns: 1fr;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 234, 0.1);
  }

  .selected-asset-list a:last-child {
    border-bottom: 0;
  }

  .credibility-strip span {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 234, 0.1);
  }

  .credibility-strip span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    gap: 8px;
    padding: 0 10px;
  }

  .official-logo-space {
    width: min(154px, 40vw);
    max-height: calc(var(--header-height) - 22px);
  }

  .official-logo {
    width: min(154px, 40vw);
    max-height: calc(var(--header-height) - 22px);
    gap: 7px;
  }

  .official-mark {
    width: 34px;
    max-height: calc(var(--header-height) - 24px);
  }

  .official-wordmark span {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .official-wordmark em {
    font-size: 0.44rem;
    letter-spacing: 0.16em;
  }

  .header-cta {
    max-width: 112px;
    min-height: 36px;
    padding-inline: 8px;
    font-size: 0.62rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 84vh;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 38px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 2.04rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.18rem;
  }

  .hero-context {
    font-size: 0.9rem;
  }

  .offer-hero-copy h1 {
    font-size: 3rem;
  }

  .hero-support {
    margin-top: 14px;
  }

  .signature-line {
    margin-top: 16px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    margin-top: 22px;
    padding-bottom: 0;
  }

  .trust-strip span {
    display: grid;
    min-width: 0;
    place-items: center;
    text-align: center;
    white-space: normal;
  }

  .diagnosis-line,
  .hours-card strong,
  .credibility-grid strong {
    font-size: 1.8rem;
  }

  .button,
  .final-actions,
  .resource-actions,
  .hours-note .button {
    width: 100%;
  }

  .hero-content,
  .hero-content-with-video,
  .hero-copy,
  .hero-support,
  .signature-line,
  .hero-actions {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .symptom-grid,
  .architecture-map,
  .pricing-strip,
  .profile-signal,
  .career-graph {
    grid-template-columns: 1fr;
  }

  .magnitude-panel-visual img,
  .pattern-visual-panel img,
  .principle-visual-panel img {
    width: max(920px, 100%);
    max-width: none;
  }

  .career-graph {
    padding-top: 0;
  }

  .career-node {
    padding-top: 64px;
  }

  .reference-logo-wall span {
    flex: 1 1 calc(50% - 10px);
  }

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

  .newsletter-panel {
    padding: 20px;
  }

  .event-orbit span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .media-archive summary {
    padding: 18px;
  }

  .pattern-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
