@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/oswald-400.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/oswald-500.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/oswald-600.ttf") format("truetype");
}

:root {
  --bg: #050505;
  --graphite: #0d0f0f;
  --panel: #111414;
  --panel-light: #171b1b;
  --cream: #f4f0e8;
  --muted: #ada8a0;
  --steel: #a4bac2;
  --red: #e50914;
  --red-dark: #780005;
  --green: #1f5f46;
  --green-dark: #123d2d;
  --green-light: #6fa88c;
  --line: rgba(244, 240, 232, 0.15);
  --line-strong: rgba(244, 240, 232, 0.28);
  --max: 1280px;
  --title: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(164, 186, 194, 0.07), transparent 34rem),
    linear-gradient(310deg, rgba(229, 9, 20, 0.18), transparent 42rem),
    var(--bg);
  color: var(--cream);
  font-family: var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.92) 78%),
    repeating-linear-gradient(90deg, transparent 0 179px, rgba(244, 240, 232, 0.025) 180px);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(100% - 36px, var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-top: 0;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.wordmark {
  position: relative;
  color: var(--cream);
  font: 500 16px/1 var(--title);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wordmark::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.9);
}

.nav {
  min-width: 0;
  display: flex;
  gap: 4px;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.nav a,
.footer a,
.contact-line a {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  color: rgba(244, 240, 232, 0.62);
}

.nav a:hover,
.footer a:hover,
.contact-line a:hover {
  color: var(--cream);
}

.nav a:hover {
  border-color: rgba(244, 240, 232, 0.11);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.topbar-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(229, 9, 20, 0.72);
  background: rgba(229, 9, 20, 0.1);
  color: var(--cream);
  font-weight: 700;
}

button {
  font: inherit;
}

.magnetic-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.magnetic-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.32) 45%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.magnetic-link span {
  position: relative;
  z-index: 1;
}

.magnetic-link:hover {
  border-color: rgba(229, 9, 20, 0.9);
  box-shadow: 0 16px 44px rgba(229, 9, 20, 0.18);
}

.magnetic-link:hover::before {
  transform: translateX(120%);
}

.section-shell {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 98px 0;
  scroll-margin-top: 96px;
}

.label,
.section-kicker,
.eyebrow {
  color: var(--red);
  font: 600 18px/1 var(--title);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
.proof-grid b {
  font-family: var(--title);
  font-weight: 600;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(62px, 8vw, 122px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 96px);
}

h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font: 500 clamp(26px, 2.5vw, 38px) / 1.04 var(--title);
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 30px 58px;
  align-items: center;
  padding-top: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 760px;
  color: rgba(244, 240, 232, 0.82);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.22;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 840px;
  margin-top: 28px;
}

.hero-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(164, 186, 194, 0.25);
  background: rgba(164, 186, 194, 0.06);
  color: rgba(244, 240, 232, 0.74);
  font-size: 13px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 2px), 0);
}

.btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
}

.hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 8% -7% 8% 7%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}

.hero-portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 76%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
}

.hero-dashboard {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-dashboard div {
  min-height: 136px;
  padding: 24px;
  background: rgba(17, 20, 20, 0.94);
}

.hero-dashboard b {
  display: block;
  color: var(--red);
  font: 600 clamp(42px, 5vw, 66px) / 1 var(--title);
  text-transform: uppercase;
}

.hero-dashboard span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 240, 232, 0.66);
  line-height: 1.25;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 38px;
  align-items: end;
  margin: 18px 0 42px;
}

.split-heading p,
.approach-copy p,
.contact-section p {
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.72);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.34;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.pain-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(13, 15, 15, 0.96);
}

.pain-grid span,
.service-index,
.process-grid span,
.timeline span {
  color: var(--steel);
  font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-grid p,
.service-card p,
.service-card li,
.timeline p,
.process-grid p {
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.66);
  line-height: 1.32;
}

.pain-grid h3 {
  margin-top: 46px;
}

.services-section {
  padding-top: 112px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px minmax(0, 0.9fr) minmax(260px, 0.7fr) auto;
  gap: 26px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.78), transparent);
  opacity: 0;
  transform: scaleX(0.28);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(244, 240, 232, 0.28);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  transform: translateY(-2px);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-card.accent {
  border-color: rgba(229, 9, 20, 0.56);
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.16), rgba(255, 255, 255, 0.025));
}

.service-card.speaker {
  border-color: rgba(164, 186, 194, 0.42);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.service-title-row {
  display: grid;
  gap: 12px;
}

.service-title-row strong {
  width: fit-content;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(164, 186, 194, 0.26);
  background: rgba(164, 186, 194, 0.075);
  color: var(--cream);
  font-size: 13px;
  line-height: 1;
}

.service-card li::marker {
  color: var(--red);
}

.service-card li.service-footnote {
  margin-top: 4px;
  list-style: none;
  color: rgba(21, 21, 21, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.service-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: inherit;
  white-space: nowrap;
  font-weight: 800;
  cursor: pointer;
}

.service-card.accent .service-action {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.lead-magnet-section {
  padding-top: 96px;
}

.lead-magnet-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 30px 100px rgba(21, 21, 21, 0.07);
}

.lead-magnet-copy {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  background:
    linear-gradient(130deg, rgba(223, 15, 27, 0.1), transparent 46%),
    rgba(255, 254, 250, 0.9);
}

.lead-magnet-copy h2 {
  max-width: 760px;
  margin: 18px 0 24px;
}

.gift-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.gift-emoji,
.gift-modal-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #ffe2de, #fffefa 44%, #f3d7cf);
  box-shadow:
    0 22px 60px rgba(229, 9, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.gift-emoji {
  width: 108px;
  height: 108px;
  margin-top: 4px;
}

.gift-emoji span,
.gift-modal-icon span {
  display: block;
  filter: saturate(1.08) drop-shadow(0 12px 20px rgba(229, 9, 20, 0.2));
  transform: rotate(-8deg);
}

.gift-emoji span {
  font-size: 58px;
}

.lead-magnet-copy p {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(21, 21, 21, 0.78);
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.34;
}

.lead-score-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-score-preview span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(21, 21, 21, 0.72);
  font-size: 13px;
}

.lead-bot-card {
  display: grid;
  gap: 22px;
  align-content: end;
  padding: 44px;
  background: rgba(255, 254, 250, 0.96);
}

.lead-bot-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.lead-bot-steps article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 254, 250, 0.94)),
    var(--cream);
}

.lead-bot-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--steel);
  font: 600 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-bot-steps h3 {
  margin: 0;
  color: #111;
  font: 600 clamp(22px, 2vw, 30px) / 1.02 var(--title);
  text-transform: uppercase;
}

.lead-bot-steps p {
  margin: 10px 0 0;
  color: rgba(21, 21, 21, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.lead-bot-cta {
  width: 100%;
}

.lead-form-note {
  margin: 0;
  color: rgba(21, 21, 21, 0.64);
  font-size: 13px;
  line-height: 1.35;
}

.lead-legal-note,
.gift-modal-legal {
  margin: -8px 0 0;
  color: rgba(21, 21, 21, 0.48);
  font-size: 12px;
  line-height: 1.35;
}

.gift-service {
  border-color: rgba(229, 9, 20, 0.54);
  background:
    linear-gradient(120deg, rgba(229, 9, 20, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(13, 15, 15, 0.92);
}

.gift-service .service-title-row strong {
  border-color: rgba(229, 9, 20, 0.62);
  background: var(--red);
  color: #fff;
}

.gift-service .service-action {
  border-color: var(--red);
  background: #fff;
  color: #111;
}

.gift-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.gift-modal[hidden] {
  display: none;
}

.gift-modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.gift-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 230, 226, 0.78), transparent 42%),
    #fffefa;
  color: #111;
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.38);
  animation: modal-pop 260ms ease both;
}

.gift-modal-card h2 {
  max-width: 520px;
  font-size: clamp(42px, 6vw, 72px);
}

.gift-modal-card p {
  margin: 0;
  color: rgba(21, 21, 21, 0.76);
  font-size: 19px;
  line-height: 1.38;
}

.gift-modal-card .gift-modal-legal {
  color: rgba(21, 21, 21, 0.5);
  font-size: 12px;
}

.gift-modal-icon {
  width: 92px;
  height: 92px;
}

.gift-modal-icon span {
  font-size: 50px;
}

.gift-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.gift-modal-close:hover {
  background: #fff;
  transform: rotate(6deg);
}

.gift-modal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gift-modal-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(21, 21, 21, 0.72);
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-section h2 {
  max-width: 900px;
  margin: 18px 0 44px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-grid article {
  min-height: 190px;
  padding: 24px;
  background: rgba(13, 15, 15, 0.96);
}

.proof-grid b {
  display: block;
  color: var(--red);
  font-size: clamp(42px, 5vw, 66px);
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(244, 240, 232, 0.66);
}

.startup-section {
  padding-top: 78px;
}

.startup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 1px;
  border: 1px solid rgba(229, 9, 20, 0.42);
  background: var(--line);
}

