:root {
  --ink: #0e1a1f;
  --ink-soft: #2a3d46;
  --paper: #e8f0f2;
  --mist: #c5d8de;
  --teal: #0d6e6e;
  --teal-deep: #084848;
  --signal: #e07a3a;
  --line: rgba(14, 26, 31, 0.14);
  --glow: rgba(13, 110, 110, 0.35);
  --font-display: "Fraunces", "Apple SD Gothic Neo", serif;
  --font-body: "IBM Plex Sans KR", "Apple SD Gothic Neo", sans-serif;
  --max: 72rem;
  --read: 40rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(13, 110, 110, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(224, 122, 58, 0.12), transparent 55%),
    linear-gradient(165deg, #d7e6ea 0%, var(--paper) 42%, #dfe9ec 100%);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
.cat-bar,
main,
.site-footer,
.issue {
  position: relative;
  z-index: 1;
}

/* —— Header —— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 0.65rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-home {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-home:hover {
  color: var(--teal-deep);
}

/* —— Category bar (top) —— */
.cat-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.cat-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cat-bar a {
  flex: 0 0 auto;
  padding: 0.85rem 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.cat-bar a:hover {
  color: var(--teal-deep);
}

.cat-bar a.is-active {
  color: var(--teal-deep);
  border-bottom-color: var(--signal);
}

/* —— Language —— */
html[data-lang="ko"] .l.en {
  display: none !important;
}

html[data-lang="en"] .l.ko {
  display: none !important;
}

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  overflow: hidden;
}

.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 8rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

.brand-mark {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero .lede {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.hero-visual {
  position: relative;
  height: min(52vh, 420px);
  display: grid;
  place-items: center;
  opacity: 0;
  animation: fade 1.1s var(--ease) 0.35s forwards;
}

.lens-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
}

.ring-a {
  width: min(78%, 320px);
  aspect-ratio: 1;
  opacity: 0.55;
  animation: spin 28s linear infinite;
  border-style: dashed;
}

.ring-b {
  width: min(58%, 240px);
  aspect-ratio: 1;
  opacity: 0.35;
  animation: spin 18s linear infinite reverse;
}

.lens-core {
  position: relative;
  width: min(48%, 200px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(145deg, rgba(13, 110, 110, 0.45), rgba(14, 26, 31, 0.85));
  color: rgba(232, 240, 242, 0.9);
  box-shadow: 0 0 0 1px rgba(13, 110, 110, 0.4), 0 20px 50px var(--glow);
  overflow: hidden;
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(224, 122, 58, 0.85), transparent);
  animation: scan 3.2s var(--ease) infinite;
}

.globe-mark {
  width: 72%;
  color: rgba(232, 240, 242, 0.75);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  0%,
  100% {
    top: 18%;
    opacity: 0.2;
  }
  50% {
    top: 78%;
    opacity: 1;
  }
}

/* —— Method / Issues —— */
.method,
.issues {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.method h2,
.issues h2,
.block h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.section-note,
.section-head p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.pipeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.pipeline li {
  padding: 1.1rem 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.35);
  border-top: 3px solid var(--teal);
}

.pipeline strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.pipeline span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.section-head {
  margin-bottom: 0.5rem;
}

.issue-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.issue-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0.25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.issue-row:hover {
  background: rgba(13, 110, 110, 0.06);
}

.issue-row time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--teal-deep);
}

.issue-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.issue-row p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.archive-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.archive-hero {
  max-width: 48rem;
  padding: 1.5rem 0 2.5rem;
}

.archive-hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.18;
}

.archive-hero > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.archive-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.archive-controls label {
  font-weight: 600;
}

