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

:root {
  --bg: #0A0A0B;
  --bg-soft: #141416;
  --bg-card: #18181B;
  --text: #FAFAF7;
  --text-mute: #A8A8A2;
  --text-faint: #6A6A65;
  --rule: rgba(250, 250, 247, 0.12);
  --rule-strong: rgba(250, 250, 247, 0.24);
  --accent: #FAFAF7;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
p { max-width: 64ch; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

/* NAV */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  height: 68px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--rule);
}
nav.top .inner { max-width: 1180px; margin: 0 auto; width: 100%; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
nav.top .mark { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; }
nav.top .mark img { width: 28px; height: 28px; border-radius: 50%; background: var(--text); padding: 2px; }
nav.top .links { display: flex; gap: 36px; align-items: center; }
nav.top .links a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); transition: color 0.15s; }
nav.top .links a:hover, nav.top .links a.current { color: var(--text); }
nav.top .cta-btn {
  display: inline-block; padding: 10px 18px; background: var(--accent); color: var(--bg);
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.15s;
}
nav.top .cta-btn:hover { transform: translateY(-1px); }
.hamburger { display: none; background: 0; border: 0; width: 28px; height: 28px; }
.hamburger span { display: block; height: 2px; background: var(--text); margin: 5px 0; }
@media (max-width: 920px) {
  nav.top .links { display: none; }
  nav.top .cta-btn { display: none; }
  .hamburger { display: block; }
  nav.top.open + .mobile-menu { display: flex; }
}
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 49;
  background: var(--bg); border-bottom: 1px solid var(--rule);
  flex-direction: column; gap: 0; padding: 16px 0;
}
.mobile-menu a { padding: 14px 40px; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); border-bottom: 1px solid var(--rule); }
.mobile-menu a:last-child { border-bottom: 0; color: var(--accent); }

/* HERO */
.hero {
  padding: 180px 0 120px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(250, 250, 247, 0.06), transparent 55%);
  pointer-events: none;
}
.hero .eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 28px; }
.hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--text-mute);
  max-width: 56ch;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* PAGE HEADER (slimmer than home hero) */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.page-header .eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 20px; }
.page-header h1 {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  max-width: 20ch;
}
.page-header .sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 60ch;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--rule-strong); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }

/* SECTION HEADERS */
section { padding: 120px 0; border-bottom: 1px solid var(--rule); }
section:last-of-type { border-bottom: 0; }
.section-tag { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 24px; }
.section-h {
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 32px;
}
.section-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 58ch;
  margin-bottom: 56px;
}

/* WHAT */
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
@media (max-width: 920px) { .what-grid { grid-template-columns: 1fr; } }
.what-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.what-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.what-card .n { font-size: 12px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; margin-bottom: 28px; }
.what-card h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px; }
.what-card p { font-size: 16px; color: var(--text-mute); line-height: 1.55; }
.what-card .link { margin-top: auto; padding-top: 32px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
a.what-card { color: inherit; }

/* STORY */
.story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }
.story-grid p { font-size: 17px; line-height: 1.7; color: var(--text-mute); margin-bottom: 20px; }
.story-grid p strong { color: var(--text); font-weight: 600; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start;
}
.team-card:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--rule); }
.team-card:nth-child(even) { padding-left: 40px; }
@media (max-width: 760px) {
  .team-card:nth-child(odd) { padding-right: 0; border-right: 0; }
  .team-card:nth-child(even) { padding-left: 0; }
}
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--rule);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 28px; letter-spacing: 0.02em; color: var(--text);
  flex-shrink: 0;
}
.team-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(15%) contrast(1.02);
  transition: filter 0.3s;
}
.team-card:hover .team-avatar img { filter: grayscale(0%) contrast(1.05); }
.team-info h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.team-info .role { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.team-info p { font-size: 15px; line-height: 1.55; color: var(--text-mute); }

/* PODCAST */
.podcast-block {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  border: 1px solid var(--rule);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 920px) { .podcast-block { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; } }
.podcast-art {
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.podcast-art::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 24px, rgba(250, 250, 247, 0.03) 24px 48px);
  pointer-events: none;
}
.podcast-art .pod-title {
  text-align: center; position: relative;
  font-family: var(--font); font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.podcast-art .pod-title span { display: block; color: var(--accent); margin-top: 8px; font-size: 0.7em; }
.podcast-info h3 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px; }
.podcast-info p.tag { font-size: 17px; color: var(--text-mute); margin-bottom: 28px; }
.podcast-info .cadence { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 28px; font-weight: 600; }
.podcast-info .platforms { display: flex; gap: 12px; flex-wrap: wrap; }
.podcast-info .platforms a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border: 1px solid var(--rule-strong);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.podcast-info .platforms a:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* EPISODES */
.episodes-header { margin: 96px 0 32px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.episodes-header h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; }
.episodes-header .meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }

.upcoming-card {
  border: 1px solid var(--text);
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
  display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
}
@media (max-width: 720px) { .upcoming-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; } }
.upcoming-card .when-block { border-left: 2px solid var(--text); padding-left: 20px; }
.upcoming-card .when-block .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); font-weight: 700; margin-bottom: 10px; }
.upcoming-card .when-block .date { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 4px; }
.upcoming-card .when-block .time { font-size: 13px; color: var(--text-mute); }
.upcoming-card h4 { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 10px; }
.upcoming-card p { font-size: 15px; color: var(--text-mute); line-height: 1.55; }

.episode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .episode-grid { grid-template-columns: 1fr; } }
.episode-card {
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.episode-card:hover { border-color: var(--text); transform: translateY(-3px); }
.episode-card .ep-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.episode-card .ep-num { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.episode-card .ep-date { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.episode-card h4 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 14px; }
.episode-card .ep-theme { font-size: 14px; color: var(--text-mute); margin-bottom: 20px; line-height: 1.55; }
.episode-card .ep-points { list-style: none; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rule); }
.episode-card .ep-points li { font-size: 13px; color: var(--text); line-height: 1.5; padding: 6px 0; display: flex; gap: 10px; }
.episode-card .ep-points li::before { content: '\2022'; color: var(--accent); flex-shrink: 0; }

/* FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  color: var(--text);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; display: flex; justify-content: flex-start; align-items: center; gap: 16px; }
.form-msg { font-size: 13px; color: var(--text-mute); }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #FF7A6B; }

/* ROUNDTABLES + COMMUNITY split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split .side h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.05; }
.split .side p { color: var(--text-mute); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.split .side .pts { list-style: none; margin-bottom: 32px; }
.split .side .pts li { padding: 10px 0; border-top: 1px solid var(--rule); font-size: 14px; color: var(--text); display: flex; gap: 12px; }
.split .side .pts li::before { content: '+'; color: var(--accent); font-weight: 700; }
.split .form-wrap { background: var(--bg-card); border: 1px solid var(--rule); padding: 32px; }

/* MANIFESTO */
.manifesto { background: var(--bg-soft); }
.manifesto .section-h em { font-style: normal; color: var(--accent); }
.tenets { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 56px; border-top: 1px solid var(--rule); }
@media (max-width: 820px) { .tenets { grid-template-columns: 1fr; } }
.tenet { padding: 40px 0; border-bottom: 1px solid var(--rule); }
.tenet:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--rule); }
.tenet:nth-child(even) { padding-left: 48px; }
@media (max-width: 820px) {
  .tenet:nth-child(odd) { padding-right: 0; border-right: 0; }
  .tenet:nth-child(even) { padding-left: 0; }
}
.tenet .num { font-size: 12px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.tenet h4 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 12px; }
.tenet p { font-size: 15px; line-height: 1.6; color: var(--text-mute); }

/* NOT */
.not-list { list-style: none; }
.not-list li {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  display: flex; gap: 20px; align-items: baseline;
}
.not-list li::before { content: '\2715'; color: var(--accent); font-weight: 700; font-size: 14px; }
.not-list li:last-child { border-bottom: 1px solid var(--rule); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* CTA STRIP (between sections / before footer) */
.cta-strip {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.cta-strip h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0 auto 20px; max-width: 22ch; }
.cta-strip p { font-size: 17px; color: var(--text-mute); margin: 0 auto 36px; max-width: 56ch; }
.cta-strip .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { padding: 64px 0 40px; border-top: 1px solid var(--rule); background: var(--bg-soft); }
footer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
footer .brand { display: flex; align-items: center; gap: 14px; }
footer .brand img { width: 36px; height: 36px; border-radius: 50%; background: var(--text); padding: 3px; }
footer .brand .name { font-weight: 800; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; }
footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
footer .col h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; font-weight: 700; }
footer .col a { display: block; font-size: 14px; color: var(--text-mute); margin-bottom: 8px; transition: color 0.15s; }
footer .col a:hover { color: var(--accent); }
footer .bottom { padding-top: 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-faint); letter-spacing: 0.06em; }

/* MOBILE TIGHTEN */
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .wrap, .narrow { padding: 0 24px; }
  nav.top .inner { padding: 0 24px; }
  .hero { padding: 140px 0 80px; }
  .page-header { padding: 120px 0 60px; }
}