.startup-copy {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    rgba(13, 15, 15, 0.97);
}

.startup-copy::before {
  content: "Music Side";
  position: absolute;
  top: 32px;
  right: 34px;
  color: rgba(244, 240, 232, 0.055);
  font: 600 clamp(64px, 9vw, 128px) / 0.9 var(--title);
  text-transform: uppercase;
}

.startup-copy h2 {
  position: relative;
  max-width: 780px;
  margin: 18px 0 24px;
}

.startup-copy p {
  position: relative;
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(244, 240, 232, 0.74);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.34;
}

.startup-copy .btn {
  width: fit-content;
}

.startup-metrics {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.startup-metrics article {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(8, 9, 9, 0.98);
}

.startup-metrics b {
  color: var(--red);
  font: 600 clamp(52px, 5.5vw, 78px) / 1 var(--title);
  text-transform: uppercase;
}

.startup-metrics span {
  color: rgba(244, 240, 232, 0.68);
  line-height: 1.3;
}

.startup-roles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
}

.startup-roles article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(164, 186, 194, 0.07), transparent 62%),
    rgba(13, 15, 15, 0.96);
}

.startup-roles span {
  color: var(--steel);
  font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.startup-roles h3 {
  margin-top: 42px;
}

.startup-roles p {
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.66);
  line-height: 1.34;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 50px;
  align-items: center;
}

.approach-copy h2 {
  margin: 18px 0 28px;
}

.approach-stack {
  display: grid;
  gap: 10px;
}

.approach-stack span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(164, 186, 194, 0.24);
  background: rgba(164, 186, 194, 0.06);
  color: rgba(244, 240, 232, 0.86);
  font: 500 24px/1 var(--title);
  text-transform: uppercase;
}

.approach-stack span:nth-child(2n) {
  border-color: rgba(229, 9, 20, 0.36);
  background: rgba(229, 9, 20, 0.075);
}

.functional-grid,
.regalia-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 28px;
  background: var(--line);
}

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

.functional-grid article,
.regalia-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(164, 186, 194, 0.07), transparent 62%),
    rgba(13, 15, 15, 0.96);
}

.functional-grid span,
.regalia-grid span {
  color: var(--steel);
  font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.functional-grid h3,
.regalia-grid h3 {
  margin-top: 42px;
}

.functional-grid p,
.regalia-grid p {
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.66);
  line-height: 1.34;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

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

.timeline article {
  min-height: 330px;
  padding: 24px;
  background: rgba(13, 15, 15, 0.96);
}

.timeline h3 {
  margin-top: 52px;
}

.public-proof {
  margin-bottom: 34px;
}

.public-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 16px;
}

.public-proof-head > span {
  color: var(--cream);
  font: 500 clamp(30px, 3vw, 44px) / 0.98 var(--title);
  text-transform: uppercase;
}

.public-proof-head p {
  margin: 0;
  color: rgba(244, 240, 232, 0.64);
  font-size: 18px;
  line-height: 1.34;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.publication-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(164, 186, 194, 0.07), transparent 62%),
    rgba(13, 15, 15, 0.96);
}

.publication-card.featured {
  grid-column: span 2;
  border: 1px solid rgba(229, 9, 20, 0.52);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.18), transparent 58%),
    rgba(13, 15, 15, 0.98);
}

.publication-card span,
.speaking-proof-grid span {
  color: var(--red);
  font: 600 18px/1 var(--title);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.publication-card h3 {
  margin: auto 0 18px;
  font-size: clamp(24px, 2vw, 34px);
}

.publication-card p {
  margin: 0;
  color: rgba(244, 240, 232, 0.62);
  line-height: 1.32;
}

.speaking-proof {
  margin-top: 54px;
}

.speaking-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.speaking-proof-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(13, 15, 15, 0.96);
}

.speaking-proof-grid h3 {
  margin-top: 52px;
  margin-bottom: 0;
  font-size: clamp(24px, 2vw, 34px);
}

.speaking-video-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(229, 9, 20, 0.52);
  background:
    linear-gradient(120deg, rgba(229, 9, 20, 0.22), transparent 48%),
    rgba(13, 15, 15, 0.96);
}

.video-play {
  width: 74px;
  height: 74px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.34);
  background: var(--red);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.video-copy {
  display: grid;
  gap: 8px;
}

.video-copy > span {
  color: rgba(244, 240, 232, 0.62);
  font-size: 15px;
}

.video-copy strong {
  color: var(--cream);
  font: 500 clamp(30px, 3vw, 44px) / 0.98 var(--title);
  text-transform: uppercase;
}

.video-note {
  justify-self: end;
  color: var(--steel);
  font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaking-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(170px, 0.5fr));
  gap: 1px;
  margin: 40px 0 0;
  background: var(--line);
}

.speaking-gallery figure {
  margin: 0;
}

.gallery-main {
  min-height: 500px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.gallery-slot {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(229, 9, 20, 0.12)),
    rgba(13, 15, 15, 0.96);
}

.gallery-slot::before {
  content: "";
  width: 44px;
  height: 44px;
  margin-bottom: auto;
  border-top: 1px solid rgba(244, 240, 232, 0.7);
  border-left: 1px solid rgba(244, 240, 232, 0.7);
}

.gallery-slot span {
  color: var(--cream);
  font: 500 28px/1 var(--title);
  text-transform: uppercase;
}

.gallery-slot p {
  margin: 0;
  color: rgba(244, 240, 232, 0.56);
  line-height: 1.3;
}

.process-section h2 {
  max-width: 780px;
  margin: 18px 0 44px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(13, 15, 15, 0.96);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 40px;
  padding: 54px;
  border: 1px solid rgba(229, 9, 20, 0.46);
  background:
    linear-gradient(120deg, rgba(229, 9, 20, 0.18), transparent 42%),
    rgba(13, 15, 15, 0.96);
}

.contact-section h2 {
  margin: 16px 0 24px;
}

.contact-benefits {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-benefits span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 21, 21, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.contact-benefits span::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(21, 21, 21, 0.07);
}

.form-field {
  display: grid;
  gap: 8px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.contact-method-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method-field legend {
  margin: 0 0 10px;
  padding: 0;
}

.contact-method-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-method-options label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.9);
  color: rgba(21, 21, 21, 0.74);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-method-options input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}

.contact-method-options label:has(input:checked) {
  border-color: rgba(31, 95, 70, 0.42);
  background: rgba(31, 95, 70, 0.1);
  color: var(--green);
  box-shadow: 0 10px 26px rgba(31, 95, 70, 0.1);
}

.contact-method-field[aria-invalid="true"] .contact-method-options label {
  border-color: var(--red);
}

@media (max-width: 520px) {
  .contact-method-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.94);
  color: #151515;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-method-options input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--green);
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
  padding: 14px;
  line-height: 1.4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(223, 15, 27, 0.09);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(21, 21, 21, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-row {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.form-submit-row .btn {
  border: 0;
  cursor: pointer;
}

.form-submit-row .btn:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: 13px !important;
  line-height: 1.35;
}

.form-status.is-success {
  color: #176b3a;
}

.form-status.is-error {
  color: var(--red-dark);
}

.contact-line {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(244, 240, 232, 0.76);
}

.contact-line > span {
  color: rgba(21, 21, 21, 0.48);
}

.footer {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 240, 232, 0.54);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

/* Light design direction */
:root {
  --bg: #f7f5ef;
  --graphite: #ffffff;
  --panel: #ffffff;
  --panel-light: #f1eee7;
  --cream: #151515;
  --muted: #68635c;
  --steel: #546872;
  --red: #df0f1b;
  --red-dark: #a20009;
  --line: rgba(21, 21, 21, 0.12);
  --line-strong: rgba(21, 21, 21, 0.22);
}

body {
  background:
    linear-gradient(120deg, rgba(223, 15, 27, 0.07), transparent 32rem),
    linear-gradient(310deg, rgba(84, 104, 114, 0.08), transparent 40rem),
    var(--bg);
}

body::before {
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px);
}

body::after {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.12), rgba(247, 245, 239, 0.88) 78%),
    repeating-linear-gradient(90deg, transparent 0 179px, rgba(21, 21, 21, 0.025) 180px);
}

.topbar {
  border-color: rgba(21, 21, 21, 0.08);
  background: rgba(247, 245, 239, 0.78);
  box-shadow: 0 18px 70px rgba(21, 21, 21, 0.08);
}

.nav a {
  color: rgba(21, 21, 21, 0.58);
}

.nav a:hover {
  border-color: rgba(21, 21, 21, 0.1);
  background: rgba(21, 21, 21, 0.045);
}

