:root {
  --blue: #0c3299;
  --blue-deep: #08236d;
  --ink: #101827;
  --muted: #5e6877;
  --line: #dfe4ea;
  --soft: #f5f7fa;
  --paper: #ffffff;
  --dark: #0b1220;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(12, 24, 48, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

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

.section { padding: 112px 0; }
.section-muted { background: var(--soft); }
.section-dark { color: white; background: var(--dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 228, 234, 0.85);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.footer-logo {
  height: 28px;
}

.brand-name {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #303a4a;
}

.nav a:not(.button):hover,
.footer-links a:hover { color: var(--blue); }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8a94a3;
  font-size: 12px;
}

.lang-btn {
  padding: 4px 2px;
  border: 0;
  background: none;
  color: #8a94a3;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active { color: var(--blue); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: 160ms ease;
}
.button:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}
.button-small { min-height: 40px; padding: 0 16px; }
.button-light { background: white; color: var(--dark); border-color: white; }
.button-light:hover { background: #edf1f6; border-color: #edf1f6; }
.disabled-link { cursor: default; opacity: 0.88; pointer-events: none; }
.text-link { color: var(--blue); font-size: 14px; font-weight: 700; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #9db4ff; }

.hero { padding: 128px 0 118px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.split h2,
.sample h2,
.contact h2,
.profile-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 6.1vw, 82px);
  line-height: 0.98;
}
.hero-text {
  max-width: 730px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.badge {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.research-panel {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.panel-head, .panel-row, .panel-foot { padding: 18px 20px; }
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.panel-status { color: var(--blue); }
.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.panel-row span { color: var(--muted); }
.panel-row strong { font-weight: 700; }
.panel-foot { color: var(--muted); font-size: 11px; line-height: 1.55; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}
.split h2,
.section-heading h2,
.sample h2,
.contact h2,
.profile-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
}
.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}
.body-copy p { margin: 0 0 24px; }
.body-copy .emphasis { color: var(--ink); font-weight: 650; }

.section-heading {
  max-width: 830px;
  margin-bottom: 64px;
}
.section-heading.compact { max-width: 860px; }
.section-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.framework-list { border-top: 1px solid var(--line); }
.framework-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.framework-item .index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.framework-item h3,
.principles h3,
.credential-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 720;
}
.framework-item p,
.principles p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles article {
  min-height: 275px;
  padding: 34px 34px 36px 0;
}
.principles article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.principles span {
  display: inline-block;
  margin-bottom: 62px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.sample-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}
.report-mockup {
  min-height: 560px;
  padding: 34px;
  background: #f8f9fb;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}
.report-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.report-title {
  margin-top: 92px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.report-rule {
  width: 78px;
  height: 5px;
  margin: 34px 0 32px;
  background: var(--blue);
}
.report-meta {
  display: grid;
  gap: 10px;
  color: #596274;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sample-copy > p:not(.eyebrow):not(.microcopy) {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #c5cedc;
  font-size: 17px;
  line-height: 1.8;
}
.microcopy { margin: 14px 0 0; color: #7f8aa0; font-size: 12px; }

.profile-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: start;
}
.profile-image-wrap {
  position: sticky;
  top: 118px;
}
.profile-image {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.degree-line {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 3px solid var(--blue);
  background: var(--soft);
}

.degree-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.degree-line strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.profile-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 26px 0 0;
}

.market-journey {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.journey-head span:first-child {
  color: var(--blue);
}

.journey-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.journey-marker {
  padding-top: 3px;
}

.journey-age {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.journey-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 750;
}

.journey-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


.credential-card {
  margin-top: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.credential-kicker {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.credential-card h3 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 500;
}
.credential-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.credential-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 54px;
  padding-top: 6px;
}
.contact-box p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  padding: 54px 0 34px;
  color: #c4ccda;
  background: var(--dark);
  border-top: 1px solid #202a3c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: end;
}
.footer-brand .brand-name { color: white; }
.site-footer p {
  margin: 16px 0 0;
  color: #7f8ba0;
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  font-size: 13px;
}
.footer-copy {
  color: #778299;
  font-size: 12px;
  white-space: nowrap;
}

.legal { min-height: 70vh; }
.legal-card { max-width: 850px; margin: 0 auto; }
.legal-card h1 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 500;
}
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.notice {
  padding: 18px 20px;
  margin: 28px 0;
  border-left: 3px solid var(--blue);
  background: var(--soft);
}

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

.research-card {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.research-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(12, 24, 48, 0.12);
}

.research-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef2f8;
}

.research-card-body {
  padding: 22px 22px 24px;
}

.research-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-card h3,
.process-step h3,
.philosophy-card h3,
.clarity-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 730;
}

