:root {
  --ink: #080b10;
  --ink-2: #101722;
  --panel: #151c26;
  --panel-2: #1c2530;
  --paper: #f5efe3;
  --muted: #a9b5be;
  --steel: #718290;
  --amber: #ffb23e;
  --amber-2: #f15f2c;
  --cyan: #38d6d4;
  --magenta: #d84bc8;
  --green: #9fd66a;
  --line: rgba(245, 239, 227, 0.14);
  --line-strong: rgba(245, 239, 227, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
  background: rgba(8, 11, 16, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  font-size: 17px;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 178, 62, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 178, 62, 0.26), transparent 48%),
    linear-gradient(315deg, rgba(56, 214, 212, 0.22), transparent 52%),
    #10151d;
  box-shadow: 0 0 24px rgba(255, 178, 62, 0.26);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--line-strong);
}

.brand-mark::before {
  left: 7px;
  right: 7px;
  top: 15px;
  height: 1px;
}

.brand-mark::after {
  left: 15px;
  top: 7px;
  bottom: 7px;
  width: 1px;
}

.brand-mark span {
  inset: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--amber), var(--cyan));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(245, 239, 227, 0.12);
  border-radius: 8px;
  padding: 5px;
  background: rgba(8, 11, 16, 0.35);
}

.site-nav a,
.nav-action,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 760;
  line-height: 1.1;
}

.site-nav a {
  padding: 0 14px;
  color: rgba(245, 239, 227, 0.78);
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(245, 239, 227, 0.08);
  color: var(--paper);
}

.nav-action {
  border: 1px solid rgba(255, 178, 62, 0.42);
  padding: 0 16px;
  color: var(--paper);
  background: rgba(255, 178, 62, 0.12);
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: rgba(255, 178, 62, 0.8);
  background: rgba(255, 178, 62, 0.2);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 104px 24px 64px;
  isolation: isolate;
}

.hero-media,
.hero-shade,
.ember-field {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.98) 0%, rgba(8, 11, 16, 0.86) 28%, rgba(8, 11, 16, 0.26) 65%, rgba(8, 11, 16, 0.62) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.55), transparent 36%, rgba(8, 11, 16, 0.76) 100%);
}

.hero-media {
  z-index: -3;
}

.ember-field {
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fffaf0;
  font-size: 86px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(245, 239, 227, 0.88);
  font-size: 22px;
  line-height: 1.48;
}

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

.button {
  border: 1px solid transparent;
  padding: 0 18px;
  min-width: 160px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #120c08;
  box-shadow: 0 16px 34px rgba(241, 95, 44, 0.22);
}

.button-secondary,
.button-ghost {
  border-color: rgba(245, 239, 227, 0.28);
  background: rgba(245, 239, 227, 0.07);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(56, 214, 212, 0.72);
  background: rgba(56, 214, 212, 0.1);
}

.forge-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 12px;
  margin: 44px 0 0;
  padding: 0;
}

.forge-stats div {
  border-left: 2px solid rgba(255, 178, 62, 0.72);
  padding: 4px 14px;
}

.forge-stats dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.forge-stats dd {
  margin: 3px 0 0;
  color: var(--paper);
  font-weight: 760;
}

.signal-strip {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 28, 38, 0.98), rgba(14, 20, 28, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 6px;
  color: #fff8e8;
  font-size: 16px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 24px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section-heading h2 {
  grid-column: 1;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 2;
}

.section-heading h2,
.method-copy h2,
.contact h2 {
  margin-bottom: 0;
  color: #fff8ec;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.method-copy p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.project-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card,
.method-step {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 156px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--magenta));
}

.project-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 178, 62, 0.12), rgba(56, 214, 212, 0.08) 42%, rgba(216, 75, 200, 0.07)),
    var(--panel-2);
}

.project-index,
.service-row span,
.method-step span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 42px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.project-card h3,
.service-row h3,
.method-step h3 {
  margin-bottom: 12px;
  color: #fff7e8;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: 0;
}

.project-card p,
.service-row p,
.method-step p {
  color: var(--muted);
}

.project-card ul {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(245, 239, 227, 0.88);
  list-style: none;
}

.project-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--cyan);
}

.lab-section {
  background:
    linear-gradient(180deg, rgba(255, 178, 62, 0.06), rgba(56, 214, 212, 0.035) 52%, transparent),
    #0b1017;
}

.lab-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(245, 239, 227, 0.07), rgba(245, 239, 227, 0.025)),
    rgba(15, 21, 30, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.lab-tab {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 0 18px;
  background: rgba(245, 239, 227, 0.02);
  color: rgba(245, 239, 227, 0.72);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.lab-tab:last-child {
  border-right: 0;
}

.lab-tab span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
}

.lab-tab:hover,
.lab-tab:focus-visible,
.lab-tab.is-active {
  background: rgba(255, 178, 62, 0.1);
  color: #fff8e8;
}

.lab-tab.is-active span {
  color: var(--amber);
}

.lab-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 480px;
}

.lab-visual {
  position: relative;
  min-height: 480px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 178, 62, 0.16), transparent 22%),
    radial-gradient(circle at 28% 30%, rgba(56, 214, 212, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(9, 14, 22, 0.96), rgba(18, 26, 36, 0.92));
}

