/*
Theme Name:  BharatNXT Editorial
Theme URI:   https://bharatnxt.in
Author:      BharatNXT
Description: Premium editorial theme for BharatNXT — Stories shaping Bharat's next.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: bharatnxt
Tags:        editorial, minimal, dark-mode, blog, custom-header
*/

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', monospace;

  --bg:          #faf9f6;
  --bg-alt:      #f3f1ec;
  --bg-invert:   #111110;
  --ink:         #111110;
  --ink-2:       #3a3935;
  --ink-3:       #6b6860;
  --ink-4:       #a09d98;
  --rule:        #ddd9d3;
  --rule-strong: #bbb7b0;
  --accent:      #c8640a;
  --accent-lt:   #f0e6d8;
  --accent-dk:   #9e4c06;

  --max-w:     1280px;
  --col-gap:   clamp(24px, 3vw, 48px);
  --section-v: clamp(72px, 9vw, 120px);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg:          #111110;
  --bg-alt:      #1a1a18;
  --bg-invert:   #faf9f6;
  --ink:         #f0ede8;
  --ink-2:       #c8c4bc;
  --ink-3:       #8a877f;
  --ink-4:       #504e49;
  --rule:        #2a2925;
  --rule-strong: #3d3c37;
  --accent:      #e07a28;
  --accent-lt:   #2a1e10;
  --accent-dk:   #f09040;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rule-strong); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section  { padding: var(--section-v) 0; }
.rule     { border: none; border-top: 1px solid var(--rule); }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.t-display {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400; line-height: 0.96; letter-spacing: -0.025em;
}
.t-hero {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 400; line-height: 0.96; letter-spacing: -0.025em;
}
.t-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.015em;
}
.t-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
}
.t-article-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.008em;
}
.t-label {
  font-family: var(--mono);
  font-size: 0.6875rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.t-body  { font-size: 1rem; line-height: 1.75; color: var(--ink-2); }
.t-small { font-size: 0.8125rem; line-height: 1.5; }
.t-italic { font-style: italic; }
.t-accent { color: var(--accent); }

/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
#reading-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 2000; background: var(--rule);
}
#reading-progress-fill {
  height: 100%; width: 0;
  background: var(--accent); transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  transition: background 0.35s, border-color 0.35s;
}
#site-nav.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}
.site-logo {
  font-family: var(--serif); font-size: 1.375rem; font-weight: 500;
  letter-spacing: -0.01em; color: var(--ink);
  transition: color 0.2s;
}
.site-logo:hover { color: var(--accent); }

.nav-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.8125rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.01em; transition: color 0.2s; white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--ink); }
.nav-menu .coming-soon > a {
  color: var(--ink-4); pointer-events: none;
}
.nav-menu .coming-soon > a::after { content: '·'; color: var(--accent); margin-left: 3px; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--rule); background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; transition: border-color 0.2s;
}
.theme-toggle:hover { border-color: var(--ink); }
.nav-cta {
  padding: 8px 20px; border: 1px solid var(--ink); border-radius: 2px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink); transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: 0.3s var(--ease-out);
}
.mobile-nav-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-nav-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-nav-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); flex-direction: column;
  padding: 96px clamp(20px, 5vw, 48px) 48px; gap: 0;
}
.mobile-nav-open .mobile-menu { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--ink-2); padding: 20px 0; border-bottom: 1px solid var(--rule);
  display: block; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--ink); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: 1px solid var(--ink); border-radius: 2px;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  transition: background 0.22s, color 0.22s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; }
.btn-ghost { border-color: var(--rule); color: var(--ink-2); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--ink); border-color: var(--rule-strong); }
.btn::after { content: ' →'; transition: margin 0.2s; }
.btn:hover::after { margin-left: 4px; }

