/* Fonts are loaded via <link> in the document head — no @import here (it would
   double-fetch the stylesheet and block rendering). */

:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --bg-soft: #101315;
  --ink: #f2f4f1;
  --ink-muted: #adb4ad;
  --ink-dim: #6e7570;
  --line: #23292c;
  --line-bright: #3b4448;
  --accent: #c6f24e;
  --accent-hover: #d7ff64;
  --header-height: 94px;
  --sans: "Geist", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", Georgia, serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --grid-gap: clamp(1.25rem, 2.25vw, 2.25rem);
  --max: 1440px;
  --section-space: clamp(5rem, 8vw, 7.5rem);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .025) 1px, transparent 0);
  background-size: 32px 32px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  background: var(--accent);
  color: var(--bg);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 14, .9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  transform: translateY(0);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  will-change: transform;
  z-index: 100;
}

.site-header.is-compact {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  transform: translateY(calc(-1 * var(--status-height, 29px)));
}

.site-header.is-compact:focus-within,
.site-header.menu-open {
  transform: translateY(0);
}

.status-line {
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: .42rem var(--gutter);
}

.status-line span:first-child {
  align-items: center;
  display: flex;
  gap: .6rem;
}

.status-line i {
  animation: pulse 2.5s ease-out infinite;
  background: var(--accent);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 242, 78, .45); }
  65% { box-shadow: 0 0 0 8px rgba(198, 242, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 242, 78, 0); }
}

.nav {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 64px;
  padding: .75rem var(--gutter);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 600;
  gap: .7rem;
  justify-self: start;
  letter-spacing: -.02em;
}

.brand em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
  margin-left: .18rem;
}

.brand-mark {
  color: var(--accent);
  height: 29px;
  width: 29px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.nav-links a,
.support-link,
.client-link {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .05em;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.support-link:hover,
.support-link:focus-visible,
.client-link:hover,
.client-link:focus-visible {
  color: var(--ink);
}

.utility-links {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-self: end;
}

.client-link {
  padding: .7rem 0;
}

.support-link {
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex;
  gap: .75rem;
  justify-self: end;
  padding: .7rem 1rem;
  transition: background .2s ease, transform .2s var(--ease);
}

.support-link:hover,
.support-link:focus-visible {
  background: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-2px);
}

.nav-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  inset: 0;
  position: absolute;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  filter: saturate(.78) contrast(1.04) brightness(.78);
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  width: 100%;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 8, 9, .99) 0%, rgba(6, 8, 9, .94) 24%, rgba(6, 8, 9, .7) 42%, rgba(6, 8, 9, .2) 66%, rgba(6, 8, 9, .26) 100%),
    linear-gradient(0deg, rgba(6, 8, 9, .94) 0%, rgba(6, 8, 9, .08) 56%);
}

.hero-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .6) 55%, transparent 90%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(3.75rem, 9vh, 7rem) var(--gutter) 1.6rem;
  position: relative;
  z-index: 2;
}

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

.hero-copy > * {
  animation: hero-in .75s var(--ease) both;
}

