/* ═══════════════════════════════════════
   FORGE & FEEL — GLOBAL STYLESHEET
═══════════════════════════════════════ */

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

:root {
  --void: #03050a;
  --deep: #070d1a;
  --navy: #0c1628;
  --mid: #112040;
  --steel: #1a3060;
  --amber: #c8922a;
  --amber-bright: #e8b84b;
  --amber-dim: #7a5518;
  --cyan: #1eb8c8;
  --cyan-bright: #4dd8e8;
  --cyan-dim: #0d6878;
  --white: #f2f4f8;
  --grey: #8899b4;
  --faint: #1e2e48;
  --gold: #d4a843;
  --gold-dim: rgba(212,168,67,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─ CURSOR ─ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* ─ TYPOGRAPHY ─ */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.mono { font-family: 'DM Mono', monospace; }
.label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ─ LAYOUT ─ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─ NAVIGATION ─ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(3,5,10,0.96), transparent);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(212,168,67,0.35);
  padding: 7px 18px;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold-dim) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3,5,10,0.98);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─ PAGE HERO SHARED ─ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(200,146,42,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(30,184,200,0.04) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(52px, 8vw, 110px); margin-bottom: 20px; }
.page-hero p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(242,244,248,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ─ HERO (homepage) ─ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,146,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(30,184,200,0.05) 0%, transparent 60%);
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.15; }
.hero-line {
  position: absolute; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: line-sweep 8s ease-in-out infinite;
}
.hero-line:nth-child(1) { width: 60%; top: 25%; left: -60%; animation-delay: 0s; }
.hero-line:nth-child(2) { width: 40%; top: 50%; left: -40%; animation-delay: 2.5s; }
.hero-line:nth-child(3) { width: 70%; top: 75%; left: -70%; animation-delay: 5s; }
@keyframes line-sweep {
  0% { transform: translateX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(250%); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(64px, 9vw, 130px);
  margin-bottom: 8px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.4s forwards;
}
.hero-title-italic {
  font-size: clamp(54px, 7.5vw, 110px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.5);
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.6s forwards;
}
.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.8s forwards;
}
.hero-sub em { color: var(--white); font-style: normal; }
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fade-up 0.8s ease 1s forwards;
}
.hero-channels {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: fade-left 0.8s ease 1.2s forwards;
}
.hero-channel-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(7,13,26,0.8);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s;
  min-width: 220px;
  cursor: none;
}
.hero-channel-pill:hover { border-color: rgba(255,255,255,0.15); transform: translateX(-4px); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pill-dot.amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.pill-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.pill-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.pill-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
}
.pill-info { flex: 1; }
.pill-icon { font-size: 18px; opacity: 0.6; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 0.8s ease 1.4s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}

/* ─ TICKER ─ */
.ticker-wrap { background: var(--amber); padding: 12px 0; overflow: hidden; }
.ticker {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  font-weight: 500;
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-sep { color: rgba(3,5,10,0.35); padding: 0 6px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─ MANIFESTO ─ */
#manifesto { padding: 140px 0; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-label { position: sticky; top: 120px; }
.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.08);
  user-select: none;
}
.manifesto-text h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 32px;
}
.manifesto-text h2 em { font-style: italic; color: var(--amber); }
.manifesto-body {
  font-size: 19px;
  font-weight: 300;
  color: rgba(242,244,248,0.65);
  line-height: 1.8;
  margin-bottom: 24px;
  border-left: 1px solid var(--faint);
  padding-left: 28px;
}
.manifesto-body strong { color: var(--white); font-weight: 400; }
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--faint);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ─ CHANNELS ─ */
#channels-preview, #channels-full { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header .label { display: block; margin-bottom: 20px; }
.section-header h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; }
.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.channel-card {
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: none;
  text-decoration: none;
  display: block;
}
.channel-card.vespertine {
  background: linear-gradient(135deg, rgba(7,13,26,0.95) 0%, rgba(12,22,40,0.95) 100%);
  border: 1px solid rgba(200,146,42,0.1);
}
.channel-card.binaural {
  background: linear-gradient(135deg, rgba(7,13,26,0.95) 0%, rgba(10,20,38,0.95) 100%);
  border: 1px solid rgba(30,184,200,0.1);
}
.channel-card.vespertine:hover { border-color: rgba(200,146,42,0.3); background: linear-gradient(135deg, rgba(14,26,50,0.98) 0%, rgba(20,35,65,0.98) 100%); }
.channel-card.binaural:hover { border-color: rgba(30,184,200,0.3); background: linear-gradient(135deg, rgba(10,22,42,0.98) 0%, rgba(14,28,55,0.98) 100%); }
.channel-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  top: -100px; right: -100px;
}
.vespertine .channel-card-glow { background: var(--amber); }
.binaural .channel-card-glow { background: var(--cyan); }
.channel-card:hover .channel-card-glow { opacity: 0.07; }
.channel-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 28px;
}
.vespertine .channel-tag { color: var(--amber); border: 1px solid rgba(200,146,42,0.3); }
.binaural .channel-tag { color: var(--cyan); border: 1px solid rgba(30,184,200,0.3); }
.channel-name { font-size: clamp(28px, 3vw, 42px); margin-bottom: 18px; line-height: 1.05; }
.channel-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(242,244,248,0.58);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}
.channel-pillars { display: flex; flex-direction: column; gap: 11px; margin-bottom: 44px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
}
.pillar-dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.vespertine .pillar-dot { background: var(--amber); }
.binaural .pillar-dot { background: var(--cyan); }
.channel-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: gap 0.3s;
}
.vespertine .channel-link { color: var(--amber); }
.binaural .channel-link { color: var(--cyan); }
.channel-card:hover .channel-link { gap: 18px; }
.channel-link::after { content: '→'; }

