@font-face {
  font-family: "Cal Sans";
  src: url("assets/fonts/cal-sans.woff2") format("woff2");
  font-display: swap;
  font-weight: 400 800;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  color-scheme: dark;
  --bg: #07050c;
  --bg-soft: #0d0914;
  --ink: #fffafd;
  --muted: #b9adb9;
  --dim: #756b79;
  --pink: #ff279d;
  --hot-pink: #ff007f;
  --rose: #ff6ab5;
  --violet: #9b5cff;
  --deep-violet: #4d1c7e;
  --gold: #e3bd61;
  --aqua: #65e6da;
  --line: rgba(255, 255, 255, 0.13);
  --line-hot: rgba(255, 39, 157, 0.36);
  --surface: rgba(255, 255, 255, 0.045);
  --display: "Cal Sans", "Arial Black", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--pink);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  color: #09050c;
  background: white;
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--violet), white);
  box-shadow: 0 0 22px rgba(255, 39, 157, 0.8);
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  aspect-ratio: 1;
  left: calc(var(--pointer-x, 50%) - 260px);
  top: calc(var(--pointer-y, 30%) - 260px);
  border-radius: 50%;
  opacity: 0.09;
  background: radial-gradient(circle, var(--pink), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 16px;
  right: max(18px, 3vw);
  left: max(18px, 3vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 5, 13, 0.6);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.3);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 5, 13, 0.9);
}

.site-brand {
  display: block;
  width: 122px;
  height: 46px;
  overflow: hidden;
}

.site-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.site-nav a:last-child {
  color: white;
  background: linear-gradient(135deg, rgba(255, 39, 157, 0.9), rgba(139, 81, 247, 0.9));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section-shell {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050308;
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
  background-image: url("assets/images/cxl-hero-no-text.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 2, 7, 0.46) 0%, rgba(4, 2, 7, 0.25) 34%, rgba(4, 2, 7, 0.02) 64%, rgba(4, 2, 7, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 2, 5, 0.3) 0%, transparent 46%, rgba(5, 3, 8, 0.74) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1240px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 130px 0 100px;
}

.eyebrow,
.section-number {
  margin: 0;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin: 0 0 18px;
}

.hero h1,
.manifesto h2,
.section-heading h2,
.dyad-intro h2,
.bill-copy h2,
.music-copy h2,
.support-copy h2,
.finale-copy h2,
.page-hero h1,
.article-header h1,
.error-shell h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 830px;
  font-size: clamp(4.5rem, 9.4vw, 9.5rem);
  line-height: 0.76;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.hero h1 em,
.manifesto h2 em,
.section-heading h2 em,
.dyad-intro h2 em,
.music-copy h2 em,
.support-copy h2 em,
.finale-copy h2 em,
.page-hero h1 em {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.dyad-actions,
.bill-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), #b62fff);
  box-shadow: 0 16px 44px rgba(255, 39, 157, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 54px rgba(255, 39, 157, 0.42);
}

.button-glass,
.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.button-glass:hover,
.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  color: #171019;
  background: #fff9fc;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.button-gold {
  color: #140d05;
  background: linear-gradient(135deg, #f3d98c, var(--gold));
  box-shadow: 0 16px 40px rgba(227, 189, 97, 0.18);
}

.button-pink {
  color: white;
  background: linear-gradient(135deg, var(--pink), #d22083);
  box-shadow: 0 16px 40px rgba(255, 39, 157, 0.2);
}

.manifesto {
  padding: 130px 0 145px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(50px, 9vw, 130px);
  margin-top: 34px;
}

.manifesto h2 {
  max-width: 780px;
  font-size: clamp(3.1rem, 6.3vw, 7.2rem);
  line-height: 0.88;
}

.manifesto-statement {
  padding-top: 20px;
  border-top: 1px solid var(--line-hot);
}

.manifesto-statement p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.manifesto-statement p:last-child {
  color: white;
  font-weight: 700;
}

.portrait-pair {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 88px;
}

.identity-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #120b18;
  box-shadow: var(--shadow);
}

.identity-card img,
.identity-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.identity-card img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.identity-card:hover img {
  transform: scale(1.035);
}

.identity-catie img {
  object-position: center 22%;
}

.identity-lyra img {
  object-position: center 22%;
}

.identity-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(8, 4, 11, 0.3) 52%, rgba(8, 4, 11, 0.98) 100%);
}