.research-card p,
.process-step p,
.philosophy-card p,
.clarity-card li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.process-step {
  padding: 34px 26px 36px 0;
}

.process-step + .process-step {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.process-step span,

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

.philosophy-card,
.clarity-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

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

.clarity-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clarity-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}



.research-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #eef2f8;
  cursor: zoom-in;
  overflow: hidden;
}

.research-image-button img {
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .research-image-button:hover img {
    transform: scale(1.015);
    opacity: 0.96;
  }
}

.research-image-button:focus-visible {
  outline: 3px solid rgba(12, 50, 153, 0.35);
  outline-offset: -3px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 26px;
}

.image-lightbox.open {
  display: grid;
  place-items: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(7px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1680px);
  max-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-caption {
  min-width: 0;
  color: #eef2f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.lightbox-nav,
.lightbox-close {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.lightbox-close {
  font-size: 28px;
  font-weight: 300;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox-stage {
  min-height: 0;
  overflow: auto;
  padding: 18px;
  display: grid;
  place-items: center;
  background: #070c14;
}

.lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  cursor: default;
}

.lightbox-hint {
  margin: 0;
  padding: 10px 18px 13px;
  color: #8f9bae;
  font-size: 11px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .image-lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .lightbox-toolbar {
    align-items: flex-start;
    padding-left: 12px;
  }

  .lightbox-caption {
    padding-top: 10px;
    font-size: 12px;
  }

  .lightbox-stage {
    padding: 8px;
  }

  .lightbox-stage img {
    max-height: calc(100vh - 165px);
  }

  .lightbox-hint {
    display: none;
  }
}


.mandate-dashboard {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mandate-dashboard-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.mandate-dashboard-copy h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 760;
}
.mandate-dashboard-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.mandate-dashboard-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: #8993a2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}
.linkedin-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.academic-milestone {
  background: linear-gradient(90deg, rgba(12, 50, 153, 0.035), transparent 75%);
}

.research-source {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7d8795 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.03em;
}

.mandate-legal-note {
  margin-top: 14px !important;
  color: #7b8594 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.homepage-legal-note {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.homepage-legal-note p {
  max-width: 940px;
  margin: 0;
  color: #7b8594;
  font-size: 11px;
  line-height: 1.65;
}

.legal-card {
  max-width: 920px;
}

.legal-card h2 {
  margin: 40px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.legal-card ul {
  padding-left: 21px;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-meta {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin: 0 0 34px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #7b8594;
  font-size: 12px;
}

.legal-contact {
  padding: 24px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--soft);
}

.legal-contact p {
  margin: 0;
}

.legal-contact p + p {
  margin-top: 8px;
}

.legal-warning {
  padding: 20px 22px;
  margin: 28px 0;
  border-left: 3px solid var(--blue);
  background: var(--soft);
}

.legal-warning strong {
  color: var(--ink);
}

.legal-footer {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .insights-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .hero { padding: 92px 0 84px; }

  .hero-grid,
  .split,
  .sample-grid,
  .profile-grid,
  .insights-grid,
  .philosophy-grid,
  .clarity-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .mandate-dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mandate-dashboard-meta {
    justify-items: start;
    grid-template-columns: repeat(2, max-content);
    gap: 8px 18px;
  }

  .process-step {
    padding: 28px 0;
  }

  .process-step + .process-step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .research-panel { max-width: 620px; }
  .principles { grid-template-columns: 1fr; }
  .principles article {
    min-height: unset;
    padding: 28px 0;
  }
  .principles article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .principles span { margin-bottom: 28px; }
  .profile-image-wrap {
    position: static;
    max-width: 520px;
  }

  .contact-box,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-copy { white-space: normal; }

  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 12px; }
  .nav .button { margin-top: 6px; }
  .language-switch {
    padding: 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 4px 0;
    background: var(--ink);
  }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding: 74px 0 70px; }
  .hero h1 { font-size: 46px; }
  .hero-text { font-size: 17px; }
  .brand-name { font-size: 11px; letter-spacing: 0.1em; }
  .brand-logo { height: 28px; }
  .framework-item { grid-template-columns: 52px 1fr; }
  .journey-item { grid-template-columns: 82px 1fr; gap: 14px; }
  .journey-head { flex-direction: column; gap: 6px; }
  .report-mockup { min-height: 480px; padding: 26px; }
  .report-title { margin-top: 74px; }
  .contact-box .button { width: 100%; }
}