.topbar-cta,
.btn-secondary,
.service-action,
.contact-actions a {
  background: rgba(255, 255, 255, 0.62);
}

.hero-lead,
.split-heading p,
.approach-copy p,
.contact-section p,
.startup-copy p,
.public-proof-head p {
  color: rgba(21, 21, 21, 0.68);
}

.hero-meta span {
  border-color: rgba(21, 21, 21, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(21, 21, 21, 0.64);
}

.hero-portrait::before {
  background: linear-gradient(135deg, rgba(223, 15, 27, 0.95), rgba(162, 0, 9, 0.92));
}

.hero-portrait img {
  box-shadow: 0 34px 90px rgba(21, 21, 21, 0.16);
}

.hero-dashboard div,
.pain-grid article,
.proof-grid article,
.timeline article,
.process-grid article,
.functional-grid article,
.regalia-grid article,
.startup-roles article,
.publication-card,
.speaking-proof-grid article {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.84);
}

.service-card {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 239, 0.7));
}

.service-card:hover {
  background: linear-gradient(120deg, rgba(255, 255, 255, 1), rgba(247, 245, 239, 0.82));
}

.service-card.accent,
.publication-card.featured,
.contact-section,
.startup-copy,
.speaking-video-card {
  background:
    linear-gradient(120deg, rgba(223, 15, 27, 0.09), transparent 50%),
    rgba(255, 255, 255, 0.88);
}

.startup-panel {
  border-color: rgba(223, 15, 27, 0.28);
}

.startup-copy::before {
  color: rgba(21, 21, 21, 0.055);
}

.startup-metrics article {
  background: rgba(255, 255, 255, 0.9);
}

.approach-stack span {
  border-color: rgba(21, 21, 21, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(21, 21, 21, 0.78);
}

.approach-stack span:nth-child(2n) {
  border-color: rgba(223, 15, 27, 0.24);
  background: rgba(223, 15, 27, 0.055);
}

.pain-grid p,
.service-card p,
.service-card li,
.timeline p,
.process-grid p,
.proof-grid span,
.functional-grid p,
.regalia-grid p,
.startup-roles p,
.startup-metrics span,
.publication-card p,
.gallery-slot p,
.video-copy > span {
  color: rgba(21, 21, 21, 0.62);
}

.service-title-row strong {
  border-color: rgba(21, 21, 21, 0.13);
  background: rgba(255, 255, 255, 0.7);
}

.gallery-slot {
  background:
    linear-gradient(180deg, transparent, rgba(223, 15, 27, 0.08)),
    rgba(255, 255, 255, 0.84);
}

.gallery-slot::before {
  border-color: rgba(21, 21, 21, 0.48);
}

.contact-line,
.footer {
  color: rgba(21, 21, 21, 0.58);
}

/* Editorial showroom refinement */
:root {
  --bg: #fbfaf6;
  --paper: #fffefa;
  --ink-soft: rgba(21, 21, 21, 0.64);
}

body {
  background:
    radial-gradient(circle at 92% 18%, rgba(223, 15, 27, 0.055), transparent 22rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4f0e8 100%);
}

body::before {
  opacity: 0.7;
  background-size: 96px 96px;
}

body::after {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.24), rgba(251, 250, 246, 0.92) 76%),
    repeating-linear-gradient(90deg, transparent 0 239px, rgba(21, 21, 21, 0.018) 240px);
}

