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

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

:root {
  --green: #80ff00;
  --green2: #00ff00;
  --dark: #1f2617;
  --dark2: #161c0f;
  --dark3: #2a3520;
  --white: #f5f5f5;
  --gray: #8a9a80;
  --border: var(--green);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 4px;
  --border-w: 2px;
  --transition: 0.2s ease;
  --header-h: 64px;
}

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

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  color: var(--green2);
  text-decoration: underline;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}

hr {
  border: none;
  border-top: 2px solid var(--green);
  margin: 0.75rem 0 1rem;
  opacity: 0.6;
}

/* ===================== MARQUEE ===================== */
.marquee-bar {
  background: var(--green);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
  height: 28px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  padding-left: 100%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; padding-left: 1rem; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 28px;
  z-index: 150;
  background: var(--dark2);
  border-bottom: var(--border-w) solid var(--green);
  height: var(--header-h);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
  order: 2;
}
.site-brand:hover {
  color: var(--white);
  text-decoration: none;
}

.header-nav {
  order: 3;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.header-nav p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: flex-end;
}

.header-nav p a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.header-nav p a:hover,
.header-nav p a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--green);
  text-decoration: none;
}

.burger-btn {
  order: 1;
  background: none;
  border: var(--border-w) solid var(--green);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.5rem;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  transition: transform var(--transition), opacity var(--transition);
}

.burger-btn:hover {
  background: var(--green);
}
.burger-btn:hover span {
  background: var(--dark);
}

/* ===================== FULLSCREEN MENU ===================== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--dark2);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.fullscreen-menu.is-open {
  transform: translateX(0);
}

.fullscreen-menu[aria-hidden="true"] {
  transform: translateX(-100%);
  pointer-events: none;
}

.fullscreen-menu[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: var(--border-w) solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.menu-close:hover {
  background: var(--green);
  color: var(--dark);
}

.menu-list {
  list-style: none;
  text-align: center;
}

.menu-list li {
  margin: 0.5rem 0;
}

.menu-list a {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 0.5rem 2rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-w) solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.menu-list a:hover {
  color: var(--green);
  border-color: var(--green);
  text-decoration: none;
}

.menu-deco {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: clamp(8rem, 25vw, 18rem);
  font-weight: 700;
  color: var(--green);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ===================== SITE WRAPPER ===================== */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

/* ===================== SECTION LAYOUT (aside left + figure right) ===================== */
.page-hero,
.content-section,
.hero-section,
.cat-hero-section,
.cat-content-section,
.entry-top-section,
.related-section,
.about-hero-section,
.about-content-section,
.privacy-section,
.data-section {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem;
}

/* aside always left */
.page-hero > aside,
.content-section > aside,
.hero-section > aside,
.cat-hero-section > aside,
.cat-content-section > aside,
.entry-top-section > aside,
.related-section > aside,
.about-hero-section > aside,
.about-content-section > aside,
.privacy-section > aside,
.data-section > aside {
  width: 220px;
  min-width: 180px;
  flex-shrink: 0;
  margin-right: 2rem;
}

/* figure takes rest */
.page-hero > figure,
.content-section > figure,
.hero-section > figure,
.cat-hero-section > figure,
.cat-content-section > figure,
.entry-top-section > figure,
.related-section > figure,
.about-hero-section > figure,
.about-content-section > figure,
.privacy-section > figure,
.data-section > figure {
  flex: 1;
  min-width: 0;
}

/* ===================== ASIDE STYLES ===================== */
.aside-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.aside-nav {
  list-style: none;
  margin-bottom: 1.5rem;
}

.aside-nav li {
  border-bottom: 1px solid rgba(128, 255, 0, 0.15);
}

.aside-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.aside-nav a:hover {
  color: var(--green);
  padding-left: 0.5rem;
  text-decoration: none;
}

.aside-tag-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  border: var(--border-w) solid var(--green);
  color: var(--green);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.aside-parent, .aside-parent-link {
  margin-bottom: 1rem;
}

.aside-parent a, .aside-parent-link a {
  color: var(--gray);
  font-size: 0.8rem;
  text-decoration: none;
}

.aside-parent a:hover, .aside-parent-link a:hover {
  color: var(--green);
}

.aside-siblings {
  margin-top: 1rem;
}