/* ─────────────────────────────────────────
   HERO (Front Page)
───────────────────────────────────────── */
.site-hero {
  padding-top: 64px; min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: var(--col-gap);
  padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px) 0;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-text { padding-bottom: clamp(48px, 6vw, 80px); }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--accent); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
  font-weight: 400; line-height: 0.96; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem; color: var(--ink-2); line-height: 1.75;
  max-width: 380px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-col { align-self: stretch; overflow: hidden; min-height: 480px; }
.hero-image-col img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}
[data-theme="dark"] .hero-image-col img { filter: grayscale(40%) brightness(0.8); }
.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}
.hero-foot-text { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--ink-4); text-transform: uppercase; }

/* ─────────────────────────────────────────
   PERSPECTIVE STRIP (Our POV)
───────────────────────────────────────── */
.pov-strip {
  background: var(--bg-invert); color: var(--bg);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px);
}
[data-theme="dark"] .pov-strip { background: var(--bg-alt); color: var(--ink); }
.pov-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); align-items: center;
}
.pov-strip-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.4; margin-bottom: 20px; }
.pov-strip h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.02em; color: inherit;
}
.pov-strip p { font-size: 1rem; line-height: 1.8; opacity: 0.6; }

/* ─────────────────────────────────────────
   ARTICLE CARDS (Grid)
───────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 40px) var(--col-gap);
}
.articles-grid .col-8  { grid-column: span 8; }
.articles-grid .col-4  { grid-column: span 4; }
.articles-grid .col-6  { grid-column: span 6; }
.articles-grid .col-12 { grid-column: span 12; }

.article-card { cursor: pointer; display: block; }
.article-card:hover .card-thumb img { transform: scale(1.04); filter: grayscale(0%); }
.card-thumb { overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
[data-theme="dark"] .card-thumb img { filter: grayscale(35%) brightness(0.85); }

.card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.card-cat { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.card-date { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-4); }
.card-date::before { content: '·'; margin-right: 14px; }
.card-title {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 10px;
  transition: color 0.2s;
}
.article-card:hover .card-title { color: var(--accent); }
.card-excerpt {
  font-size: 0.875rem; color: var(--ink-3); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-author { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.card-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--rule);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.75rem; font-weight: 600; color: var(--ink-3);
  flex-shrink: 0;
}
.card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.card-author-name { font-size: 0.775rem; color: var(--ink-3); font-weight: 500; }

.article-card.featured .card-thumb { aspect-ratio: 3/2; }
.article-card.featured .card-title { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 44px;
}

/* ─────────────────────────────────────────
   PLATFORM GRID
───────────────────────────────────────── */
.platform-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-top: 44px;
}
.platform-item {
  background: var(--bg-alt); padding: clamp(24px, 3.5vw, 44px) clamp(18px, 2.5vw, 32px);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px; cursor: pointer; position: relative;
  transition: background 0.3s;
}
.platform-item:hover { background: var(--bg); }
.platform-item.is-active { background: var(--ink); }
.platform-item.is-active .pi-title { color: var(--bg); }
.platform-item.is-active .pi-num, .platform-item.is-active .pi-badge { color: rgba(255,255,255,0.35); }
.pi-num { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--ink-4); margin-bottom: 36px; }
.pi-title { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.7rem); font-weight: 400; line-height: 1.15; margin-bottom: 10px; transition: color 0.2s; }
.pi-badge { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pi-badge.live { color: var(--accent); }
.pi-badge.soon { color: var(--ink-4); }
.pi-arrow { position: absolute; bottom: 18px; right: 18px; font-size: 0.9rem; color: var(--ink-4); opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.platform-item:hover .pi-arrow { opacity: 1; transform: translate(2px,-2px); }

/* ─────────────────────────────────────────
   HOME CTA BAND
───────────────────────────────────────── */
.home-cta { display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); align-items: center; border-top: 1px solid var(--rule); padding: var(--section-v) 0; }
.home-cta h2 { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 5rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.025em; }
.home-cta h2 em { font-style: italic; color: var(--accent); }
.home-cta-right { display: flex; flex-direction: column; gap: 20px; }
.home-cta-right p { font-size: 1rem; color: var(--ink-2); line-height: 1.75; max-width: 420px; }
.home-cta-right .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   PAGE HEADER (archive, about, etc.)
───────────────────────────────────────── */
.page-banner {
  padding-top: 64px;
  border-bottom: 1px solid var(--rule);
}
.page-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(48px, 8vh, 100px) clamp(20px, 5vw, 80px) 0;
}
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.page-banner h1 em { font-style: italic; color: var(--accent); }
.page-banner-sub { font-size: 1rem; color: var(--ink-2); max-width: 500px; line-height: 1.75; }

