/* ========== RESET & TOKENS ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #F7F3E8;
  --ink: #0A1E3C;
  --acid: #39FF14;
  --gold: #FFD700;
  --inkblue: #0D2B45;
  --beige: #E8E0D2;
  --gray: #626262;
  --sky: #4FA3FF;
  --mist: #D6FFC8;

  --font-head: "Noto Sans CJK SC Heavy", "Source Han Sans CN Black", "PingFang SC", sans-serif;
  --font-body: "Noto Sans CJK SC Regular", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "DIN Alternate", "SFMono-Regular", Consolas, monospace;
  --font-comment: "Noto Serif CJK SC", "Source Han Serif CN", "STSong", serif;

  --radius-card: 6px;
  --radius-pill: 999px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --ease-fast: 0.18s ease;
  --ease-slow: 0.32s ease;
  --capsule-w: 216px;
  --capsule-gutter: 280px;
}

html {
  scroll-behavior: smooth;
}

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

main {
  display: block;
}

#main-content {
  min-height: 50vh;
  outline: none;
}

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

button {
  font-family: inherit;
}

a {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 2px;
}

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

/* ========== SKIP LINK ========== */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(57, 255, 20, 0.45);
  transition: top var(--ease-fast);
}

.skip-link:focus-visible {
  top: 0;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--acid);
  z-index: 2000;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

/* ========== HEADER — DESKTOP CAPSULE ========== */
.site-header {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: var(--capsule-w);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  background: var(--ink);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 28px;
  padding: 26px 18px 18px;
  box-shadow:
    0 0 0 1px rgba(10, 30, 60, 0.5),
    0 20px 50px rgba(10, 30, 60, 0.4),
    inset 0 0 50px rgba(10, 30, 60, 0.55);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--acid);
  opacity: 0.7;
  pointer-events: none;
}

.site-header::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--acid);
  border-left: 2px solid var(--acid);
}

.site-header::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--acid);
  border-right: 2px solid var(--acid);
}

/* Brand block */
.capsule-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 243, 232, 0.16);
  text-decoration: none;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--acid);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.55);
}

.brand-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--paper);
  line-height: 1;
}

.brand-note {
  writing-mode: vertical-rl;
  font-family: var(--font-comment);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: rgba(247, 243, 232, 0.5);
  padding-left: 22px;
  max-height: 100px;
}

/* Menu */
.capsule-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 0 8px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: rgba(247, 243, 232, 0.88);
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--ease-fast), color var(--ease-fast), box-shadow var(--ease-fast);
}

.nav-link::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  transition: opacity var(--ease-fast), transform var(--ease-fast), background var(--ease-fast);
}

.nav-link:hover {
  color: var(--acid);
  background: rgba(57, 255, 20, 0.08);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1.5);
}

.nav-link[aria-current="page"] {
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(57, 255, 20, 0.35);
}

.nav-link[aria-current="page"]::before {
  background: var(--ink);
  opacity: 1;
}

/* Capsule now indicator */
.capsule-now {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(247, 243, 232, 0.16);
}

.now-label {
  writing-mode: vertical-rl;
  font-family: var(--font-comment);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(57, 255, 20, 0.75);
}

.now-value {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.5;
}

/* ========== HEADER — MOBILE ========== */
.nav-toggle {
  display: none;
}

@media (max-width: 1023px) {
  body {
    padding-top: 58px;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
    background: var(--inkblue);
    padding: 8px 16px;
    box-shadow: 0 4px 20px rgba(10, 30, 60, 0.35);
  }

  .site-header::before,
  .site-header::after {
    display: none;
  }

  .capsule-brand {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .brand-note {
    writing-mode: horizontal-tb;
    padding-left: 0;
    max-height: none;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: rgba(247, 243, 232, 0.55);
  }

  .capsule-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 20px 18px;
    background: var(--inkblue);
    border-bottom: 2px solid var(--acid);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 36px rgba(10, 30, 60, 0.4);
    flex: none;
  }

  .site-header[data-open="true"] .capsule-menu {
    display: flex;
    flex-direction: column;
  }

  .capsule-menu .nav-list {
    flex-direction: column;
    gap: 2px;
  }

  .capsule-now {
    margin-top: 14px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(247, 243, 232, 0.22);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color var(--ease-fast), background var(--ease-fast);
  }

  .nav-toggle:hover {
    border-color: var(--acid);
    background: rgba(57, 255, 20, 0.08);
  }

  .nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--paper);
    transition: transform var(--ease-fast), opacity var(--ease-fast), background var(--ease-fast);
  }

  .site-header[data-open="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--acid);
  }

  .site-header[data-open="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-open="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--acid);
  }
}

@media (max-width: 420px) {
  .brand-note {
    display: none;
  }
}

/* ========== BACK TO TOP ========== */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  border: 2px solid rgba(57, 255, 20, 0.5);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease-fast), transform var(--ease-fast), background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast);
  z-index: 900;
  box-shadow: 0 6px 24px rgba(10, 30, 60, 0.35);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

/* ========== FOOTER ========== */
.site-footer {
  margin-top: var(--space-6);
  background: var(--inkblue);
  color: rgba(247, 243, 232, 0.82);
  border-top: 3px solid var(--acid);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.7fr;
  gap: 44px;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  align-content: flex-start;
}

