:root {
  --bg: #0a0a0c;
  --bg-raised: #101014;
  --panel: #16161b;
  --panel-hover: #1b1b21;
  --soft: #202027;
  --line: #303038;
  --line-strong: #484852;
  --text: #f6f3f4;
  --muted: #aaa5ad;
  --subtle: #7c7880;
  --accent: #ff5c75;
  --accent-soft: #ff9aaa;
  --accent-deep: #c93650;
  --good: #76d7a4;
  --out-color: #9ebfff;
  --gold: #f7d879;
  --silver: #d5d6dc;
  --bronze: #dca477;
  --card-bg: var(--panel);
  --card-hover: var(--panel-hover);
  --border: var(--line);
  --text-muted: var(--muted);
  --tag-bg: #24242b;
  --tag-text: #c3bec6;
  --content: 1160px;
  --reading: 780px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 70px rgb(0 0 0 / 24%);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; color-scheme: dark; overflow-x: clip; }
body {
  max-width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 82% -5%, rgb(105 24 48 / 22%), transparent 34rem),
    radial-gradient(circle at 8% 26%, rgb(70 35 62 / 12%), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }
[hidden] { display: none !important; }

.age, .age-bar {
  position: relative;
  z-index: 30;
  margin: 0;
  padding: 7px 20px;
  border-bottom: 1px solid rgb(255 92 117 / 28%);
  background: #200c12;
  color: #efb9c2;
  text-align: center;
  font-size: 11px;
  letter-spacing: .02em;
}
.age strong, .age-bar strong { color: #ff8396; }

/* Shared navigation */
.discovery-page > header,
.theme-page > header,
.work-page > header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(10 10 12 / 86%);
  backdrop-filter: blur(18px) saturate(140%);
}
.wrap {
  display: flex;
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.wrap nav { display: flex; gap: 24px; align-items: center; }
.wrap nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease;
}
.wrap nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}
.wrap nav a:hover, .wrap nav a:focus-visible { color: var(--text); }
.wrap nav a:hover::after, .wrap nav a:focus-visible::after { opacity: 1; transform: scaleX(1); }