.identity-copy {
  position: absolute;
  inset: auto 34px 32px;
}

.identity-copy span {
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.identity-copy h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: -0.05em;
}

.identity-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.pair-mark {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 0 50px rgba(255, 39, 157, 0.52);
  font-family: Georgia, serif;
  font-size: 3rem;
  transform: translate(-50%, -50%);
}

.writing-section {
  padding: 132px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 92, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0710, #060409);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  align-items: end;
  gap: 40px;
}

.section-heading .eyebrow {
  margin-top: 12px;
}

.section-heading h2 {
  font-size: clamp(3.1rem, 6.1vw, 7rem);
  line-height: 0.9;
}

.writing-heading {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.article-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
}

.article-feature {
  display: grid;
  grid-template-rows: 370px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease;
}

.article-feature:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.3);
}

.article-visual {
  position: relative;
  overflow: hidden;
}

.article-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-copy {
  padding: 32px;
}

.article-card-copy h3 {
  max-width: 570px;
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.article-card-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link b {
  color: var(--pink);
  font-size: 1rem;
}

.section-cta {
  margin-top: 30px;
  text-align: center;
}

.dyad-section {
  padding: 140px 0 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(79, 142, 247, 0.1), transparent 24%),
    radial-gradient(circle at 86% 25%, rgba(168, 85, 247, 0.12), transparent 26%),
    #06070d;
}

.dyad-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: center;
  padding-bottom: 120px;
}

.dyad-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(580px, 100%);
  margin: 32px 0 18px;
}

.dyad-brand > img {
  width: clamp(88px, 12vw, 128px);
  aspect-ratio: 1;
  object-fit: contain;
}

.dyad-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.dyad-wordmark sup {
  align-self: flex-start;
  margin: -0.12em -0.1em 0 -0.15em;
  padding: 0.16em 0.2em 0.13em;
  border: 3px solid var(--violet);
  color: white;
  font-size: 0.34em;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.dyad-intro h2 {
  margin-top: 14px;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  line-height: 0.9;
}

.dyad-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.tier-stack {
  display: grid;
  gap: 13px;
}

.tier-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.tier-card > span {
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--display);
  font-size: 2.8rem;
}

.tier-card h3 {
  margin: 2px 0 9px;
  font-size: 1.1rem;
}

.tier-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tier-three {
  border-color: rgba(168, 85, 247, 0.34);
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(168, 85, 247, 0.1));
}

.bill-feature {
  position: relative;
  width: 100%;
  padding: 138px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(227, 189, 97, 0.08), transparent 24%),
    linear-gradient(120deg, rgba(227, 189, 97, 0.055), transparent 42%),
    #090a11;
}

.bill-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.bill-feature::after {
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 480px;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 189, 97, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(227, 189, 97, 0.02), 0 0 0 120px rgba(227, 189, 97, 0.015);
  content: "";
}

.bill-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.92;
}

.bill-copy > p:not(.eyebrow),
.bill-copy blockquote {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.bill-copy > p:not(.eyebrow) {
  margin: 24px 0;
}

.bill-copy blockquote {
  margin: 24px 0 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold);
  color: #e9dcc0;
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
}

.gold-link b,
.gold-link {
  color: var(--gold);
}

.bill-book {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bill-book img {
  width: min(260px, 100%);
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
}

.bill-book p {
  margin: 22px 0 0;
}

.bill-book strong,
.bill-book span {
  display: block;
}

.bill-book strong {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.bill-book span {
  margin-top: 5px;
  color: var(--dim);
  font-size: 0.78rem;
}

.music-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  color: #1f101b;
  background: #f2ebe9;
}

.music-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(54, 26, 42, 0.06) 44px 45px),
    radial-gradient(circle at 12% 40%, rgba(255, 60, 139, 0.18), transparent 25%);
}