.topbar {
  width: min(100% - 72px, var(--max));
  min-height: 74px;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(251, 250, 246, 0.7);
  box-shadow: none;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav {
  gap: 14px;
  font-size: 12px;
}

.nav a {
  min-height: 32px;
  padding: 0 4px;
  border: 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.nav a:hover {
  background: transparent;
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-cta {
  min-height: 42px;
  border-color: rgba(21, 21, 21, 0.22);
  background: transparent;
  font-size: 14px;
}

.section-shell {
  padding: 132px 0;
}

.hero {
  min-height: calc(100svh - 74px);
  gap: 42px 72px;
  padding-top: 72px;
}

.label,
.section-kicker,
.eyebrow {
  font-size: 15px;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(64px, 7.4vw, 118px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(50px, 5.8vw, 90px);
}

.hero-lead {
  max-width: 700px;
  font-size: clamp(21px, 2vw, 30px);
}

.hero-portrait::before {
  inset: 9% -4% 12% 11%;
  clip-path: polygon(16% 0, 100% 0, 86% 100%, 0 100%);
  opacity: 0.95;
}

.hero-portrait img {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.hero-portrait:hover img {
  transform: translateY(-8px) scale(1.015);
}

.hero-dashboard {
  background: transparent;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-dashboard div {
  background: transparent;
  border-right: 1px solid var(--line);
}

.hero-dashboard div:last-child {
  border-right: 0;
}

.hero-dashboard span {
  color: rgba(21, 21, 21, 0.68);
}

.pain-grid,
.proof-grid,
.timeline,
.functional-grid,
.regalia-grid,
.startup-roles,
.publication-grid,
.speaking-proof-grid,
.process-grid {
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pain-grid article,
.proof-grid article,
.timeline article,
.functional-grid article,
.regalia-grid article,
.startup-roles article,
.publication-card,
.speaking-proof-grid article,
.process-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.72);
  transition: transform 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.pain-grid article:hover,
.proof-grid article:hover,
.functional-grid article:hover,
.regalia-grid article:hover,
.startup-roles article:hover,
.publication-card:hover,
.speaking-proof-grid article:hover {
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 24px 70px rgba(21, 21, 21, 0.08);
  transform: translateY(-4px);
}

.service-list {
  gap: 18px;
}

.service-card {
  border-color: rgba(21, 21, 21, 0.1);
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 20px 70px rgba(21, 21, 21, 0.04);
}

.service-card:hover {
  border-color: rgba(21, 21, 21, 0.2);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 28px 90px rgba(21, 21, 21, 0.09);
}

.service-card.accent {
  background: linear-gradient(120deg, rgba(223, 15, 27, 0.08), rgba(255, 254, 250, 0.92));
}

.startup-panel {
  border-color: rgba(21, 21, 21, 0.12);
}

.startup-copy {
  background:
    linear-gradient(135deg, rgba(223, 15, 27, 0.07), transparent 52%),
    rgba(255, 254, 250, 0.84);
}

.startup-metrics article {
  background: rgba(255, 254, 250, 0.86);
  border-bottom: 1px solid var(--line);
}

.startup-metrics article:last-child {
  border-bottom: 0;
}

.speaking-video-card {
  background:
    linear-gradient(120deg, rgba(223, 15, 27, 0.1), transparent 52%),
    rgba(255, 254, 250, 0.88);
  box-shadow: 0 20px 70px rgba(21, 21, 21, 0.06);
}

.video-play {
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.speaking-video-card:hover .video-play {
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(223, 15, 27, 0.22);
}

.contact-section {
  border-color: rgba(21, 21, 21, 0.14);
  background:
    linear-gradient(120deg, rgba(223, 15, 27, 0.09), transparent 44%),
    rgba(255, 254, 250, 0.9);
  box-shadow: 0 30px 100px rgba(21, 21, 21, 0.08);
}

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

}

/* Readability, rounded controls and logo clouds */
.btn,
.topbar-cta,
.service-action,
.contact-actions a,
.speaking-video-card,
.hero-meta span,
.service-title-row strong {
  border-radius: 999px;
}

.btn-primary,
.service-card.accent .service-action,
.contact-actions a:first-child {
  color: #fff;
}

.btn-secondary,
.topbar-cta,
.service-action,
.contact-actions a:not(:first-child) {
  color: var(--cream);
}

.split-heading p,
.hero-lead,
.pain-grid p,
.service-card p,
.service-card li,
.timeline p,
.process-grid p,
.proof-grid span,
.functional-grid p,
.regalia-grid p,
.startup-roles p,
.startup-metrics span,
.publication-card p,
.gallery-slot p,
.video-copy > span,
.public-proof-head p,
.approach-copy p,
.contact-section p {
  color: rgba(21, 21, 21, 0.72);
}

.publication-card,
.speaking-proof-grid article {
  color: var(--cream);
}

h1,
h2,
h3,
.proof-grid b,
.startup-metrics b,
.hero-dashboard b,
.video-copy strong {
  color: #111;
}

.split-heading p,
.hero-lead,
.pain-grid p,
.service-card p,
.service-card li,
.timeline p,
.process-grid p,
.proof-grid span,
.functional-grid p,
.regalia-grid p,
.startup-roles p,
.startup-metrics span,
.publication-card p,
.gallery-slot p,
.video-copy > span,
.public-proof-head p,
.approach-copy p,
.contact-section p,
.hero-dashboard span {
  color: rgba(21, 21, 21, 0.78);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-cloud.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-mark {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 0;
  background: rgba(255, 254, 250, 0.86);
  color: rgba(21, 21, 21, 0.78);
  text-align: center;
  font: 600 16px/1.05 var(--title);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.logo-mark:hover {
  z-index: 2;
  background: #fff;
  color: #111;
  box-shadow: 0 18px 54px rgba(21, 21, 21, 0.09);
  transform: translateY(-3px);
}

.logo-mark.red {
  color: var(--red);
}

.logo-mark.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
}

.logo-mark.small {
  font-size: 14px;
}

.logo-mark.image-logo img {
  width: min(150px, 82%);
  max-height: 44px;
  object-fit: contain;
}

.logo-mark.image-logo {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1080px) {
  .hero,
  .split-heading,
  .approach-section,
  .startup-panel,
  .lead-magnet-panel,
  .public-proof-head,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 48px 1fr;
  }

  .service-card ul,
  .service-card a {
    grid-column: 2;
  }

  .proof-grid,
  .timeline,
  .process-grid,
  .functional-grid,
  .startup-roles,
  .regalia-grid,
  .publication-grid,
  .speaking-proof-grid,
  .logo-cloud,
  .logo-cloud.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-card.featured {
    grid-column: span 2;
  }

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

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

  .gallery-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .topbar {
    width: min(100% - 28px, var(--max));
    grid-template-columns: 1fr auto;
    padding: 12px;
    overflow: hidden;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 36px;
  }

  .topbar-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
    padding: 66px 0;
    scroll-margin-top: 154px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  .lead-magnet-copy h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .gift-head {
    display: grid;
    gap: 18px;
  }

  .gift-emoji {
    width: 84px;
    height: 84px;
    order: -1;
    border-radius: 26px;
  }

  .gift-emoji span {
    font-size: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-portrait {
    min-height: 480px;
  }

  .hero-dashboard,
  .pain-grid,
  .proof-grid,
  .timeline,
  .process-grid,
  .functional-grid,
  .startup-roles,
  .regalia-grid,
  .publication-grid,
  .speaking-proof-grid,
  .logo-cloud,
  .logo-cloud.compact,
  .speaking-gallery {
    grid-template-columns: 1fr;
  }

  .publication-card.featured {
    grid-column: auto;
  }

  .actions,
  .contact-line {
    flex-direction: column;
  }

  .btn,
  .service-action {
    width: 100%;
  }

  .service-card {
    display: block;
    padding: 22px;
  }

  .lead-magnet-copy,
  .lead-bot-card {
    padding: 28px 22px;
  }

  .lead-magnet-copy {
    min-height: auto;
  }

  .lead-bot-steps {
    border-radius: 22px;
  }

  .lead-bot-steps article {
    min-height: auto;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .lead-bot-steps span {
    width: 38px;
    height: 38px;
  }

  .lead-bot-steps h3 {
    font-size: 22px;
  }

  .gift-modal {
    align-items: end;
    padding: 12px;
  }

  .gift-modal-card {
    max-height: calc(100svh - 24px);
    overflow: auto;
    gap: 16px;
    padding: 26px 20px 20px;
    border-radius: 28px;
  }

  .gift-modal-card h2 {
    font-size: 42px;
  }

  .gift-modal-card p {
    font-size: 17px;
  }

  .gift-modal-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
  }

  .gift-modal-icon span {
    font-size: 42px;
  }

  .service-card ul,
  .service-action {
    margin-top: 18px;
  }

  .service-title-row {
    gap: 10px;
  }

  .service-index {
    display: block;
    margin-bottom: 18px;
  }

  .logo-mark {
    min-height: 78px;
  }

  .startup-copy {
    min-height: 480px;
    padding: 28px 22px;
  }

  .startup-copy::before {
    top: 24px;
    right: 18px;
    font-size: 62px;
  }

  .startup-copy .btn {
    width: 100%;
  }

  .speaking-video-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-note {
    justify-self: start;
  }

  .gallery-main,
  .gallery-main img,
  .gallery-slot {
    min-height: 360px;
  }

  .contact-section {
    padding: 32px 18px;
  }

  .contact-form,
  .form-submit-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .form-field,
  .form-field-wide {
    grid-column: 1;
  }
}

/* Conversion-focused homepage structure */
.hero-conversion {
  min-height: calc(100svh - 74px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 48px;
}

.hero-conversion .hero-copy {
  align-self: center;
}

.hero-conversion h1 {
  max-width: 830px;
  font-size: clamp(58px, 6.7vw, 108px);
}

.hero-conversion .hero-lead {
  max-width: 760px;
}

.hero-gift-link {
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.24);
  background: transparent;
  color: rgba(21, 21, 21, 0.72);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease;
}

.hero-gift-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero-role-card {
  position: absolute;
  right: -16px;
  bottom: 24px;
  width: min(300px, 78%);
  padding: 18px 20px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 20px 70px rgba(21, 21, 21, 0.13);
  backdrop-filter: blur(16px);
}

.hero-role-card strong,
.hero-role-card span {
  display: block;
}

.hero-role-card strong {
  margin-bottom: 6px;
  font: 600 20px/1 var(--title);
  text-transform: uppercase;
}

.hero-role-card span {
  color: rgba(21, 21, 21, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.flagship-section {
  padding-top: 88px;
}

.flagship-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, #161616 0%, #2b0507 60%, #8f0007 120%);
  color: #fffefa;
  box-shadow: 0 38px 120px rgba(68, 0, 4, 0.2);
}

.flagship-panel::after {
  content: "AI";
  position: absolute;
  right: -0.03em;
  bottom: -0.27em;
  color: rgba(255, 255, 255, 0.035);
  font: 600 clamp(220px, 30vw, 460px)/1 var(--title);
  pointer-events: none;
}

.flagship-copy,
.flagship-steps {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 72px);
}

.flagship-copy {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.flagship-badge {
  width: fit-content;
  margin-bottom: 54px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  font: 600 12px/1 var(--body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flagship-copy .section-kicker {
  color: #ff5a62;
}

.flagship-copy h2 {
  max-width: 780px;
  margin: 14px 0 28px;
  color: #fff;
  font-size: clamp(54px, 6vw, 94px);
}

.flagship-lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
}

.flagship-result {
  max-width: 700px;
  margin: 0 0 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.flagship-result span,
.flagship-result strong {
  display: block;
}

.flagship-result span,
.flagship-price span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flagship-result strong {
  font: 500 clamp(24px, 2.5vw, 36px)/1.1 var(--title);
  text-transform: uppercase;
}

.flagship-price {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.flagship-price span {
  max-width: 230px;
  margin: 0;
  line-height: 1.4;
}

.flagship-price strong {
  color: #fff;
  font: 600 clamp(28px, 3vw, 42px)/1 var(--title);
}

.flagship-copy .btn-primary {
  background: #fff;
  color: #111;
}

.flagship-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flagship-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.flagship-steps article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ff7a80;
  font: 600 14px/1 var(--title);
}

.flagship-steps h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 26px;
}

.flagship-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.flagship-trust {
  margin-top: 30px;
}

.flagship-trust > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-transform: uppercase;
}

.flagship-trust div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.flagship-trust b {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.76);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.route-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 26px 80px rgba(21, 21, 21, 0.09);
  transform: translateY(-3px);
}

.route-card > span {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card h3 {
  max-width: 540px;
  margin: 24px 0 36px;
  color: #111;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
}

.route-card b {
  margin-top: auto;
  font-size: 14px;
}

.conversion-service-list .service-card {
  scroll-margin-top: 110px;
}

.service-result {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(223, 15, 27, 0.05);
  color: rgba(21, 21, 21, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.service-result span {
  margin-right: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.premium-service {
  border-color: rgba(21, 21, 21, 0.76);
  background:
    linear-gradient(130deg, rgba(21, 21, 21, 0.97), rgba(54, 5, 8, 0.96)) !important;
  color: #fff;
}

.premium-service h3,
.premium-service p,
.premium-service li,
.premium-service .service-index {
  color: #fff;
}

.premium-service p,
.premium-service li {
  color: rgba(255, 255, 255, 0.7);
}

.premium-service .service-title-row strong {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.premium-service .service-result {
  border-color: #ff4d56;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.premium-service .service-action {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.rebrand-service {
  background:
    linear-gradient(120deg, rgba(164, 186, 194, 0.14), transparent 48%),
    rgba(255, 254, 250, 0.86);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.76);
}

.case-grid article > span {
  display: block;
  min-height: 34px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-grid b {
  display: block;
  margin: 26px 0 20px;
  color: #111;
  font: 600 clamp(46px, 5vw, 76px)/0.95 var(--title);
}

.case-grid h3 {
  margin-bottom: 16px;
  color: #111;
  font-size: 26px;
  line-height: 1.05;
}

.case-grid p {
  margin: 0;
  color: rgba(21, 21, 21, 0.7);
  line-height: 1.55;
}

.compact-lead-panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.compact-lead-panel .lead-magnet-copy,
.compact-lead-panel .lead-bot-card {
  min-height: 440px;
}

.compact-lead-panel .lead-magnet-copy h2 {
  margin-top: 16px;
}

.compact-bot-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-content: center;
}

.compact-bot-card img {
  width: 82px;
  height: 82px;
  border-radius: 24px;
}

.compact-bot-card h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 28px;
}

.compact-bot-card p {
  margin: 0;
  color: rgba(21, 21, 21, 0.7);
  line-height: 1.5;
}

.compact-bot-card .btn {
  grid-column: 1 / -1;
  margin-top: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 8% -5% -5% 12%;
  z-index: -1;
  background: var(--red);
}

.about-portrait img {
  width: 100%;
  min-height: 660px;
  object-fit: cover;
  filter: grayscale(0.16);
}

.about-copy h2 {
  margin: 16px 0 28px;
}

.about-lead {
  max-width: 740px;
  color: #111;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.35;
}

.about-copy > p:not(.about-lead) {
  max-width: 680px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-facts div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.72);
}

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

.about-facts b {
  margin-bottom: 8px;
  color: #111;
  font: 600 24px/1 var(--title);
  text-transform: uppercase;
}

.about-facts span {
  color: rgba(21, 21, 21, 0.66);
  font-size: 13px;
  line-height: 1.4;
}

.expertise-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.expertise-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: 999px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 12px;
}

.career-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  border: 1px solid rgba(21, 21, 21, 0.12);
  background:
    linear-gradient(115deg, rgba(164, 186, 194, 0.14), transparent 48%),
    rgba(255, 254, 250, 0.86);
}

.career-panel > div {
  padding: clamp(32px, 5vw, 64px);
}

.career-panel > div:first-child {
  border-right: 1px solid var(--line);
}

.career-panel h2 {
  margin: 16px 0 28px;
  font-size: clamp(48px, 5.5vw, 82px);
}

.career-panel p {
  max-width: 720px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.career-outcome > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-outcome > strong {
  display: block;
  margin: 14px 0 26px;
  color: #111;
  font: 500 30px/1.15 var(--title);
  text-transform: uppercase;
}

.career-outcome ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(21, 21, 21, 0.7);
  line-height: 1.65;
}

.career-action {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.career-action > b {
  color: #111;
  font: 600 30px/1 var(--title);
}

.career-action .btn-secondary {
  color: #111;
}

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

@media (max-width: 1080px) {
  .flagship-panel,
  .career-panel,
  .compact-lead-panel {
    grid-template-columns: 1fr;
  }

  .flagship-copy,
  .career-panel > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .career-panel > div:first-child {
    border-bottom-color: var(--line);
  }

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

  .about-section {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  }

  .about-facts,
  .conversion-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-conversion h1 {
    font-size: 52px;
  }

  .hero-role-card {
    right: 10px;
    bottom: 12px;
  }

  .flagship-section {
    padding-top: 40px;
  }

  .flagship-copy,
  .flagship-steps {
    padding: 28px 22px;
  }

  .flagship-badge {
    margin-bottom: 36px;
  }

  .flagship-copy h2 {
    font-size: 52px;
  }

  .flagship-price,
  .career-action {
    display: block;
  }

  .flagship-price strong {
    display: block;
    margin-top: 14px;
  }

  .flagship-copy .btn {
    width: 100%;
  }

  .route-grid,
  .case-grid,
  .about-section,
  .about-facts,
  .conversion-process {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 230px;
  }

  .case-grid article {
    min-height: auto;
  }

  .compact-lead-panel .lead-magnet-copy,
  .compact-lead-panel .lead-bot-card {
    min-height: auto;
  }

  .compact-bot-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .compact-bot-card img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .about-portrait img {
    min-height: 500px;
  }

  .career-panel > div {
    padding: 28px 22px;
  }

  .career-panel h2 {
    font-size: 46px;
  }

  .career-action > b {
    display: block;
    margin-bottom: 18px;
  }
}

/* Five-screen personal expert structure */
.topbar {
  grid-template-columns: auto minmax(0, 1fr);
}

.topbar .nav {
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(21, 21, 21, 0.2);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.82);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: #111;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero-editorial {
  grid-template-areas: "copy portrait";
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
}

.hero-editorial .hero-copy {
  grid-area: copy;
}

.hero-editorial .hero-portrait {
  grid-area: portrait;
}

.hero-editorial .hero-copy h1 {
  max-width: 850px;
}

.hero-editorial .hero-lead {
  max-width: 760px;
}

.about-proof-section {
  padding-top: 110px;
}

.about-proof-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.about-proof-photo {
  position: relative;
}

.about-proof-photo::before {
  content: "";
  position: absolute;
  inset: 9% -5% -5% 12%;
  z-index: -1;
  background: var(--red);
}

.about-proof-photo img {
  width: 100%;
  height: min(70vw, 680px);
  object-fit: cover;
}

.about-proof-intro h2 {
  margin: 14px 0 28px;
  max-width: 850px;
}

.about-proof-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(21, 21, 21, 0.74);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.42;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-grid div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.72);
}

.experience-grid b {
  color: #111;
  font: 600 clamp(44px, 5vw, 76px)/0.95 var(--title);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.experience-grid span {
  max-width: 180px;
  color: rgba(21, 21, 21, 0.65);
  font-size: 15px;
  line-height: 1.35;
}

.results-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 36px;
  align-items: end;
  margin-top: 100px;
}

.results-section .results-heading {
  margin-top: 0;
}

.results-heading h3,
.press-heading h3 {
  max-width: 900px;
  margin: 14px 0 0;
  color: #111;
  font-size: clamp(38px, 4.4vw, 68px);
}

.results-heading > p {
  margin: 0 0 8px;
  color: rgba(21, 21, 21, 0.48);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.anonymous-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.anonymous-results article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.72);
}

.anonymous-results b {
  color: var(--red);
  font: 600 clamp(46px, 5vw, 72px)/1 var(--title);
}

.anonymous-results span {
  max-width: 260px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 17px;
  line-height: 1.4;
}

.media-section {
  width: min(100% - 36px, 1440px);
  max-width: none;
  padding-right: clamp(20px, 4vw, 64px);
  padding-left: clamp(20px, 4vw, 64px);
  background:
    radial-gradient(circle at 92% 8%, rgba(223, 15, 27, 0.24), transparent 28rem),
    #171716;
}

.media-section .section-kicker {
  color: #ff5058;
}

.media-section h2,
.media-section h3,
.media-section .split-heading p {
  color: #fffefa;
}

.media-section .split-heading p {
  opacity: 0.72;
}

.speaker-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 62px;
  background: rgba(255, 255, 255, 0.16);
}

.speaker-logo-grid div {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fffefa;
}

.speaker-logo-grid img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.speaker-gallery {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr 1.28fr 0.72fr;
  gap: 14px;
  margin-top: 72px;
  align-items: end;
}

.speaker-photo {
  height: 420px;
  margin: 0;
  overflow: hidden;
}

.speaker-photo-tall {
  height: 540px;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.speaker-photo:hover img {
  transform: scale(1.035);
}

.press-heading {
  margin-top: 110px;
}

.press-clippings {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.press-clippings figure {
  margin: 0;
  padding: 10px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.press-clippings a {
  display: block;
}

.press-source-label {
  padding: 8px 8px 16px;
  color: var(--red);
  font: 600 clamp(20px, 2.2vw, 30px)/1 var(--title);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-clippings img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: #050505;
}

.media-cta {
  margin-top: 40px;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.compact-products {
  padding-top: 132px;
}

.product-stack {
  margin-top: 60px;
}

.product-flagship {
  border-color: rgba(223, 15, 27, 0.52);
  background:
    linear-gradient(115deg, rgba(223, 15, 27, 0.95), rgba(76, 0, 4, 0.92)),
    #111;
}

.product-flagship:hover {
  border-color: rgba(223, 15, 27, 0.8);
  background:
    linear-gradient(115deg, #df0f1b, #4c0004),
    #111;
}

.product-flagship h3,
.product-flagship p,
.product-flagship li,
.product-flagship .service-result,
.product-flagship .service-title-row strong {
  color: #fff;
}

.product-flagship .service-index,
.product-flagship .service-result span {
  color: rgba(255, 255, 255, 0.7);
}

.product-flagship .service-action {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.lead-product {
  background:
    linear-gradient(120deg, rgba(164, 186, 194, 0.24), transparent 58%),
    rgba(255, 254, 250, 0.92);
}

.service-button {
  cursor: pointer;
  font: inherit;
}

.contact-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.contact-choices .btn {
  width: auto;
}

@media (max-width: 1080px) {
  .hero-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  }

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

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

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

  .speaker-photo,
  .speaker-photo-tall {
    height: 460px;
  }

  .press-clippings {
    grid-template-columns: 1fr 1fr;
  }

  .press-clippings figure:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
    width: min(100% - 24px, var(--max));
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 11px 4px;
  }

  .menu-toggle {
    display: block;
  }

  .topbar-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    background: rgba(255, 254, 250, 0.98);
    box-shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    min-height: 48px;
    padding: 0 14px;
    color: #111;
    font-size: 15px;
  }

  .hero-editorial {
    grid-template-areas: "copy" "portrait";
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
  }

  .hero-editorial .hero-copy h1 {
    font-size: clamp(48px, 13.5vw, 62px);
  }

  .hero-editorial .hero-lead {
    font-size: 20px;
  }

  .hero-editorial .actions {
    display: grid;
  }

  .hero-editorial .actions .btn {
    width: 100%;
  }

  .about-proof-intro,
  .results-heading {
    grid-template-columns: 1fr;
  }

  .about-proof-photo img {
    height: 520px;
  }

  .experience-grid,
  .anonymous-results,
  .speaker-logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid div {
    min-height: 190px;
    padding: 22px;
  }

  .experience-grid b {
    font-size: 46px;
  }

  .results-heading > p {
    text-align: left;
  }

  .anonymous-results article {
    min-height: 190px;
    padding: 22px;
  }

  .anonymous-results b {
    font-size: 48px;
  }

  .media-section {
    width: calc(100% - 24px);
    padding: 84px 14px;
  }

  .media-section h2 {
    font-size: 48px;
  }

  .speaker-logo-grid div {
    min-height: 104px;
    padding: 16px;
  }

  .speaker-logo-grid img {
    height: 56px;
  }

  .speaker-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 48px;
  }

  .speaker-photo,
  .speaker-photo-tall {
    height: 300px;
  }

  .press-heading {
    margin-top: 76px;
  }

  .press-clippings {
    grid-template-columns: 1fr;
  }

  .press-clippings figure:first-child {
    grid-column: auto;
  }

  .press-clippings img {
    height: auto;
    max-height: 420px;
  }

  .media-cta,
  .contact-choices .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .experience-grid,
  .anonymous-results {
    grid-template-columns: 1fr;
  }

  .speaker-photo,
  .speaker-photo-tall {
    height: 245px;
  }
}

/* Density and hierarchy refinement */
.about-proof-intro {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1100px;
}

.about-proof-intro h2 {
  max-width: 1100px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.4vw, 78px);
}

.experience-grid {
  gap: 14px;
  margin-top: 48px;
  border: 0;
}

.experience-grid div {
  min-height: 156px;
  justify-content: flex-start;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 15, 27, 0.12), transparent 48%),
    rgba(255, 254, 250, 0.88);
  box-shadow: 0 16px 46px rgba(21, 21, 21, 0.05);
}

.experience-grid b {
  color: var(--red);
  font-size: clamp(42px, 4.4vw, 66px);
}

.experience-grid span {
  font-size: 14px;
}

.results-heading {
  margin-top: 82px;
}

.results-heading h2 {
  margin: 0;
  max-width: 900px;
  color: #111;
  font-size: clamp(50px, 5.8vw, 90px);
}

.anonymous-results {
  gap: 14px;
  margin-top: 30px;
  border: 0;
}

.anonymous-results article {
  position: relative;
  min-height: 170px;
  justify-content: flex-start;
  gap: 24px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 16px 46px rgba(21, 21, 21, 0.05);
}

.anonymous-results article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 126px;
  height: 126px;
  border: 22px solid rgba(223, 15, 27, 0.08);
  border-radius: 50%;
}

.anonymous-results article:nth-child(even) {
  background:
    linear-gradient(130deg, rgba(164, 186, 194, 0.15), transparent 65%),
    rgba(255, 254, 250, 0.92);
}

.anonymous-results b {
  font-size: clamp(42px, 4.6vw, 64px);
}

.anonymous-results span {
  font-size: 16px;
}

.speaker-logo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 34px;
  background: transparent;
}