.footer-brand .brand-mark {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

.footer-brand .brand-name {
  font-size: 24px;
  color: var(--paper);
}

.brand-slogan {
  flex-basis: 100%;
  margin-left: 22px;
  font-family: var(--font-comment);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(57, 255, 20, 0.85);
}

.footer-trust {
  flex-basis: 100%;
  margin-left: 22px;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(247, 243, 232, 0.58);
  max-width: 380px;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247, 243, 232, 0.14);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: rgba(247, 243, 232, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--ease-fast), padding-left var(--ease-fast), background-size var(--ease-fast);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.footer-links a:hover {
  color: var(--acid);
  padding-left: 6px;
  background-size: 100% 1px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-label {
  display: inline-block;
  min-width: 3em;
  margin-right: 8px;
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 232, 0.1);
  padding: 18px 24px;
}

.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(247, 243, 232, 0.5);
  font-family: var(--font-data);
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .footer-container {
    padding-left: var(--capsule-gutter);
    padding-right: 40px;
  }

  .footer-bottom-inner {
    padding-left: var(--capsule-gutter);
    padding-right: 40px;
  }
}

@media (max-width: 1023px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 40px;
  }

  .footer-trust {
    margin-left: 0;
  }

  .brand-slogan {
    margin-left: 0;
  }
}

@media (max-width: 570px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--capsule-gutter);
    padding-right: 40px;
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 18px;
  }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 18px 0 6px;
  font-family: var(--font-comment);
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: rgba(98, 98, 98, 0.7);
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease-fast), color var(--ease-fast);
}

.breadcrumb a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast), box-shadow var(--ease-fast), transform var(--ease-fast);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.25);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 8px 28px rgba(57, 255, 20, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ========== TAGS ========== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-comment);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.tag-acid {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.tag-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.tag-dark {
  background: var(--ink);
  border-color: rgba(57, 255, 20, 0.55);
  color: var(--paper);
}

.tag-mist {
  background: var(--mist);
  border-color: var(--ink);
  color: var(--ink);
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: 24px;
}

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

@media (max-width: 1023px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* ========== CARD ========== */
.card {
  position: relative;
  padding: 24px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), transform var(--ease-fast);
}

.card:hover {
  border-color: var(--acid);
  box-shadow: 4px 4px 0 rgba(57, 255, 20, 0.45);
  transform: translate(-1px, -1px);
}

/* ========== IMAGE FRAME ========== */
.img-frame,
.img-frame-wide,
.img-frame-portrait {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--beige);
  border: 1px solid var(--ink);
}

.img-frame::before,
.img-frame-wide::before,
.img-frame-portrait::before {
  content: "";
  display: block;
}

.img-frame::before { padding-top: 62.5%; }
.img-frame-wide::before { padding-top: 50%; }
.img-frame-portrait::before { padding-top: 125%; }

.img-frame img,
.img-frame-wide img,
.img-frame-portrait img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== TABLE OF CONTENTS ========== */
.toc {
  position: relative;
  padding: 20px 24px;
  background: var(--beige);
  border-left: 3px solid var(--acid);
}

.toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 12px;
}

.toc-title::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--acid);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-comment);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease-fast), color var(--ease-fast);
}

.toc-link::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray);
  opacity: 0.6;
  transition: background var(--ease-fast), transform var(--ease-fast), opacity var(--ease-fast);
}

.toc-link:hover {
  border-color: var(--acid);
}

.toc-link:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

.toc-link[aria-current="true"] {
  font-weight: 700;
}

.toc-link[aria-current="true"]::before {
  background: var(--acid);
  opacity: 1;
  transform: scale(1.6);
}

/* ========== STAT ========== */
.stat {
  position: relative;
  padding: 22px 24px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
}

.stat::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: transparent var(--acid) transparent transparent;
}

.stat-value {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.stat-value strong {
  background: var(--ink);
  color: var(--gold);
  padding: 2px 8px;
  font-weight: 700;
  font-size: 0.86em;
  border-radius: 3px;
}

.stat-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
  font-family: var(--font-comment);
}

/* ========== SIDE NOTE & ANNOTATION ========== */
.side-note {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  background: var(--mist);
  border-left: 3px solid var(--acid);
  font-family: var(--font-comment);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}

.annotate-v {
  writing-mode: vertical-rl;
  font-family: var(--font-comment);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray);
}

/* ========== SECTION HEAD ========== */
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.section-title .title-accent {
  color: var(--gold);
}

.section-note {
  writing-mode: vertical-rl;
  font-family: var(--font-comment);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ========== INDEX LINE ========== */
.index-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(10, 30, 60, 0.2);
  transition: background var(--ease-fast), padding-left var(--ease-fast);
}

.index-line:hover {
  background: rgba(57, 255, 20, 0.07);
  padding-left: 10px;
}

.index-line .idx {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.index-line .idx-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.index-line .idx-meta {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-comment);
}

/* ========== TEXT LINK ========== */
.text-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  transition: background-size var(--ease-fast), color var(--ease-fast);
}

.text-link:hover {
  background-size: 100% 2px;
}

/* ========== RESPONSIVE BASE ========== */
@media (min-width: 1024px) {
  #main-content {
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .section-head {
    flex-wrap: wrap;
  }

  .section-note {
    writing-mode: horizontal-tb;
    margin-top: 0;
  }

  .stat-value {
    font-size: 28px;
  }

  .card {
    padding: 18px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .to-top,
  .skip-link {
    transition: none;
  }
}