.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.kicker {
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span,
.kicker {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(3.15rem, 6.35vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
  margin-top: 1.4rem;
  max-width: 10.4ch;
}

.hero h1 em {
  color: var(--accent);
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
}

.hero-lead {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  margin-top: 1.8rem;
  max-width: 60ch;
}

@media (min-width: 921px) {
  .hero-media img {
    height: 108%;
    object-position: center 46%;
    transform: scale(1.02);
  }

  .hero-inner {
    padding-top: clamp(4.25rem, 7vh, 5.75rem);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: var(--mono);
  font-size: .75rem;
  gap: 1.4rem;
  justify-content: space-between;
  letter-spacing: .045em;
  min-height: 50px;
  padding: .8rem 1.05rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s var(--ease);
}

.button span,
.text-link span {
  transition: transform .2s var(--ease);
}

.button:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

.button-primary {
  background: var(--accent);
  color: var(--bg);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.button-secondary {
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 14, .64);
  border-color: rgba(255, 255, 255, .28);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: var(--ink-muted);
  transform: translateY(-2px);
}

/* Wraps instead of forcing three max-content columns: at 721-870px the third
   item used to run past the hero and get silently clipped by its overflow. */
.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem clamp(1.5rem, 4vw, 4rem);
  padding-top: 1.15rem;
}

.hero-proof span {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
}

.hero-proof b {
  color: var(--ink);
  font-weight: 500;
  margin-right: .45rem;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: var(--section-space) var(--gutter);
}

.section-heading {
  display: grid;
  column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

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

.section-heading > p:last-child {
  grid-column: 8 / -1;
}

.section-heading h2,
.human-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.human-copy h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  line-height: .98;
}

.section-heading > p:last-child,
.human-copy > p:not(.kicker),
.contact-copy > p:not(.kicker) {
  align-self: end;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
}

.service-paths {
  border-top: 1px solid var(--line-bright);
}

.service-path {
  display: grid;
  column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
  position: relative;
  row-gap: 1.4rem;
}

.service-path + .service-path {
  border-top: 1px solid var(--line);
}

.service-path::after {
  background: var(--accent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
  width: 100%;
}

.service-path:hover::after {
  transform: scaleX(1);
}

.path-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: .7rem;
  grid-column: 1 / 3;
  grid-row: 1;
  letter-spacing: .12em;
  padding-top: .4rem;
}

.path-content {
  display: contents;
}

.path-content h3 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 400;
  grid-column: 3 / 9;
  grid-row: 1;
  letter-spacing: -.045em;
  line-height: .98;
}

.path-content > p {
  color: var(--ink-muted);
  grid-column: 3 / 9;
  grid-row: 2;
  line-height: 1.6;
  max-width: 48ch;
}

.path-content ul {
  border-top: 1px solid var(--line);
  grid-column: 9 / -1;
  grid-row: 1 / span 3;
  list-style: none;
}

.path-content .text-link {
  grid-column: 3 / 9;
  grid-row: 3;
}

.path-content li {
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: .9rem;
  padding: .8rem 0;
}

.path-content li::before {
  color: var(--accent);
  content: "→";
  margin-right: .8rem;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: .76rem;
  gap: 1rem;
  justify-self: start;
  letter-spacing: .04em;
  padding-bottom: .35rem;
  position: relative;
}

.text-link::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .25s var(--ease);
  width: 100%;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.proof-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.proof-band-inner {
  column-gap: var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 var(--gutter);
}

.proof-band-inner > div {
  padding: clamp(1.75rem, 3.25vw, 2.75rem) 0;
  position: relative;
}

.proof-band-inner > div:nth-child(1) {
  grid-column: 1 / 5;
}

.proof-band-inner > div:nth-child(2) {
  grid-column: 5 / 9;
}

.proof-band-inner > div:nth-child(3) {
  grid-column: 9 / -1;
}

.proof-band-inner > div:nth-child(2)::before,
.proof-band-inner > div:nth-child(3)::before {
  background: var(--line);
  bottom: clamp(1.75rem, 3.25vw, 2.75rem);
  content: "";
  left: calc(var(--grid-gap) / -2);
  position: absolute;
  top: clamp(1.75rem, 3.25vw, 2.75rem);
  width: 1px;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -.03em;
}

.proof-band span {
  color: var(--ink-dim);
  font-size: .9rem;
  line-height: 1.5;
  margin-top: .45rem;
  max-width: 31ch;
}

.human-proof {
  align-items: center;
  display: grid;
  column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.human-image {
  grid-column: 1 / 7;
  min-height: clamp(500px, 38vw, 560px);
  overflow: hidden;
  position: relative;
}

.human-image::after {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .72));
  content: "";
  inset: 0;
  position: absolute;
}

.human-image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform .8s var(--ease);
  width: 100%;
}

.human-image:hover img {
  transform: scale(1.035);
}

.human-image span {
  bottom: 1rem;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: .65rem;
  left: 1rem;
  letter-spacing: .08em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.human-copy .kicker,
.contact-copy .kicker {
  margin-bottom: 1.5rem;
}

.human-copy {
  grid-column: 8 / -1;
}

.human-copy > p:not(.kicker) {
  margin-top: 1.75rem;
}

.human-copy .text-link {
  margin-top: 1.75rem;
}

.contact {
  border-top: 1px solid var(--line);
  display: grid;
  column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.contact-copy {
  grid-column: 1 / 6;
}

.contact-form {
  grid-column: 7 / -1;
}

.contact-copy > p:not(.kicker) {
  margin-top: 1.7rem;
}

.contact-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: .75rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.contact-details span {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: .7rem;
}

.contact-details b {
  color: var(--ink);
  display: inline-block;
  font-weight: 500;
  width: 6rem;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-form label {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.2rem;
}

.contact-form label > span {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
}

.field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line-bright);
  border-radius: 0;
  outline: none;
  padding: .9rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198, 242, 78, .08);
}

.submit-button {
  border: 0;
  margin-top: .25rem;
  min-width: 230px;
}

.form-note,
.form-status {
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: .64rem;
  margin-top: .8rem;
}

.form-status {
  color: var(--accent);
}

.form-status[hidden] {
  display: none;
}

.footer {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  padding: 2rem var(--gutter) 3rem;
}