.speaker-logo-grid div {
  min-height: 170px;
  padding: 18px;
  background: transparent;
}

.speaker-logo-grid img {
  width: 100%;
  height: 118px;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.9;
}

.speaker-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}

.speaker-photo,
.speaker-photo-tall {
  height: 100%;
  border-radius: 4px;
}

.speaker-gallery .speaker-photo:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.speaker-gallery .speaker-photo:nth-child(2) {
  grid-column: 4 / 10;
  grid-row: 1 / 3;
}

.speaker-gallery .speaker-photo:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1;
}

.speaker-gallery .speaker-photo:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2;
}

.press-clippings {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.press-clippings figure {
  grid-column: span 2;
}

.press-clippings .press-featured {
  grid-column: 1 / -1;
}

.press-clippings img {
  height: 330px;
}

.press-clippings .press-featured img {
  height: 410px;
}

.product-stack .lead-product {
  order: 1;
}

.product-stack .career-product {
  order: 2;
}

.product-stack #service-cmo {
  order: 3;
}

.product-stack #ai-workshop {
  order: 4;
}

.product-stack #service-audit {
  order: 5;
}

.product-stack #service-communication {
  order: 6;
}

.product-stack .rebrand-service {
  order: 7;
}

.product-stack #service-strategy {
  order: 8;
}

