:root {
  --ink: #f8f5ef;
  --muted: #c9d5ea;
  --subtle: #96a5c0;
  --line: rgba(216, 231, 255, 0.16);
  --paper: #0f1725;
  --paper-strong: #131d2d;
  --accent: #88a6dd;
  --accent-strong: #e2ecff;
  --ember: #7c3e24;
  --shadow: rgba(0, 0, 0, 0.45);
  --body-copy-size: clamp(1.18rem, 2.2vw, 1.5rem);
  --section-accent: var(--accent);
  --section-accent-strong: var(--accent-strong);
  --section-outline: rgba(136, 166, 221, 0.2);
  --section-surface-bg: transparent;
  --section-surface-shadow: 0 28px 90px rgba(7, 14, 28, 0.32);
  --section-panel-border: rgba(136, 166, 221, 0.2);
  --section-panel-bg:
    linear-gradient(165deg, rgba(136, 166, 221, 0.14), rgba(13, 21, 34, 0.12)),
    rgba(17, 24, 36, 0.8);
  --section-panel-strong-bg: var(--paper-strong);
  --section-chip-border: rgba(136, 166, 221, 0.28);
  --section-chip-bg: rgba(136, 166, 221, 0.14);
  --section-chip-text: var(--ink);
  --section-glow-bg: rgba(136, 166, 221, 0.28);
  --section-wash: rgba(136, 166, 221, 0.18);
  --section-wash-strong: rgba(136, 166, 221, 0.26);
  --section-button-glow: rgba(136, 166, 221, 0.28);
  --section-link: var(--accent-strong);
  --section-surface-radius: 2rem;
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 6%, rgba(136, 166, 221, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(92, 118, 184, 0.24), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(58, 86, 146, 0.16), transparent 30rem),
    linear-gradient(145deg, #0c1118 0%, #121b2a 48%, #0b1017 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(226, 236, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 236, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-size: var(--body-copy-size);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.94), rgba(12, 19, 31, 0.8));
  box-shadow: 0 12px 34px rgba(6, 11, 19, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.audience-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(136, 166, 221, 0.56);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(136, 166, 221, 0.34), rgba(136, 166, 221, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(16, 29, 51, 0.22);
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.nav-links {
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(136, 166, 221, 0.48);
  border-radius: 999px;
  background: rgba(136, 166, 221, 0.08);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.themed-section {
  position: relative;
}

.themed-section::before {
  content: none;
}

.themed-section::after {
  content: none;
}

.theme-ember {
  --section-surface-bg:
    radial-gradient(circle at 100% 0%, rgba(216, 164, 95, 0.18), transparent 15rem),
    linear-gradient(150deg, rgba(33, 25, 19, 0.88), rgba(15, 13, 11, 0.54));
  --section-outline: rgba(242, 196, 125, 0.14);
  --section-panel-border: rgba(242, 196, 125, 0.16);
  --section-panel-bg:
    linear-gradient(160deg, rgba(216, 164, 95, 0.08), rgba(24, 19, 15, 0.2)),
    rgba(24, 20, 17, 0.76);
  --section-chip-border: rgba(242, 196, 125, 0.22);
  --section-chip-bg: rgba(216, 164, 95, 0.09);
  --section-glow-bg: rgba(216, 164, 95, 0.24);
  --section-wash: rgba(216, 164, 95, 0.12);
  --section-wash-strong: rgba(216, 164, 95, 0.22);
  --section-button-glow: rgba(216, 164, 95, 0.26);
  --section-surface-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  --section-orb-top: -4rem;
  --section-orb-right: -4rem;
  --section-orb-size: 18rem;
}

.theme-slate {
  --section-accent: #7d98c6;
  --section-accent-strong: #d7e5ff;
  --section-surface-bg:
    radial-gradient(circle at 14% 18%, rgba(125, 152, 198, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(16, 23, 35, 0.92), rgba(15, 18, 25, 0.62));
  --section-outline: rgba(125, 152, 198, 0.18);
  --section-panel-border: rgba(125, 152, 198, 0.18);
  --section-panel-bg:
    linear-gradient(165deg, rgba(125, 152, 198, 0.1), rgba(11, 16, 24, 0.14)),
    rgba(17, 22, 30, 0.78);
  --section-chip-border: rgba(125, 152, 198, 0.24);
  --section-chip-bg: rgba(125, 152, 198, 0.1);
  --section-glow-bg: rgba(125, 152, 198, 0.24);
  --section-wash: rgba(125, 152, 198, 0.16);
  --section-wash-strong: rgba(125, 152, 198, 0.2);
  --section-button-glow: rgba(125, 152, 198, 0.22);
  --section-link: #d7e5ff;
  --section-surface-shadow: 0 24px 80px rgba(8, 15, 27, 0.34);
  --section-orb-bottom: -5rem;
  --section-orb-left: -2rem;
}

.theme-jade {
  --section-accent: #4f9b89;
  --section-accent-strong: #bfe9dd;
  --section-surface-bg:
    radial-gradient(circle at 88% 18%, rgba(79, 155, 137, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(10, 29, 26, 0.9), rgba(10, 20, 18, 0.64));
  --section-outline: rgba(112, 206, 180, 0.16);
  --section-panel-border: rgba(112, 206, 180, 0.18);
  --section-panel-bg:
    linear-gradient(155deg, rgba(79, 155, 137, 0.11), rgba(10, 18, 15, 0.14)),
    rgba(13, 24, 22, 0.8);
  --section-chip-border: rgba(112, 206, 180, 0.28);
  --section-chip-bg: rgba(79, 155, 137, 0.14);
  --section-glow-bg: rgba(79, 155, 137, 0.22);
  --section-wash: rgba(79, 155, 137, 0.14);
  --section-wash-strong: rgba(79, 155, 137, 0.18);
  --section-link: #bfe9dd;
  --section-surface-shadow: 0 24px 80px rgba(7, 19, 17, 0.32);
  --section-orb-top: 2rem;
  --section-orb-right: -4rem;
}

.theme-cobalt {
  --section-accent: #5f7dbe;
  --section-accent-strong: #d2ddff;
  --section-surface-bg:
    radial-gradient(circle at 12% 0%, rgba(95, 125, 190, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(16, 19, 43, 0.92), rgba(11, 14, 25, 0.68));
  --section-outline: rgba(95, 125, 190, 0.18);
  --section-panel-border: rgba(95, 125, 190, 0.2);
  --section-panel-bg:
    linear-gradient(165deg, rgba(95, 125, 190, 0.12), rgba(10, 12, 20, 0.15)),
    rgba(16, 18, 30, 0.8);
  --section-chip-border: rgba(95, 125, 190, 0.24);
  --section-chip-bg: rgba(95, 125, 190, 0.11);
  --section-glow-bg: rgba(95, 125, 190, 0.22);
  --section-wash: rgba(95, 125, 190, 0.14);
  --section-wash-strong: rgba(95, 125, 190, 0.24);
  --section-link: #d2ddff;
  --section-surface-shadow: 0 26px 82px rgba(10, 12, 28, 0.34);
  --section-orb-bottom: -6rem;
  --section-orb-right: -3rem;
}

.theme-burgundy {
  --section-accent: #a85b68;
  --section-accent-strong: #ffd6dd;
  --section-surface-bg:
    radial-gradient(circle at 84% 16%, rgba(168, 91, 104, 0.18), transparent 13rem),
    linear-gradient(150deg, rgba(35, 15, 19, 0.92), rgba(21, 11, 14, 0.68));
  --section-outline: rgba(168, 91, 104, 0.2);
  --section-panel-border: rgba(168, 91, 104, 0.2);
  --section-panel-bg:
    linear-gradient(165deg, rgba(168, 91, 104, 0.12), rgba(15, 8, 10, 0.18)),
    rgba(28, 15, 18, 0.82);
  --section-chip-border: rgba(168, 91, 104, 0.24);
  --section-chip-bg: rgba(168, 91, 104, 0.11);
  --section-glow-bg: rgba(168, 91, 104, 0.22);
  --section-wash: rgba(168, 91, 104, 0.16);
  --section-wash-strong: rgba(168, 91, 104, 0.22);
  --section-link: #ffd6dd;
  --section-surface-shadow: 0 26px 84px rgba(23, 9, 13, 0.34);
  --section-orb-top: -3rem;
  --section-orb-left: -3rem;
}

.theme-ochre {
  --section-accent: #c99743;
  --section-accent-strong: #ffe2ab;
  --section-surface-bg:
    radial-gradient(circle at 0% 100%, rgba(201, 151, 67, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(38, 28, 14, 0.9), rgba(20, 16, 11, 0.66));
  --section-outline: rgba(201, 151, 67, 0.18);
  --section-panel-border: rgba(201, 151, 67, 0.22);
  --section-panel-bg:
    linear-gradient(160deg, rgba(201, 151, 67, 0.12), rgba(16, 12, 8, 0.14)),
    rgba(31, 23, 16, 0.8);
  --section-chip-border: rgba(201, 151, 67, 0.28);
  --section-chip-bg: rgba(201, 151, 67, 0.12);
  --section-glow-bg: rgba(201, 151, 67, 0.24);
  --section-wash: rgba(201, 151, 67, 0.16);
  --section-wash-strong: rgba(201, 151, 67, 0.24);
  --section-link: #ffe2ab;
  --section-surface-shadow: 0 24px 76px rgba(27, 20, 10, 0.34);
  --section-orb-bottom: -4rem;
  --section-orb-left: -3rem;
}

.theme-pine {
  --section-accent: #5e8f6a;
  --section-accent-strong: #d5f0da;
  --section-surface-bg:
    radial-gradient(circle at 92% 0%, rgba(94, 143, 106, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(16, 27, 18, 0.92), rgba(11, 18, 12, 0.68));
  --section-outline: rgba(94, 143, 106, 0.18);
  --section-panel-border: rgba(94, 143, 106, 0.2);
  --section-panel-bg:
    linear-gradient(160deg, rgba(94, 143, 106, 0.1), rgba(9, 15, 10, 0.14)),
    rgba(16, 24, 17, 0.8);
  --section-chip-border: rgba(94, 143, 106, 0.24);
  --section-chip-bg: rgba(94, 143, 106, 0.11);
  --section-glow-bg: rgba(94, 143, 106, 0.22);
  --section-wash: rgba(94, 143, 106, 0.14);
  --section-wash-strong: rgba(94, 143, 106, 0.18);
  --section-link: #d5f0da;
  --section-surface-shadow: 0 24px 80px rgba(8, 16, 10, 0.32);
  --section-orb-top: 2rem;
  --section-orb-right: -4rem;
}

.theme-sunrise {
  --section-accent: #d88f52;
  --section-accent-strong: #ffe2bf;
  --section-surface-bg:
    radial-gradient(circle at 50% 0%, rgba(216, 143, 82, 0.24), transparent 16rem),
    linear-gradient(145deg, rgba(42, 24, 13, 0.92), rgba(24, 14, 10, 0.68));
  --section-outline: rgba(216, 143, 82, 0.2);
  --section-panel-border: rgba(216, 143, 82, 0.22);
  --section-panel-bg:
    linear-gradient(160deg, rgba(216, 143, 82, 0.12), rgba(18, 11, 8, 0.12)),
    rgba(31, 20, 14, 0.82);
  --section-panel-strong-bg: rgba(38, 24, 16, 0.9);
  --section-chip-border: rgba(216, 143, 82, 0.26);
  --section-chip-bg: rgba(216, 143, 82, 0.12);
  --section-glow-bg: rgba(216, 143, 82, 0.28);
  --section-wash: rgba(216, 143, 82, 0.18);
  --section-wash-strong: rgba(216, 143, 82, 0.26);
  --section-button-glow: rgba(216, 143, 82, 0.32);
  --section-link: #ffe2bf;
  --section-surface-shadow: 0 28px 86px rgba(22, 13, 9, 0.32);
  --section-orb-top: -5rem;
  --section-orb-right: 30%;
  --section-orb-size: 20rem;
}

.theme-smoke {
  --section-accent: #8c96a8;
  --section-accent-strong: #e0e6f2;
  --section-surface-bg:
    radial-gradient(circle at 10% 100%, rgba(140, 150, 168, 0.12), transparent 13rem),
    linear-gradient(145deg, rgba(17, 18, 21, 0.84), rgba(14, 15, 17, 0.54));
  --section-outline: rgba(140, 150, 168, 0.12);
  --section-panel-border: rgba(140, 150, 168, 0.12);
  --section-panel-bg:
    linear-gradient(160deg, rgba(140, 150, 168, 0.06), rgba(12, 13, 15, 0.08)),
    rgba(19, 20, 23, 0.74);
  --section-chip-border: rgba(140, 150, 168, 0.18);
  --section-chip-bg: rgba(140, 150, 168, 0.07);
  --section-glow-bg: rgba(140, 150, 168, 0.16);
  --section-wash: rgba(140, 150, 168, 0.08);
  --section-wash-strong: rgba(140, 150, 168, 0.12);
  --section-link: #e0e6f2;
  --section-surface-shadow: 0 18px 48px rgba(7, 8, 11, 0.18);
  --section-orb-bottom: -5rem;
  --section-orb-left: -3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.87fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  min-height: calc(100svh - 74px);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.eyebrow,
.section-kicker,
.card-label,
.format-meta {
  color: var(--section-accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 11vw, 8.7rem);
  line-height: 0.89;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lede {
  max-width: 720px;
  font-size: var(--body-copy-size);
}

.copy-stack p {
  font-size: var(--body-copy-size);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(180deg, #96b3e8, var(--section-accent));
  color: #21170c;
  box-shadow: 0 18px 60px var(--section-button-glow);
}

.button-secondary {
  border: 1px solid var(--section-panel-border);
  background: rgba(136, 166, 221, 0.06);
  color: var(--ink);
}

.hero-card,
.trust-panel,
.format-card,
.topic-grid article,
.cta-inner {
  border: 1px solid var(--section-panel-border);
  background: var(--section-panel-bg);
  box-shadow: 0 24px 80px var(--section-surface-shadow, var(--shadow));
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2rem;
}

.hero-copy {
  max-width: 44rem;
}

.hero-side {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.card-heading {
  position: relative;
}

.card-glow {
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--section-glow-bg);
  filter: blur(14px);
}

.card-location-note {
  position: relative;
  margin: 0;
  padding-inline: 2rem;
  color: var(--subtle);
  font-size: var(--body-copy-size);
  line-height: 1.55;
}

.principles-heading {
  margin: 1.6rem 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.principles-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--section-panel-border);
  border-radius: 1.15rem;
  background:
    linear-gradient(160deg, var(--section-wash-strong), rgba(15, 13, 11, 0.14)),
    rgba(15, 13, 11, 0.36);
}

.principle-number {
  color: var(--section-accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.principle-text {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.tooltip {
  position: relative;
  display: inline-grid;
}

.tooltip-trigger {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--section-chip-border);
  border-radius: 50%;
  background: var(--section-chip-bg);
  color: var(--section-accent-strong);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}

.tooltip-bubble {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 2;
  width: min(18rem, 72vw);
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--section-panel-border);
  border-radius: 1rem;
  background: rgba(15, 13, 11, 0.96);
  box-shadow: 0 22px 60px var(--shadow);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.tooltip-bubble::before {
  position: absolute;
  top: -0.45rem;
  right: 0.9rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid var(--section-panel-border);
  border-left: 1px solid var(--section-panel-border);
  background: rgba(15, 13, 11, 0.96);
  content: "";
  transform: rotate(45deg);
}

.tooltip:hover .tooltip-bubble,
.tooltip:focus-within .tooltip-bubble {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-trigger:focus-visible {
  outline: 2px solid rgba(226, 236, 255, 0.76);
  outline-offset: 2px;
}

.hero-card .hero-lede {
  position: relative;
  max-width: none;
  margin: 1.25rem 0 0;
  font-size: var(--body-copy-size);
}

.hero-card .hero-actions {
  position: relative;
  margin-top: 1.4rem;
}

.intro,
.audience,
.topics,
.trust,
.formats,
.partners,
.curator,
.cta {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.audience {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--section-outline);
  border-bottom: 1px solid var(--section-outline);
}

.audience-detail {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.audience-summary {
  max-width: 30rem;
  margin: 0;
}

.audience-note {
  max-width: 30rem;
  margin: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 700px;
}

.topic-grid,
.format-grid {
  display: grid;
  gap: 1rem;
}

.topic-grid {
  grid-template-columns: repeat(3, 1fr);
}

.topic-grid article {
  min-height: 225px;
  padding: 1.4rem;
  border-radius: 1.5rem;
}

.topic-grid p,
.format-card p {
  margin-bottom: 0;
}

.trust-panel {
  max-width: 930px;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, var(--section-wash), transparent 42%),
    var(--section-panel-bg);
}

.format-grid {
  grid-template-columns: 0.8fr 1fr;
}

.format-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.7rem;
}

.format-card.featured {
  background:
    linear-gradient(160deg, var(--section-wash-strong), rgba(32, 28, 23, 0.7)),
    var(--section-panel-strong-bg);
}

.cta-inner {
  display: grid;
  justify-items: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: 2rem;
  text-align: center;
}

.cta-inner h2 {
  max-width: 850px;
}

.curator {
  width: min(820px, calc(100% - 2rem));
  padding-top: 2rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.curator-layout {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.curator-photo {
  display: grid;
  place-items: center;
  width: min(100%, 210px);
  aspect-ratio: 4 / 5;
  justify-self: start;
  padding: 0.7rem;
  border: 1px solid var(--section-panel-border);
  border-radius: 1.25rem;
  background:
    linear-gradient(160deg, rgba(136, 166, 221, 0.08), rgba(13, 21, 34, 0.12)),
    rgba(248, 245, 239, 0.03);
  box-shadow: 0 18px 48px rgba(7, 14, 28, 0.18);
}

.curator-photo-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.95rem;
}

.curator-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.curator-copy {
  max-width: 34rem;
}

.curator-kicker {
  margin-bottom: 0.35rem;
  color: var(--subtle);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.curator-quote {
  margin: 0;
  padding: 0.15rem 0 0.15rem 1.1rem;
  border-left: 1px solid rgba(136, 166, 221, 0.2);
}

.placeholder-copy p {
  margin-bottom: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--subtle);
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  line-height: 1.75;
}

.curator-signoff {
  margin: 0.7rem 0 0 1.1rem;
  color: var(--subtle);
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.playful-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.inline-link {
  color: var(--section-link);
  text-decoration: underline;
  text-decoration-color: var(--section-chip-border);
  text-underline-offset: 0.15em;
}

.inline-link:hover {
  color: var(--ink);
  text-decoration-color: rgba(248, 245, 239, 0.42);
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 16, 25, 0.48), rgba(12, 18, 29, 0.86));
  color: var(--subtle);
}

.site-footer p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
}

.email-decoy {
  display: none;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-content,
  .audience,
  .format-grid,
  .curator-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
