@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  color-scheme: dark;
  --canvas: #0b0c0f;
  --paper: #161720;
  --surface: #1c1d26;
  --ink: #e8e6e1;
  --ink-soft: rgba(232, 230, 225, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --chain: #8ca5c0;
  --signal: #e06060;
  --signal-soft: rgba(224, 96, 96, 0.1);
  --watch: #c4b56a;
  --watch-soft: rgba(196, 181, 106, 0.1);
  --focus: #8ca5c0;
  --max-width: 1160px;
  --radius: 6px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  --font-ui: "Inter Tight", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Source Serif 4", Charter, "Iowan Old Style", serif;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

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

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

input,
button {
  font: inherit;
}

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

:where(a, button, input):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-block: 12px;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2 + 24px));
  background: rgba(11, 12, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fffdfa;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  color: rgba(255, 253, 250, 0.6);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover {
  color: #fffdfa;
}

.intro-band,
.section-grid,
.examples-section,
.trust-band,
.beta-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 24px 80px;
  background: #0b0c0f;
  color: #fffdfa;
}

.hero-copy {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.hero-scene {
  position: relative;
  width: 100%;
  max-width: 960px;
  min-height: 580px;
  margin-top: 56px;
}

.eyebrow,
.small-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 14px;
  color: var(--chain);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.examples-heading h2,
.trust-band h2,
.beta-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 5.8vw, 4.8rem);
  line-height: 1.06;
  color: #fffdfa;
}

.hero-lede {
  max-width: 600px;
  margin: 22px auto 0;
  color: rgba(255, 253, 250, 0.62);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero .button.primary {
  background: #fffdfa;
  color: #0b0c0f;
}

.hero .button.primary:hover {
  background: #eee9df;
}

.hero .button.secondary {
  background: transparent;
  border-color: rgba(255, 253, 250, 0.2);
  color: #fffdfa;
}

.hero .button.secondary:hover {
  border-color: rgba(255, 253, 250, 0.4);
  background: rgba(255, 253, 250, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

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

.button.primary:hover {
  background: #fffdfa;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.phone-mockup {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 280px;
  background: #1a1b1f;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.5);
}

.phone-notch {
  width: 90px;
  height: 26px;
  margin: 0 auto 8px;
  background: #0b0c0f;
  border-radius: 20px;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #f7f5ef;
}

.phone-camera {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.phone-camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-camera::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.scan-bracket {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.85);
  border-style: solid;
  z-index: 1;
}

.scan-bracket.tl { top: 28%; left: 18%; border-width: 2.5px 0 0 2.5px; border-radius: 4px 0 0 0; }
.scan-bracket.tr { top: 28%; right: 18%; border-width: 2.5px 2.5px 0 0; border-radius: 0 4px 0 0; }
.scan-bracket.bl { bottom: 16%; left: 18%; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 4px; }
.scan-bracket.br { bottom: 16%; right: 18%; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 4px 0; }

.scan-label {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

.scan-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6bbf6b;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.phone-result-area {
  padding: 0 14px 18px;
}

.phone-app-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #181922;
}

.phone-app-bar img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.phone-result-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(24, 25, 34, 0.12);
  border-left: 3px solid #263d55;
  border-radius: var(--radius);
  background: rgba(247, 245, 239, 0.6);
}

.phone-result-card img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  flex: 0 0 auto;
}

.phone-result-card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(24, 25, 34, 0.6);
}

.phone-result-card strong {
  display: block;
  margin-top: 2px;
  font-size: 0.95rem;
  color: #181922;
  line-height: 1.2;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fffdfa;
}

.float-icon {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
}

.float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.float-card span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 253, 250, 0.5);
  line-height: 1.3;
  margin-top: 2px;
}

.text-safe {
  color: #6bbf6b;
}

.text-alert {
  color: #e06060;
}

.float-alert {
  border-color: rgba(224, 96, 96, 0.2);
  background: rgba(224, 96, 96, 0.06);
}

.float-alert .float-icon {
  color: rgba(224, 96, 96, 0.6);
}

.phone-result-flagged {
  border-color: rgba(180, 60, 60, 0.25);
  border-left: 3px solid #c04040;
  background: rgba(200, 80, 80, 0.06);
}

.fl-1 { top: 6%; left: 0; }
.fr-1 { top: 12%; right: 0; }
.fl-2 { top: 38%; left: -2%; }
.fr-2 { top: 44%; right: -2%; }
.fl-3 { top: 68%; left: 2%; }
.fr-3 { top: 64%; right: 2%; }

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.intro-band div {
  min-height: 160px;
  padding: clamp(22px, 3vw, 34px);
}

.intro-band div + div {
  border-left: 1px solid var(--line);
}

.intro-band p,
.section-copy p,
.examples-heading p,
.signal-card p,
.trust-grid p,
.beta-section p,
.steps-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.intro-band p {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.38;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(76px, 11vw, 136px) 0;
}