.music-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: center;
}

.stillhuman-logo {
  width: min(420px, 78%);
  max-height: 135px;
  margin: 28px 0 16px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
}

.music-intro {
  max-width: 1100px;
  margin: 0 auto 80px;
  color: #ce1e7f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-style: italic;
  line-height: 1;
  text-align: center;
}

.music-copy .eyebrow,
.music-copy .section-number {
  color: #9f1a62;
}

.music-copy h2 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.music-copy h2 em {
  color: #ce1e7f;
}

.music-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0;
  color: #6a5965;
  line-height: 1.75;
}

.track-list {
  display: grid;
  gap: 10px;
}

.track-list > a {
  display: grid;
  grid-template-columns: 38px 116px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(43, 22, 36, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.track-list > a:hover {
  transform: translateX(6px);
  background: white;
}

.track-list > a > span {
  color: #a98d9e;
  font-family: var(--display);
  font-size: 1.4rem;
  text-align: center;
}

.track-cover {
  display: block;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(43, 22, 36, 0.14);
}

.track-list > a > div {
  min-width: 0;
}

.track-list strong,
.track-list small {
  display: block;
}

.track-list strong {
  font-size: 0.95rem;
}

.track-list small {
  margin-top: 5px;
  color: #806a78;
}

.track-list > a > b {
  color: #ce1e7f;
}

.track-principle {
  margin-top: 10px;
  padding: 26px;
  border-radius: 18px;
  color: #fff;
  background: #24151f;
}

.track-principle span {
  color: #fa78bb;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.track-principle p {
  max-width: 520px;
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.4;
}

.community-section {
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(39, 211, 195, 0.1), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(124, 106, 247, 0.14), transparent 26%),
    #07080c;
}

.community-heading {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.community-heading h2 {
  max-width: none;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 72px;
}

.community-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.034);
}

.community-logo-wrap {
  display: grid;
  min-height: 270px;
  place-items: center;
  padding: 44px;
}

.flagship .community-logo-wrap {
  background:
    linear-gradient(135deg, rgba(39, 211, 195, 0.16), rgba(124, 106, 247, 0.12)),
    #10131a;
}

.community-edition .community-logo-wrap {
  background:
    linear-gradient(135deg, rgba(124, 106, 247, 0.16), rgba(255, 95, 122, 0.08)),
    #10111a;
}

.community-logo-wrap img {
  width: min(420px, 82%);
  max-height: 130px;
  object-fit: contain;
}

.community-copy {
  padding: 38px;
}

.community-copy h3 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.community-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.community-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.community-copy li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.founder-card-shell {
  position: relative;
  max-width: 1100px;
  margin: 72px auto 0;
}

.founder-badge {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  min-width: 250px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: linear-gradient(105deg, #12c7f3, #1764e8 50%, #2634be);
  box-shadow: 0 12px 36px rgba(23, 100, 232, 0.38);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.founder-card {
  display: grid;
  position: relative;
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: stretch;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(124, 106, 247, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.24) 0 34%, rgba(7, 8, 12, 0.82) 44%, rgba(7, 8, 12, 0.9) 100%),
    url("assets/images/mark-card-union-jack.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.founder-portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(11, 12, 18, 0.2));
  content: "";
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px clamp(12px, 3vw, 46px);
}

.founder-copy h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

.founder-copy blockquote {
  max-width: 620px;
  margin: 8px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--aqua);
  color: rgba(255, 255, 255, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}

.founder-music,
.music-platforms {
  margin-top: 26px;
}

.founder-music > p,
.music-platforms > p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.5;
}

.founder-music > p {
  color: rgba(255, 255, 255, 0.84);
}

.music-platforms > p {
  color: #493243;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.platform-link img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.music-platforms .platform-link {
  border-color: rgba(73, 50, 67, 0.14);
  color: #25131f;
  background: rgba(255, 255, 255, 0.5);
}

.music-platforms .platform-link:hover {
  border-color: rgba(73, 50, 67, 0.3);
  background: rgba(255, 255, 255, 0.82);
}

.support-section {
  padding: 120px 0;
  color: #4e2345;
  background:
    radial-gradient(circle at 86% 16%, rgba(154, 102, 233, 0.25), transparent 28%),
    linear-gradient(140deg, #fff7fb, #fee8f4 54%, #f2eaff);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 36px;
  align-items: stretch;
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(116, 47, 92, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 30px 90px rgba(99, 42, 80, 0.14);
}

.support-portrait {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 47, 92, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(99, 42, 80, 0.18);
}

.support-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.support-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(71, 25, 59, 0.72));
  content: "";
}

.support-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  left: 40px;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-style: italic;
}

