/* ═══════════════════════════════════════════
   UNSYSTEMATIC — Constructive Disruption
   Design System + Shared Styles
   v2 — Copy-aligned refinement
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy: #152238;
  --blue: #2B9FD8;
  --blue-light: #4AB8E8;
  --accent: #E8634A;
  --cream: #F7F5EF;
  --cream-warm: #F2EFE6;
  --ink: #111318;
  --ink-mid: #3A3F4B;
  --ink-light: #6B7280;
  --white: #FDFCF9;
  --border: rgba(21,34,56,0.08);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── UTILITY ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.5s var(--ease-out);
}
.nav.scrolled {
  background: rgba(247,245,239,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  transition: height 0.4s var(--ease-out);
}
.nav.scrolled .nav-logo-img { height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease-out);
}
.mobile-menu-btn span:first-child { top: 4px; }
.mobile-menu-btn span:last-child { bottom: 4px; }
.mobile-menu-btn.open span:first-child { top: 9px; transform: rotate(45deg); }
.mobile-menu-btn.open span:last-child { bottom: 9px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,159,216,0.25);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ─── SHARED SECTION STYLES ─── */
.section-header {
  margin-bottom: 3.5rem;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* ─── PAGE HERO (shared across inner pages) ─── */
.page-hero {
  padding: 9rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(43,159,216,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(43,159,216,0.08);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(43,159,216,0.15);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-size: 1.15rem;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 620px;
}

/* ─── HOMEPAGE HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(43,159,216,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(21,34,56,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(43,159,216,0.08);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(43,159,216,0.15);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.hero-accent {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero micro-line */
.hero-micro {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.hero-micro span {
  color: var(--blue);
}
.hero-micro .micro-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

/* Hero cards */
.hero-visual {
  position: relative;
  min-height: 440px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  width: 320px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.hero-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem;
  color: var(--navy);
}
.hero-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.55;
}
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(43,159,216,0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.card-author {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 500;
}
.hero-card-1 { top: 0; right: 0; transform: rotate(1deg); }
.hero-card-2 { top: 140px; right: 80px; transform: rotate(-1.5deg); z-index: 1; }
.hero-card-3 { top: 290px; right: 20px; transform: rotate(0.5deg); }

/* Scroll cue */
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 2rem;
  position: relative;
  z-index: 1;
}
.hero-scroll-cue span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── CORE MESSAGE / ANCHOR BLOCK ─── */
.core-message {
  padding: 5rem 2rem;
  background: var(--cream-warm);
  position: relative;
}
.core-message-inner {
  max-width: 860px;
  margin: 0 auto;
}
.core-message-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
}
.core-message-text + .core-message-text {
  margin-top: 1.25rem;
}
.core-message-text em {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}
.core-message-text strong {
  font-weight: 600;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom right, var(--cream-warm) 49.5%, transparent 50%);
}
.manifesto.from-cream::before {
  background: linear-gradient(to bottom right, var(--cream) 49.5%, transparent 50%);
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top left, var(--cream) 49.5%, transparent 50%);
}
.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 2rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  border: none;
  padding: 0;
  margin-bottom: 4rem;
}
.manifesto-quote em {
  color: var(--blue-light);
  font-weight: 500;
}
/* Manifesto prose blocks (multi-paragraph) */
.manifesto-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3.5rem;
  max-width: 800px;
}
.manifesto-prose p + p {
  margin-top: 1.25rem;
}
.manifesto-prose strong {
  color: var(--white);
  font-weight: 600;
}
.manifesto-prose em {
  color: var(--blue-light);
  font-style: italic;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}
.manifesto-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.manifesto-pillar p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ─── NAVY SECTION (reusable) ─── */
.navy-section {
  padding: 7rem 2rem;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.navy-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom right, var(--cream) 49.5%, transparent 50%);
}
.navy-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top left, var(--cream) 49.5%, transparent 50%);
}
.navy-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── LANES ─── */
.lanes {
  padding: 7rem 2rem;
}
.lanes-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.lanes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lanes-grid.lanes-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.lane {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.lane::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: 0;
  transition: opacity 0.4s;
}
.lane:hover::before { opacity: 1; }
.lane:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(21,34,56,0.08);
}
.lane-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.lane-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.lane-desc {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.lane-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lane-topics span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  background: var(--cream);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ─── FEATURED ─── */
.featured {
  padding: 0 2rem 7rem;
}
.featured-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.feat-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.45s var(--ease-out);
  cursor: pointer;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(21,34,56,0.08);
}
.feat-card-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.feat-img {
  height: 260px;
  background: linear-gradient(135deg, var(--accent, var(--blue)), var(--navy));
  position: relative;
  overflow: hidden;
}
.feat-card-large .feat-img { height: 320px; flex-shrink: 0; }
.feat-img-sm { height: 140px; }
.feat-img-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, white 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, white 1.5px, transparent 1.5px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
}
.feat-img-pattern.p2 {
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
  background-size: 20px 20px;
  opacity: 0.5;
}
.feat-img-pattern.p3 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 6px, transparent 6px);
  background-size: 24px 24px;
  opacity: 1;
}
.feat-img-pattern.p4 {
  background-image:
    linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 41%, rgba(255,255,255,0.06) 60%, transparent 61%);
  background-size: 30px 30px;
  opacity: 0.8;
}
.feat-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.feat-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-light);
}
.feat-tag {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.feat-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.feat-card-large .feat-body h3 { font-size: 1.6rem; }
.feat-body p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
  flex-grow: 1;
}
.feat-author {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-light);
  font-weight: 500;
}