.section-copy h2,
.examples-heading h2,
.trust-band h2,
.beta-section h2 {
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.section-copy p,
.beta-section p {
  max-width: 560px;
  margin-top: 24px;
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.steps-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--chain);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.examples-section {
  padding: clamp(64px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}

.examples-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.examples-heading p {
  margin: 0 0 8px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.example-card {
  display: flex;
  min-width: 0;
  min-height: 560px;
  flex-direction: column;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.featured-example {
  grid-column: span 2;
}

.example-card.flagged {
  border-color: rgba(158, 61, 56, 0.34);
}

.example-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 156px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.logo-media {
  height: 132px;
  background: var(--paper);
}

.example-product {
  width: auto;
  max-width: 88%;
  max-height: 176px;
  object-fit: contain;
}


.wide-product {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.example-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 64px;
  height: 64px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: contain;
}

.example-logo.wordmark-logo {
  width: min(142px, calc(100% - 28px));
  height: 52px;
}

.logo-media .brand-logo {
  position: static;
  width: min(76%, 190px);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.text-brand-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.example-meta,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.example-meta {
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 24px;
}

.example-type,
.flag-pill,
.signal-card > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.example-type {
  color: var(--ink-soft);
}

.flag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.flag-pill.neutral {
  color: var(--chain);
  background: rgba(140, 165, 192, 0.1);
}

.flag-pill.watch {
  color: var(--watch);
  background: var(--watch-soft);
  border-color: rgba(102, 89, 47, 0.24);
}

.flag-pill.alert {
  color: var(--signal);
  background: var(--signal-soft);
  border-color: rgba(158, 61, 56, 0.28);
}

.example-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.3vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.provenance-chain {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.provenance-chain li {
  position: relative;
  min-height: 78px;
  padding: 0 0 24px 20px;
  border-left: 2px solid rgba(140, 165, 192, 0.2);
}

.provenance-chain li:last-child {
  min-height: auto;
  padding-bottom: 0;
  border-left-color: transparent;
}

.provenance-chain li::before {
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--chain);
  box-shadow: 0 0 0 1px rgba(140, 165, 192, 0.3);
}

.flagged .provenance-chain li::before {
  background: var(--signal);
  box-shadow: 0 0 0 1px rgba(224, 96, 96, 0.3);
}

.provenance-chain span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.provenance-chain strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.signal-card {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.signal-card > span {
  color: var(--chain);
}

.flagged .signal-card > span {
  color: var(--signal);
}

.signal-card p {
  margin: 8px 0 16px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--chain);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.source-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.trust-band {
  padding: clamp(76px, 11vw, 136px) 0;
}

.trust-band > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.trust-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: end;
  padding: clamp(36px, 6vw, 58px);
  border-radius: var(--radius);
  background: #e8e6e1;
  color: #0b0c0f;
}

.beta-section .eyebrow {
  color: rgba(11, 12, 15, 0.5);
}

.beta-section p {
  color: rgba(11, 12, 15, 0.6);
}

.beta-section h2 {
  max-width: 620px;
  color: #0b0c0f;
}

.beta-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.beta-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(11, 12, 15, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  color: #0b0c0f;
}

.beta-form input::placeholder {
  color: rgba(11, 12, 15, 0.4);
}

.beta-section .button.primary {
  min-height: 52px;
  background: #0b0c0f;
  color: #e8e6e1;
}

.beta-section .button.primary:hover {
  background: #1a1b1f;
}

.beta-section :where(input, button):focus-visible {
  outline-color: #0b0c0f;
}

.site-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-example {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .float-card {
    min-width: 180px;
    padding: 10px 14px;
  }

  .float-card strong { font-size: 0.8rem; }
  .float-card span { font-size: 0.7rem; }

  .intro-band,
  .section-grid,
  .examples-heading,
  .trust-band > div:first-child,
  .trust-grid,
  .beta-section {
    grid-template-columns: 1fr;
  }

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

  .section-copy h2,
  .examples-heading h2,
  .trust-band h2,
  .beta-section h2 {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }
}

@media (max-width: 640px) {
  .hero,
  .intro-band,
  .section-grid,
  .examples-section,
  .trust-band,
  .beta-section,
  .site-footer {
    width: calc(100% - 32px);
  }

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

  .hero {
    padding-top: 96px;
    padding-bottom: 40px;
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
  }

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

  .hero-scene {
    min-height: auto;
    max-width: 320px;
    margin-inline: auto;
  }

  .phone-mockup {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
  }

  .float-card {
    display: none;
  }

  .intro-band p {
    font-size: 1.05rem;
  }

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

  .featured-example {
    grid-column: auto;
  }

  .example-card {
    min-height: auto;
  }

  .beta-form {
    grid-template-columns: 1fr;
  }

  .beta-form .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

.legal-page {
  max-width: 720px;
  width: min(720px, calc(100% - 48px));
  margin-inline: auto;
  padding: 140px 0 80px;
}

.legal-header {
  margin-bottom: 56px;
}

.legal-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fffdfa;
}

.legal-effective {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-body section {
  margin-bottom: 42px;
}

.legal-body h2 {
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.18rem;
  color: #fffdfa;
}

.legal-body h3 {
  margin: 24px 0 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--chain);
}

.legal-body p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--chain);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: #fffdfa;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

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

@media (max-width: 640px) {
  .legal-page {
    width: calc(100% - 32px);
    padding-top: 96px;
    padding-bottom: 48px;
  }
}

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