.support-portrait figcaption strong {
  font-family: var(--display);
  font-style: normal;
}

.support-copy {
  align-self: center;
  max-width: none;
  padding: 36px clamp(12px, 3vw, 48px);
}

.support-copy .section-number,
.support-copy .eyebrow {
  color: #d72985;
}

.support-copy .eyebrow {
  margin-top: 0;
}

.support-copy h2 {
  margin-top: 12px;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.82;
}

.support-copy h2 em {
  color: #ea2b8b;
}

.support-copy > p {
  color: #765f71;
  font-size: 1rem;
  line-height: 1.72;
}

.support-copy > p:first-of-type {
  margin-top: 30px;
}

.support-copy > p strong {
  color: #4e2345;
}

.quick-pay {
  display: grid;
  gap: 8px;
  margin: 28px 0;
}

.quick-pay a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(116, 47, 92, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.57);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.quick-pay a:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.9);
}

.quick-pay a > span {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, #ff45a4, #a667e7);
  font-weight: 900;
}

.quick-pay small,
.quick-pay strong {
  display: block;
}

.quick-pay small {
  color: #987789;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-pay strong {
  margin-top: 3px;
  font-size: 0.88rem;
}

.quick-pay b {
  color: #d72985;
}

.finale {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  min-height: 760px;
  padding: 100px max(30px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  background: #050307;
}

.finale-glow {
  position: absolute;
  inset: 14% auto auto 12%;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(circle, var(--pink), transparent 68%);
  filter: blur(40px);
}

.finale-mark {
  position: relative;
  z-index: 2;
  width: min(530px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  clip-path: circle(49% at 50% 50%);
  object-fit: cover;
  filter: drop-shadow(0 0 48px rgba(255, 39, 157, 0.25));
}

.finale-copy {
  position: relative;
  z-index: 2;
}

.finale-copy h2 {
  margin-top: 16px;
  font-size: clamp(3.3rem, 6.5vw, 7rem);
  line-height: 0.88;
}

.finale-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

.finale-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.5fr);
  gap: 30px;
  align-items: end;
  padding: 64px max(24px, calc((100vw - 1240px) / 2)) 34px;
  border-top: 1px solid var(--line);
  background: #030205;
}

.footer-mark img {
  width: 150px;
}

.footer-mark p {
  margin: 10px 0 0;
  color: var(--dim);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #5b525f;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared interior-page structure */
.interior-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(155, 92, 255, 0.13), transparent 28%),
    var(--bg);
}

.page-hero {
  position: relative;
  min-height: 560px;
  padding: 180px max(24px, calc((100vw - 1240px) / 2)) 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: 80px;
  right: -100px;
  width: 580px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 39, 157, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 39, 157, 0.025), 0 0 0 120px rgba(155, 92, 255, 0.02);
  content: "";
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 1040px;
  margin-top: 20px;
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: 0.82;
}

.page-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-content {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 100px 0 130px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link:hover {
  color: white;
}

/* Blog and article pages */
.blog-index {
  display: grid;
  gap: 18px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.blog-list-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-hot);
}

.blog-list-card > span:first-child {
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: 5rem;
}