.lab-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 239, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 227, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 58% 48%, #000 0%, transparent 74%);
}

.lab-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lab-panel {
  display: grid;
  align-content: center;
  padding: 42px;
}

.lab-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-panel h3 {
  margin-bottom: 14px;
  color: #fff8ec;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lab-panel p:not(.lab-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.lab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.lab-tags span {
  border: 1px solid rgba(56, 214, 212, 0.28);
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(56, 214, 212, 0.06);
  color: rgba(245, 239, 227, 0.88);
  font-size: 13px;
  font-weight: 760;
}

.lab-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.lab-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lab-metrics dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-metrics dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-weight: 760;
}

.capability-section {
  background: var(--ink);
}

.capability-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.045), rgba(245, 239, 227, 0.018)),
    var(--panel);
}

.capability-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.capability-card h3 {
  margin-bottom: 12px;
  color: #fff8ec;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.capability-card p {
  min-height: 132px;
  color: var(--muted);
}

.capability-bars {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.capability-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--amber), var(--cyan) var(--value), rgba(245, 239, 227, 0.1) var(--value)),
    rgba(245, 239, 227, 0.1);
}

.service-band {
  background:
    linear-gradient(180deg, rgba(56, 214, 212, 0.06), transparent 46%),
    #0d1219;
}

.service-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 160px minmax(220px, 0.62fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.service-row span {
  margin-bottom: 0;
  color: var(--green);
}

.service-row h3,
.service-row p {
  margin-bottom: 0;
}

.proof-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
}

.proof-copy {
  align-self: start;
}

.proof-copy h2 {
  margin-bottom: 18px;
  color: #fff8ec;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 178, 62, 0.08), rgba(56, 214, 212, 0.045)),
    var(--panel);
}

.package-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.package-topline span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.package-topline strong {
  color: #fff8ec;
  font-size: 22px;
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  border: 1px solid rgba(255, 178, 62, 0.24);
  border-radius: 6px;
  padding: 7px 10px;
  color: rgba(245, 239, 227, 0.86);
  font-size: 13px;
  font-weight: 760;
}

.method {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

.method-copy {
  align-self: start;
  position: sticky;
  top: 110px;
}

.method-copy p {
  margin-top: 22px;
}

.method-steps {
  display: grid;
  gap: 16px;
}

.method-step {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(56, 214, 212, 0.09), rgba(255, 178, 62, 0.05)),
    var(--panel);
}

.method-step span {
  margin-bottom: 28px;
  color: var(--cyan);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 98px 24px;
  isolation: isolate;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/myriad-forge-hero-v2.png");
  background-position: center 58%;
  background-size: cover;
  filter: saturate(0.95);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.94), rgba(8, 11, 16, 0.76)),
    linear-gradient(180deg, rgba(8, 11, 16, 0.92), rgba(8, 11, 16, 0.7));
}

.contact-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

.contact p {
  max-width: 640px;
  margin-bottom: 28px;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 24px 42px;
  color: var(--steel);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--paper);
  font-weight: 850;
}

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

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .nav-action {
    justify-self: end;
  }

  .hero {
    min-height: 78vh;
    padding-top: 142px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .signal-strip,
  .project-grid,
  .lab-stage,
  .capability-grid,
  .proof-section,
  .section-heading,
  .method,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading {
    align-items: start;
    gap: 18px;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:not(.eyebrow) {
    grid-column: auto;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .service-row {
    grid-template-columns: 120px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .lab-visual {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-width: 68px;
    padding: 0 11px;
    white-space: nowrap;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 76vh;
    padding: 140px 18px 48px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.98) 0%, rgba(8, 11, 16, 0.9) 48%, rgba(8, 11, 16, 0.44) 100%),
      linear-gradient(180deg, rgba(8, 11, 16, 0.65), transparent 45%, rgba(8, 11, 16, 0.82) 100%);
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .forge-stats {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .signal-strip {
    width: calc(100% - 28px);
    margin-top: -22px;
  }

  .signal-strip div {
    padding: 18px;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading h2,
  .method-copy h2,
  .contact h2 {
    font-size: 34px;
  }

  .project-card {
    min-height: 440px;
    padding: 24px 24px 152px;
  }

  .project-card ul {
    left: 24px;
    right: 24px;
  }

  .lab-controls {
    grid-template-columns: 1fr;
  }

  .lab-tab {
    min-height: 58px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lab-tab:last-child {
    border-bottom: 0;
  }

  .lab-visual {
    min-height: 300px;
  }

  .lab-panel {
    padding: 28px 22px;
  }

  .lab-panel h3 {
    font-size: 28px;
  }

  .lab-metrics {
    grid-template-columns: 1fr;
  }

  .capability-card p {
    min-height: auto;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-row p {
    grid-column: auto;
  }

  .method {
    padding-left: 18px;
    padding-right: 18px;
    gap: 28px;
  }

  .proof-section {
    padding-left: 18px;
    padding-right: 18px;
    gap: 28px;
  }

  .proof-copy h2 {
    font-size: 34px;
  }

  .package-topline {
    display: grid;
    gap: 4px;
  }

  .contact {
    padding: 78px 18px;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

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

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

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