/* ─ BUTTONS ─ */
.btn-primary {
  background: var(--amber);
  color: var(--void);
  padding: 14px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--amber-bright);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  color: var(--grey);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  cursor: none;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ─ BLOG ─ */
#blog-preview, #blog-full { padding: 120px 0; background: var(--deep); position: relative; }
#blog-preview::before, #blog-full::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--faint), transparent);
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.blog-header h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; }
.blog-header h2 em { font-style: italic; color: var(--gold); }
.blog-view-all {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: none;
}
.blog-view-all:hover { color: var(--white); gap: 14px; }
.blog-view-all::after { content: '→'; }
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}
.blog-card {
  background: rgba(7,13,26,0.8);
  border: 1px solid var(--faint);
  padding: 36px;
  transition: all 0.3s;
  cursor: none;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.blog-card.v-card::after { background: var(--amber); }
.blog-card.b-card::after { background: var(--cyan); }
.blog-card.f-card::after { background: var(--gold); }
.blog-card:hover { border-color: rgba(255,255,255,0.1); }
.blog-card:hover::after { transform: scaleX(1); }
.blog-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  background: linear-gradient(to top, rgba(3,5,10,0.95) 0%, rgba(7,13,26,0.5) 100%);
}
.blog-channel-tag {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 14px;
}
.v-tag { color: var(--amber); border: 1px solid rgba(200,146,42,0.3); }
.b-tag { color: var(--cyan); border: 1px solid rgba(30,184,200,0.3); }
.f-tag { color: var(--gold); border: 1px solid rgba(212,168,67,0.3); }
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-card.featured .blog-title { font-size: 28px; }
.blog-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,244,248,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
  display: flex;
  gap: 12px;
}

/* ─ NEWSLETTER ─ */
#newsletter {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(212,168,67,0.05) 0%, transparent 70%);
}
.newsletter-content { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.newsletter-content .label { display: block; margin-bottom: 20px; }
.newsletter-content h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.1; margin-bottom: 18px; }
.newsletter-content h2 em { font-style: italic; color: var(--gold); }
.newsletter-content p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(242,244,248,0.58);
  margin-bottom: 44px;
  line-height: 1.7;
}
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: rgba(7,13,26,0.9);
  border: 1px solid var(--faint);
  border-right: none;
  color: var(--white);
  padding: 15px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--grey); }
.newsletter-input:focus { border-color: rgba(212,168,67,0.4); }
.newsletter-btn {
  background: var(--amber);
  color: var(--void);
  border: none;
  padding: 15px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
  white-space: nowrap;
  font-weight: 500;
}
.newsletter-btn:hover { background: var(--amber-bright); }
.newsletter-note {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-top: 14px;
  opacity: 0.5;
}

/* ─ FOOTER ─ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--faint);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,244,248,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  color: var(--grey);
  transition: all 0.3s;
  cursor: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,244,248,0.4);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--faint);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(136,153,180,0.35);
  text-transform: uppercase;
}

/* ─ SCROLL REVEALS ─ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─ ANIMATIONS ─ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateY(-50%) translateX(24px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ─ RESPONSIVE ─ */
@media (max-width: 960px) {
  .hero-channels { display: none; }
  .channels-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { min-height: 280px; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-number { display: none; }
}
@media (max-width: 700px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  #hero { padding: 100px 0 60px; }
  .channel-card { padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-stats { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--faint); border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
