* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #08131c;
  --bg-soft: #0c1e29;
  --panel: #102733;
  --panel-strong: #153441;
  --text: #f2fbfc;
  --text-soft: #c1d8df;
  --text-muted: #8fb1bd;
  --line: rgba(210, 239, 244, 0.14);
  --line-strong: rgba(210, 239, 244, 0.26);
  --accent: #4fc3f7;
  --accent-soft: rgba(79, 195, 247, 0.12);
  --warm: #ffc57a;
  --max-width: 1200px;
  --header-height: 76px;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 82% 4%, rgba(79, 195, 247, 0.14), transparent 29rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 19, 28, 0.88);
  backdrop-filter: blur(16px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.site-brand > span {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-brand strong {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="true"] {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(72px, 10vw, 126px) 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(340px, 0.87fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.project-type {
  color: var(--accent);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-title,
.case-study-heading h3 {
  font-family: "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  margin-top: 24px;
  font-size: clamp(3rem, 6.3vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-text {
  max-width: 680px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #051116;
}

.btn-primary:hover {
  background: #8fd8fb;
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.profile-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.profile-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.profile-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.profile-header h2 {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.status-dot {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

@media (min-width: 541px) {
  .profile-header .status-dot {
    margin-top: 6px;
  }
}

.profile-visual {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.portrait-frame {
  position: relative;
  width: min(280px, 78%);
  aspect-ratio: 1;
}

.portrait-frame::before {
  position: absolute;
  z-index: 0;
  inset: -20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.portrait-crop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.portrait-crop::after {
  position: absolute;
  z-index: 3;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.portrait-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-orbit {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(79, 195, 247, 0.82);
  border-right: 1px solid rgba(79, 195, 247, 0.82);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -12px;
}

.orbit-two {
  inset: 12px;
  border-color: rgba(177, 147, 106, 0.72);
}

.profile-details {
  display: grid;
  gap: 17px;
}

.profile-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.detail-label {
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-value {
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.5;
}

.hero-social-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-social-proof > div {
  padding: 26px 22px;
  text-align: center;
}

.hero-social-proof > div + div {
  border-left: 1px solid var(--line);
}

.metric-number {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.metric-estimate {
  opacity: 0.58;
}

.section {
  padding: 80px 0;
}

.section-title {
  max-width: 760px;
  margin-top: 13px;
  font-size: clamp(2.35rem, 4.3vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-intro {
  max-width: 420px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.about-section .two-column,
.systems-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(54px, 7vw, 90px);
  align-items: start;
}

.about-section p,
.section-copy {
  max-width: 700px;
  margin-top: 20px;
  color: var(--text-soft);
}

.about-section .section-lede {
  margin-top: 26px;
  color: var(--text);
  font-size: 1.08rem;
}

.about-panel,
.systems-panel {
  padding: 32px;
}

.panel-heading {
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-list {
  margin-top: 20px;
  list-style: none;
}

.value-list li {
  display: flex;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.value-list li:last-child {
  padding-bottom: 0;
}

.value-number,
.case-number {
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
}

.value-list h3 {
  font-size: 0.96rem;
  line-height: 1.4;
}

.value-list p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.experience-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.timeline {
  margin-top: 54px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.timeline-year {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-tenure {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.role-top h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.company {
  display: block;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.impact-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.impact-list li {
  position: relative;
  padding-left: 22px;
}

.impact-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.impact-list strong {
  color: var(--text);
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.role-list span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.experience-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.experience-link-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.experience-link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.experience-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.earlier-experience {
  padding-top: 62px;
}

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

.earlier-grid article {
  padding: 25px 22px;
}

.earlier-grid article + article {
  border-left: 1px solid var(--line);
}

.earlier-grid span,
.delivery-grid span {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.earlier-grid h3 {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.earlier-grid p {
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.77rem;
  line-height: 1.65;
}

.case-study-list {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 90px);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.case-study-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.case-number {
  display: block;
  font-size: 1.1rem;
}

.case-study-heading .project-type {
  margin-top: 22px;
}

.case-study-heading h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.case-study-body {
  display: grid;
  gap: 28px;
}

.case-study-body h4,
.capability-groups h3 {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-body p {
  margin-top: 8px;
  color: var(--text-soft);
}

.evidence-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-row > div {
  padding: 18px 14px;
}

.evidence-row > div + div {
  border-left: 1px solid var(--line);
}

.evidence-row dt {
  color: var(--accent);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-row dd {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 0.71rem;
  line-height: 1.5;
}

.selected-delivery {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin-top: 76px;
}

.selected-delivery > div:first-child h3 {
  max-width: 280px;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.12;
}

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

.delivery-grid article {
  padding: 25px 20px;
}

.delivery-grid article + article {
  border-left: 1px solid var(--line);
}

.delivery-grid h4 {
  margin-top: 11px;
  font-size: 0.98rem;
}

.delivery-grid p {
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.systems-section {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.capability-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  margin-top: 38px;
}

.capability-groups > div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.capability-groups p {
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.contact-section {
  padding-bottom: 112px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 20%, rgba(79, 195, 247, 0.15), transparent 24rem),
    linear-gradient(140deg, var(--panel-strong), var(--bg-soft));
}

.contact-panel .section-title {
  max-width: 890px;
}

.contact-panel p {
  max-width: 700px;
  margin-top: 21px;
  color: var(--text-soft);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-text {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.copyright,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-section .two-column,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-social-proof {
    margin-top: 12px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .timeline-item {
    grid-template-columns: 150px 1fr;
    gap: 28px;
  }

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

  .earlier-grid article:nth-child(3),
  .earlier-grid article:nth-child(4),
  .delivery-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .earlier-grid article:nth-child(3),
  .delivery-grid article:nth-child(3) {
    border-left: 0;
  }

  .selected-delivery {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 36px, var(--max-width));
  }

  .site-brand strong {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: calc(var(--header-height) + 10px);
    right: 18px;
    left: 18px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: #102733;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav .nav-link {
    padding: 11px 12px;
    border-radius: 9px;
    font-size: 0.86rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link[aria-current="true"] {
    background: var(--accent-soft);
  }

  .nav-cta {
    border: 0;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-social-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-social-proof > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-social-proof > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 56px 0;
  }

  .timeline-item,
  .case-study {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .timeline-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .case-study-heading {
    position: static;
  }

  .evidence-row {
    grid-template-columns: 1fr;
  }

  .evidence-row > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .profile-header {
    flex-direction: column;
  }

  .profile-details > div {
    grid-template-columns: 76px 1fr;
  }

  .experience-links,
  .earlier-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .earlier-grid article + article,
  .delivery-grid article + article,
  .earlier-grid article:nth-child(3),
  .earlier-grid article:nth-child(4),
  .delivery-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-content {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: white;
    color: #111;
  }

  body::before,
  .site-header,
  .hero-panel,
  .hero-actions,
  .experience-links,
  .contact-section,
  .site-footer {
    display: none;
  }

  .hero,
  .section {
    padding: 28px 0;
  }

  .hero-grid,
  .about-section .two-column,
  .systems-grid,
  .timeline-item,
  .case-study {
    display: block;
  }

  .hero-social-proof,
  .earlier-grid,
  .delivery-grid,
  .evidence-row {
    border-color: #ccc;
  }

  p,
  .hero-text,
  .section-intro,
  .impact-list,
  .company,
  .timeline-tenure,
  .case-study-body p,
  .capability-groups p {
    color: #333;
  }
}