/* ─────────────────────────────────────────
   CATEGORIES BAR
───────────────────────────────────────── */
.cats-bar {
  display: flex; overflow-x: auto; scrollbar-width: none;
  border-top: 1px solid var(--rule); margin-top: 36px;
}
.cats-bar::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 14px 22px; flex-shrink: 0;
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  border-right: 1px solid var(--rule);
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s; text-decoration: none; display: block;
}
.cat-tab:hover, .cat-tab.is-active { color: var(--ink); background: var(--bg-alt); }

/* ─────────────────────────────────────────
   PERSPECTIVES LIST (archive)
───────────────────────────────────────── */
.perspectives-list { padding: var(--section-v) 0; }
.pi-row {
  display: grid; grid-template-columns: 1fr auto; gap: var(--col-gap);
  align-items: center; padding: 32px 0; border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.pi-row:first-child { border-top: 1px solid var(--rule); }
.pi-row:hover .pi-row-title { color: var(--accent); }
.pi-row-meta { display: flex; gap: 14px; margin-bottom: 12px; }
.pi-row-cat { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.pi-row-date { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-4); }
.pi-row-date::before { content: '·'; margin-right: 14px; }
.pi-row-title {
  font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 10px; transition: color 0.2s;
}
.pi-row-excerpt { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; max-width: 640px; }
.pi-row-author { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.pi-row-thumb {
  width: 180px; height: 120px; flex-shrink: 0; overflow: hidden;
}
.pi-row-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.4s; }
.pi-row:hover .pi-row-thumb img { filter: none; }
.pi-row-arrow { font-size: 1rem; color: var(--ink-4); transition: transform 0.3s, color 0.2s; }
.pi-row:hover .pi-row-arrow { transform: translateX(6px); color: var(--accent); }

/* ─────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────── */
.post-hero {
  padding-top: 64px; border-bottom: 1px solid var(--rule);
}
.post-hero-inner {
  max-width: 860px; margin: 0 auto;
  padding: clamp(48px, 8vh, 100px) clamp(20px, 5vw, 48px) clamp(40px, 5vh, 72px);
}
.post-meta-top { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.post-cat-link {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--accent-lt); padding-bottom: 2px;
  transition: color 0.2s;
}
.post-cat-link:hover { color: var(--accent-dk); }
.post-read-time { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-4); }
.post-read-time::before { content: '·'; margin-right: 16px; }
.post-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.post-deck {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--ink-2);
  line-height: 1.65; margin-bottom: 36px; max-width: 680px;
}
.post-byline { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--rule); }
.post-byline-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; border: 1px solid var(--rule); flex-shrink: 0; }
.post-byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-byline-name { font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.post-byline-date { font-size: 0.75rem; color: var(--ink-3); }

.post-cover {
  max-width: 1040px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.post-cover img {
  width: 100%; aspect-ratio: 16/8; object-fit: cover;
  filter: grayscale(10%);
}
[data-theme="dark"] .post-cover img { filter: grayscale(30%) brightness(0.85); }
.post-cover figcaption {
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em;
  color: var(--ink-4); text-transform: uppercase; margin-top: 12px; text-align: center;
}

.post-body {
  max-width: 720px; margin: clamp(40px, 6vh, 72px) auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.post-body p { font-size: 1.125rem; line-height: 1.85; color: var(--ink-2); margin-bottom: 28px; }
.post-body h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; letter-spacing: -0.01em; color: var(--ink);
  margin: 48px 0 20px;
}
.post-body h3 {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400; letter-spacing: -0.01em; color: var(--ink);
  margin: 36px 0 16px;
}
.post-body blockquote {
  margin: 40px 0; padding: 0 0 0 28px;
  border-left: 2px solid var(--accent);
}
.post-body blockquote p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; line-height: 1.55; color: var(--ink); margin: 0;
}
.post-body a { color: var(--accent); border-bottom: 1px solid var(--accent-lt); }
.post-body a:hover { border-bottom-color: var(--accent); }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 28px; }
.post-body li { font-size: 1.0625rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 8px; }
.post-body img { width: 100%; margin: 36px 0; }
.post-body hr { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }

