:root {
  --bg: #071015;
  --bg-deep: #040a0d;
  --surface: #0c1a20;
  --surface-strong: #10242b;
  --surface-soft: #132b32;
  --text: #eaf5f4;
  --muted: #9eb6b6;
  --faint: #6f898a;
  --line: rgba(133, 188, 188, 0.18);
  --cyan: #39d5d0;
  --cyan-soft: rgba(57, 213, 208, 0.12);
  --lime: #b8e85a;
  --lime-soft: rgba(184, 232, 90, 0.12);
  --danger: #ff8f70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --shell: 1160px;
}

[data-theme="light"] {
  --bg: #f3f7f5;
  --bg-deep: #e7efec;
  --surface: #ffffff;
  --surface-strong: #e8f2ef;
  --surface-soft: #dceae6;
  --text: #0a2024;
  --muted: #4d6869;
  --faint: #6a8181;
  --line: rgba(26, 78, 79, 0.16);
  --cyan: #087f7c;
  --cyan-soft: rgba(8, 127, 124, 0.1);
  --lime: #5c7f0c;
  --lime-soft: rgba(92, 127, 12, 0.1);
  --danger: #a4442b;
  --shadow: 0 24px 60px rgba(35, 70, 68, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--bg-deep);
  background: var(--lime);
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #071015;
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--shell));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark,
.contact-mark {
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-weight: 900;
  letter-spacing: -0.07em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 30px rgba(57, 213, 208, 0.18);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.theme-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--cyan);
  background: var(--surface-strong);
}

.theme-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -6px -4px 0 -3px var(--cyan);
}

[data-theme="light"] .theme-icon {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}

.menu-toggle {
  display: none;
  gap: 5px;
}

.menu-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 30%, var(--cyan-soft), transparent 24%),
    linear-gradient(145deg, var(--bg-deep), var(--bg) 55%, var(--surface));
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 50%, #000);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--cyan) 35%, transparent);
  border-radius: 50%;
}

.hero-orbit::before {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
  content: "";
}

.hero-orbit-one {
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
}

.hero-orbit-one::before {
  top: 62%;
  left: 0;
}

.hero-orbit-two {
  right: 60px;
  bottom: -270px;
  width: 480px;
  height: 480px;
}

.hero-orbit-two::before {
  top: 8%;
  right: 22%;
}

.hero-shell {
  min-height: 700px;
  padding-block: 92px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 8vw, 100px);
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #041011;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 14px 34px rgba(57, 213, 208, 0.14);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.button-secondary:hover {
  border-color: var(--cyan);
  background: var(--surface-strong);
}

.signal-list {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--faint);
  list-style: none;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-panel {
  position: relative;
  min-height: 470px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(155deg, color-mix(in srgb, var(--surface-strong) 85%, transparent), color-mix(in srgb, var(--bg-deep) 92%, transparent));
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--cyan) 28%, transparent);
  border-radius: 50%;
  content: "";
}

.hero-panel::before {
  top: 42px;
  right: -125px;
  width: 330px;
  height: 330px;
}

.hero-panel::after {
  top: 88px;
  right: -79px;
  width: 238px;
  height: 238px;
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--faint);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.live-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.monogram {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  color: transparent;
  background: linear-gradient(135deg, var(--text), var(--cyan) 58%, var(--lime));
  background-clip: text;
  font-size: clamp(6.6rem, 13vw, 10rem);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.13em;
}

