@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

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

:root {
  --c-red: #ff0000;
  --c-purple: #8b00ff;
  --c-dark: #261717;
  --c-dark2: #1a0f0f;
  --c-dark3: #0e0808;
  --c-red-dim: rgba(255,0,0,0.18);
  --c-purple-dim: rgba(139,0,255,0.18);
  --c-white-10: rgba(255,255,255,0.10);
  --c-white-15: rgba(255,255,255,0.15);
  --c-white-20: rgba(255,255,255,0.20);
  --c-white-60: rgba(255,255,255,0.60);
  --c-white-80: rgba(255,255,255,0.80);
  --c-border: rgba(255,255,255,0.18);
  --c-border-hot: rgba(255,0,0,0.35);
  --c-text: rgba(255,255,255,0.90);
  --c-text-dim: rgba(255,255,255,0.60);
  --c-text-muted: rgba(255,255,255,0.40);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --header-h: 64px;
  --anchor-h: 44px;
  --transition: 0.25s ease;
  --blur: blur(16px);
  --blur-sm: blur(10px);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--c-dark3);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,0,0,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(139,0,255,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 40%, rgba(139,0,255,0.10) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--c-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
table { border-collapse: collapse; width: 100%; }

/* ===== SITE ROOT ===== */
#site-root { display: flex; flex-direction: column; min-height: 100vh; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(38,23,23,0.75);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}
.brand-icon { border-radius: var(--radius); }
.brand-icon-text {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-red), var(--c-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hdr-contact {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-dim);
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color var(--transition), border-color var(--transition);
}
.hdr-contact:hover { color: var(--c-red); border-color: var(--c-border-hot); }
.hamburger {
  width: 44px; height: 44px;
  background: var(--c-white-10);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14,8,8,0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.overlay-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 48px; height: 48px;
  background: var(--c-white-10);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-close:hover { background: var(--c-red-dim); border-color: var(--c-border-hot); }
.overlay-aside nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.overlay-aside nav ul li a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--c-white-80);
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 48px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.overlay-aside nav ul li a:hover,
.overlay-aside nav ul li a[aria-current="page"] {
  color: #fff;
  border-color: var(--c-border-hot);
  background: var(--c-red-dim);
}

/* ===== STICKY ANCHOR BAR ===== */
.sticky-anchor-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 800;
  height: var(--anchor-h);
  background: rgba(26,15,15,0.85);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.anchor-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-bar-inner::-webkit-scrollbar { display: none; }
.anchor-bar-inner a {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-dim);
  padding: 6px 14px;
  border-radius: var(--radius);
  min-height: 32px;
  display: flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.anchor-bar-inner a:hover,
.anchor-bar-inner a.active { color: var(--c-red); background: var(--c-red-dim); }

/* ===== HERO (HOME) ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + var(--anchor-h));
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(14,8,8,0.55) 0%,
    rgba(38,23,23,0.75) 50%,
    rgba(14,8,8,0.90) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 40px 120px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  border: 1px solid var(--c-border-hot);
  border-radius: var(--radius);
  padding: 4px 12px;
  margin-bottom: 20px;
  background: var(--c-red-dim);
}
.hero-h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 60%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-arc {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  height: 80px;
  background: var(--c-dark3);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--c-red), var(--c-purple));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  border: none;
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 28px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--c-red); background: var(--c-red-dim); }
.btn-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 20px;
  background: var(--c-white-10);
  color: var(--c-white-80);
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  transition: background var(--transition), color var(--transition);
}
.btn-pill:hover { background: var(--c-red-dim); color: var(--c-red); border-color: var(--c-border-hot); }

/* ===== MAIN LAYOUT ===== */
.site-main {
  flex: 1;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  gap: 32px;
  width: 100%;
}
.site-main .wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ===== ASIDE ===== */
.site-aside {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--header-h) + var(--anchor-h) + 20px);
}
.site-aside > nav {
  background: var(--c-white-10);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.site-aside > nav ul li.aside-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-text-muted);
  text-transform: uppercase;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 10px;
}
.site-aside > nav ul li a {
  display: block;
  font-size: 14px;
  color: var(--c-text-dim);
  padding: 8px 10px;
  border-radius: var(--radius);
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}
.site-aside > nav ul li a:hover { color: var(--c-red); background: var(--c-red-dim); }
.aside-block {
  background: var(--c-white-10);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.aside-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white-80);
  margin-bottom: 10px;
}
.aside-block h3 span { color: var(--c-red); }
.aside-block p {
  font-size: 13px;
  color: var(--c-text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}
.aside-block nav ul li a {
  display: block;
  font-size: 13px;
  color: var(--c-text-dim);
  padding: 6px 8px;
  border-radius: var(--radius);
  min-height: 32px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.aside-block nav ul li a:hover { color: var(--c-red); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px; height: 22px;
  background: linear-gradient(180deg, var(--c-red), var(--c-purple));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title span { color: #fff; }

/* ===== GLASS CARD ===== */
.gl-card {
  background: var(--c-white-15);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.gl-card:hover { border-color: rgba(255,0,0,0.40); transform: translateY(-2px); }
.gl-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.gl-card h3 span { color: inherit; }
.gl-card p {
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.gl-card h3 a { color: inherit; }
.gl-card h3 a:hover { color: var(--c-red); }

/* ===== CHANNELS GRID ===== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.channel-card .btn-pill { margin-top: auto; }

/* ===== TABLE ===== */
.articles-table-wrap,
.children-table-wrap { overflow-x: auto; }
table {
  background: var(--c-white-10);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
thead th {
  background: rgba(255,0,0,0.12);
  color: var(--c-white-80);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.04); }
tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--c-text-dim);
  vertical-align: middle;
}
tbody td a { color: var(--c-white-80); transition: color var(--transition); }
tbody td a:hover { color: var(--c-red); }
.td-num { color: var(--c-text-muted); font-size: 13px; font-weight: 700; width: 48px; }
.td-date { white-space: nowrap; font-size: 13px; }
.td-desc { font-size: 13px; max-width: 260px; }

/* ===== PAGE CONTENT BODY ===== */
.page-content-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
}
.page-content-body h2,
.page-content-body h3 { color: #fff; margin: 28px 0 14px; }
.page-content-body h2 { font-size: 20px; }
.page-content-body h3 { font-size: 17px; }
.page-content-body p { margin-bottom: 16px; }
.page-content-body ul,
.page-content-body ol { padding-left: 24px; margin-bottom: 16px; }
.page-content-body ul { list-style: disc; }
.page-content-body ol { list-style: decimal; }
.page-content-body li { margin-bottom: 6px; }
.page-content-body a { color: var(--c-red); text-decoration: underline; text-decoration-color: rgba(255,0,0,0.4); }
.page-content-body a:hover { text-decoration-color: var(--c-red); }
.page-content-body strong { color: #fff; font-weight: 700; }
.page-content-body table { margin: 20px 0; }
.page-content-body time { color: var(--c-text-muted); font-size: 14px; }

/* ===== CHANNEL HERO ===== */
.channel-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--anchor-h) + 48px) 40px 80px;
  background: linear-gradient(160deg, rgba(255,0,0,0.12) 0%, rgba(139,0,255,0.10) 100%);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.channel-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,0,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.channel-hero-inner { max-width: 800px; position: relative; z-index: 1; }
.channel-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-purple);
  border: 1px solid rgba(139,0,255,0.40);
  border-radius: var(--radius);
  padding: 4px 12px;
  margin-bottom: 16px;
  background: rgba(139,0,255,0.12);
}
.channel-hero h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.channel-hero-desc {
  font-size: 16px;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 640px;
}
.channel-hero-arc {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--c-dark3);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* ===== INNER PAGE HERO ===== */
.inner-page-hero {
  padding: calc(var(--header-h) + var(--anchor-h) + 48px) 40px 60px;
  border-bottom: 1px solid var(--c-border);
  background: linear-gradient(135deg, rgba(139,0,255,0.10), rgba(255,0,0,0.08));
}
.inner-hero-content { max-width: 720px; }
.inner-hero-content h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.inner-hero-content p { font-size: 16px; color: var(--c-text-dim); }

/* ===== ARTICLE LAYOUT ===== */
.article-layout { align-items: flex-start; }
.article-hero-wrap { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; }
.article-breadcrumb {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.article-breadcrumb a { color: var(--c-text-muted); transition: color var(--transition); }
.article-breadcrumb a:hover { color: var(--c-red); }
.article-breadcrumb span { color: var(--c-text-dim); }
.article-body h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.article-meta time {
  font-size: 13px;
  color: var(--c-text-muted);
  background: var(--c-white-10);
  padding: 4px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.article-content { font-size: 16px; line-height: 1.8; color: var(--c-text); }
.article-content h2,
.article-content h3 { color: #fff; margin: 28px 0 14px; }
.article-content h2 { font-size: 20px; }
.article-content h3 { font-size: 17px; }
.article-content p { margin-bottom: 18px; }
.article-content ul,
.article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--c-red); text-decoration: underline; text-decoration-color: rgba(255,0,0,0.4); }
.article-content a:hover { text-decoration-color: var(--c-red); }
.article-content strong { color: #fff; }
.article-content table { margin: 20px 0; }

/* ===== SIBLINGS ===== */
.siblings-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* ===== ABOUT NAV GRID ===== */
.about-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.about-nav-card h3 a { color: #fff; }
.about-nav-card h3 a:hover { color: var(--c-red); }

/* ===== PRIVACY ===== */
.privacy-hero { background: linear-gradient(135deg, rgba(139,0,255,0.12), rgba(255,0,0,0.06)); }
.privacy-date {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.privacy-date time { color: var(--c-text-dim); }
.privacy-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-dark2);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.footer-cta-block {
  text-align: center;
  padding: 56px 24px 48px;
  background: linear-gradient(135deg, rgba(255,0,0,0.10), rgba(139,0,255,0.10));
  border-bottom: 1px solid var(--c-border);
}
.footer-cta-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-cta-block h2 span { color: #fff; }
.footer-cta-block p {
  font-size: 16px;
  color: var(--c-text-dim);
  margin-bottom: 24px;
}
.footer-cols {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.footer-col nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav ul li a {
  font-size: 14px;
  color: var(--c-text-dim);
  min-height: 32px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.footer-col nav ul li a:hover { color: var(--c-red); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
}
.footer-bottom nav a {
  font-size: 13px;
  color: var(--c-text-muted);
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.footer-bottom nav a:hover { color: var(--c-red); }
.footer-copy {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ===== SCROLL REVEAL ===== */
@media (prefers-reduced-motion: no-preference) {
  .gl-card,
  .section-title,
  .channels-grid .channel-card,
  .siblings-list .sibling-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease;
  }
  .gl-card.revealed,
  .section-title.revealed,
  .channels-grid .channel-card.revealed,
  .siblings-list .sibling-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-main { padding: 32px 20px 48px; }
  .site-aside { width: 240px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .site-main { flex-direction: column; gap: 24px; }
  .site-aside {
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-content { padding: 40px 24px 100px; }
  .channel-hero { padding: calc(var(--header-h) + var(--anchor-h) + 32px) 24px 64px; }
  .inner-page-hero { padding: calc(var(--header-h) + var(--anchor-h) + 32px) 24px 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .about-nav-grid { grid-template-columns: 1fr 1fr; }
  .siblings-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-main { padding: 24px 16px 40px; }
  .site-aside { grid-template-columns: 1fr; }
  .hero-content { padding: 32px 20px 90px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr 1fr; padding: 24px 16px; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .channels-grid { grid-template-columns: 1fr; }
  .about-nav-grid { grid-template-columns: 1fr; }
  .privacy-links-grid { grid-template-columns: 1fr; }
  .anchor-bar-inner { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .hdr-contact { display: none; }
}

@media (max-width: 375px) {
  body { overflow-x: hidden; }
  .footer-cols { grid-template-columns: 1fr; }
}