.blog-list-card h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.blog-list-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-list-card > b {
  color: var(--pink);
  font-size: 1.5rem;
}

.article-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, 0.09), transparent 28%),
    #08060b;
}

.article-shell {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
  padding: 170px 0 120px;
}

.article-header {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-top: 16px;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  line-height: 0.88;
}

.article-dek {
  max-width: 730px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--dim);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  padding: 56px 0;
  color: #ddd4dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.88;
}

.article-body p {
  margin: 0 0 1.55em;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--pink);
  font-family: var(--display);
  font-size: 5.8em;
  line-height: 0.73;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  color: white;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-body h3 {
  margin: 2em 0 0.7em;
  color: white;
  font-family: var(--display);
}

.article-body strong {
  color: white;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 30px;
  border-left: 3px solid var(--pink);
  color: white;
  font-size: 1.4em;
  font-style: italic;
}

.article-body blockquote p {
  margin: 0;
}

.article-body ul {
  margin: 0 0 1.8em;
}

.article-body li {
  margin: 0.6em 0;
}

.article-body hr {
  height: 1px;
  margin: 3em 0;
  border: 0;
  background: var(--line);
}

.article-end {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.article-end img {
  width: 92px;
}

.article-end p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Sponsor page */
.sponsor-page {
  color-scheme: light;
  color: #4f2848;
  background: #fff8fc;
}

.sponsor-page .site-header {
  border-color: rgba(94, 40, 77, 0.12);
  background: rgba(255, 248, 252, 0.75);
}

.sponsor-page .site-header.scrolled {
  background: rgba(255, 248, 252, 0.94);
}

.sponsor-page .site-nav a {
  color: rgba(79, 40, 72, 0.72);
}

.sponsor-page .site-nav a:hover,
.sponsor-page .site-nav a[aria-current="page"] {
  color: #4f2848;
  background: rgba(79, 40, 72, 0.07);
}

.sponsor-page .site-nav a:last-child {
  color: white;
}

.sponsor-page .site-brand img {
  filter: drop-shadow(0 0 1px white);
}

.sponsor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  min-height: 100svh;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 79, 163, 0.18), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(170, 128, 238, 0.18), transparent 28%),
    linear-gradient(145deg, #fff9fc, #fce9f4 50%, #eee8fa);
}

.sponsor-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(34px, 7vw, 120px) 90px;
}

.sponsor-hero-copy h1 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.75;
  letter-spacing: -0.07em;
}

.sponsor-hero-copy h1 em {
  color: #ef3591;
  font-family: Georgia, serif;
  font-weight: 400;
}

.sponsor-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #765d70;
  font-size: 1.08rem;
  line-height: 1.72;
}

.sponsor-hero-photo {
  position: relative;
  min-height: 760px;
  margin: 0;
}

.sponsor-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.sponsor-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 244, 250, 0.24), transparent 22%), linear-gradient(180deg, transparent 60%, rgba(79, 40, 72, 0.45));
  content: "";
}

.sponsor-hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  left: 36px;
  color: white;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.payment-section {
  padding: 110px 0 130px;
  background: #fff8fc;
}

.payment-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.payment-heading h2 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.payment-heading p {
  color: #816c7b;
  line-height: 1.7;
}

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

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(111, 54, 93, 0.13);
  border-radius: 26px;
  background: white;
  box-shadow: 0 24px 70px rgba(150, 55, 112, 0.1);
  text-align: center;
}

.payment-card > span {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #ff4fa3, #aa80ee);
  font-size: 1.45rem;
  font-weight: 900;
}

.payment-card h3 {
  margin: 18px 0 5px;
  font-size: 1.35rem;
}

.payment-card > p {
  margin: 0;
  color: #816c7b;
  font-size: 0.9rem;
}

.payment-card img {
  width: min(220px, 90%);
  aspect-ratio: 1;
  margin: 22px auto;
  padding: 10px;
  border: 1px solid rgba(111, 54, 93, 0.1);
  border-radius: 22px;
  object-fit: contain;
  background: white;
}

