:root {
  --ink: #151414;
  --coal: #201d1b;
  --ash: #38332f;
  --paper: #f5efe4;
  --bone: #fffaf0;
  --muted: #c9bdaa;
  --gold: #d89d43;
  --red: #9f2d22;
  --line: rgba(255, 250, 240, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bone);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a,
.next-step a {
  text-decoration-color: rgba(216, 157, 67, 0.45);
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 96px);
  background:
    radial-gradient(circle at 72% 22%, rgba(216, 157, 67, 0.22), transparent 28%),
    linear-gradient(135deg, #151414 0%, #26201c 54%, #11100f 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 8vw, 7.1rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text,
.download-copy p,
.bonus-panel p,
.statement p,
.thanks-panel p,
.next-step p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions,
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  color: var(--bone);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #1a1512;
  background: var(--gold);
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.06);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.05);
}

.hero-art {
  position: relative;
}

.hero-art::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 28px;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 999px;
  filter: blur(18px);
  content: "";
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 250, 240, 0.12);
  box-shadow: var(--shadow);
}

.hero-v2 {
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  background: #171514;
}

.hero-v2-image {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(21, 20, 20, 0.18), rgba(21, 20, 20, 0.82)),
    url("manup-hero.png") center / cover no-repeat;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 82px);
}

.hero-v2 h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 8.5vw, 7.7rem);
}

.access-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin-top: 16px;
  background: rgba(255, 250, 240, 0.16);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.access-link {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 250, 240, 0.06);
  color: var(--bone);
  text-decoration: none;
}

.access-link:hover {
  background: rgba(255, 250, 240, 0.1);
}

.access-link span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.access-link strong {
  font-size: 1.04rem;
}

.primary-access {
  background: var(--gold);
  color: var(--ink);
}

.primary-access span {
  color: #4b3520;
}

.manifesto-section {
  padding: clamp(42px, 7vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.manifesto-section p {
  max-width: 1120px;
  margin: 0 auto;
  color: #342d27;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.compact-band {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.statement {
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.statement-inner {
  max-width: 980px;
  margin: 0 auto;
}

.statement p {
  margin: 0;
  color: #3d352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 4rem);
  line-height: 1.08;
}

.content-band,
.chapter-section,
.split-section,
.download-section {
  padding: clamp(58px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 260px;
  padding: clamp(20px, 3vw, 34px);
  background: #201d1b;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 950;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.chapter-section {
  background: var(--paper);
  color: var(--ink);
}

.chapter-section .eyebrow {
  color: var(--red);
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: rgba(21, 20, 20, 0.18);
  border: 1px solid rgba(21, 20, 20, 0.18);
  list-style: none;
  counter-reset: chapters;
}

.chapter-list li {
  min-height: 112px;
  padding: 22px;
  background: #fff9ee;
  color: #2c2520;
  font-weight: 850;
  line-height: 1.35;
  counter-increment: chapters;
}

.chapter-list li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  content: counter(chapters, decimal-leading-zero);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: center;
  background: #281f1c;
}

.listen-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #281f1c;
}

.listen-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}

.listen-copy .button {
  width: fit-content;
  margin-top: 10px;
}

.section-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}

.bonus-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.06);
}

.audio-panel iframe {
  display: block;
  border: 0;
}

.soundcloud-credit {
  overflow: hidden;
  margin-top: 10px;
  color: #c7bcae;
  font-size: 0.78rem;
  line-break: anywhere;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.soundcloud-credit a {
  color: #c7bcae;
  text-decoration: none;
}

.soundcloud-credit a:hover {
  color: var(--gold);
}

.audio-download {
  width: 100%;
  margin-top: 18px;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 480px);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(rgba(21, 20, 20, 0.9), rgba(21, 20, 20, 0.94)),
    url("manup-hero.png") center right / cover no-repeat;
}

.next-action-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #171514;
}

.next-action-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}

.next-action-section .button {
  white-space: nowrap;
}

.cover-home {
  background: #171514;
}

