:root {
  --bg: #0e1a2c;
  --surface: rgba(17, 30, 48, 0.86);
  --surface-strong: #182740;
  --surface-contrast: #21324d;
  --panel: #1a2b44;
  --panel-strong: #314868;
  --line: rgba(219, 227, 238, 0.14);
  --line-strong: rgba(219, 227, 238, 0.28);
  --text: #edf3f9;
  --muted: #bcc8d8;
  --accent: #9eb0c5;
  --accent-strong: #f6f8fb;
  --max-width: 1180px;
  --shadow-soft: 0 24px 50px rgba(3, 8, 16, 0.38);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "URW Palladio L", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(46, 70, 102, 0.22), transparent 28%),
    linear-gradient(180deg, #0c1523 0%, #102037 34%, #142845 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.25rem;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 18, 31, 0.88);
  border-bottom: 1px solid rgba(219, 227, 238, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--accent-strong);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-strong);
}

.nav-cta.active::after,
.nav-cta:hover::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.nav-toggle span {
  width: 1rem;
  height: 1px;
  background: var(--accent-strong);
}

.hero,
.page-hero {
  padding: clamp(3.4rem, 5.2vw, 5.8rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}

.hero-grid,
.page-hero-inner {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.78fr);
  gap: 1.75rem;
  align-items: stretch;
}

.hero-side {
  display: grid;
  gap: 0.8rem;
  align-self: stretch;
  max-width: 300px;
  justify-self: end;
}

.hero-copy,
.page-hero-inner,
.hero-panel,
.experience-block,
.info-card,
.principle-card,
.mini-panel,
.closing-panel,
.outcome-panel,
.list-panel,
.proof-band,
.proof-strip,
.role-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.page-hero-inner {
  padding: clamp(1.8rem, 3.4vw, 3rem);
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.92), rgba(16, 28, 45, 0.88));
  border-radius: var(--radius-lg);
}

.hero-copy {
  height: 100%;
}

.list-panel,
.mini-panel,
.role-card,
.experience-block,
.outcome-panel,
.closing-panel,
.portrait-panel {
  background: rgba(18, 31, 50, 0.9);
  border-radius: var(--radius-md);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.closing-panel h2,
.outcome-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.035em;
}

.page-hero h1 {
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
  max-width: 22ch;
  white-space: normal;
  line-height: 1.1;
}

.eyebrow,
.panel-label,
.role-meta {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent);
}

.hero-lead,
.page-intro,
.section-heading p,
.section-copy p,
.role-card p,
.experience-block > p,
.info-card p,
.principle-card p,
.mini-panel p,
.closing-panel p,
.outcome-panel p,
.list-panel p {
  color: var(--muted);
}

.hero-lead,
.page-intro {
  margin-top: 1.1rem;
  font-size: clamp(0.98rem, 1.18vw, 1.06rem);
  max-width: 39rem;
  line-height: 1.68;
}

.page-intro.secondary {
  margin-top: 0.75rem;
  font-size: 0.96rem;
  max-width: 38rem;
  line-height: 1.62;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-strong);
  color: #10203a;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
}

.button-tertiary {
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.94rem;
  color: var(--accent-strong);
}

.button-tertiary:hover {
  transform: none;
}

.portrait-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(24, 39, 62, 0.98), rgba(18, 31, 50, 0.98));
  justify-self: stretch;
  height: 100%;
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 4.9;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.62) contrast(1.04) brightness(0.96);
}

.portrait-caption {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem 0.82rem;
  background: rgba(9, 17, 28, 0.96);
  border-top: 1px solid var(--line);
}

.portrait-caption p:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-credentials {
  padding: 0 0 1rem;
}

.page-summary {
  padding: 0 0 1rem;
}

.credentials-band {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 50, 0.84);
  box-shadow: var(--shadow-soft);
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 50, 0.84);
  box-shadow: var(--shadow-soft);
}

.summary-band > div {
  display: grid;
  gap: 0.35rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(219, 227, 238, 0.12);
}

.summary-band > div:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.scope-item {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 50, 0.84);
  box-shadow: var(--shadow-soft);
}

.scope-item p {
  color: var(--muted);
  line-height: 1.56;
}

.credentials-band .panel-label {
  padding-top: 0.2rem;
}

.hero-stat {
  display: grid;
  gap: 0.35rem;
  padding: 0 0 0 0.9rem;
  border-left: 1px solid rgba(219, 227, 238, 0.12);
}

.credentials-band .hero-stat:first-of-type {
  margin-top: 0;
}

.hero-stat span,
.feature-quote p,
.page-quote-band p {
  font-family: var(--serif);
}

.hero-stat span {
  font-size: 1.16rem;
  color: var(--accent-strong);
}

.hero-stat p,
.section-heading p,
.section-copy p,
.info-card p,
.timeline-card p,
.proof-label {
  line-height: 1.58;
}

.signal-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  color: var(--muted);
}

.signal-list li {
  padding-left: 0.15rem;
}

.section {
  padding: clamp(3rem, 4.5vw, 4.25rem) 0;
}

.section-contrast {
  background: rgba(25, 40, 61, 0.58);
  border-top: 1px solid rgba(219, 227, 238, 0.05);
  border-bottom: 1px solid rgba(219, 227, 238, 0.05);
}

.section-frame {
  position: relative;
}

.split-section,
.two-column-layout,
.two-column-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
}

.section-heading.narrow {
  max-width: 56rem;
}