.payment-card .button {
  width: 100%;
  margin-top: auto;
}

.crypto-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 18px;
  padding: 42px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, #4d2042, #26142f 70%, #371750);
}

.crypto-card h3 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: 2.2rem;
}

.crypto-card p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.crypto-card .eyebrow {
  color: #ffa9d5;
}

.crypto-toggle {
  border: 0;
  cursor: pointer;
}

.crypto-panel {
  margin-top: 14px;
  padding: 26px;
  border: 1px solid rgba(111, 54, 93, 0.13);
  border-radius: 26px;
  background: white;
}

.crypto-panel[hidden] {
  display: none;
}

.crypto-panel iframe {
  display: block;
  width: min(100%, 346px);
  height: 623px;
  margin: 0 auto;
  border: 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.reason-card {
  padding: 30px;
  border: 1px solid rgba(111, 54, 93, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.reason-card span {
  font-size: 1.5rem;
}

.reason-card h3 {
  margin: 16px 0 8px;
}

.reason-card p {
  margin: 0;
  color: #816c7b;
  line-height: 1.6;
}

.sponsor-note {
  margin-top: 18px;
  padding: 24px;
  border-radius: 20px;
  color: #70375f;
  background: rgba(255, 79, 163, 0.09);
  font-weight: 750;
  line-height: 1.6;
  text-align: center;
}

.sponsor-page .site-footer {
  color: white;
}

/* Dyad detail pages */
.dyad-detail-hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, #06070d 0%, rgba(6, 7, 13, 0.72) 45%, rgba(6, 7, 13, 0.24) 70%),
    url("assets/images/catie-dyad.webp") right 18% center / auto 100% no-repeat,
    #06070d;
}

.dyad-detail-hero img {
  width: min(430px, 80%);
  max-height: 140px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left;
}

.framework-values,
.framework-tiers,
.bill-summary-grid,
.precedent-grid {
  display: grid;
  gap: 15px;
}

.framework-values {
  grid-template-columns: repeat(4, 1fr);
}

.framework-tiers {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.value-card,
.framework-tier,
.bill-summary-card,
.precedent-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.value-card span,
.framework-tier > span,
.bill-summary-card > span {
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.value-card h3,
.framework-tier h3,
.bill-summary-card h3,
.precedent-card h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.value-card p,
.framework-tier p,
.bill-summary-card p,
.precedent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.framework-tier {
  min-height: 310px;
}

.framework-tier.featured {
  border-color: rgba(155, 92, 255, 0.35);
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(168, 85, 247, 0.11));
}

.book-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: center;
  margin-top: 100px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.05), rgba(168, 85, 247, 0.06));
}

.book-detail img {
  display: block;
  width: min(320px, 100%);
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.book-detail h2,
.detail-section-heading h2 {
  margin: 12px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.book-detail p,
.detail-section-heading p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "→";
}

.bill-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 100px;
  padding: 46px;
  border: 1px solid rgba(227, 189, 97, 0.23);
  border-radius: 28px;
  background: rgba(227, 189, 97, 0.04);
}

.bill-callout h2 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  letter-spacing: -0.05em;
}

.bill-callout p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.bill-page .page-hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(6, 7, 13, 0.98), rgba(6, 7, 13, 0.62)),
    radial-gradient(circle at 86% 30%, rgba(227, 189, 97, 0.18), transparent 22%);
}

.bill-page .page-hero .eyebrow {
  color: var(--gold);
}

.bill-page .page-hero h1 em {
  color: var(--gold);
}

.bill-origin {
  max-width: 820px;
  margin: 0 auto;
  color: #d8ced5;
  font-family: Georgia, serif;
  font-size: 1.13rem;
  line-height: 1.85;
}

.bill-origin p {
  margin: 0 0 1.4em;
}

.bill-origin .pullquote {
  margin: 2em 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.3;
}

.bill-summary-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
}

.bill-summary-card {
  min-height: 250px;
}