/* ─── SUBSCRIBE ─── */
.subscribe {
  padding: 7rem 2rem;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.subscribe-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}
.subscribe-title em {
  color: var(--blue);
}
.subscribe-desc {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.subscribe-form { max-width: 480px; margin: 0 auto; }
.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-row input[type="email"],
.form-row input[type="text"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.form-row input:focus { border-color: var(--blue); }
.form-row input::placeholder { color: var(--ink-light); }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-light);
}
.form-success {
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.5rem;
}
.subscribe-form.submitted .form-row { display: none; }
.subscribe-form.submitted .form-note { display: none; }
.subscribe-form.submitted .form-success { display: block; }

/* Decoration */
.subscribe-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.sub-deco-ring {
  position: absolute;
  border: 1px solid rgba(43,159,216,0.08);
  border-radius: 50%;
  width: 400px; height: 400px;
  top: -200px; left: -200px;
  animation: ringPulse 8s ease-in-out infinite;
}
.sub-deco-ring.r2 {
  width: 600px; height: 600px;
  top: -300px; left: -300px;
  animation-delay: -2s;
}
.sub-deco-ring.r3 {
  width: 800px; height: 800px;
  top: -400px; left: -400px;
  animation-delay: -4s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

/* ─── FOOTER ─── */
.footer {
  padding: 4rem 2rem 2.5rem;
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.footer-brand { flex-shrink: 0; max-width: 280px; }
.footer-logo {
  height: 32px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-brand p { font-size: 0.82rem; }
.footer-publication {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--blue-light); }

/* ─── ANIMATIONS ─── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.anim-fade-up.d1 { animation-delay: 0.15s; }
.anim-fade-up.d2 { animation-delay: 0.3s; }
.anim-fade-up.d3 { animation-delay: 0.45s; }
.anim-fade-up.d4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CONTENT BLOCKS (inner pages) ─── */
.content-section {
  padding: 5rem 2rem;
}
.content-section:nth-child(even) {
  background: var(--cream-warm);
}
.content-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.content-inner.wide {
  max-width: 1320px;
}
.prose {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 680px;
}
.prose p + p { margin-top: 1.25rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--navy); }

/* Value cards (about page, submit page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(21,34,56,0.06);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ─── BLOG LISTING ─── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.essays-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.essay-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.essay-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(21,34,56,0.06);
}
.essay-tag-col {
  padding-top: 0.2rem;
}
.essay-row .card-tag {
  white-space: nowrap;
}
.essay-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.essay-body p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.essay-meta {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.25rem;
}

/* ─── FORMS (submit, contact) ─── */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
}
.form-group .form-hint {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ─── PODCAST / COMING SOON ─── */
.coming-soon-block {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--blue);
}
.coming-soon-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.coming-soon-block p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ─── SOCIAL LINKS ─── */
.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all 0.3s var(--ease-out);
}
.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    min-height: 360px;
    max-width: 400px;
  }
  .hero-card { width: 280px; }
  .hero-card-2 { top: 120px; right: 50px; }
  .hero-card-3 { top: 250px; right: 10px; }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .feat-card-large { grid-row: span 1; }
  .essay-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .essay-meta { padding-top: 0; }
  .lanes-grid.lanes-grid-2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu { display: flex; }

  .hero { padding: 7rem 1.25rem 2rem; min-height: auto; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }

  .core-message { padding: 3.5rem 1.25rem; }

  .manifesto { padding: 6rem 1.25rem; }
  .manifesto::before, .manifesto::after { height: 40px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 2rem; }

  .navy-section { padding: 6rem 1.25rem; }
  .navy-section::before, .navy-section::after { height: 40px; }

  .lanes { padding: 4rem 1.25rem; }
  .lanes-grid,
  .lanes-grid.lanes-grid-2 { grid-template-columns: 1fr; }

  .featured { padding: 0 1.25rem 4rem; }

  .subscribe { padding: 4rem 1.25rem; }
  .form-row { flex-direction: column; }
  .form-row .btn-primary { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-brand { max-width: 100%; }
  .footer-links { gap: 2rem; flex-wrap: wrap; }

  .page-hero { padding: 7rem 1.25rem 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .social-row { flex-wrap: wrap; }

  .content-section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  .filter-bar { gap: 0.5rem; }
  .filter-btn { font-size: 0.8rem; padding: 0.45rem 1rem; }
  .hero-micro { flex-wrap: wrap; justify-content: flex-start; }
}
