@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* =====================
   CSS 自定义属性
   ===================== */
:root {
  --green-neon: #80ff00;
  --green-bright: #00ff00;
  --ink: #1f2617;
  --ink-80: rgba(31,38,23,0.8);
  --ink-40: rgba(31,38,23,0.4);
  --white: #ffffff;
  --off-white: #f0f5e8;
  --card-bg: #2a3420;
  --card-bg2: #242e1a;
  --radius: 18px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --col-gap: 24px;
  --section-gap: 64px;
}

/* =====================
   基础重置
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  line-height: 1.65;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--off-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-neon);
  text-decoration: none;
  transition: color 0.18s, opacity 0.18s;
}
a:hover { color: var(--green-bright); }

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

ol, ul { list-style: none; }

/* =====================
   滚动公告条
   ===================== */
.marquee-bar {
  background: var(--green-neon);
  color: var(--ink);
  overflow: hidden;
  padding: 6px 0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track span { white-space: nowrap; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =====================
   站点包裹
   ===================== */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =====================
   Header
   ===================== */
.site-header {
  background: var(--ink);
  border-bottom: 2px solid var(--green-neon);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 32px 10px;
  border-bottom: 1px solid rgba(128,255,0,0.18);
}

.brand-name {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}
.brand-name:hover { color: var(--green-bright); }

.brand-tagline {
  font-size: 0.8rem;
  color: rgba(240,245,232,0.5);
  font-weight: 400;
}

/* 导航 nav > ol > li > a */
.main-nav {
  padding: 0 32px;
  background: rgba(128,255,0,0.04);
}
.main-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.main-nav ol li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-right: 1px solid rgba(128,255,0,0.12);
  min-height: 40px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.main-nav ol li a:hover,
.main-nav ol li a.active,
.main-nav ol li a[aria-current] {
  color: var(--green-neon);
  background: rgba(128,255,0,0.08);
}

/* =====================
   Hero（首页）
   ===================== */
.hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 48px 32px;
}

.hero-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(128,255,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-text {
  text-align: right;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--green-neon);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-text .subtitle {
  font-size: 1.05rem;
  color: rgba(240,245,232,0.7);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-cta {
  display: inline-block;
  background: var(--green-neon);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  min-height: 48px;
  transition: background 0.18s, transform 0.18s;
}
.hero-cta:hover {
  background: var(--green-bright);
  color: var(--ink);
  transform: translateY(-2px);
}

/* 贴纸 */
.hero-stickers {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
.sticker {
  position: absolute;
  font-size: 2.4rem;
  display: block;
  animation: jitter 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px var(--green-neon));
}
.s1 { top: 0; left: 10px; animation-delay: 0s; transform: rotate(-12deg); }
.s2 { top: 30px; right: 0; animation-delay: 0.6s; transform: rotate(8deg); }
.s3 { bottom: 20px; left: 0; animation-delay: 1.2s; transform: rotate(-6deg); }
.s4 { bottom: 0; right: 10px; animation-delay: 1.8s; transform: rotate(14deg); }

@keyframes jitter {
  0%   { transform: rotate(-12deg) translate(0,0); }
  25%  { transform: rotate(-10deg) translate(2px,-3px); }
  50%  { transform: rotate(-14deg) translate(-2px,2px); }
  75%  { transform: rotate(-11deg) translate(3px,-1px); }
  100% { transform: rotate(-13deg) translate(-1px,3px); }
}
.s2 { animation-name: jitter2; }
@keyframes jitter2 {
  0%   { transform: rotate(8deg) translate(0,0); }
  50%  { transform: rotate(11deg) translate(-3px,2px); }
  100% { transform: rotate(6deg) translate(2px,-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .sticker { animation: none; }
}

/* =====================
   频道 Hero
   ===================== */
.channel-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 32px 40px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.ch-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128,255,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,255,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}
.ch-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.ch-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--green-neon);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.channel-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.channel-hero .subtitle {
  color: rgba(240,245,232,0.65);
  font-size: 1rem;
}

/* 频道子导航 */
.channel-subnav-bar {
  background: var(--card-bg2);
  border-bottom: 1px solid rgba(128,255,0,0.15);
  padding: 0 32px;
}
.channel-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.channel-subnav li a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240,245,232,0.65);
  min-height: 42px;
  border-bottom: 2px solid transparent;
}
.channel-subnav li a:hover,
.channel-subnav li a.active {
  color: var(--green-neon);
  border-bottom-color: var(--green-neon);
}

/* =====================
   主内容区
   ===================== */
.main-content {
  flex: 1;
  padding: 48px 32px;
}

.content-with-aside {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--col-gap);
  align-items: start;
}