.footer-brand {
  grid-column: 1 / 3;
}

.footer > p:not(.footer-meta) {
  grid-column: 4 / 9;
}

.footer p {
  color: var(--ink-dim);
  font-size: .78rem;
}

.footer-meta {
  font-family: var(--mono);
  font-size: .65rem !important;
  grid-column: 10 / -1;
  justify-self: end;
  text-align: right;
}

/* Motion is enabled only after home.js confirms IntersectionObserver support.
   If that script fails, content remains visible by default. */
.reveal {
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
}

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

@media (max-width: 920px) {
  :root {
    --header-height: 96px;
  }

  .nav {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .utility-links {
    display: none;
  }

  .nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line-bright);
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .nav-toggle span {
    background: var(--ink);
    height: 1px;
    transition: transform .25s var(--ease);
    width: 18px;
  }

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

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

  .mobile-menu {
    border-top: 1px solid var(--line);
    padding: 0 var(--gutter) 1rem;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    color: var(--ink-muted);
    font-family: var(--mono);
    font-size: .76rem;
    padding: .9rem 0;
  }

  .mobile-menu .mobile-support {
    background: var(--accent);
    color: var(--bg);
    margin-top: 1rem;
    padding: .9rem 1rem;
    text-align: center;
  }

  .section-heading,
  .service-path,
  .human-proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-heading > p:last-child,
  .path-number,
  .human-image,
  .human-copy,
  .contact-copy,
  .contact-form {
    grid-column: auto;
  }

  .path-number {
    grid-row: auto;
  }

  .path-content {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .path-content h3,
  .path-content > p,
  .path-content ul,
  .path-content .text-link {
    grid-column: 1;
    grid-row: auto;
  }

  .human-proof,
  .contact {
    row-gap: clamp(2.5rem, 7vw, 4rem);
  }

  .human-image {
    min-height: min(62vw, 520px);
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: clamp(1.5rem, 6.5vw, 1.9rem);
    --section-space: clamp(4.25rem, 17vw, 5rem);
  }

  .status-line span:last-child {
    display: none;
  }

  .nav {
    gap: .75rem;
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - var(--header-height));
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 8, 9, .92) 0%, rgba(6, 8, 9, .68) 58%, rgba(6, 8, 9, .42) 100%),
      linear-gradient(0deg, rgba(6, 8, 9, .94) 0%, rgba(6, 8, 9, .28) 72%);
  }

  .hero-inner {
    align-items: center;
    padding-top: clamp(3rem, 8vh, 4.5rem);
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
    max-width: 36rem;
    width: 100%;
  }

  .eyebrow { justify-content: center; }

  .hero h1 {
    font-size: clamp(2.8rem, 13.2vw, 3.95rem);
    line-height: .94;
    margin-inline: auto;
    max-width: 9.4ch;
  }

  .hero-lead {
    font-size: 1rem;
    margin-inline: auto;
    max-width: 34ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-inline: auto;
    max-width: 340px;
  }

  .hero-proof {
    flex-direction: column;
    gap: .55rem;
    margin-inline: auto;
    margin-top: 2.4rem;
    max-width: 340px;
    width: 100%;
  }

  .hero-proof span {
    display: flex;
    justify-content: space-between;
  }

  .section-heading,
  .service-path,
  .human-proof,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-heading > p:last-child,
  .path-number,
  .human-image,
  .human-copy,
  .contact-copy,
  .contact-form,
  .footer-brand,
  .footer > p:not(.footer-meta),
  .footer-meta {
    grid-column: auto;
  }

  /* Left-aligned to match the service paths, "why", and contact blocks below —
     the hero stays centred, everything else reads as one column. */
  .section-heading {
    gap: 1.3rem;
  }

  .service-path {
    gap: 1.5rem;
  }

  .path-number {
    grid-row: auto;
  }

  .path-content {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .path-content h3,
  .path-content > p,
  .path-content ul,
  .path-content .text-link {
    grid-column: 1;
    grid-row: auto;
  }

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

  .proof-band-inner > div:nth-child(1),
  .proof-band-inner > div:nth-child(2),
  .proof-band-inner > div:nth-child(3) {
    grid-column: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .proof-band-inner > div:nth-child(2)::before,
  .proof-band-inner > div:nth-child(3)::before {
    display: none;
  }

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

  .human-proof {
    gap: 2.5rem;
  }

  .human-image {
    min-height: min(86vw, 340px);
  }

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

  .submit-button {
    min-width: 0;
    width: 100%;
  }

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

  .footer {
    row-gap: 1.25rem;
  }
}

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

  .reveal-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-header.is-compact {
    transform: none;
  }
}