.lead-product {
  border-color: rgba(31, 95, 70, 0.34);
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 95, 70, 0.18), transparent 28rem),
    linear-gradient(125deg, #f7f8f2, #e7eee3);
}

.lead-product:hover {
  border-color: rgba(31, 95, 70, 0.56);
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 95, 70, 0.24), transparent 28rem),
    linear-gradient(125deg, #fbfcf6, #e4eddf);
}

.lead-product .service-index,
.lead-product .service-result span,
.lead-product .service-title-row strong {
  color: var(--green);
}

.service-gift-emoji {
  display: inline-block;
  margin-left: 0.16em;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 0.84em;
  line-height: 1;
  transform: rotate(7deg) translateY(-0.04em);
}

.lead-product .service-action {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.gift-audit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  margin-top: -40px;
  padding: 44px;
  border: 1px solid rgba(223, 15, 27, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 15, 27, 0.12), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f5efe4 100%);
  box-shadow: 0 28px 86px rgba(72, 61, 47, 0.12);
}

.gift-audit-copy h2 {
  max-width: 720px;
  margin: 14px 0 18px;
  color: #151515;
  font-size: clamp(44px, 5vw, 74px);
}

.gift-audit-copy p {
  max-width: 680px;
  color: rgba(21, 21, 21, 0.72);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
}

.gift-audit-section .section-kicker {
  color: var(--red);
}

.gift-audit-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(223, 15, 27, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.94)),
    #fff;
  color: #151515;
  box-shadow: 0 20px 60px rgba(72, 61, 47, 0.1);
}

.gift-audit-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.gift-audit-card-head span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-audit-card-head strong {
  color: var(--red);
  font: 700 clamp(28px, 3vw, 42px)/1 var(--title);
}

.gift-audit-card p {
  margin: 0;
  color: rgba(21, 21, 21, 0.74);
  line-height: 1.45;
}

.gift-audit-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(21, 21, 21, 0.68);
}

.gift-audit-card li::marker {
  color: var(--red);
}

.gift-audit-action,
.gift-audit-action:hover {
  border-color: rgba(223, 15, 27, 0.72);
  background: linear-gradient(135deg, #ff3a43 0%, var(--red) 48%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(223, 15, 27, 0.24);
}

@media (max-width: 980px) {
  .gift-audit-section {
    grid-template-columns: 1fr;
    margin-top: -18px;
    padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .gift-audit-section {
    padding: 30px 18px;
  }

  .gift-audit-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .gift-audit-card {
    padding: 22px;
  }

  .gift-audit-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 1080px) {
  .speaker-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .speaker-logo-grid div {
    min-height: 130px;
  }

  .speaker-logo-grid img {
    height: 90px;
  }

  .speaker-gallery {
    grid-template-rows: repeat(2, 220px);
  }
}

@media (max-width: 760px) {
  .hero-editorial {
    position: relative;
    grid-template-areas: "stage";
    min-height: calc(100svh - 78px);
    padding: 0;
    overflow: hidden;
    background: #111;
  }

  .hero-editorial .hero-copy,
  .hero-editorial .hero-portrait {
    grid-area: stage;
  }

  .hero-editorial .hero-portrait {
    height: calc(100svh - 78px);
    min-height: 720px;
  }

  .hero-editorial .hero-portrait::before {
    display: none;
  }

  .hero-editorial .hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.88) 78%, rgba(0, 0, 0, 0.96));
  }

  .hero-editorial .hero-portrait img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 61% center;
    filter: none;
  }

  .hero-editorial .hero-copy {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: 30px 18px 32px;
  }

  .hero-editorial .hero-copy h1,
  .hero-editorial .hero-lead {
    color: #fff;
  }

  .hero-editorial .label {
    color: #ff5058;
  }

  .hero-editorial .btn-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .about-proof-section {
    padding-top: 86px;
  }

  .experience-grid,
  .anonymous-results {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .experience-grid div,
  .anonymous-results article {
    min-height: 150px;
    padding: 18px;
    border-radius: 17px;
  }

  .experience-grid b,
  .anonymous-results b {
    font-size: 40px;
  }

  .results-heading {
    margin-top: 68px;
  }

  .results-heading h2 {
    font-size: 48px;
  }

  .speaker-logo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .speaker-logo-grid div {
    min-height: 108px;
    padding: 8px;
  }

  .speaker-logo-grid img {
    height: 78px;
  }

  .speaker-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 220px 220px;
  }

  .speaker-gallery .speaker-photo:nth-child(1) {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .speaker-gallery .speaker-photo:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .speaker-gallery .speaker-photo:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .speaker-gallery .speaker-photo:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .press-clippings {
    grid-template-columns: 1fr;
  }

  .press-clippings figure,
  .press-clippings .press-featured,
  .press-clippings .press-featured + figure {
    grid-column: auto;
  }

  .press-clippings img,
  .press-clippings .press-featured img,
  .press-clippings .press-featured + figure img {
    height: auto;
    max-height: 430px;
  }
}

