:root {
  color-scheme: light;
  --ink: #231f20;
  --ink-soft: #3d4245;
  --muted: #61717a;
  --paper: #f2f9fc;
  --paper-deep: #dff2f9;
  --surface: #ffffff;
  --line: rgba(35, 31, 32, 0.15);
  --line-strong: rgba(35, 31, 32, 0.32);
  --accent: #08a9e6;
  --accent-dark: #006d9f;
  --accent-soft: #9be7ff;
  --accent-pale: #e0f6ff;
  --meadow: #2f7d32;
  --meadow-dark: #175827;
  --meadow-pale: #e6f4df;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 26px 80px rgba(0, 92, 137, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 62%, var(--meadow) 100%);
  content: "";
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  line-height: 1.25;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 15;
  top: 3px;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(242, 249, 252, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled] {
  border-color: var(--line);
  background: rgba(242, 249, 252, 0.96);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.brand-logo {
  width: 190px;
  height: auto;
}

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

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

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 190px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-glow {
  position: absolute;
  top: 40px;
  right: -8vw;
  width: min(700px, 70vw);
  height: min(700px, 70vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(155, 231, 255, 0.78) 0 11%, transparent 11.5% 19%, rgba(47, 125, 50, 0.22) 19.5% 20%, transparent 20.5% 31%, rgba(8, 169, 230, 0.16) 31.5% 32%, transparent 32.5%),
    radial-gradient(circle, rgba(8, 169, 230, 0.18), transparent 66%);
  filter: blur(0.2px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(56px, 9vw, 132px);
}

.eyebrow,
.section-number,
.card-kicker {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.8vw, 7.2rem);
}

.hero h1 em {
  color: var(--accent);
  font-weight: inherit;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 15px 34px rgba(0, 109, 159, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 7px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(155, 231, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(155, 231, 255, 0.05), 0 0 0 80px rgba(47, 125, 50, 0.04);
  content: "";
}

.hero-card-photo {
  position: relative;
  z-index: 1;
  height: 245px;
  margin: -32px -32px 28px;
  overflow: hidden;
}

.hero-card-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(35, 31, 32, 0.84) 100%);
  content: "";
}

.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
}

.hero-card-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card .card-kicker {
  margin-bottom: 12px;
  color: var(--accent-soft);
}

.card-statement {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.principle-row {
  position: relative;
  z-index: 1;
  display: flex;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 18px;
}

.principle-row span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-footnote {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 88px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  gap: 32px;
}

.hero-footnote span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(92px, 11vw, 150px) 0;
}

.statement-section {
  background: var(--surface);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 48px;
}

.statement-grid h2 {
  max-width: 820px;
  margin-bottom: 38px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.statement-grid > div > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.72;
}

.section-number {
  margin-bottom: 28px;
}

.approach-section {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 68px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.section-heading h2,
.history-intro h2,
.company-heading h2,
.future-grid h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.8vw, 5.7rem);
}

.section-heading > p,
.history-intro > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.evidence-card {
  min-height: 320px;
  padding: 28px;
  background: var(--paper-deep);
  transition: background 180ms ease, transform 180ms ease;
}

.evidence-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(0, 92, 137, 0.11);
}

.evidence-number {
  display: block;
  margin-bottom: 92px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1rem;
}

.evidence-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.evidence-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.caveat {
  display: grid;
  align-items: start;
  max-width: 880px;
  margin-top: 44px;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.caveat > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: var(--display);
  font-style: italic;
}

.caveat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.caveat strong {
  color: var(--ink);
}

.history-section {
  background: var(--ink);
  color: #fff;
}

.history-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 145px);
}

.history-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.history-intro .section-number {
  color: var(--accent-soft);
}

.history-intro h2 {
  margin-bottom: 32px;
}

.history-intro > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 0 0 52px;
  grid-template-columns: 95px 1fr;
  gap: 34px;
}

.timeline li:not(:last-child)::before {
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 82px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: 7px;
  left: 78px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(155, 231, 255, 0.58);
  content: "";
}

.timeline time {
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: 1.25rem;
}

.timeline h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
}

.timeline p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  line-height: 1.75;
}

.timeline .timeline-continuity {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
}

.archive-identity {
  display: inline-flex;
  align-items: center;
  margin: 26px 0 0;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  gap: 14px;
}

