:root {
  --warm-gray: #F5F5F0;
  --ink-green: #1F3A2D;
  --coral: #FF6B5B;
  --light-purple: #B39DDB;
  --deep-brown: #4E342E;
  --beige: #FDF6E3;
  --yellow: #FFD54F;
  --green: #4CAF50;
  --blue-gray: #607D8B;
  --pink: #FF80AB;
  --teal: #26A69A;
  --red: #EF5350;
  --ink: #1F1F1F;
  --text-main: #2C2C28;
  --text-muted: #6A6A62;
  --line: #DADAD2;
  --line-dark: rgba(253,246,227,0.25);
  --font-head: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --container: 1200px;
  --head-h: 58px;
  --radius: 6px;
  --shadow-1: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--warm-gray);
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

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

a {
  color: inherit;
}

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

::selection {
  background: var(--yellow);
  color: var(--ink-green);
}

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

.skip-link {
  position: absolute;
  top: -120px;
  left: 12px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--ink-green);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-1);
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink-green);
  color: var(--beige);
  border-bottom: 4px solid var(--yellow);
  box-shadow: var(--shadow-1);
}

.head-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand toggle"
    "search search"
    "nav nav";
  align-items: center;
  gap: 8px 14px;
}

.brand-lockup {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--ink-green);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  border-radius: 8px 2px 8px 2px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.25);
}

.brand-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-caption {
  display: none;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  color: rgba(253,246,227,0.65);
  white-space: nowrap;
}

.head-nav {
  grid-area: nav;
  display: none;
}

.head-nav[data-open="true"] {
  display: block;
  border-top: 1px solid var(--line-dark);
  padding: 8px 2px 12px;
}

.head-nav .nav-item {
  display: block;
  padding: 10px 10px 10px 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--beige);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.head-nav .nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}

.head-nav .nav-item[aria-current="page"] {
  background: rgba(255,213,79,0.14);
  color: var(--yellow);
  box-shadow: inset 3px 0 0 var(--yellow);
}

.head-search {
  grid-area: search;
  width: 100%;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(253,246,227,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  transition: background var(--transition), border-color var(--transition);
}

.search-field:focus-within {
  background: #FFFFFF;
  border-color: var(--yellow);
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--beige);
}

.search-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 6px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 2px;
}

.search-field:focus-within .search-icon {
  color: var(--ink-green);
}

.search-field input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--beige);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 4px 0;
}

.search-field input::placeholder {
  color: rgba(253,246,227,0.55);
}

.search-field:focus-within input {
  color: var(--ink);
}

.search-field:focus-within input::placeholder {
  color: rgba(31,58,45,0.5);
}

.search-field input:focus {
  outline: none;
}

.nav-toggle {
  grid-area: toggle;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(253,246,227,0.4);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 8px;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.nav-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-foot {
  background: var(--deep-brown);
  color: var(--beige);
  border-top: 4px solid var(--yellow);
}

.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 20px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px 24px;
}

.foot-brand {
  min-width: 0;
}

.foot-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--yellow);
  margin-bottom: 6px;
}

.foot-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(253,246,227,0.65);
  max-width: 25em;
}

.foot-col h2,
.foot-contact h2 {
  margin-bottom: 10px;
}

.foot-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.foot-list {
  list-style: none;
}

.foot-list li {
  margin-bottom: 2px;
}

.foot-list a {
  display: inline-block;
  padding: 3px 0;
  color: rgba(253,246,227,0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.foot-list a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.foot-contact p {
  color: rgba(253,246,227,0.78);
  font-size: 13px;
  font-family: var(--font-mono);
  line-height: 2;
  margin: 0;
}

.foot-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(253,246,227,0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 20px;
  color: rgba(253,246,227,0.5);
  font-size: 13px;
}

.foot-copy,
.foot-icp {
  margin: 0;
}

.container-wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-band {
  padding: 28px 0;
}

.surface-warm {
  background: var(--warm-gray);
  color: var(--text-main);
}

.surface-ink {
  background: var(--ink-green);
  color: var(--beige);
}

.surface-coral {
  background: var(--coral);
  color: #1F1F1F;
}

.surface-purple {
  background: var(--light-purple);
  color: #1F1F1F;
}

.surface-brown {
  background: var(--deep-brown);
  color: var(--beige);
}

.surface-yellow {
  background: var(--yellow);
  color: var(--ink-green);
}

.prose {
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1em;
}

.prose a {
  color: var(--ink-green);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
}

.crumb a {
  color: var(--ink-green);
  text-decoration: none;
  font-weight: 600;
}

.crumb a:hover {
  text-decoration: underline;
}

.crumb-sep {
  color: #A8A89E;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-solid {
  background: var(--yellow);
  color: var(--ink-green);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-solid:hover {
  background: var(--coral);
  transform: translate(-1px, -1px);
}

.btn-ghost {
  border-color: rgba(253,246,227,0.4);
  color: var(--beige);
}

.btn-ghost:hover {
  background: rgba(253,246,227,0.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.card-grid .is-wide {
  grid-column: span 2;
}

.comic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 4px 14px 8px 8px;
  overflow: hidden;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.comic-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 8px 0 rgba(0,0,0,0.12);
}

.comic-card.series-live {
  background: var(--coral);
  border-color: #A63D2C;
}

.comic-card.series-end {
  background: var(--light-purple);
  border-color: #7D62A8;
}

.card-cover {
  aspect-ratio: 3 / 4;
  background: var(--beige);
  border-bottom: 2px solid var(--ink);
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.09) 1px, transparent 0);
  background-size: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(0,0,0,0.28);
  position: relative;
}

.card-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 12px 14px 14px;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.card-flag {
  position: absolute;
  top: 10px;
  right: -8px;
  z-index: 2;
  background: var(--yellow);
  color: var(--ink-green);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 14px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.22);
  transform: rotate(3deg);
  border-radius: 3px;
}

.tile-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  background: var(--teal);
  color: #1F1F1F;
  border: 2px solid rgba(0,0,0,0.18);
  border-radius: 4px 14px 8px 8px;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: rotate(-1.5deg) scale(1.03);
  box-shadow: 3px 4px 0 rgba(0,0,0,0.12);
}