.aside-siblings h3 {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.aside-siblings ul li a {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.3rem 0;
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.aside-siblings ul li a:hover {
  color: var(--green);
}

.aside-links h3 {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

.aside-links ul li a {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.3rem 0;
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.aside-links ul li a:hover {
  color: var(--green);
}

/* ===================== HOME HERO ===================== */
.home-wrapper .hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  min-height: 45vh;
  align-items: center;
}

.hero-aside {
  position: relative;
}

.aside-sticker {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
  display: block;
  width: fit-content;
}

.sticker-1 { transform: rotate(-3deg); margin-bottom: 0.75rem; }
.sticker-2 { transform: rotate(2deg); background: var(--dark3); color: var(--green); border: 2px solid var(--green); margin-bottom: 1rem; }

.hero-aside-links {
  list-style: none;
}

.hero-aside-links li a {
  display: block;
  padding: 0.4rem 0;
  color: var(--gray);
  font-size: 0.8rem;
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(128,255,0,0.1);
}

.hero-aside-links li a:hover {
  color: var(--green);
}

.hero-figure {
  position: relative;
  text-align: right;
  overflow: hidden;
  border: var(--border-w) solid rgba(128,255,0,0.3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: var(--dark3);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128,255,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,255,0,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 44px;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: var(--green2);
  color: var(--dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: var(--border-w) solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 44px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--dark);
  text-decoration: none;
}

.hero-deco-number {
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--green);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
}

/* ===================== HOME CONTENT SECTION ===================== */
.content-section {
  border-top: 1px solid rgba(128,255,0,0.15);
}

.content-figure {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.3);
}

/* ===================== HOME CATEGORIES ===================== */
.cats-section {
  padding: 2rem 1.5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.cat-card {
  border: var(--border-w) solid rgba(128,255,0,0.4);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--dark3);
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cat-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.cat-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.cat-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.cat-card-title:hover {
  color: var(--green);
  text-decoration: none;
}

.cat-count {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  border: 1px solid var(--green);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.cat-card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.cat-card-entries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.entry-chip {
  display: inline-block;
  background: rgba(128,255,0,0.1);
  border: 1px solid rgba(128,255,0,0.3);
  color: var(--green);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--transition);
}

.entry-chip:hover {
  background: var(--green);
  color: var(--dark);
  text-decoration: none;
}

.cat-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.cat-card-link:hover {
  border-bottom-color: var(--green);
  text-decoration: none;
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================== PAGE CONTENT (default) ===================== */
.page-figure {
  min-width: 0;
}

.page-content-body {
  border: var(--border-w) solid rgba(128,255,0,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.25);
}

.page-h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-date {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* ===================== PROSE ===================== */
.prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
}

.prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.5rem 0 0.25rem;
  color: var(--green);
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.25rem;
  color: var(--white);
}

.prose p {
  margin: 0.75rem 0;
}

.prose ul, .prose ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin: 0.3rem 0;
}

.prose a {
  color: var(--green);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--green2);
}

.prose strong {
  font-weight: 700;
  color: var(--green);
}

.prose blockquote {
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  color: var(--gray);
  margin: 1rem 0;
  font-style: italic;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.prose th, .prose td {
  border: 1px solid rgba(128,255,0,0.3);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.prose th {
  background: rgba(128,255,0,0.1);
  font-weight: 700;
  color: var(--green);
}

/* ===================== CATEGORY PAGE ===================== */
.cat-hero-section {
  min-height: 30vh;
  align-items: center;
  border-bottom: 1px solid rgba(128,255,0,0.15);
}

.cat-hero-figure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border: var(--border-w) solid rgba(128,255,0,0.3);
  border-radius: var(--radius);
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.cat-hero-inner {
  flex: 1;
}

.cat-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cat-h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cat-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 600px;
}

.cat-deco {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--green);
  border: var(--border-w) solid var(--green);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.cat-content-section {
  padding-top: 1.5rem;
}

.cat-content-figure {
  min-width: 0;
}

.cat-prose {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(42,53,32,0.25);
  margin-bottom: 2rem;
}

/* ===================== ENTRY DL LIST ===================== */
.entries-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.entry-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.entry-dl dt {
  padding: 0.75rem 0 0.25rem;
  border-top: 1px solid rgba(128,255,0,0.15);
}

.entry-dl dt a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: block;
  min-height: 28px;
  display: flex;
  align-items: center;
}

.entry-dl dt a:hover {
  color: var(--white);
  text-decoration: none;
}

.entry-dl dd {
  font-size: 0.875rem;
  color: var(--gray);
  padding: 0 0 0.75rem;
  line-height: 1.5;
}

/* ===================== ENTRY PAGE ===================== */
.entry-top-section {
  padding-top: 2rem;
}

.entry-main-figure {
  min-width: 0;
}

.entry-img-wrap {
  margin-bottom: 1.5rem;
  border: var(--border-w) solid rgba(128,255,0,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}

.entry-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.breadcrumb-link {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: var(--green);
}

.breadcrumb-sep {
  color: var(--gray);
  margin: 0 0.3rem;
  font-size: 0.8rem;
}

.entry-h1 {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0;
}

.entry-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.entry-date, .entry-date-mod {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.entry-prose {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.25);
}

/* related article */
.related-section {
  border-top: 1px solid rgba(128,255,0,0.15);
}

.related-figure {
  min-width: 0;
}

.related-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: var(--border-w) solid rgba(128,255,0,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  background: var(--dark3);
  transition: border-color var(--transition), transform var(--transition);
}

.related-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  text-decoration: none;
}

.related-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}