.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule); }
.post-tag {
  padding: 5px 12px; border: 1px solid var(--rule); border-radius: 2px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { border-color: var(--ink); color: var(--ink); }

.related-posts { padding: var(--section-v) 0; background: var(--bg-alt); border-top: 1px solid var(--rule); }

/* ─────────────────────────────────────────
   COMING SOON PAGES
───────────────────────────────────────── */
.cs-wrap {
  padding-top: 64px; min-height: 100vh;
  display: flex; flex-direction: column;
}
.cs-body {
  flex: 1; max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
  display: flex; flex-direction: column; justify-content: center;
}
.cs-num { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 32px; }
.cs-h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 8rem); font-weight: 400; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 36px; }
.cs-h1 em { font-style: italic; color: var(--accent); }
.cs-desc { font-size: 1.0625rem; color: var(--ink-2); line-height: 1.75; max-width: 500px; margin-bottom: 44px; }
.cs-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.notify-row { display: flex; gap: 0; max-width: 380px; margin-top: 32px; border: 1px solid var(--rule-strong); border-radius: 2px; overflow: hidden; }
.notify-input { flex: 1; padding: 12px 16px; background: var(--bg); border: none; font-family: var(--sans); font-size: 0.875rem; color: var(--ink); outline: none; }
.notify-input::placeholder { color: var(--ink-4); }
.notify-btn { padding: 12px 18px; background: var(--ink); color: var(--bg); font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.notify-btn:hover { background: var(--accent); }
.cs-foot { border-top: 1px solid var(--rule); padding: 20px clamp(20px, 5vw, 80px); display: flex; justify-content: space-between; align-items: center; }
.cs-back { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.cs-back::before { content: '← '; }
.cs-back:hover { color: var(--ink); }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-lede {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 400; line-height: 1.3; letter-spacing: -0.015em;
  border-top: 1px solid var(--rule); padding-top: 40px; margin-top: 48px;
  max-width: 880px;
}
.about-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px);
  padding: var(--section-v) 0; border-top: 1px solid var(--rule);
}
.about-body p { font-size: 1.0625rem; color: var(--ink-2); line-height: 1.85; }
.about-body p + p { margin-top: 22px; }
.about-values { display: flex; flex-direction: column; }
.value-row { padding: 24px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 32px 1fr; gap: 20px; }
.value-row:first-child { border-top: 1px solid var(--rule); }
.value-num { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-4); padding-top: 4px; }
.value-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; }
.value-desc { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; }

.founder-note { background: var(--bg-alt); padding: var(--section-v) 0; border-top: 1px solid var(--rule); }
.fn-inner { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.fn-quote {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-style: italic; font-weight: 400; line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.fn-attr { display: flex; align-items: center; gap: 14px; }
.fn-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 1px solid var(--rule); flex-shrink: 0; }
.fn-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fn-name { font-size: 0.875rem; font-weight: 600; }
.fn-role { font-size: 0.775rem; color: var(--ink-3); }

/* ─────────────────────────────────────────
   PARTNER PAGE
───────────────────────────────────────── */
.partner-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px);
  align-items: start; padding-top: clamp(60px, 10vh, 120px);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.partner-h1 { font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 400; line-height: 0.95; letter-spacing: -0.025em; }