/* main > article > div 契约 */
.primary-article {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* =====================
   正文内容（page.content 插入区）
   ===================== */
.page-content-section {
  /* 正文渲染区 */
}
.prose {
  line-height: 1.75;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-neon);
  margin-top: 2em;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}
.prose p {
  margin-bottom: 1.1em;
  color: rgba(240,245,232,0.88);
  font-size: 1rem;
}
.prose ul, .prose ol {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.prose li { margin-bottom: 0.4em; }
.prose a { border-bottom: 1px solid var(--green-neon); }
.prose a:hover { border-bottom-color: var(--green-bright); }
.prose strong { color: var(--green-neon); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--green-neon);
  padding-left: 16px;
  margin: 1.5em 0;
  color: rgba(240,245,232,0.65);
  font-style: italic;
}

/* =====================
   h2 + .subtitle 模式
   ===================== */
h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
h2 + .subtitle,
h2 + p.subtitle {
  color: rgba(240,245,232,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

/* =====================
   频道卡片网格（首页）
   ===================== */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.ch-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: staggerIn 0.4s ease both;
}
.ch-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 12px 36px rgba(128,255,0,0.15);
}
@keyframes staggerIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .ch-card { animation: none; }
  .ch-card:hover { transform: none; }
}

.ch-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: var(--green-neon);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ch-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.ch-card h3 a {
  color: var(--white);
}
.ch-card h3 a:hover { color: var(--green-neon); }

.ch-card .subtitle {
  font-size: 0.88rem;
  color: rgba(240,245,232,0.55);
  margin-bottom: 14px;
  line-height: 1.5;
}

