@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #e9edeb;
  --muted: #9aa6a0;
  --faint: #69736e;
  --paper: #0b0e0c;
  --panel: #111613;
  --panel-2: #151b17;
  --line: #29312d;
  --line-bright: #3c4942;
  --signal: #8dfc64;
  --signal-dark: #183714;
  --warm: #f1e8d8;
  --alert: #ffb36b;
  --max-width: 1180px;
  --radius: 2px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(141, 252, 100, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 252, 100, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 74% 8%, rgba(141, 252, 100, 0.08), transparent 28rem);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #091007;
  background: var(--signal);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #081006;
  background: var(--signal);
  font-weight: 800;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(60, 73, 66, 0.72);
  background: rgba(11, 14, 12, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--signal);
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 11px 12px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--signal);
}

.nav-resume {
  margin-left: 8px;
  border: 1px solid var(--line-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-bright);
  color: var(--ink);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow,
.section-number,
.mono-label {
  margin: 0;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  padding: 92px 0 68px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -22rem;
  width: 44rem;
  height: 44rem;
  border: 1px solid rgba(141, 252, 100, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(141, 252, 100, 0.018), 0 0 0 180px rgba(141, 252, 100, 0.014);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 900px;
  margin: 22px 0 26px;
  font-size: clamp(3.25rem, 7.4vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero-copy h1 span,
.page-hero h1 span {
  color: var(--signal);
}

.hero-lede,
.page-lede {
  max-width: 760px;
  margin: 0;
  color: #b8c1bc;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid var(--line-bright);
  color: var(--ink);
  background: rgba(17, 22, 19, 0.72);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--signal);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--signal);
  color: #071006;
  background: var(--signal);
}

.button-primary:hover {
  color: var(--signal);
  background: transparent;
}

.button-arrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(141, 252, 100, 0.09);
}

.operations-panel {
  position: relative;
  border: 1px solid var(--line-bright);
  background: rgba(17, 22, 19, 0.82);
  box-shadow: var(--shadow);
}

.operations-panel::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(141, 252, 100, 0.09);
  content: "";
  pointer-events: none;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-status {
  color: var(--signal);
}

.signal-list {
  margin: 0;
  padding: 10px 20px 18px;
  list-style: none;
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.signal-row small {
  color: var(--faint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.signal-value {
  align-self: center;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(17, 22, 19, 0.58);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 154px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--warm);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-item span {
  display: block;
  max-width: 190px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: clamp(84px, 10vw, 132px) 0;
}

.section-compact {
  padding: 76px 0;
}

.section-border {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 850px;
  margin: -8px 0 0;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.section-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.capability-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 22, 19, 0.34);
  transition: background 180ms ease;
}

.capability-card:hover {
  background: rgba(21, 27, 23, 0.82);
}

.card-index {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.capability-card h3,
.result-card h3,
.path-card h3,
.value-card h3,
.project-card h3 {
  margin: 48px 0 14px;
  color: var(--warm);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.capability-card p,
.result-card p,
.path-card p,
.value-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
}

.results-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.result-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 4vw, 44px);
  background: var(--panel);
}

.result-card h3 {
  margin: 0;
}

.result-meta {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.path-card,
.value-card,
.project-card,
.contact-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line-bright);
  background: var(--panel);
}

.path-card h3,
.value-card h3,
.project-card h3 {
  margin-top: 22px;
}

.path-card .button {
  margin-top: 28px;
}

.cta-band {
  padding: clamp(76px, 9vw, 118px) 0;
  border-block: 1px solid var(--line-bright);
  background: var(--signal);
  color: #071006;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  align-items: end;
}

.cta-band .eyebrow {
  color: #183714;
}

.cta-band h2 {
  max-width: 800px;
  margin: 17px 0 0;
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.cta-band p {
  margin: 0 0 26px;
  font-weight: 600;
}

.cta-band .button {
  border-color: #071006;
  color: var(--signal);
  background: #071006;
}

.page-hero {
  padding: clamp(88px, 11vw, 150px) 0 clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 8vw, 110px);
}

.page-intro-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin: 0 0 24px;
  color: #b8c1bc;
  font-size: 18px;
}