.archive-identity img {
  width: 54px;
  height: 54px;
}

.archive-identity figcaption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-section {
  background: var(--surface);
}

.media-heading {
  margin-bottom: 38px;
}

.media-list {
  border-top: 1px solid var(--line-strong);
}

.media-item {
  display: grid;
  min-height: 124px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.5fr) 44px;
  gap: 24px;
  transition: padding 180ms ease, background 180ms ease;
}

.media-item:hover,
.media-item:focus-visible {
  padding-inline: 18px;
  background: var(--accent-pale);
  outline: none;
}

.media-source {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-item strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.media-arrow {
  justify-self: end;
  color: var(--accent);
  font-size: 1.3rem;
}

.future-section {
  background: linear-gradient(135deg, var(--accent-pale), var(--meadow-pale));
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(64px, 10vw, 140px);
}

.future-grid h2 {
  max-width: 700px;
}

.future-copy > p:first-child {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.46;
}

.research-note {
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.9rem;
}

.research-note strong {
  color: var(--accent-dark);
}

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

.company-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 24px;
}

.company-heading {
  padding-right: 30px;
}

.company-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.company-card .card-kicker {
  margin-bottom: 58px;
}

.company-card > p:not(.card-kicker, .founder-role) {
  color: var(--muted);
  line-height: 1.75;
}

.company-card .text-link {
  margin-top: auto;
}

.pl4tform-wordmark {
  margin-bottom: 28px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 850;
  letter-spacing: 0.06em;
}

.founder-monogram {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: var(--display);
  font-size: 1.2rem;
}

.founder-card h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.founder-role {
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-section {
  padding: clamp(110px, 14vw, 190px) 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, #087faf 52%, var(--meadow-dark) 100%);
  color: #fff;
  text-align: center;
}

.closing-inner {
  display: grid;
  justify-items: center;
}

.closing-inner .eyebrow {
  color: var(--accent-soft);
}

.closing-inner h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.closing-inner > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: #fff;
}

.offline-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--paper-deep);
}

.offline-card {
  width: min(100%, 560px);
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offline-card h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 10vw, 5.5rem);
}

.offline-card > p:not(.section-number) {
  margin-bottom: 30px;
  color: var(--muted);
}

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

.footer-brand .brand-copy span,
.site-footer p {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer p {
  margin: 0;
  font-size: 0.72rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-visible] {
  transform: translateY(0);
  opacity: 1;
}

:focus-visible {
  outline: 3px solid rgba(8, 169, 230, 0.48);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 170px;
  }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .history-layout,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .statement-grid,
  .section-heading,
  .history-layout,
  .future-grid {
    gap: 44px;
  }

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

  .history-intro {
    position: static;
  }

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

  .company-heading {
    grid-column: 1 / -1;
    margin-bottom: 28px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 30px, 1180px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-copy span {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: transparent;
    gap: 7px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

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

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 10px 15px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(242, 249, 252, 0.98);
    flex-direction: column;
    gap: 0;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 0;
    padding: 136px 0 32px;
  }

  .hero-glow {
    top: 20px;
    right: -55vw;
    width: 130vw;
    height: 130vw;
    opacity: 0.72;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-card {
    padding: 26px;
  }

  .hero-footnote {
    align-items: flex-start;
    margin-top: 58px;
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .history-intro h2,
  .company-heading h2,
  .future-grid h2,
  .statement-grid h2 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .evidence-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .evidence-card {
    min-height: 250px;
  }

  .evidence-number {
    margin-bottom: 54px;
  }

  .timeline li {
    min-height: 0;
    padding-bottom: 54px;
    grid-template-columns: 66px 1fr;
    gap: 24px;
  }

  .timeline li:not(:last-child)::before {
    left: 57px;
  }

  .timeline li::after {
    left: 53px;
  }

  .timeline time {
    font-size: 1rem;
  }

  .media-item {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 1fr 30px;
    gap: 10px 14px;
  }

  .media-source {
    grid-column: 1 / -1;
  }

  .media-item:hover,
  .media-item:focus-visible {
    padding-inline: 12px;
  }

  .company-heading {
    grid-column: auto;
  }

  .company-card {
    min-height: 420px;
  }

  .footer-grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
  }

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

@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;
  }
}