.archive-controls select {
  min-width: 13rem;
  padding: 0.55rem 2.2rem 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.archive-controls p {
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.archive-edition {
  margin-bottom: 3rem;
}

.archive-date {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.archive-date h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.archive-date > span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.archive-category {
  color: var(--teal-deep);
  font-size: 0.83rem;
  font-weight: 600;
}

.archive-category time {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.archive-edition .issue-row {
  grid-template-columns: 7rem 1fr auto;
}

.past-issues {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
}

.page-issue .past-issues {
  max-width: var(--read);
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.past-issues .section-head p {
  margin: 0.35rem 0 1.25rem;
}

.past-issues .issue-row {
  grid-template-columns: 5.5rem 1fr auto;
}

.past-category-block {
  margin-bottom: 2.5rem;
}

.past-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.past-category-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.past-category-head a {
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.past-category-head a:hover {
  text-decoration: underline;
}

.past-loading {
  color: var(--ink-soft);
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: 0.02em;
}

.site-footer {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer .fine {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Coupang Partners ---------- */
.coupang-banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 2rem auto;
  width: 100%;
  max-width: 44rem;
  min-height: 140px;
  padding: 0 1.35rem;
  position: relative;
  z-index: 1;
}

.coupang-banner {
  width: 100%;
  max-width: 680px;
  min-height: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupang-banner-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.4;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .coupang-banner-wrap {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .coupang-banner {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* —— Issue article —— */
.issue {
  max-width: var(--read);
  margin: 0 auto;
  padding: 1rem 1.35rem 3rem;
}

.issue-hero {
  padding: 1.75rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.issue-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.block {
  padding: 2.35rem 0;
  border-bottom: 1px solid var(--line);
}

.block-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.block-label .badge-ok {
  padding: 0.15rem 0.45rem;
  background: rgba(13, 110, 110, 0.14);
  color: var(--teal-deep);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.story-body p {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.source-fold {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.source-fold summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-deep);
  list-style: none;
}

.source-fold summary::before {
  content: "▸ ";
  color: var(--signal);
}

.source-fold[open] summary::before {
  content: "▾ ";
}

.source-grid {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
  display: grid;
  gap: 0.85rem;
}

.source-grid li {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.outlet {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--teal-deep);
  font-size: 0.9rem;
}

.source-grid p {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
}

.meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.compare {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.1rem;
}

.compare h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--teal-deep);
}

.compare blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.55;
  font-style: normal;
  word-break: keep-all;
}

.verify {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.tldr {
  margin: 1.1rem 0 1.75rem;
  padding: 0;
  list-style: none;
  counter-reset: tldr;
}

.tldr li {
  counter-increment: tldr;
  position: relative;
  padding: 0.75rem 0 0.75rem 2.5rem;
  border-bottom: 1px dashed var(--line);
  font-size: 1.05rem;
  line-height: 1.65;
  word-break: keep-all;
}

.tldr li::before {
  content: counter(tldr);
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50%;
}

.split-facts {
  display: grid;
  gap: 1.5rem;
}

.split-facts h3 {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
}

.split-facts ul {
  margin: 0;
  padding-left: 1.15rem;
}

.split-facts li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
  word-break: keep-all;
}

.glossary {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.glossary caption {
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-deep);
  padding-bottom: 0.5rem;
}

.glossary th,
.glossary td {
  text-align: left;
  padding: 0.65rem 0.75rem 0.65rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
  word-break: keep-all;
}

.glossary th {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.ai-block {
  background: linear-gradient(135deg, rgba(13, 110, 110, 0.08), rgba(224, 122, 58, 0.06));
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-bottom: none;
  box-shadow: 0 1px 0 var(--line);
}

.ai-lead {
  margin: 1rem 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.5;
  word-break: keep-all;
}

.ai-block p {
  margin: 0 0 1.1rem;
  line-height: 1.85;
  word-break: keep-all;
}

.ai-points {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.ai-points li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  word-break: keep-all;
}

.comic-note {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.story-figure {
  margin: 1.35rem 0 1.6rem;
}

.story-figure img {
  width: 100%;
  display: block;
  max-height: 28rem;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.story-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-soft);
  word-break: keep-all;
}

.story-figure a {
  color: var(--teal-deep);
}

.comic-strip {
  list-style: none;
  margin: 1rem 0 0.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.comic-strip li {
  position: relative;
  padding: 0;
  background: #fff;
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.comic-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f3f6f7;
}

.comic-strip .panel-cap {
  margin: 0;
  padding: 0.7rem 0.75rem 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  background: color-mix(in srgb, var(--teal, #0d7377) 8%, #fff);
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  word-break: keep-all;
}

.comic-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  word-break: keep-all;
}

.comic-credit {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.issue-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0 0;
}

.issue-nav a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: none;
}

.issue-nav a:hover {
  text-decoration: underline;
}

@media (min-width: 720px) {
  .compare,
  .split-facts {
    grid-template-columns: 1fr 1fr;
  }

  /* 2x2 so each panel is wide enough to show the full drawing */
  .comic-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    order: -1;
    height: 220px;
  }

  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline li:last-child {
    grid-column: 1 / -1;
  }

  .issue-row {
    grid-template-columns: 3.5rem 1fr;
  }

  .archive-edition .issue-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .past-issues .issue-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .issue-row .tag {
    grid-column: 2;
  }

  .archive-edition .issue-row .tag,
  .past-issues .issue-row .tag {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .archive-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-controls p {
    margin-left: 0;
  }

  .pipeline {
    grid-template-columns: 1fr;
  }

  .cat-bar a {
    padding: 0.75rem 0.7rem;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .brand-mark,
  .hero h1,
  .hero .lede,
  .cta-row,
  .hero-visual {
    opacity: 1;
    transform: none;
  }
}