/* Editorial headers used by the existing static pages */
.home-page > header,
.listing-page > header,
.guide-page > header {
  padding: clamp(48px, 7vw, 88px) 20px clamp(38px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}
.home-page > header > *,
.listing-page > header > *,
.guide-page > header > * { width: min(100%, var(--content)); margin-right: auto; margin-left: auto; }
.site-title {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.13;
  text-wrap: balance;
}
.site-title .icon { display: inline-block; margin-right: .16em; color: var(--accent); font-size: .72em; vertical-align: .1em; }
.site-title .year { display: block; margin-top: 12px; color: var(--accent-soft); font-size: 12px; letter-spacing: .04em; }
.site-desc { max-width: 720px; margin-top: 0; margin-bottom: 15px; color: var(--muted); font-size: 14px; }
.update-badge {
  display: inline-flex;
  width: auto !important;
  padding: 5px 10px;
  border: 1px solid rgb(255 92 117 / 32%);
  border-radius: 999px;
  background: rgb(255 92 117 / 10%);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 750;
}
.home-page > nav,
.listing-page > nav,
.guide-page > nav {
  position: sticky;
  z-index: 20;
  top: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(10 10 12 / 88%);
  backdrop-filter: blur(18px) saturate(140%);
  scrollbar-width: none;
}
.home-page > nav::-webkit-scrollbar,
.listing-page > nav::-webkit-scrollbar,
.guide-page > nav::-webkit-scrollbar { display: none; }
.home-page > nav ul,
.listing-page > nav ul,
.guide-page > nav ul {
  display: flex;
  width: min(100% - 40px, var(--content));
  min-width: max-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  gap: 26px;
}
.home-page > nav a,
.listing-page > nav a,
.guide-page > nav a {
  display: block;
  padding: 15px 0 13px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.home-page > nav a:hover,
.listing-page > nav a:hover,
.guide-page > nav a:hover,
.home-page > nav a.active,
.listing-page > nav a.active,
.guide-page > nav a.active { border-bottom-color: var(--accent); color: var(--text); }

main, footer { width: min(100% - 40px, var(--content)); margin-inline: auto; }
main { padding: clamp(42px, 6vw, 74px) 0 88px; }
footer { padding: 34px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer p { margin: 8px 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 12px; }
.footer-links a { color: #d1cdd2; transition: color .18s ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent-soft); }
.disclaimer { max-width: 780px; color: var(--subtle); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 4px 0 16px; font-size: clamp(38px, 6vw, 68px); font-weight: 900; letter-spacing: -.055em; line-height: 1.1; text-wrap: balance; }
h2 { margin: 0; font-size: clamp(24px, 3.3vw, 36px); font-weight: 850; letter-spacing: -.035em; line-height: 1.25; }
h3 { line-height: 1.4; }
p { margin: 0 0 14px; }

.hero { max-width: 900px; margin-bottom: 52px; }
.hero::before {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #ffbc83);
  content: "";
}
.eyebrow, .label {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lead { max-width: 760px; color: var(--muted); font-size: clamp(15px, 2vw, 18px); }
.section-heading {
  display: flex;
  margin: 54px 0 22px;
  padding: 0;
  border: 0;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.section-heading .bar { display: none; }
.section-heading > span:not(.bar) { color: var(--muted); font-size: 12px; }

/* Home and service comparison cards */
.discovery-callout {
  position: relative;
  overflow: hidden;
  margin-bottom: 58px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgb(255 92 117 / 10%), rgb(255 255 255 / 2%) 55%), var(--panel);
  box-shadow: var(--shadow);
}
.discovery-callout::after {
  position: absolute;
  width: 240px;
  height: 240px;
  top: -150px;
  right: -80px;
  border-radius: 50%;
  background: rgb(255 92 117 / 15%);
  filter: blur(12px);
  content: "";
  pointer-events: none;
}
.discovery-callout h2 { max-width: 800px; margin-bottom: 12px; }
.discovery-callout h2 { font-size: clamp(24px, 3vw, 32px); }
.discovery-callout p:not(.label) { max-width: 760px; color: var(--muted); }
.discovery-callout > a, .cta-btn {
  display: inline-flex;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #25252c;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.discovery-callout > a:hover, .cta-btn:hover { transform: translateY(-2px); border-color: var(--accent); background: #2b252c; }

.rank-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
}
.rank-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b1b21, var(--panel));
  box-shadow: 0 14px 38px rgb(0 0 0 / 16%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.rank-item:hover, .rank-item:focus-within { transform: translateY(-4px); border-color: #65515a !important; box-shadow: 0 24px 54px rgb(0 0 0 / 28%); }
.rank-content-top { display: flex; height: 100%; flex-direction: column; }
.rank-banner {
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 18px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #0e0e11;
}
.rank-banner a { display: grid; width: 100%; height: 100%; place-items: center; }
.rank-banner img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
}
.rank-item:hover .rank-banner img { transform: scale(1.025); filter: brightness(1.06); }
.rank-info { padding: 20px; }
.site-name, .recommend-info .name { margin: 0 0 10px; color: var(--text) !important; font-size: 20px; font-weight: 850; letter-spacing: -.025em; line-height: 1.35; }
.category, .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 13px; }
.tag {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
}
.tag.highlight { border-color: rgb(255 92 117 / 38%); background: rgb(255 92 117 / 10%); color: var(--accent-soft); }
.tag.free, .tag.good { border-color: rgb(118 215 164 / 28%); background: rgb(118 215 164 / 8%); color: var(--good); }
.tag.new { color: #f2c37e; }
.desc { color: #c1bdc3; font-size: 13px; line-height: 1.75; }

/* Long-form content */
.seo-section { margin-top: 76px; }
.seo-section > h2, .seo-section > p { max-width: var(--reading); }
.seo-section > p { color: #bbb7be; }
.seo-section > div[style], .guide-card, .card, .cta-box, .official-box, .guide, .limitation {
  margin-bottom: 18px;
  padding: 22px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: var(--panel) !important;
}
.guide-card h3 { display: flex; margin: 0 0 10px; align-items: center; gap: 10px; font-size: 18px; }
.guide-card p, .card p, .card li { color: #bbb7be; }
.num, .q-badge, .a-badge {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px !important;
  background: rgb(255 92 117 / 13%) !important;
  color: var(--accent-soft) !important;
  font-size: 11px !important;
  font-weight: 850;
}
.breadcrumb { margin-bottom: 30px; color: var(--muted); font-size: 12px; }
.breadcrumb a, .site-link { color: var(--out-color); }
.compare-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 12px; }
.compare-table th, .compare-table td, table th, table td { padding: 12px !important; border: 1px solid var(--line) !important; }
.compare-table th, table th { background: #1d1d23 !important; color: var(--muted) !important; text-align: left; }
.compare-table tr, table tr { background: transparent !important; }
.faq-section { margin-top: 46px; }
.faq-item { overflow: hidden; margin-bottom: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.faq-q, .faq-a { display: flex; padding: 15px 18px !important; align-items: flex-start; gap: 11px; }
.faq-q { color: var(--text); font-weight: 780; }
.faq-a { border-top: 1px solid var(--line); color: #bcb8bf !important; }
.recommend-card {
  display: grid;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  grid-template-columns: minmax(170px, 28%) 1fr;
}
.recommend-card > a { display: grid; min-height: 190px; padding: 18px; place-items: center; background: #0e0e11; }
.recommend-card img { max-height: 180px; object-fit: contain; }
.recommend-info { padding: 22px; }
.related-guides, .cat-links { margin-top: 56px; }
.related-guides-title, .cat-links-title, .guide-links-title { margin-bottom: 14px; font-weight: 850; }
.related-guides-grid, .cat-links-grid, .guide-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.related-guide-card, .cat-link-card, .guide-links-grid a {
  display: grid;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.related-guide-card:hover, .cat-link-card:hover, .guide-links-grid a:hover { transform: translateY(-2px); border-color: #66515a; background: var(--panel-hover); }
.guide-icon { font-size: 21px; }
.guide-label { font-weight: 800; }
.guide-sub { color: var(--muted); font-size: 11px; }

/* Work discovery feed */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b1b21, var(--panel));
  box-shadow: 0 14px 38px rgb(0 0 0 / 16%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.work-card:hover, .work-card:focus-within { transform: translateY(-4px); border-color: #67515b; box-shadow: 0 24px 54px rgb(0 0 0 / 28%); }
.card-media { display: block; overflow: hidden; width: 100%; aspect-ratio: 16 / 9; background: #111; }
.card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.work-card:hover .card-media img { transform: scale(1.025); filter: brightness(1.06); }
.card-body { padding: 20px; }
.card-body h2 { margin: 4px 0 11px; font-size: 20px; letter-spacing: -.025em; line-height: 1.38; }
.card-body > p:not(.eyebrow):not(.meta) { display: -webkit-box; overflow: hidden; color: #c2bec4; font-size: 13px; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.meta, .source-note, .ad-note { color: var(--muted); font-size: 11px; }
.text-link { display: inline-flex; margin-top: 4px; align-items: center; gap: 7px; color: var(--accent-soft); font-size: 13px; font-weight: 850; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }

.feed-toolbar {
  display: flex;
  margin: 0 0 26px;
  padding: 6px;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(22 22 27 / 85%);
  scrollbar-width: none;
}
.feed-toolbar::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.filter-chip:hover { color: var(--text); }
.filter-chip[aria-pressed="true"] { background: var(--text); color: #111; }
.filter-result { margin-left: auto; padding: 0 10px; color: var(--muted); font-size: 11px; white-space: nowrap; }
.filter-empty { padding: 36px; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); text-align: center; }

.theme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.theme-link {
  display: grid;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  gap: 5px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.theme-link:hover, .theme-link:focus-visible { transform: translateY(-2px); border-color: #67515b; background: var(--panel-hover); }
.theme-link span { color: var(--muted); font-size: 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); filter: brightness(1.1); }
.button.secondary { border-color: var(--line-strong); background: #26262d; }

/* Work detail */
.work-page main { max-width: 980px; }
.work-visual {
  overflow: hidden;
  margin: 0 0 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow);
}
.work-visual-link { display: block; aspect-ratio: 16 / 9; }
.work-visual img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.work-visual-link:hover img, .work-visual-link:focus-visible img { transform: scale(1.012); filter: brightness(1.06); }
.work-page article > section:not(.hero):not(.official-box) { max-width: var(--reading); margin: 0 auto 48px; }
.work-page article > section:not(.hero) h2 { margin-bottom: 18px; }
.review-list { padding-left: 1.25em; color: #c5c1c7; }
.review-list li { margin: 9px 0; }
.facts { display: grid; margin: 24px 0 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.facts div { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.facts dt { color: var(--muted); font-size: 11px; }
.facts dd { margin: 3px 0 0; font-weight: 750; }
.official-box { max-width: var(--reading); margin: 54px auto 0 !important; background: linear-gradient(135deg, rgb(255 92 117 / 9%), transparent), var(--panel) !important; }

/* Policy pages */
.policy-page > header { padding: 28px 20px; border-bottom: 1px solid var(--line); background: rgb(10 10 12 / 90%); }
.policy-page .site-title { width: min(100%, var(--content)); margin: 0 auto; font-size: 18px; letter-spacing: -.02em; }
.policy-page main { max-width: 840px; }
.policy-page main > h1 { margin-bottom: 30px; }
.policy-page .card { padding: 24px !important; }
.last-updated { color: var(--muted); font-size: 12px; }

/* Takedown form */
.takedown-page main { max-width: 780px; }
.takedown-page main > p:first-child { color: var(--muted); font-size: 12px; }
.takedown-page main > p:first-child a { color: var(--out-color); }
.notice, .result, .errors, .takedown-page form {
  margin: 20px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.notice p, .result p, .errors { color: #bbb7be; }
.result { border-color: rgb(118 215 164 / 42%); }
.errors { border-color: rgb(255 92 117 / 52%); }
.takedown-page label { display: block; margin: 17px 0 6px; font-weight: 800; }
.takedown-page input,
.takedown-page select,
.takedown-page textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #0e0e12;
  color: var(--text);
}
.takedown-page textarea { min-height: 180px; resize: vertical; }
.takedown-page .check { display: flex; align-items: flex-start; gap: 10px; font-weight: 450; }
.takedown-page .check input { width: auto; margin-top: 7px; }
.takedown-page .hidden { position: absolute; left: -9999px; }
.takedown-page button {
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}
.takedown-page .small { color: var(--muted); font-size: 12px; }

/* Restrained motion */
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(10px); }
.motion-ready .reveal { transition: opacity .32s ease, transform .32s ease; }

@media (max-width: 920px) {
  .rank-list, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .theme-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .age, .age-bar { padding-inline: 14px; }
  main, footer, .wrap { width: min(100% - 28px, var(--content)); }
  main { padding-top: 36px; padding-bottom: 64px; }
  .wrap { align-items: flex-start; flex-direction: column; gap: 11px; }
  .wrap nav { width: 100%; padding-bottom: 2px; gap: 18px; overflow-x: auto; scrollbar-width: none; }
  .discovery-page > header, .theme-page > header, .work-page > header { position: static; }
  .home-page > header, .listing-page > header, .guide-page > header { padding: 42px 14px 34px; }
  .home-page > nav ul, .listing-page > nav ul, .guide-page > nav ul { width: max-content; margin-left: 14px; gap: 20px; }
  .site-title { max-width: 100%; font-size: clamp(30px, 9.4vw, 38px); overflow-wrap: anywhere; }
  h1 { max-width: 100%; font-size: clamp(34px, 10vw, 40px); overflow-wrap: anywhere; }
  .hero { margin-bottom: 40px; }
  .section-heading { margin-top: 44px; align-items: baseline; }
  .rank-list, .work-grid { grid-template-columns: 1fr; }
  .rank-banner { padding: 16px; }
  .recommend-card { grid-template-columns: 1fr; }
  .recommend-card > a { min-height: 150px; }
  .feed-toolbar { border-radius: var(--radius-sm); }
  .filter-result { position: sticky; right: 0; background: var(--panel); }
  .work-visual { border-radius: var(--radius); }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
}