.prose p:first-child {
  color: var(--warm);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.5;
}

.quote-block {
  margin: 50px 0 0;
  padding: 30px 0 30px 28px;
  border-left: 2px solid var(--signal);
  color: var(--warm);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.value-card {
  min-height: 280px;
}

.value-card:nth-child(3) {
  grid-column: 1 / -1;
}

.timeline {
  position: relative;
  margin-top: 12px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 159px;
  width: 1px;
  background: var(--line-bright);
  content: "";
}

.timeline-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 62px;
  padding: 0 0 62px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-period {
  padding-top: 5px;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-content {
  position: relative;
  max-width: 850px;
}

.timeline-content::before {
  position: absolute;
  top: 7px;
  left: -36px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
  content: "";
}

.timeline-content h2,
.timeline-content h3 {
  margin: 0;
  color: var(--warm);
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.timeline-company {
  margin: 6px 0 20px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.timeline-content ul,
.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-content li,
.detail-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 19px;
  color: var(--muted);
}

.timeline-content li::before,
.detail-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--signal);
  content: "";
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.skill-group {
  padding: 28px;
  background: var(--panel);
}

.skill-group h3 {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 17px;
}

.skill-group p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.work-stack {
  display: grid;
  gap: 28px;
}

.work-story {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  border: 1px solid var(--line-bright);
  background: var(--panel);
}

.work-story-aside {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-right: 1px solid var(--line);
  background: var(--panel-2);
}

.work-story-aside strong {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.work-story-aside .work-story-icon {
  display: block;
  width: clamp(48px, 5vw, 70px);
  color: var(--signal);
  letter-spacing: 0;
}

.work-story-aside .work-story-icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-story-aside span {
  color: var(--faint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-story-body {
  padding: clamp(32px, 5vw, 58px);
}

.work-story-body h2 {
  max-width: 740px;
  margin: 12px 0 20px;
  color: var(--warm);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.work-story-body p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.outcome-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome-line div {
  padding: 20px;
  background: var(--paper);
}

.outcome-line strong,
.outcome-line span {
  display: block;
}

.outcome-line strong {
  color: var(--warm);
  font-size: 15px;
}

.outcome-line span {
  margin-top: 5px;
  color: var(--faint);
  font-size: 12px;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag {
  padding: 6px 9px;
  border: 1px solid var(--line-bright);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-card {
  min-height: 360px;
}

.contact-card .mono-label {
  color: var(--muted);
}

.contact-card h2 {
  margin: 40px 0 16px;
  color: var(--warm);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.contact-card p {
  max-width: 520px;
  color: var(--muted);
}

.contact-card .button {
  margin-top: 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-detail {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 14px;
  color: var(--faint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--warm);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--signal);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-company {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-company img {
  width: 92px;
  height: auto;
  opacity: 0.52;
}

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

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

.not-found {
  display: grid;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .page-intro-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .operations-panel {
    max-width: 600px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .result-card {
    grid-template-columns: 110px 1fr;
  }

  .result-card p {
    grid-column: 2;
  }

  .work-story {
    grid-template-columns: 1fr;
  }

  .work-story-aside {
    min-height: auto;
    flex-direction: row;
    align-items: end;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--line-bright);
    background: var(--paper);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-resume {
    margin: 8px 0 0;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-copy h1,
  .page-hero h1 {
    letter-spacing: -0.065em;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading h2 {
    margin-top: 0;
  }

  .card-grid,
  .path-grid,
  .values-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(3) {
    grid-column: auto;
  }

  .capability-card {
    min-height: 260px;
  }

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

  .result-card p {
    grid-column: auto;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 34px;
  }

  .timeline-period {
    text-align: left;
  }

  .timeline-content::before {
    top: -29px;
    left: -33px;
  }

  .outcome-line,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

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

  .footer-company {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

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

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .work-story-aside {
    align-items: start;
  }

  .work-story-aside strong {
    font-size: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}