.cover-hero {
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 30% 12%, rgba(216, 157, 67, 0.22), transparent 28%),
    linear-gradient(135deg, #171514 0%, #2a201b 52%, #11100f 100%);
}

.cover-hero-copy {
  max-width: 780px;
}

.cover-hero h1 {
  max-width: 780px;
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cover-display {
  margin: 0;
}

.cover-display img {
  width: min(560px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 250, 240, 0.2);
  box-shadow: var(--shadow);
}

.cover-statement {
  padding: clamp(42px, 7vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.cover-statement p {
  max-width: 1080px;
  margin: 0 auto;
  color: #342d27;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.7vw, 3.75rem);
  line-height: 1.08;
}

.cover-resource-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, 0.16);
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.cover-resource-row a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 28px);
  background: #201d1b;
  color: var(--bone);
  text-decoration: none;
}

.cover-resource-row a:hover {
  background: #2b2521;
}

.cover-resource-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cover-resource-row strong {
  font-size: 1.18rem;
}

.cover-inside {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #171514;
}

.cover-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cover-topic-grid article {
  min-height: 250px;
  padding: clamp(20px, 3vw, 34px);
  background: #201d1b;
}

.cover-topic-grid h3 {
  color: var(--gold);
}

.cover-topic-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.privacy-note {
  color: #a99b87;
}

.resource-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(21, 20, 20, 0.82);
  box-shadow: var(--shadow);
}

.resource-panel h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.resource-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  color: var(--bone);
  background: rgba(255, 250, 240, 0.06);
  font-weight: 850;
  text-decoration: none;
}

.resource-panel a:hover {
  border-color: rgba(216, 157, 67, 0.75);
  color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.thanks-body {
  min-height: 100svh;
  background:
    linear-gradient(rgba(21, 20, 20, 0.7), rgba(21, 20, 20, 0.94)),
    url("manup-hero.png") center / cover no-repeat fixed;
}

.thanks-page {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: 22px;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0;
}

.thanks-panel,
.next-step {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(21, 20, 20, 0.9);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.thanks-panel code {
  color: var(--gold);
}

.next-step h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.resource-body {
  min-height: 100svh;
  background: var(--ink);
}

.resource-hero {
  padding: clamp(50px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(21, 20, 20, 0.72), rgba(21, 20, 20, 0.94)),
    url("manup-hero.png") center right / cover no-repeat;
}

.resource-hero > div {
  max-width: 820px;
}

.finder-section {
  padding: clamp(38px, 6vw, 80px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.finder-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  margin-bottom: 28px;
}

.finder-header .eyebrow {
  color: var(--red);
}

.finder-header p {
  margin-bottom: 0;
  color: #4c4036;
  font-size: 1rem;
  line-height: 1.65;
}

.finder-frame-wrap {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 20, 0.18);
  background: #fff;
  box-shadow: 0 24px 70px rgba(21, 20, 20, 0.16);
}

.finder-frame {
  display: block;
  width: 100%;
  height: min(820px, 78svh);
  min-height: 620px;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .hero-v2,
  .cover-hero,
  .listen-section,
  .next-action-section,
  .split-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero-v2 {
    min-height: auto;
  }

  .hero-v2-image {
    min-height: 420px;
    background-position: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-art img {
    margin: 0;
  }

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

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

  .finder-header {
    grid-template-columns: 1fr;
  }

  .cover-display img {
    width: min(560px, 100%);
    margin: 0;
  }

  .cover-resource-row,
  .cover-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-v2-image {
    min-height: 320px;
  }

  .access-panel {
    grid-template-columns: 1fr;
  }

  .cover-resource-row,
  .cover-topic-grid {
    grid-template-columns: 1fr;
  }

  .access-link {
    min-height: 92px;
  }

  .listen-copy .button,
  .next-action-section .button {
    width: 100%;
  }

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

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

  .feature {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .finder-frame {
    height: 720px;
    min-height: 560px;
  }
}