.related-card-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero-section {
  min-height: 35vh;
  align-items: center;
  border-bottom: 1px solid rgba(128,255,0,0.15);
}

.about-hero-figure {
  padding: 2rem;
  border: var(--border-w) solid rgba(128,255,0,0.3);
  border-radius: var(--radius);
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.about-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-brand-deco {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--green);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

.about-content-section {
  padding-top: 1.5rem;
}

.about-meta-aside .about-meta-card {
  border: var(--border-w) solid rgba(128,255,0,0.25);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background: rgba(42,53,32,0.3);
}

.meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.about-content-figure {
  min-width: 0;
}

.about-prose {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.25);
}

/* ===================== PRIVACY PAGE ===================== */
.privacy-section {
  padding-top: 2rem;
}

.privacy-figure {
  min-width: 0;
}

.privacy-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.privacy-h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.privacy-date {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.privacy-header {
  margin-bottom: 1.5rem;
}

.privacy-prose {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.25);
}

/* ===================== DATA PAGE ===================== */
.data-section {
  padding-top: 2rem;
}

.data-figure {
  min-width: 0;
}

.data-header {
  margin-bottom: 1.5rem;
}

.data-h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.data-date {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.data-prose {
  border: var(--border-w) solid rgba(128,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(42,53,32,0.25);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark2);
  border-top: var(--border-w) solid var(--green);
  margin-top: 2rem;
}

.footer-brand-row {
  padding: 2rem 1.5rem 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.footer-brand-big {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--green);
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  margin-bottom: -1.5rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer-col address a {
  color: var(--green);
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
}

.footer-col address a:hover {
  color: var(--white);
}

.footer-col ul li {
  margin: 0;
  border-bottom: 1px solid rgba(128,255,0,0.1);
}

.footer-col ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.4rem 0;
  text-decoration: none;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 0.4rem;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(128,255,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--green);
}

/* ===================== EMPTY STATE ===================== */
.empty-note {
  color: var(--gray);
  font-size: 0.875rem;
  padding: 1rem 0;
}

/* ===================== SCROLL REVEAL ===================== */
@media (prefers-reduced-motion: no-preference) {
  .cats-section .cat-card {
    opacity: 0;
    transform: translateY(24px);
  }
  .cats-section .cat-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav p a {
    font-size: 0.75rem;
  }
}

@media (max-width: 700px) {
  .page-hero,
  .content-section,
  .hero-section,
  .cat-hero-section,
  .cat-content-section,
  .entry-top-section,
  .related-section,
  .about-hero-section,
  .about-content-section,
  .privacy-section,
  .data-section {
    flex-direction: column;
    padding: 1rem;
  }

  .page-hero > aside,
  .content-section > aside,
  .hero-section > aside,
  .cat-hero-section > aside,
  .cat-content-section > aside,
  .entry-top-section > aside,
  .related-section > aside,
  .about-hero-section > aside,
  .about-content-section > aside,
  .privacy-section > aside,
  .data-section > aside {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .aside-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .aside-nav li {
    border-bottom: none;
  }

  .aside-nav a {
    border: 1px solid rgba(128,255,0,0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    min-height: 36px;
    font-size: 0.8rem;
  }

  .header-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-figure {
    padding: 1.5rem 1rem;
    text-align: left;
  }

  .hero-cta-row {
    justify-content: flex-start;
  }

  .cats-section {
    padding: 1rem;
  }

  .cats-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cat-hero-figure {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 1.6rem;
  }

  .menu-list a {
    font-size: 1.1rem;
  }
}

/* ===================== UTILITY ===================== */
.home-prose {
  font-size: 0.95rem;
}

.cat-sub-aside {
  width: 220px;
  min-width: 180px;
  flex-shrink: 0;
  margin-right: 2rem;
}

@media (max-width: 700px) {
  .cat-sub-aside {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