@media (max-width: 480px) {
  .experience-grid,
  .anonymous-results {
    grid-template-columns: 1fr;
  }
}

/* Transparent header: the personal name is already stated in the hero */
.topbar {
  grid-template-columns: minmax(0, 1fr);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.topbar .nav {
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .topbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: min(100% - 24px, var(--max));
    min-height: 72px;
    grid-template-columns: 1fr;
    justify-items: end;
    padding: 12px 0;
  }

  .menu-toggle {
    justify-self: end;
    background: rgba(255, 254, 250, 0.72);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
  }

  .nav {
    top: calc(100% + 4px);
  }

  .hero-editorial {
    min-height: 100svh;
  }

  .hero-editorial .hero-portrait {
    height: 100svh;
  }
}

.telegram-form-cta {
  width: 100%;
  border-color: #229ed9;
  background: #229ed9;
  color: #fff;
}

.telegram-form-cta:hover {
  border-color: #1788bc;
  background: #1788bc;
}

.contact-section {
  border-color: rgba(31, 95, 70, 0.46);
  background:
    linear-gradient(120deg, rgba(31, 95, 70, 0.18), transparent 42%),
    rgba(13, 15, 15, 0.96);
}

.contact-section .section-kicker {
  color: var(--green-light);
}

.contact-section .contact-copy h2 {
  color: #fffdf7;
  text-shadow: 0 18px 48px rgba(255, 253, 247, 0.12);
}

.contact-section .contact-copy p {
  color: rgba(244, 240, 232, 0.78);
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 95, 70, 0.11);
}

.contact-form .form-consent input {
  accent-color: var(--green);
}

.founder-section {
  position: relative;
  min-height: 100svh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-top: 20px;
}

.founder-intro h2 {
  max-width: 900px;
  margin: 0;
  color: #111;
}

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

.founder-copy p {
  margin: 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.38;
}

.founder-copy .founder-view {
  padding-left: 20px;
  border-left: 4px solid var(--red);
  color: rgba(21, 21, 21, 0.84);
}

.founder-view strong {
  color: #111;
}

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

.founder-proof-grid article {
  position: relative;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: 0 16px 46px rgba(21, 21, 21, 0.05);
}

.founder-proof-grid article::after {
  content: "🏆";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(229, 9, 20, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.12);
  font-size: 28px;
  line-height: 1;
  transform: rotate(4deg);
}

.founder-proof-grid span,
.founder-proof-grid small {
  color: rgba(21, 21, 21, 0.56);
  font-size: 13px;
  line-height: 1.35;
}

.founder-proof-grid span {
  padding-right: 68px;
  color: var(--red);
  font-family: var(--title);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-proof-grid strong {
  color: #111;
  font: 600 clamp(28px, 3vw, 46px)/0.98 var(--title);
  text-transform: uppercase;
}

.founder-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
  margin-top: 44px;
  align-items: stretch;
}

.founder-visual {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
}

.founder-visual > img,
.founder-visual > a {
  min-height: 0;
}

