:root {
  --ink: #18121f;
  --muted: #655f70;
  --line: rgba(24, 18, 31, 0.14);
  --paper: #fff8ef;
  --panel: #fffdfa;
  --rose: #d94a68;
  --coral: #f46d43;
  --sun: #f5b640;
  --mint: #1da687;
  --blue: #2b73d6;
  --violet: #7c4dff;
  --deep: #261746;
  --shadow: 0 24px 80px rgba(38, 23, 70, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(255, 253, 250, 0.98)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.86);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 720;
}

nav a {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: 6vw 5vw 5vw;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 248, 239, 0.96) 0%, rgba(255, 241, 221, 0.86) 42%, rgba(235, 247, 243, 0.92) 100%);
}

.hero-copy {
  width: min(980px, 100%);
  position: relative;
  z-index: 2;
}

.hero-art {
  order: 2;
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    conic-gradient(from 210deg, #f46d43, #f5b640, #1da687, #2b73d6, #7c4dff, #d94a68, #f46d43);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 38px);
  z-index: -1;
}

.pulse,
.orbit,
.portrait-mark {
  position: absolute;
}

.pulse {
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.92;
}

.pulse-one {
  width: 170px;
  height: 170px;
  left: 10%;
  top: 11%;
  background: #f5b640;
}

.pulse-two {
  width: 210px;
  height: 210px;
  right: 6%;
  top: 27%;
  background: #2b73d6;
}

.pulse-three {
  width: 140px;
  height: 140px;
  left: 24%;
  bottom: 13%;
  background: #d94a68;
}

.orbit {
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 72%;
  height: 34%;
  left: 14%;
  top: 34%;
}

.orbit-two {
  width: 50%;
  height: 62%;
  right: 17%;
  top: 18%;
  transform: rotate(28deg);
}

.portrait-mark {
  display: grid;
  place-items: center;
  left: 50%;
  top: 50%;
  width: min(280px, 58%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.26) 60%),
    rgba(24, 18, 31, 0.14);
  color: white;
  text-shadow: 0 3px 24px rgba(24, 18, 31, 0.42);
}

.portrait-mark span {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  font-weight: 950;
  line-height: 0.9;
}

.portrait-mark strong {
  margin-top: -40px;
  font-size: 1rem;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.lede {
  max-width: 780px;
  margin: 28px 0 0;
  color: #41384d;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(38, 23, 70, 0.2);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(38, 23, 70, 0.08);
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose), var(--coral) 52%, var(--sun));
  color: white;
}

.button.light {
  margin-top: 26px;
  color: white;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.band {
  padding: 92px 5vw;
}

.band.contrast {
  background:
    linear-gradient(135deg, rgba(29, 166, 135, 0.13), rgba(43, 115, 214, 0.1)),
    #f4fbf8;
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.grid {
  display: grid;
  gap: 18px;
}

.theory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theory-grid .feature-card {
  grid-column: span 2;
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(244, 109, 67, 0.16), rgba(245, 182, 64, 0.16)),
    var(--panel);
}

.grid article,
.list article,
.boundary article,
.pathway,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.86);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(38, 23, 70, 0.08);
}

.grid article,
.pathway {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.grid article:hover,
.pathway:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(38, 23, 70, 0.13);
  text-decoration: none;
}

article p,
.pathway p {
  margin: 0;
  color: var(--muted);
}

article a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 840;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.founder-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.founder-strip article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(217, 74, 104, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 221, 0.76)),
    var(--panel);
  box-shadow: 0 18px 52px rgba(38, 23, 70, 0.09);
}

.founder-strip span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-strip strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.founder-strip p {
  margin: 0;
  color: var(--muted);
}

.pathway {
  color: var(--ink);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pathway span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

.pathway.hot span {
  background: var(--rose);
}

.pathway.sun span {
  background: var(--sun);
}

.pathway.sky span {
  background: var(--blue);
}

.pathway h3 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.listen-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.quote-panel {
  display: flex;
  align-items: end;
  min-height: 430px;
  background:
    linear-gradient(145deg, rgba(124, 77, 255, 0.9), rgba(43, 115, 214, 0.84) 46%, rgba(29, 166, 135, 0.84)),
    var(--deep);
  color: white;
}

.quote-panel p {
  margin: 0;
  color: white;
  font-size: clamp(1.55rem, 3.2vw, 3.15rem);
  font-weight: 850;
  line-height: 1.02;
}

.list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.listen-layout .list {
  max-width: none;
}

.library-list article:first-child {
  border-color: rgba(217, 74, 104, 0.36);
  background: linear-gradient(135deg, rgba(217, 74, 104, 0.09), rgba(245, 182, 64, 0.11)), var(--panel);
}

.podcast-hero {
  background:
    linear-gradient(135deg, rgba(217, 74, 104, 0.12), rgba(29, 166, 135, 0.12)),
    #fffdfa;
}

.podcast-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.7rem, 6vw, 6.6rem);
}

.podcast-hero audio {
  width: min(760px, 100%);
  margin-top: 30px;
}

.disclosure,
.audio-pending {
  max-width: 820px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 720;
}

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

.podcast-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.podcast-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.podcast-layout article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.9);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(38, 23, 70, 0.08);
}

.podcast-layout h1 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.podcast-layout h2 {
  margin: 26px 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.podcast-layout h2:first-child {
  margin-top: 0;
}

.podcast-layout p,
.podcast-layout li {
  color: var(--muted);
  font-size: 1rem;
}

.podcast-layout ul {
  padding-left: 22px;
}

.podcast-layout li + li {
  margin-top: 8px;
}

.podcast-layout strong {
  color: var(--deep);
}

.boundary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.boundary .self {
  border-color: rgba(217, 74, 104, 0.38);
  background: linear-gradient(135deg, rgba(217, 74, 104, 0.11), rgba(124, 77, 255, 0.09)), var(--panel);
}

.boundary a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 820;
}

.contact {
  padding: 96px 5vw;
  background:
    linear-gradient(135deg, rgba(24, 18, 31, 0.9), rgba(38, 23, 70, 0.94)),
    var(--ink);
  color: white;
}

.contact .eyebrow {
  color: var(--sun);
}

.contact h2 {
  max-width: 980px;
}

.contact p {
  max-width: 780px;
  color: #eee8f7;
  font-size: 1.1rem;
}

footer {
  padding: 26px 5vw;
  color: var(--muted);
  background: #fffdfa;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero-art {
    order: 0;
    min-height: 360px;
  }

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

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

  nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    min-height: auto;
  }

  .section-heading,
  .founder-strip,
  .pathways,
  .listen-layout,
  .boundary,
  .podcast-grid,
  .podcast-layout,
  .theory-grid {
    grid-template-columns: 1fr;
  }

  .theory-grid .feature-card {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .band,
  .contact {
    padding-block: 72px;
  }

  .hero-art {
    min-height: 300px;
    border-radius: 24px;
  }
}
