:root {
  --bg: #061227;
  --bg-soft: #0a1c3b;
  --panel: rgba(9, 24, 50, 0.78);
  --panel-strong: rgba(8, 20, 41, 0.9);
  --line: rgba(132, 180, 255, 0.18);
  --line-strong: rgba(132, 180, 255, 0.32);
  --text: #eff6ff;
  --muted: #b7c9e7;
  --gold: #ffd35c;
  --gold-soft: #fff2ba;
  --cyan: #74e4ff;
  --success: #79f2bf;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 20px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(116, 228, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 211, 92, 0.14), transparent 22%),
    linear-gradient(180deg, #071327 0%, #050d1a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  padding: 22px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 14, 28, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #071327;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: 10px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(116, 228, 255, 0.16), rgba(255, 211, 92, 0.18));
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #071327;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.page-main {
  display: grid;
  gap: 0;
}

.page-hero,
.section,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero {
  position: relative;
  margin-top: 26px;
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 211, 92, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(116, 228, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(8, 22, 48, 0.96), rgba(7, 18, 39, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 228, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.hero-copy h1,
.section-header h2 {
  margin: 0;
  line-height: 1.06;
}

.hero-copy h1 {
  max-width: 12ch;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-header h2 {
  font-family: "Orbitron", "Segoe UI", sans-serif;
  max-width: 16ch;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

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

.eyebrow.compact {
  margin-bottom: 10px;
}

.hero-text,
.section-header p,
.text-flow p,
.card p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stat-strip,
.grid-two,
.grid-three,
.grid-four,
.project-grid,
.person-grid,
.timeline-grid {
  display: grid;
  gap: 20px;
}

.stat-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.home-hero .stat-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.stat-card,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(10, 26, 54, 0.56));
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
  min-height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 1.34rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-aside,
.portrait-stack {
  display: grid;
  gap: 16px;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.home-hero .hero-copy {
  padding-top: 8px;
}

.home-hero-bottom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 20px;
  align-items: start;
}

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

.portrait-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 31, 65, 0.95), rgba(7, 18, 39, 0.92));
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-tall img {
  aspect-ratio: 4 / 4.8;
}

.hero-portrait img {
  aspect-ratio: 4 / 4.25;
  object-position: center top;
}

.portrait-copy {
  padding: 16px 18px 18px;
  display: grid;
  gap: 4px;
}

.portrait-copy strong {
  font-size: 1.04rem;
}

.portrait-copy span {
  color: var(--muted);
}

.portrait-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 88px 0 0;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-header p {
  max-width: 68ch;
  margin: 0;
}

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

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

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

.align-start {
  align-items: start;
}

.card {
  padding: 28px;
}

.feature-card h3,
.route-card h3,
.value-card h3,
.timeline-step h3,
.risk-card h3,
.project-card h3,
.person-card h3,
.text-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 700;
}

.text-flow {
  display: grid;
  gap: 18px;
}

.text-flow p {
  margin: 0;
}

.compact-top {
  margin-top: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.metric-panel .metric-list {
  display: grid;
  gap: 16px;
}

.metric-list div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.metric-list strong {
  display: block;
  font-size: 1.34rem;
}

.metric-list span {
  color: var(--muted);
}

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

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

.project-number {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #071327;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-weight: 800;
}

.project-card > p {
  margin: 0 0 18px;
}

.project-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-meta dt {
  color: var(--muted);
}

.project-meta dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.project-showcase-card,
.advisor-card {
  overflow: hidden;
  padding: 0;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.project-showcase-card:hover,
.advisor-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.project-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.project-showcase-body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 12px;
}

.project-showcase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.project-showcase-top h3,
.dashboard-mix-card h3,
.advisor-body h3 {
  margin: 0;
}

.project-showcase-top h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.project-type {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.project-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-badge.complete {
  background: rgba(121, 242, 191, 0.14);
  color: var(--success);
  border: 1px solid rgba(121, 242, 191, 0.22);
}

.project-badge.progress {
  background: rgba(255, 211, 92, 0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(255, 211, 92, 0.24);
}

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

.dashboard-mix-card {
  display: grid;
  gap: 18px;
}

.progress-list {
  display: grid;
  gap: 16px;
}

.progress-item {
  display: grid;
  gap: 8px;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-meta strong {
  font-size: 0.96rem;
}

.progress-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 12px 24px rgba(116, 228, 255, 0.22);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms ease;
}

[data-reveal].is-visible .progress-track i {
  transform: scaleX(1);
}

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

.timeline-step strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subtle {
  color: var(--success);
}

.table-card {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.data-table th {
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.chart-card {
  display: grid;
  gap: 16px;
}

.mini-chart {
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.mini-chart text {
  fill: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 12px;
}

.line-path {
  fill: none;
  stroke: url(#none);
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1000ms ease;
}

.mini-chart circle {
  fill: var(--gold);
}

[data-reveal].is-visible .line-path {
  stroke-dashoffset: 0;
}

.bar-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  min-height: 210px;
  padding-top: 20px;
}

.bar-wrap {
  display: grid;
  align-items: end;
  justify-items: center;
  gap: 10px;
}

.bar-wrap i {
  width: 54px;
  min-height: 18px;
  border-radius: 18px 18px 6px 6px;
  display: block;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  box-shadow: 0 20px 40px rgba(116, 228, 255, 0.18);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 900ms ease;
}

[data-reveal].is-visible .bar-wrap i {
  transform: scaleY(1);
}

.bar-wrap span,
.bar-wrap strong {
  font-size: 0.92rem;
}

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

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

.person-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.person-photo {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.advisor-photo {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  object-position: center top;
}

.advisor-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 10px;
}

.advisor-body h3 {
  font-size: 1.26rem;
  line-height: 1.2;
}

.advisor-body .role,
.advisor-company,
.advisor-body p {
  margin: 0;
}

.advisor-company {
  color: var(--muted);
  font-weight: 700;
}

.role {
  margin-top: -2px;
  color: var(--gold-soft);
  font-weight: 700;
}

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

.contact-card .contact-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-methods a,
.contact-methods div {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-methods strong {
  display: block;
  margin-bottom: 4px;
}

.contact-methods span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(183, 201, 231, 0.62);
}

.insight-card {
  display: grid;
  gap: 18px;
}

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

.insight-head .text-link {
  margin-top: 2px;
  white-space: nowrap;
}

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

.leader-pills div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.leader-pills strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.leader-pills span {
  color: var(--muted);
  font-size: 0.9rem;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list.compact {
  gap: 10px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  margin-top: 80px;
  padding: 30px;
  display: grid;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 92, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 22, 48, 0.88), rgba(6, 17, 35, 0.94));
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 26px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #071327;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-copy {
  display: grid;
  gap: 2px;
}

.footer-copy strong {
  font-size: 1rem;
}

.footer-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-about {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.84rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.social-links a:hover,
.footer-link-list a:hover,
.footer-contact a:hover {
  color: var(--text);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.footer-link-list,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-link-list a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
}

.footer-link-list a,
.footer-contact a,
.footer-bottom a {
  display: inline-flex;
  width: fit-content;
}

.footer-map {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-map iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1360px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .hero-grid,
  .grid-two,
  .grid-three,
  .grid-four,
  .project-grid,
  .home-project-grid,
  .dashboard-grid,
  .person-grid,
  .timeline-grid,
  .risk-grid,
  .compact-stack,
  .stat-strip,
  .cta-banner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .home-hero-bottom {
    grid-template-columns: 1fr;
  }

  .home-hero .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .person-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    top: 10px;
    padding: 14px 16px;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

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

  .site-nav a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .page-hero {
    padding: 24px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10.2vw, 3.5rem);
  }

  .section {
    padding-top: 72px;
  }

  .grid-two,
  .grid-three,
  .grid-four,
  .project-grid,
  .home-project-grid,
  .dashboard-grid,
  .person-grid,
  .advisors-grid,
  .timeline-grid,
  .risk-grid,
  .compact-stack {
    grid-template-columns: 1fr;
  }

  .home-hero .stat-strip,
  .leader-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    padding: 22px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .data-table {
    min-width: 520px;
  }

  .insight-head {
    flex-direction: column;
  }

  .insight-head .text-link {
    margin-top: 0;
  }

  .project-showcase-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-footer {
    padding: 24px;
    border-radius: 28px;
  }

  .footer-map iframe {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .home-hero .stat-strip,
  .leader-pills {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .progress-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-showcase-body,
  .advisor-body {
    padding: 18px;
  }
}