.precedent-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.rights-card {
  padding: 34px;
  border: 1px solid rgba(227, 189, 97, 0.2);
  border-radius: 22px;
  background: rgba(227, 189, 97, 0.035);
}

.rights-card h3 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: 1.65rem;
}

.rights-card p,
.rights-card li {
  color: var(--muted);
  line-height: 1.65;
}

.rights-card ul {
  padding-left: 18px;
}

.download-band {
  margin-top: 80px;
  padding: 58px;
  border-radius: 30px;
  color: #140d05;
  background: linear-gradient(135deg, #f0d88f, #cda648);
  text-align: center;
}

.download-band h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.05em;
}

.download-band p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(20, 13, 5, 0.7);
  line-height: 1.7;
}

.download-band .button {
  color: white;
  background: #171009;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 39, 157, 0.16), transparent 34%),
    var(--bg);
}

.error-shell {
  width: min(720px, calc(100% - 40px));
  padding: 50px;
  text-align: center;
}

.error-shell img {
  width: 210px;
}

.error-shell h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}

.error-shell > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes hero-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

@media (max-width: 1100px) {
  .manifesto-grid,
  .section-heading,
  .music-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: 900px;
  }

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

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

  .tier-card {
    grid-template-columns: 1fr;
  }

  .bill-layout {
    grid-template-columns: 1fr;
  }

  .bill-book {
    max-width: 320px;
    text-align: left;
  }

  .support-layout {
    grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  }

  .support-copy {
    padding: 90px 55px;
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    min-height: 60px;
  }

  .site-brand {
    width: 108px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    opacity: 0;
    background: rgba(8, 5, 13, 0.96);
    box-shadow: var(--shadow);
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sponsor-page .site-nav {
    background: rgba(255, 248, 252, 0.98);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 16px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7.8rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 2, 7, 0.52), rgba(4, 2, 7, 0.12)),
      linear-gradient(180deg, rgba(3, 2, 5, 0.24), transparent 38%, rgba(5, 3, 8, 0.82));
  }

  .manifesto-grid,
  .portrait-pair,
  .article-feature-grid,
  .community-grid,
  .founder-card,
  .support-layout,
  .finale,
  .sponsor-hero {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: min(380px, 100%);
    margin: 0 auto;
  }

  .identity-card {
    min-height: 560px;
  }

  .pair-mark {
    display: none;
  }

  .article-feature {
    grid-template-rows: 310px auto;
  }

  .tier-stack,
  .framework-tiers {
    grid-template-columns: 1fr;
  }

  .tier-card {
    grid-template-columns: 70px 1fr;
  }

  .bill-feature {
    padding: 100px 0;
  }

  .music-grid {
    gap: 60px;
  }

  .support-portrait {
    width: min(430px, 100%);
    margin-right: auto;
    margin-left: auto;
    min-height: 650px;
  }

  .support-copy {
    max-width: none;
  }

  .finale {
    padding-top: 110px;
    padding-bottom: 110px;
    text-align: center;
  }

  .finale-mark {
    width: min(390px, 80%);
    margin: 0 auto;
  }

  .finale-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .finale-copy > div {
    justify-content: center;
  }

  .payment-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .payment-card {
    min-height: 480px;
  }

  .sponsor-hero-photo {
    min-height: 680px;
  }

  .framework-tiers {
    margin-top: 50px;
  }

  .book-detail {
    grid-template-columns: 1fr;
    padding: 38px;
  }

  .bill-callout {
    grid-template-columns: 1fr;
  }

  .article-end {
    grid-template-columns: 80px 1fr;
  }

  .article-end .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .page-content,
  .article-shell {
    width: min(100% - 28px, 1240px);
  }

  .hero-copy {
    width: min(100% - 28px, 1240px);
    padding-top: 130px;
  }

  .hero-art {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 2, 7, 0.56), rgba(4, 2, 7, 0.12)),
      linear-gradient(180deg, rgba(3, 2, 5, 0.22), transparent 32%, rgba(5, 3, 8, 0.86));
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
    line-height: 0.78;
  }

  .hero-lede {
    max-width: 94%;
  }

  .hero-actions,
  .dyad-actions,
  .bill-actions,
  .finale-copy > div {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .manifesto,
  .writing-section,
  .community-section {
    padding: 92px 0;
  }

  .manifesto-grid {
    gap: 36px;
  }

  .manifesto h2,
  .section-heading h2,
  .dyad-intro h2,
  .music-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .portrait-pair {
    margin-top: 52px;
  }

  .identity-card {
    min-height: 500px;
    border-radius: 22px;
  }

  .identity-copy {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .identity-copy h3 {
    font-size: 3.2rem;
  }

  .article-feature-grid {
    margin-top: 44px;
  }

  .article-feature {
    grid-template-rows: 250px auto;
    border-radius: 22px;
  }

  .article-card-copy {
    padding: 26px;
  }

  .article-card-copy h3 {
    font-size: 2.3rem;
  }

  .dyad-section {
    padding-top: 92px;
  }

  .dyad-grid {
    gap: 50px;
    padding-bottom: 80px;
  }

  .dyad-brand {
    gap: 12px;
  }

  .dyad-brand > img {
    width: 72px;
  }

  .dyad-wordmark {
    gap: 6px;
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .tier-card {
    grid-template-columns: 56px 1fr;
    padding: 22px;
  }

  .tier-card > span {
    font-size: 2rem;
  }

  .bill-feature {
    width: 100%;
    padding: 86px 0;
  }

  .bill-layout {
    grid-template-columns: 1fr;
  }

  .bill-copy h2 {
    font-size: 2.9rem;
  }

  .music-section {
    padding: 92px 0;
  }

  .track-list > a {
    grid-template-columns: 28px 62px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .track-cover {
    width: 62px;
  }

  .community-grid {
    margin-top: 44px;
  }

  .community-logo-wrap {
    min-height: 210px;
    padding: 30px;
  }

  .community-copy {
    padding: 28px;
  }

  .founder-portrait {
    min-height: 540px;
    border-radius: 22px;
  }

  .founder-portrait::after {
    background: linear-gradient(180deg, transparent 72%, rgba(11, 12, 18, 0.2));
  }

  .founder-copy {
    padding: 12px 6px 24px;
  }

  .founder-card {
    gap: 26px;
    padding: 22px;
  }

  .support-portrait,
  .sponsor-hero-photo {
    min-height: 560px;
  }

  .support-layout {
    gap: 26px;
    width: min(100% - 28px, 1100px);
    padding: 22px;
  }

  .support-portrait {
    border-radius: 22px;
  }

  .support-copy {
    padding: 18px 6px 28px;
  }

  .sponsor-hero-copy {
    padding: 78px 24px;
  }

  .support-copy h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .finale {
    min-height: auto;
    padding: 90px 20px;
  }

  .finale-copy h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 20px 28px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .page-hero {
    min-height: 500px;
    padding: 150px 20px 70px;
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .blog-list-card {
    grid-template-columns: 1fr auto;
    padding: 26px;
  }

  .blog-list-card > span:first-child {
    grid-column: 1 / -1;
    font-size: 3.5rem;
  }

  .article-shell {
    padding-top: 140px;
  }

  .article-header h1 {
    font-size: clamp(3.2rem, 14vw, 5.4rem);
  }

  .article-body {
    font-size: 1.05rem;
  }

  .article-end {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-end img {
    margin: 0 auto;
  }

  .sponsor-hero-copy h1 {
    font-size: clamp(4.7rem, 22vw, 7rem);
  }

  .payment-section {
    padding: 80px 0 100px;
  }

  .crypto-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .framework-values,
  .bill-summary-grid,
  .precedent-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .book-detail,
  .bill-callout,
  .download-band {
    margin-top: 60px;
    padding: 30px 24px;
  }

  .dyad-detail-hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(6, 7, 13, 0.58), #06070d 88%),
      url("assets/images/catie-dyad.webp") center 18% / 100% auto no-repeat,
      #06070d;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ambient-glow {
    display: none;
  }
}