.founder-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.founder-product img {
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.founder-certificate a {
  display: block;
  background: linear-gradient(145deg, #f3f0ea, #fff);
}

.founder-certificate img {
  min-height: 470px;
  object-fit: contain;
}

.founder-visual figcaption {
  padding: 16px 18px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .founder-intro,
  .founder-visuals {
    grid-template-columns: 1fr;
  }

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

  .founder-proof-grid article {
    min-height: 142px;
  }

  .founder-proof-grid article::after {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .founder-product img,
  .founder-certificate img {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 760px) {
  .founder-section {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .founder-intro {
    gap: 28px;
  }

  .founder-intro h2 {
    font-size: 48px;
  }

  .founder-proof-grid {
    margin-top: 38px;
  }

  .founder-visuals {
    margin-top: 30px;
  }

  .founder-visual {
    border-radius: 18px;
  }
}

/* Responsive reliability: prevent long labels and actions from being clipped. */
.hero-copy h1,
.split-heading h2,
.founder-intro h2,
.founder-proof-grid strong,
.service-title-row h3,
.service-result,
.contact-section h2 {
  overflow-wrap: anywhere;
}

.speaker-logo-grid .logo-skolkovo {
  filter: none;
  opacity: 1;
}

.speaker-logo-grid .logo-mtpp {
  transform: scale(1.34);
  opacity: 1;
}

/* Six speaking venues, including the official monochrome HSE mark. */
.speaker-logo-grid--hse {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.speaker-logo-grid--hse .logo-hse {
  max-width: 96px;
  filter: none;
  opacity: 1;
}

@media (max-width: 1080px) {
  .speaker-logo-grid--hse {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .speaker-logo-grid--hse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-card button.service-action {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .media-section h2,
  .founder-intro h2,
  .services-section .split-heading h2,
  .contact-section h2 {
    font-size: clamp(42px, 12vw, 48px);
    line-height: 0.98;
  }

  .service-action {
    min-height: 54px;
    height: auto;
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .service-card button.service-action {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero-editorial .hero-copy h1 {
    font-size: clamp(44px, 14.5vw, 52px);
    line-height: 0.93;
  }

  .hero-editorial .hero-lead {
    font-size: 18px;
    line-height: 1.34;
  }

  .media-section h2,
  .founder-intro h2,
  .services-section .split-heading h2,
  .contact-section h2 {
    font-size: 42px;
  }

  .founder-proof-grid strong {
    font-size: 26px;
    line-height: 1.04;
  }
}

/* Keep the opened mobile menu outside the transparent header's bounds. */
@media (max-width: 760px) {
  .about-proof-intro h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .topbar {
    overflow: visible;
  }

  .topbar .nav {
    z-index: 30;
    width: 100%;
    justify-content: stretch;
    justify-items: stretch;
    border-radius: 18px;
  }

  .topbar .nav a {
    width: 100%;
    justify-content: flex-start;
  }
}

/* High-contrast controls for the flagship AI workshop. */
.product-flagship .service-title-row strong,
.product-flagship .service-action {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.product-flagship .service-action:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

/* High-contrast action for the annual marketing strategy. */
.premium-service .service-action,
.premium-service .service-action:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

/* The “Бесплатно” label is wider than numeric service indexes. */
@media (min-width: 1081px) {
  .lead-product {
    grid-template-columns: 120px minmax(0, 0.9fr) minmax(260px, 0.7fr) auto;
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .lead-product {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

/* Mobile hero: keep the portrait readable and place copy below the face. */
@media (max-width: 760px) {
  .hero-editorial {
    display: grid;
    grid-template-areas:
      "portrait"
      "copy";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(560px, 76svh) auto;
    min-height: auto;
    overflow: hidden;
    background: #111;
  }

  .hero-editorial .hero-portrait {
    grid-area: portrait;
    width: 100%;
    height: 100%;
    min-height: 560px;
  }

  .hero-editorial .hero-portrait::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0 70%,
      rgba(0, 0, 0, 0.38) 86%,
      #111 100%
    );
  }

  .hero-editorial .hero-portrait img {
    object-position: 61% 18%;
  }

  .hero-editorial .hero-copy {
    grid-area: copy;
    align-self: auto;
    margin-top: -144px;
    padding: 72px 18px 32px;
    background: linear-gradient(180deg, transparent 0, #111 72px);
  }
}

@media (max-width: 380px) {
  .hero-editorial {
    grid-template-rows: 540px auto;
  }

  .hero-editorial .hero-portrait {
    min-height: 540px;
  }
}

/* Larger navigation labels on desktop and inside the mobile burger menu. */
.topbar .nav a {
  font-size: 16px;
}

@media (max-width: 760px) {
  .topbar .nav a {
    min-height: 56px;
    padding: 0 18px;
    font-size: 20px;
  }
}

.lead-product .service-index {
  white-space: nowrap;
}

/* Separate conversion form for paid service cards on the test page. */
.service-lead-card {
  width: min(100% - 28px, 780px);
  max-height: calc(100svh - 28px);
  grid-template-columns: minmax(0, 1fr);
  overflow-x: hidden;
  overflow-y: auto;
}

.service-lead-card h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(42px, 6vw, 68px);
  overflow-wrap: anywhere;
}

.service-lead-choice {
  margin-bottom: 22px !important;
}

.service-lead-choice strong {
  color: #151515;
}

.service-lead-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
}

.service-lead-form .form-field,
.service-lead-form .form-submit-row,
.service-lead-form .form-consent {
  min-width: 0;
}

@media (max-width: 640px) {
  .service-lead-card {
    width: min(100% - 16px, 780px);
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

  .service-lead-card h2 {
    padding-right: 34px;
    font-size: clamp(38px, 11vw, 48px);
  }

  .service-lead-form {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .service-lead-form .form-field,
  .service-lead-form .form-submit-row,
  .service-lead-form .form-consent {
    grid-column: 1;
  }

  .service-lead-form .form-submit-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .service-lead-card h2 {
    font-size: clamp(32px, 10.5vw, 36px);
    line-height: 0.96;
  }
}

/* Joint consulting direction with Novikov Consulting Group. */
.partnership-section {
  padding-top: 28px;
  padding-bottom: 112px;
}

.partnership-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 64px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(229, 9, 20, 0.3), transparent 29rem),
    linear-gradient(145deg, #151515, #090909 72%);
  color: #fff;
  box-shadow: 0 34px 100px rgba(21, 21, 21, 0.2);
}

.partnership-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.partnership-panel > * {
  position: relative;
  z-index: 1;
}

.partnership-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.partnership-brand {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font: 500 clamp(16px, 1.7vw, 22px)/1.2 var(--title);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.partnership-brand span {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--red);
}

.partnership-site-link {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 180ms ease, border-color 180ms ease;
}

.partnership-site-link:hover {
  border-color: #fff;
  color: #fff;
}

.partnership-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-top: clamp(58px, 8vw, 108px);
}

.partnership-heading h2 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(50px, 6.3vw, 92px);
  overflow-wrap: anywhere;
}

.partnership-heading-tail {
  white-space: nowrap;
}

.partnership-heading p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.38;
}

.partnership-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.partnership-proof div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.partnership-proof strong {
  color: #fff;
  font: 600 clamp(27px, 2.5vw, 42px)/1 var(--title);
  text-transform: uppercase;
}

.partnership-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

.partnership-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.partnership-directions article {
  min-height: 250px;
  padding: 28px;
  background: rgba(9, 9, 9, 0.78);
}

.partnership-directions span,
.partnership-result > div > span {
  color: #ff5b63;
  font: 600 13px/1 var(--title);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partnership-directions h3 {
  max-width: 290px;
  margin: 48px 0 14px;
  color: #fff;
  font-size: clamp(27px, 2.2vw, 36px);
}

.partnership-directions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.42;
}

.partnership-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr) auto;
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(229, 9, 20, 0.58);
  border-top: 0;
  background: linear-gradient(110deg, rgba(229, 9, 20, 0.18), rgba(255, 255, 255, 0.05));
}

.partnership-result strong {
  display: block;
  max-width: 590px;
  margin-top: 10px;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.32;
}

.partnership-result ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.partnership-result li::marker {
  color: var(--red);
}

.partnership-cta,
.partnership-cta:hover {
  min-height: 62px;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  text-align: center;
}

@media (max-width: 1080px) {
  .partnership-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partnership-heading p {
    max-width: 760px;
  }

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

  .partnership-result {
    grid-template-columns: 1fr 1fr;
  }

  .partnership-cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .partnership-section {
    width: 100%;
    padding: 18px 0 76px;
  }

  .partnership-panel {
    padding: 34px 18px;
    border-radius: 0;
  }

  .partnership-intro {
    display: grid;
  }

  .partnership-heading {
    margin-top: 60px;
  }

  .partnership-heading h2 {
    font-size: clamp(43px, 12.5vw, 58px);
    line-height: 0.96;
  }

  .partnership-directions {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .partnership-proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .partnership-proof div {
    min-height: 138px;
    padding: 18px;
  }

  .partnership-proof strong {
    font-size: clamp(24px, 7vw, 34px);
  }

  .partnership-directions article {
    min-height: 0;
  }

  .partnership-directions h3 {
    margin-top: 28px;
  }

  .partnership-result {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .partnership-cta {
    grid-column: 1;
    height: auto;
    padding: 15px 18px;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .partnership-proof {
    grid-template-columns: 1fr;
  }

  .partnership-proof div {
    min-height: 118px;
  }
}

/* Give the final contact card enough breathing room on every screen size. */
.contact-section {
  padding: clamp(64px, 7vw, 92px) clamp(28px, 4.5vw, 54px);
}

@media (max-width: 1080px) {
  .contact-section {
    padding: 58px clamp(24px, 4vw, 40px);
  }
}

@media (max-width: 760px) {
  .contact-section {
    padding: 54px 18px;
  }
}

/* Featured podcast episode above the speaking section. */
.podcast-section {
  width: min(100% - 36px, 1440px);
  max-width: none;
  padding: 112px clamp(20px, 4vw, 64px);
  background:
    linear-gradient(120deg, rgba(229, 9, 20, 0.14), transparent 42%),
    #fffefa;
  color: #111;
}

.podcast-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.podcast-video {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 30px 90px rgba(21, 21, 21, 0.2);
}

.podcast-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.54));
  transition: background 220ms ease;
}

.podcast-video:hover::after {
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.46));
}

.podcast-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.podcast-video:hover img {
  transform: scale(1.025);
}

.podcast-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(72px, 7vw, 104px);
  height: clamp(72px, 7vw, 104px);
  display: grid;
  place-items: center;
  padding-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: clamp(25px, 2.5vw, 38px);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 50px rgba(229, 9, 20, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.podcast-video:hover .podcast-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 64px rgba(229, 9, 20, 0.48);
}

.podcast-duration {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 9px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font: 600 13px/1 var(--title);
  letter-spacing: 0.05em;
}

.podcast-show {
  margin: 14px 0 34px;
  color: rgba(21, 21, 21, 0.48);
  font-size: 14px;
}

.podcast-copy h2 {
  max-width: 690px;
  color: #111;
  font-size: clamp(50px, 5.8vw, 88px);
  overflow-wrap: anywhere;
}

.podcast-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(21, 21, 21, 0.72);
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.38;
}

.podcast-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.podcast-topics span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(21, 21, 21, 0.7);
  font-size: 13px;
  line-height: 1.3;
}

.podcast-cta {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .podcast-layout {
    grid-template-columns: 1fr;
  }

  .podcast-copy {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .podcast-section {
    width: calc(100% - 24px);
    padding: 72px 14px;
  }

  .podcast-layout {
    gap: 38px;
  }

  .podcast-copy h2 {
    font-size: clamp(43px, 12vw, 56px);
    line-height: 0.96;
  }

  .podcast-show {
    margin-bottom: 24px;
  }

  .podcast-lead {
    margin-top: 22px;
  }

  .podcast-cta {
    width: 100%;
    min-height: 58px;
    padding: 12px 18px;
    text-align: center;
  }
}

.intro-cta,
.meeting-action,
.btn-primary.intro-cta,
.service-action.meeting-action,
.partnership-cta.meeting-action,
.product-flagship .service-action.meeting-action,
.premium-service .service-action.meeting-action {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 44px rgba(31, 95, 70, 0.24);
}

.intro-cta:hover,
.meeting-action:hover,
.btn-primary.intro-cta:hover,
.service-action.meeting-action:hover,
.partnership-cta.meeting-action:hover,
.product-flagship .service-action.meeting-action:hover,
.premium-service .service-action.meeting-action:hover {
  border-color: var(--green-dark);
  background: linear-gradient(135deg, #277153, var(--green-dark));
  color: #fff;
  box-shadow: 0 22px 56px rgba(31, 95, 70, 0.32);
}

.hero-editorial .intro-cta,
.hero-editorial .btn-primary.intro-cta {
  border-color: rgba(223, 15, 27, 0.72);
  background: linear-gradient(135deg, #ff3a43 0%, var(--red) 48%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(223, 15, 27, 0.28);
}

.hero-editorial .intro-cta:hover,
.hero-editorial .btn-primary.intro-cta:hover {
  border-color: rgba(162, 0, 9, 0.86);
  background: linear-gradient(135deg, #ff4b52 0%, #df0f1b 46%, #8f0008 100%);
  color: #fff;
  box-shadow: 0 22px 58px rgba(223, 15, 27, 0.36);
}