.ch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini-link {
  display: inline-block;
  background: rgba(128,255,0,0.1);
  color: var(--green-neon);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mini-link:hover {
  background: rgba(128,255,0,0.22);
  color: var(--green-bright);
}

/* =====================
   表格（子页列表契约：table > tbody > tr > td）
   ===================== */
.table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border-radius: var(--radius-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
tbody tr {
  border-bottom: 1px solid rgba(128,255,0,0.08);
  transition: background 0.15s;
}
tbody tr:hover { background: rgba(128,255,0,0.05); }
td {
  padding: 14px 16px;
  vertical-align: top;
  color: rgba(240,245,232,0.85);
}
td:first-child { font-weight: 600; }
td a { color: var(--green-neon); font-weight: 600; }
td a:hover { color: var(--green-bright); }
.td-desc {
  color: rgba(240,245,232,0.5);
  font-size: 0.85rem;
  max-width: 300px;
}
.td-date { white-space: nowrap; font-size: 0.82rem; color: rgba(240,245,232,0.4); }

/* =====================
   侧边栏 aside
   ===================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.aside-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
}
.aside-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green-neon);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(128,255,0,0.2);
  padding-bottom: 8px;
}
.aside-block ul { display: flex; flex-direction: column; gap: 6px; }
.aside-block ul li a {
  display: block;
  font-size: 0.88rem;
  color: rgba(240,245,232,0.75);
  padding: 4px 0;
  transition: color 0.15s;
}
.aside-block ul li a:hover,
.aside-block ul li a.active { color: var(--green-neon); }
.aside-block p {
  font-size: 0.85rem;
  color: rgba(240,245,232,0.55);
  line-height: 1.55;
  margin-bottom: 10px;
}
.aside-block > a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-neon);
}

.aside-sticker-block {
  text-align: center;
  background: rgba(128,255,0,0.06);
}
.big-sticker { font-size: 2.8rem; display: block; margin-bottom: 6px; }
.aside-sticker-block p { font-size: 0.78rem; color: rgba(240,245,232,0.35); margin: 0; }

/* =====================
   文章页
   ===================== */
.article-main { padding-top: 32px; }

.article-header-section {
  border-bottom: 1px solid rgba(128,255,0,0.15);
  padding-bottom: 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(240,245,232,0.45);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(240,245,232,0.65); }
.breadcrumb a:hover { color: var(--green-neon); }
.breadcrumb span { color: rgba(240,245,232,0.3); }

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.art-date {
  font-size: 0.8rem;
  color: rgba(240,245,232,0.45);
}
.art-modified { opacity: 0.7; }
.art-channel-tag {
  display: inline-block;
  background: rgba(128,255,0,0.12);
  color: var(--green-neon);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.article-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.article-page .subtitle {
  color: rgba(240,245,232,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.related-list li a {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(240,245,232,0.8);
  transition: background 0.15s, color 0.15s;
}
.related-list li a:hover {
  background: rgba(128,255,0,0.1);
  color: var(--green-neon);
}

/* =====================
   关于页
   ===================== */
.about-main { padding-top: 32px; }
.about-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--green-neon);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.about-hero-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.about-hero-section .subtitle {
  color: rgba(240,245,232,0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.about-ch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.about-ch-btn {
  display: inline-block;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-neon);
  min-height: 44px;
  transition: background 0.15s, transform 0.15s;
}
.about-ch-btn:hover {
  background: rgba(128,255,0,0.15);
  color: var(--green-bright);
  transform: rotate(-1deg);
}

/* =====================
   隐私页
   ===================== */
.privacy-main { padding-top: 32px; }
.privacy-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: rgba(128,255,0,0.7);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.privacy-header-section h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.privacy-header-section .subtitle {
  color: rgba(240,245,232,0.6);
  font-size: 1rem;
  line-height: 1.6;
}
.privacy-updated {
  font-size: 0.82rem;
  color: rgba(240,245,232,0.4);
  margin-top: 12px;
}
.privacy-prose p { margin-bottom: 1em; }
.privacy-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.privacy-link-list li a {
  display: inline-block;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-neon);
  min-height: 40px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.privacy-link-list li a:hover {
  background: rgba(128,255,0,0.12);
  color: var(--green-bright);
}

/* =====================
   Footer：footer > section.footer-cta-block + section.footer-bottom > nav + section
   ===================== */
.site-footer {
  background: var(--card-bg2);
  border-top: 2px solid var(--green-neon);
  margin-top: auto;
}

.footer-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(128,255,0,0.06);
  border-bottom: 1px solid rgba(128,255,0,0.1);
  flex-wrap: wrap;
}
.footer-cta-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--green-neon);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  transition: background 0.15s;
}
.footer-cta-btn:hover {
  background: var(--green-bright);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  flex-wrap: wrap;
}

/* footer-nav: footer > section.footer-bottom > nav */
.footer-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.footer-nav ol li a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(240,245,232,0.45);
  padding: 6px 10px;
  min-height: 36px;
  transition: color 0.15s;
}
.footer-nav ol li a:hover { color: var(--green-neon); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(240,245,232,0.3);
  white-space: nowrap;
}

/* =====================
   视差滚动（标准动效）
   ===================== */
@media (prefers-reduced-motion: no-preference) {
  .ch-card:nth-child(1) { animation-delay: 0s; }
  .ch-card:nth-child(2) { animation-delay: 0.08s; }
  .ch-card:nth-child(3) { animation-delay: 0.16s; }
  .ch-card:nth-child(4) { animation-delay: 0.24s; }
  .ch-card:nth-child(5) { animation-delay: 0.32s; }
  .ch-card:nth-child(6) { animation-delay: 0.40s; }
}

/* =====================
   响应式断点
   ===================== */
@media (max-width: 900px) {
  .content-with-aside {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .brand-row {
    padding: 12px 16px 8px;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .brand-name { font-size: 1.35rem; }
  .main-nav { padding: 0 8px; }
  .main-nav ol li a {
    padding: 10px 10px;
    font-size: 0.8rem;
    min-height: 44px;
  }
  .hero-section { padding: 32px 16px; min-height: 40vh; }
  .hero-inner { flex-direction: column; align-items: flex-end; gap: 24px; }
  .hero-text { text-align: right; max-width: 100%; }
  .hero-stickers { width: 100px; height: 80px; }
  .main-content { padding: 32px 16px; }
  .channel-hero { padding: 32px 16px 24px; }
  .channel-subnav-bar { padding: 0 8px; }
  .channel-subnav li a { padding: 10px 10px; font-size: 0.8rem; min-height: 44px; }
  .footer-cta-block { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-nav ol { gap: 0; }
  .footer-nav ol li a { min-height: 44px; padding: 10px 8px; }
  .ch-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .table-wrap { font-size: 0.85rem; }
  td { padding: 10px 10px; }
  .td-desc { display: none; }
  .about-ch-grid { flex-direction: column; }
  .about-ch-btn { width: 100%; text-align: center; justify-content: center; }
  .privacy-link-list { flex-direction: column; }
  .privacy-link-list li a { width: 100%; }
}

@media (max-width: 375px) {
  html { font-size: 16px; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-inner { align-items: flex-start; }
  .hero-text { text-align: left; }
  .hero-cta { width: 100%; text-align: center; justify-content: center; display: flex; }
}