.tile-count {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
}

.tile-variant-coral {
  background: var(--coral);
  color: #1F1F1F;
}

.tile-variant-purple {
  background: var(--light-purple);
  color: #1F1F1F;
}

.tile-variant-green {
  background: var(--ink-green);
  color: var(--beige);
}

.tile-variant-brown {
  background: var(--deep-brown);
  color: var(--beige);
}

.tile-variant-yellow {
  background: var(--yellow);
  color: var(--ink-green);
}

.list-stack {
  list-style: none;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}

.list-row:last-child {
  border-bottom: none;
}

.list-row:hover {
  background: rgba(255,213,79,0.2);
}

.order-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-gray);
  min-width: 26px;
  text-align: right;
}

.row-main {
  flex: 1;
  min-width: 0;
}

.row-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.row-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.tag-teal {
  background: rgba(38,166,154,0.16);
  border-color: rgba(38,166,154,0.28);
  color: #05675E;
}

.tag-coral {
  background: rgba(255,107,91,0.18);
  border-color: rgba(255,107,91,0.3);
  color: #B23A2C;
}

.tag-purple {
  background: rgba(179,157,219,0.32);
  border-color: rgba(179,157,219,0.4);
  color: #463B66;
}

.tag-yellow {
  background: rgba(255,213,79,0.36);
  border-color: rgba(200,155,0,0.26);
  color: #5E4300;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.badge-green {
  background: var(--green);
  color: #FFFFFF;
}

.badge-blue {
  background: var(--blue-gray);
  color: #FFFFFF;
}

.badge-pink {
  background: var(--pink);
  color: #1F1F1F;
}

.badge-red {
  background: var(--red);
  color: #FFFFFF;
}

.badge-yellow {
  background: var(--yellow);
  color: var(--ink-green);
}

.progress-bar {
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--green);
}

.index-strip {
  display: flex;
  flex-wrap: wrap;
}

.index-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(0,0,0,0.16);
  margin-right: -1px;
  margin-bottom: -1px;
  background: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.index-item:hover,
.index-item:focus {
  background: var(--yellow);
  color: var(--ink-green);
  position: relative;
  z-index: 2;
}

.rail-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
}

.rail-scroll > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.rail-scroll::-webkit-scrollbar {
  height: 6px;
}

.rail-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th {
  text-align: left;
  background: var(--ink-green);
  color: var(--beige);
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
}

.data-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.03);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.schedule-cell {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  padding: 12px;
}

.legend-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.legend-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--green);
  flex: 0 0 auto;
}

.legend-swatch.coral {
  background: var(--coral);
}

.legend-swatch.purple {
  background: var(--light-purple);
}

.legend-swatch.blue {
  background: var(--blue-gray);
}

.legend-swatch.pink {
  background: var(--pink);
}

.legend-swatch.brown {
  background: var(--deep-brown);
}

.toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sort-tabs {
  display: inline-flex;
  gap: 4px;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.sort-btn.is-active {
  background: var(--ink-green);
  color: var(--beige);
  border-color: var(--ink-green);
}

.sort-btn:hover {
  border-color: var(--ink-green);
}

.view-toggle {
  display: inline-flex;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-main);
}

.view-btn:first-child {
  border-radius: 6px 0 0 6px;
}

.view-btn:last-child {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

.view-btn.is-active {
  background: var(--yellow);
  border-color: #D4A800;
  color: var(--ink-green);
}

.media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.3);
  font-family: var(--font-mono);
  font-size: 13px;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .head-search {
    grid-area: search;
  }
}

@media (min-width: 640px) {
  .brand-caption {
    display: block;
  }

  .head-inner {
    padding: 12px 24px;
  }
}

@media (min-width: 960px) {
  .head-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand nav search";
    min-height: var(--head-h);
    padding: 0 24px;
    gap: 0 24px;
  }

  .head-nav,
  .head-nav[data-open="true"] {
    display: flex;
    align-items: center;
    border-top: none;
    padding: 0;
  }

  .head-nav .nav-item {
    display: inline-flex;
    align-items: center;
    height: var(--head-h);
    padding: 0 14px;
    border-radius: 0;
    font-size: 14px;
    background: transparent;
    color: rgba(253,246,227,0.9);
    box-shadow: none;
    position: relative;
  }

  .head-nav .nav-item::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    background: transparent;
    border-radius: 2px 2px 0 0;
    transition: background var(--transition);
  }

  .head-nav .nav-item:hover {
    background: transparent;
    color: #FFFFFF;
  }

  .head-nav .nav-item:hover::after,
  .head-nav .nav-item[aria-current="page"]::after {
    background: var(--yellow);
  }

  .head-nav .nav-item[aria-current="page"] {
    color: var(--yellow);
    background: transparent;
  }

  .head-search {
    width: 240px;
    justify-self: end;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .tile-matrix {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  [data-reveal][data-revealed="true"] {
    opacity: 1;
    transform: none;
  }
}