.section-heading h2 {
  font-size: clamp(1.52rem, 2.55vw, 2rem);
  line-height: 1.16;
}

.section-stack {
  display: grid;
  gap: 1.5rem;
}

.framing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.6rem;
  align-items: end;
}

.framing-lead h2,
.proof-intro h2 {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
}

.framing-lead p:last-child,
.framing-copy p,
.proof-intro p {
  color: var(--muted);
}

.framing-lead {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.framing-lead h2 {
  max-width: none;
}

.framing-copy {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem 0 0 1.4rem;
  border-left: 1px solid rgba(219, 227, 238, 0.14);
}

.card-grid,
.card-grid-four,
.principle-grid,
.role-preview-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.info-card,
.principle-card {
  padding: 1.3rem;
  background: rgba(16, 28, 45, 0.92);
  border-radius: var(--radius-md);
}

.info-card-featured {
  background: rgba(35, 54, 80, 0.94);
  border-color: rgba(219, 227, 238, 0.18);
}

.operating-rail,
.engagement-matrix,
.engagement-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-heading + .operating-rail,
.section-heading + .engagement-matrix,
.section-heading + .engagement-area-grid {
  margin-top: 0.45rem;
}

.info-card h3,
.principle-card h2,
.mini-panel h3,
.role-card h3,
.experience-header h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  font-size: 1.16rem;
}

.proof-band,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.15rem;
  background: rgba(16, 28, 45, 0.92);
  border-radius: var(--radius-md);
}

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

.proof-band-editorial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.proof-band div,
.proof-strip div {
  display: grid;
  gap: 0.4rem;
}

.proof-band div,
.proof-strip div,
.summary-band > div,
.scope-item,
.hero-stat {
  align-content: start;
}

.proof-value {
  font-family: var(--serif);
  font-size: 1.03rem;
  color: var(--accent-strong);
}

.proof-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-kicker {
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.32;
}

.proof-heading {
  margin-bottom: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(219, 227, 238, 0.1);
  max-width: none;
}

.text-link {
  width: fit-content;
  color: var(--accent-strong);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
}

.role-preview-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.role-card {
  padding: 1.5rem;
}

.role-card-featured {
  background: rgba(35, 54, 80, 0.92);
}

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

.page-quote-band {
  margin-bottom: 1.5rem;
  padding: 1.5rem 0 2rem;
  max-width: 54rem;
  border-bottom: 1px solid rgba(219, 227, 238, 0.1);
}

.page-quote-band p {
  font-size: clamp(1.22rem, 2.1vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.principle-card-wide {
  grid-column: span 2;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 1rem;
  align-items: stretch;
}

.feature-quote {
  padding: 1.45rem;
  border-left: 2px solid rgba(219, 227, 238, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

.feature-quote p {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
}

.stacked-cards {
  display: grid;
  gap: 0.85rem;
}

.experience-stack {
  display: grid;
  gap: 1.25rem;
}

.experience-stack-editorial {
  gap: 1rem;
}

.experience-block {
  padding: 1.5rem;
}

.experience-block:first-child {
  background: rgba(35, 54, 80, 0.94);
  border-color: rgba(219, 227, 238, 0.18);
}

.experience-header {
  margin-bottom: 1rem;
}

.experience-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
}

.list-panel,
.outcome-panel,
.closing-panel {
  padding: 1.75rem;
}

.list-panel {
  display: grid;
  gap: 1rem;
}

.list-panel-ruled p {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(219, 227, 238, 0.12);
}

.list-panel-ruled p:first-child {
  padding-top: 0;
  border-top: 0;
}

.stacked-panels {
  display: grid;
  gap: 1rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-panel {
  padding: 1.25rem;
}

.closing-panel,
.outcome-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.experience-preview {
  display: grid;
  gap: 0.85rem;
}

.timeline-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.3rem 1.2rem 1.7rem;
  border-left: 2px solid rgba(219, 227, 238, 0.18);
  background: rgba(16, 28, 45, 0.82);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.timeline-card-primary {
  background: rgba(35, 54, 80, 0.92);
}

.timeline-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
}

.experience-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(219, 227, 238, 0.08);
  padding-top: 1.5rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .credentials-band,
  .summary-band,
  .scope-grid,
  .model-grid,
  .split-section,
  .two-column-layout,
  .two-column-band,
  .card-grid,
  .card-grid-four,
  .proof-band,
  .role-preview-grid,
  .operating-rail,
  .engagement-matrix,
  .engagement-area-grid,
  .framing-grid,
  .editorial-split,
  .experience-secondary-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-card-wide {
    grid-column: auto;
  }

  .closing-panel,
  .outcome-panel,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .framing-copy,
  .proof-emphasis {
    padding-left: 0;
    border-left: 0;
  }

  .hero-stat {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(219, 227, 238, 0.12);
  }

  .summary-band > div {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(219, 227, 238, 0.12);
  }

  .summary-band > div:first-child {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(11, 20, 34, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero h1 {
    max-width: none;
  }

  .page-hero h1 {
    max-width: 16ch;
  }

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

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-copy,
  .page-hero-inner,
  .hero-panel,
  .experience-block,
  .info-card,
  .principle-card,
  .mini-panel,
  .closing-panel,
  .outcome-panel,
  .list-panel,
  .proof-band,
  .proof-strip,
  .role-card {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

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

  .button {
    justify-content: center;
  }
}