.partner-h1 em { font-style: italic; color: var(--accent); }
.partner-right-text { font-size: 1.0625rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 28px; }

.offering-list { display: flex; flex-direction: column; }
.offering-row {
  display: grid; grid-template-columns: 32px 1fr 20px; gap: clamp(20px, 3.5vw, 48px);
  align-items: center; padding: 28px 0; border-bottom: 1px solid var(--rule); cursor: pointer;
}
.offering-row:first-child { border-top: 1px solid var(--rule); }
.offering-row:hover .offering-title { color: var(--accent); }
.offering-num { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-4); }
.offering-title { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.9rem); font-weight: 400; transition: color 0.2s; }
.offering-desc { font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; margin-top: 6px; }
.offering-arrow { font-size: 0.9rem; color: var(--ink-4); transition: transform 0.3s, color 0.2s; }
.offering-row:hover .offering-arrow { transform: translateX(5px); color: var(--accent); }

.partner-form-section { background: var(--bg-alt); padding: var(--section-v) 0; border-top: 1px solid var(--rule); }
.partner-form-inner { max-width: 640px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.partner-form-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; letter-spacing: -0.015em; margin-bottom: 40px; }
.form-field { margin-bottom: 24px; }
.form-field label { display: block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 0;
  background: transparent; border: none; border-bottom: 1px solid var(--rule-strong);
  font-family: var(--sans); font-size: 0.9375rem; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-4); }
.form-field textarea { resize: none; min-height: 96px; }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--bg-alt); }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); }

/* ─────────────────────────────────────────
   NOMINATE MODAL
───────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,10,9,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: var(--bg); width: 100%; max-width: 520px;
  padding: 44px; border: 1px solid var(--rule);
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  font-size: 1rem; color: var(--ink-3); cursor: pointer;
}
.modal-close:hover { color: var(--ink); }
.modal-box h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; margin-bottom: 6px; }
.modal-box .modal-sub { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 28px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--rule); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 72px); margin-bottom: 52px;
}
.footer-brand { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; margin-bottom: 10px; display: block; }
.footer-tagline { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 0.75rem; color: var(--ink-4); transition: color 0.2s; }
.footer-socials a:hover { color: var(--ink); }
.footer-col h4 { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--ink-3); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--rule);
  font-size: 0.75rem; color: var(--ink-4); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--ink-4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--ink); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────
   WP ALIGNMENT HELPERS
───────────────────────────────────────── */
.alignwide  { max-width: 1040px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; }
.aligncenter { text-align: center; }

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.pagination { display: flex; gap: 0; border: 1px solid var(--rule); width: fit-content; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--ink-3);
  border-right: 1px solid var(--rule); transition: background 0.2s, color 0.2s;
}
.pagination a:last-child, .pagination span:last-child { border-right: none; }
.pagination a:hover { background: var(--bg-alt); color: var(--ink); }
.pagination .current { background: var(--ink); color: var(--bg); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
  .about-two-col, .partner-hero-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .home-cta { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .articles-grid .col-8, .articles-grid .col-4, .articles-grid .col-6 { grid-column: span 12; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .pi-row { grid-template-columns: 1fr; }
  .pi-row-thumb { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .pov-strip-inner { grid-template-columns: 1fr; }
  .form-two-col { grid-template-columns: 1fr; }
  .offering-row { grid-template-columns: 28px 1fr; }
  .offering-arrow { display: none; }
}
@media (max-width: 520px) {
  .platform-grid { grid-template-columns: 1fr; }
}