.panel-metrics {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.panel-metrics > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-metrics dt {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
}

.panel-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.proof-strip p,
.proof-strip span {
  margin: 0;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-strip p {
  color: var(--text);
}

.proof-strip span {
  color: var(--faint);
}

.section {
  padding-block: clamp(88px, 11vw, 145px);
}

.section-dark {
  background: var(--bg-deep);
}

.section-accent {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: 40px;
}

.section-heading .eyebrow,
.practice-intro .eyebrow,
.credentials-layout .eyebrow,
.contact-card .eyebrow {
  margin-bottom: 14px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p,
.practice-intro > p:last-child,
.credentials-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.project-card {
  position: relative;
  min-height: 480px;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

.project-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, var(--cyan-soft), transparent 68%);
  content: "";
}

.project-featured {
  grid-row: span 2;
  min-height: 978px;
  background:
    linear-gradient(160deg, transparent 48%, var(--cyan-soft)),
    var(--surface-strong);
}

.project-number {
  margin-bottom: 42px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.status {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 7px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-complete {
  border-color: color-mix(in srgb, var(--lime) 42%, transparent);
  color: var(--lime);
  background: var(--lime-soft);
}

.status-progress {
  border-color: color-mix(in srgb, var(--cyan) 42%, transparent);
  color: var(--cyan);
  background: var(--cyan-soft);
}

.project-kicker {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.project-card > p:not(.project-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-list {
  margin: 20px 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: color-mix(in srgb, var(--bg) 68%, transparent);
  font-size: 0.68rem;
  font-weight: 750;
}

.project-proof {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.project-proof span {
  color: var(--faint);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-proof strong {
  max-width: 600px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 10vw, 130px);
}

.practice-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.practice-intro h2 {
  margin-bottom: 26px;
}

.practice-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.practice-steps li {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.practice-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.practice-steps > li > span {
  padding-top: 3px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.practice-steps h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.practice-steps p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.toolkit-grid article {
  position: relative;
  min-height: 275px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.toolkit-index {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
}

.toolkit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.toolkit-grid p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
}

.credentials-layout h2 {
  margin-bottom: 24px;
}

.credentials-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.credentials-list li {
  min-height: 120px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.credentials-list strong {
  font-size: 0.95rem;
}

.credentials-list span {
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 20px;
  background: var(--bg-deep);
}

.contact-card {
  position: relative;
  padding: clamp(42px, 8vw, 94px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 20%, var(--cyan-soft), transparent 28%),
    linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
}

.contact-card::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid color-mix(in srgb, var(--cyan) 30%, transparent);
  border-radius: 50%;
  content: "";
}

.contact-mark {
  position: absolute;
  top: 38px;
  right: 42px;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  font-size: 1rem;
}

.contact-card h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.contact-card > p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-card .button {
  position: relative;
  z-index: 2;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

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

.footer-inner > div {
  display: grid;
  line-height: 1.4;
}

.footer-inner strong {
  font-size: 0.86rem;
}

.footer-inner span,
.footer-inner p {
  margin: 0;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 18px 20px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    box-shadow: var(--shadow);
  }

  .site-header[data-nav-open="true"] .primary-nav {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header[data-nav-open="true"] .menu-toggle span[aria-hidden="true"]:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header[data-nav-open="true"] .menu-toggle span[aria-hidden="true"]:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

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

  .hero-panel {
    min-height: 420px;
  }

  .proof-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .proof-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .section-heading,
  .practice-layout,
  .credentials-layout {
    grid-template-columns: 1fr;
  }

  .practice-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-shell {
    min-height: 68px;
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark,
  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-shell {
    min-height: auto;
    padding-block: 76px 62px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 390px;
    padding: 22px;
    border-radius: 22px;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .monogram {
    margin-top: 38px;
  }

  .panel-metrics {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    margin-bottom: 34px;
    gap: 22px;
  }

  .project-grid,
  .toolkit-grid,
  .credentials-list {
    grid-template-columns: 1fr;
  }

  .project-featured {
    grid-row: auto;
    min-height: 560px;
  }

  .project-card {
    min-height: 500px;
  }

  .practice-steps li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .toolkit-grid article {
    min-height: 245px;
  }

  .contact-mark {
    position: static;
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-grid,
  .hero-orbit,
  .theme-toggle,
  .menu-toggle,
  .hero-actions,
  .proof-strip,
  .site-footer {
    display: none !important;
  }

  body,
  .hero,
  .section,
  .section-dark,
  .section-accent {
    color: #111;
    background: #fff;
  }

  .hero-shell {
    min-height: 0;
    padding-block: 30px;
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding-block: 28px;
  }

  .project-card,
  .credentials-list li,
  .contact-card {
    break-inside: avoid;
    color: #111;
    background: #fff;
    box-shadow: none;
  }
}
