:root {
  --ink: #171717;
  --ink-soft: #3f3a34;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --line: #ddd5c8;
  --navy: #171717;
  --navy-soft: #20201f;
  --green: #2fd17c;
  --green-bright: #2fd17c;
  --green-deep: #0d8a55;
  --blue: #2582f5;
  --coral: #f06b4f;
  --amber: #f4b742;
  --violet: #6f5cff;
  --shadow: 0 24px 80px rgba(23, 23, 23, 0.18);
  --max: 1280px;
  --header: 76px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  background: var(--paper-strong);
  padding: 0.7rem 0.9rem;
  transition: transform 128ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto auto;
  gap: 0.85rem;
  align-items: center;
  min-height: var(--header);
  padding-block: 0.75rem;
  padding-inline: max(calc((100vw - var(--max)) / 2), calc(clamp(2rem, 7vw, 6rem) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(17, 17, 17, 0.78);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: minmax(9rem, 13.5rem);
  align-items: center;
  min-width: 0;
}

.brand-logo-shell {
  display: grid;
  align-items: center;
  width: min(13.5rem, 42vw);
  min-height: 3.15rem;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.97rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.25;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.2vw, 1.65rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 0.3rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 144ms ease;
}

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

.header-cta,
.button,
.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.82rem 1rem;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 128ms ease,
    background-color 128ms ease,
    border-color 128ms ease,
    color 128ms ease;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 2.35rem);
  min-height: 2.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-option {
  min-height: 2.55rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 860;
}

.lang-option.is-active {
  background: #fff;
  color: #141414;
}

.header-cta {
  background: #fff;
  color: #141414;
  font-size: 0.88rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

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

.button.primary {
  background: var(--green);
  color: #092013;
  box-shadow: 0 18px 48px rgba(47, 209, 124, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 144ms ease,
    opacity 144ms ease;
}

.menu-icon::before {
  transform: translateY(-0.42rem);
}

.menu-icon::after {
  transform: translateY(0.32rem);
}

.menu-open .menu-icon {
  transform: rotate(45deg);
}

.menu-open .menu-icon::before {
  opacity: 0;
}

.menu-open .menu-icon::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #10100f;
}

#signal-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 14, 13, 0.84) 0%, rgba(14, 14, 13, 0.68) 38%, rgba(14, 14, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(14, 14, 13, 0.04), rgba(14, 14, 13, 0.48));
}

.hero-content {
  --hero-text-width: min(42rem, 52vw);
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.6rem;
  min-height: 100vh;
  min-height: 100svh;
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding-block: var(--header);
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: var(--hero-text-width);
  margin: 0;
  font-size: clamp(2.3rem, 6.08vw, 5.74rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: var(--hero-text-width);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

@media (min-width: 961px) {
  .hero h1 {
    font-size: clamp(2.07rem, 5.47vw, 5.17rem);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}


.intro-band {
  margin-top: -1px;
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.section,
.intro-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro-grid p:not(.section-kicker),
.section-heading p,
.contact-copy p {
  max-width: 44rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.section-heading {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p {
  max-width: none;
}

.section-heading.compact {
  max-width: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-column: span 2;
  gap: 1rem;
  min-height: 280px;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 36px rgba(23, 23, 23, 0.07);
  cursor: pointer;
  transition:
    transform 128ms ease,
    border-color 128ms ease,
    box-shadow 128ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(13, 138, 85, 0.35);
  box-shadow: 0 22px 48px rgba(23, 23, 23, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.service-card-wide {
  grid-column: span 4;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(47, 209, 124, 0.14), transparent 42%),
    var(--paper-strong);
}

.service-card h3,
.method-list h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-card p,
.method-list p {
  margin: 0;
  color: var(--ink-soft);
}

.service-icon {
  position: relative;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background: #fff;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-icon-build::before {
  width: 1.7rem;
  height: 1.14rem;
  border: 2px solid var(--blue);
  border-top-width: 0.45rem;
}

.service-icon-build::after {
  width: 0.72rem;
  height: 2px;
  background: var(--blue);
  transform: translateY(0.9rem);
}

.service-icon-audit::before {
  width: 1.34rem;
  height: 1.34rem;
  border: 2px solid var(--green-deep);
  border-radius: 50%;
}

.service-icon-audit::after {
  width: 0.72rem;
  height: 2px;
  background: var(--green-deep);
  transform: translate(0.72rem, 0.72rem) rotate(45deg);
}

.service-icon-speed::before {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid var(--coral);
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}

.service-icon-speed::after {
  width: 0.1rem;
  height: 0.9rem;
  background: var(--coral);
  transform: rotate(38deg);
  transform-origin: bottom;
}

.service-icon-support::before {
  width: 1.55rem;
  height: 1.55rem;
  border: 2px solid var(--violet);
  border-radius: 50%;
}

.service-icon-support::after {
  width: 0.68rem;
  height: 0.68rem;
  border: 2px solid var(--violet);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.service-icon-consult::before {
  width: 1.7rem;
  height: 1.15rem;
  border: 2px solid var(--amber);
  border-radius: 3px;
}

.service-icon-consult::after {
  width: 0.95rem;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0.36rem 0 var(--amber);
  transform: translateY(-0.18rem);
}

.service-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(17, 17, 17, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.service-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 31;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-content: start;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(920px, 100vw);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: -28px 0 70px rgba(23, 23, 23, 0.24);
  transform: translateX(100%);
  transition: transform 192ms ease;
}

.service-drawer-open {
  overflow: hidden;
}

.service-drawer-open .service-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.service-drawer-open .service-drawer {
  transform: translateX(0);
}

.service-drawer-close {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  grid-column: 1 / -1;
  justify-self: end;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  font-size: 2.1rem;
  font-weight: 650;
  line-height: 1;
}

.service-drawer-close:hover,
.service-drawer-close:focus-visible {
  background: var(--green-deep);
  outline: none;
}

.service-drawer-content {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.service-drawer-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.service-drawer-content p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-drawer-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.service-form {
  align-self: start;
  box-shadow: none;
}

.service-form input[readonly] {
  background: #f1ece3;
  color: var(--ink);
}

.diagnostic-section {
  color: #fff;
  background: #171717;
}

.diagnostic-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.diagnostic-copy {
  margin: 0;
}

.diagnostic-copy h2,
.diagnostic-copy p {
  color: #fff;
}

.diagnostic-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-weight: 830;
}

.signal-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 183, 66, 0.13), transparent 38%),
    #20201f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.signal-panel-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.signal-panel-header strong {
  color: var(--coral);
}

.score-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(120px, 0.8fr) 2.4rem;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.score-row span {
  min-width: 0;
}

meter {
  width: 100%;
  height: 0.7rem;
}

meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

meter::-webkit-meter-optimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-even-less-good-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--green));
}

.finding-list {
  margin-top: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.finding-list p {
  margin: 0 0 0.65rem;
  color: #fff;
  font-weight: 820;
}

.finding-list ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.method-section {
  background: var(--paper-strong);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-list li {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 290px;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  background: var(--paper-strong);
}

.method-list span {
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(244, 183, 66, 0.13), transparent 26%),
    var(--paper);
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-note {
  display: grid;
  gap: 0.35rem;
  max-width: 34rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 22px 55px rgba(23, 23, 23, 0.1);
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc6b7;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 0.88rem 0.9rem;
  outline: none;
  transition:
    border-color 128ms ease,
    box-shadow 128ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(47, 209, 124, 0.18);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green-deep);
  font-weight: 760;
}

.form-status[data-state="pending"] {
  color: var(--ink-soft);
}

.form-status[data-state="error"] {
  color: var(--coral);
}

.form-status[data-state="success"] {
  color: var(--green-deep);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #171717;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.65rem, 4vw, 2.4rem) 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
  width: fit-content;
}

.footer-brand .brand-logo-shell {
  width: min(12.5rem, 48vw);
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 720;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
}

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

.footer-meta {
  display: grid;
  gap: 0.25rem;
  justify-items: end;
  text-align: right;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 17, 17, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header)));
    transition:
      opacity 144ms ease,
      transform 144ms ease;
  }

  .site-nav a {
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .header-cta {
    display: none;
  }

  .intro-grid,
  .diagnostic-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: span 3;
  }

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

@media (min-width: 961px) and (max-width: 1400px) {
  .hero-content {
    --hero-text-width: min(31rem, 42vw);
  }

}

@media (min-width: 681px) and (max-width: 960px) {
  .hero-content {
    --hero-text-width: min(25.5rem, 52vw);
    width: min(var(--max), calc(100% - 3.5rem));
  }

}

@media (max-width: 680px) {
  :root {
    --header: 70px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    grid-template-columns: minmax(8.6rem, 11.5rem);
  }

  .brand-logo-shell {
    width: min(11.5rem, 52vw);
    min-height: 2.7rem;
  }

  .menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-text span {
    white-space: normal;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(14, 14, 13, 0.78) 0%, rgba(14, 14, 13, 0.66) 58%, rgba(14, 14, 13, 0.34) 100%),
      linear-gradient(90deg, rgba(14, 14, 13, 0.78), rgba(14, 14, 13, 0.16));
  }

  .hero h1 {
    max-width: var(--hero-text-width);
    font-size: clamp(2.03rem, 12.15vw, 3.11rem);
  }

  .hero-content {
    --hero-text-width: 100%;
    align-content: center;
    width: min(100% - 2rem, var(--max));
  }

  .hero-actions .button {
    width: 100%;
  }


  .service-drawer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .score-row {
    grid-template-columns: 1fr 2.2rem;
  }

  .score-row meter {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .method-list li {
    min-height: 0;
  }

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

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

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
