/* ============================================================
   Quintillionaire Grindset
   Obsidian and burnished bronze. Cormorant Garamond and Inter.
   Masculine, ultra luxe, restrained.
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root,
[data-theme="dark"] {
  --bg: #06060a;
  --surface: #0e0d10;
  --surface-2: #14131a;
  --surface-3: #1c1a22;
  --text: #f0e8da;
  --muted: #a89986;
  --gold: #a96a30;
  --gold-soft: #c9854a;
  --gold-deep: #6b3f15;
  --border: rgba(169, 106, 48, 0.20);
  --border-strong: rgba(169, 106, 48, 0.45);
  --hairline: rgba(240, 232, 218, 0.08);
  --shadow: rgba(0, 0, 0, 0.7);
  --shadow-gold: rgba(169, 106, 48, 0.16);
  --danger: #e25555;
  --hero-overlay: linear-gradient(
    180deg,
    rgba(6, 6, 10, 0.42) 0%,
    rgba(6, 6, 10, 0.7) 60%,
    rgba(6, 6, 10, 0.97) 100%
  );
  --hero-fallback: radial-gradient(
      ellipse at 28% 18%,
      rgba(169, 106, 48, 0.22),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 82%,
      rgba(107, 63, 21, 0.45),
      transparent 50%
    ),
    linear-gradient(180deg, #0a0a0e 0%, #06060a 100%);
  --card-gradient: linear-gradient(
    160deg,
    rgba(169, 106, 48, 0.07) 0%,
    rgba(14, 13, 16, 0) 60%
  );
  --tier-gradient: linear-gradient(
    180deg,
    rgba(169, 106, 48, 0.10) 0%,
    rgba(14, 13, 16, 0) 50%
  );
}


/* ---------- Base reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01";
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

:focus-visible {
  outline: 1px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

button {
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 7.6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.95rem, 4.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.028em;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.018em;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.005em;
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.05em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.no-rule::before {
  display: none;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  max-width: 60ch;
  font-weight: 400;
  line-height: 1.55;
}

.lede s {
  color: var(--muted);
  text-decoration-thickness: 2px;
  text-decoration-color: var(--gold);
  font-weight: 500;
}

.lede strong {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.12em;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
}

.gold {
  color: var(--gold-soft);
}

blockquote {
  border-left: 1px solid var(--border-strong);
  padding: 0.4em 0 0.4em 1.6em;
  margin: 1.6em 0;
  font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.container-narrow {
  max-width: 760px;
}

.container-wide {
  max-width: 1480px;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 48px 0;
}

@media (min-width: 900px) {
  .section {
    padding: 132px 0;
  }
  .section-tight {
    padding: 80px 0;
  }
  body {
    font-size: 18px;
  }
}

.tone-bg {
  background: var(--bg);
}

.tone-surface {
  background: var(--surface);
  position: relative;
}

.tone-surface-2 {
  background: var(--surface-2);
  position: relative;
}

.tone-surface::before,
.tone-surface-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-strong) 50%,
    transparent 100%
  );
  opacity: 0.55;
}

.gold-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  border: 0;
}

.gold-divider.left {
  margin-left: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--hairline);
}


.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--text);
}

.brand:hover,
.brand:focus-visible {
  color: var(--gold-soft);
}

.brand-mark {
  display: inline-block;
  height: 34px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px var(--shadow-gold));
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 1px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.018em;
  color: inherit;
}

.brand-tag {
  display: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (min-width: 720px) {
  .brand-tag {
    display: inline-block;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--border-strong);
  background: var(--surface);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hairline);
  padding: 12px 0 18px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 12px 6px;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--hairline);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    border: 0;
    padding: 0;
  }
  .nav-links a {
    padding: 6px 0;
    border: 0;
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease,
    border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-sm {
  padding: 12px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.btn-gold {
  background: linear-gradient(170deg, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #0a0805;
  box-shadow: 0 14px 36px -16px var(--shadow-gold), inset 0 1px 0 rgba(255, 220, 180, 0.32);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 230, 200, 0.55) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.85s ease;
}

.btn-gold:hover::before,
.btn-gold:focus-visible::before {
  transform: translateX(100%);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  color: #0a0805;
  transform: translateY(-1px);
  box-shadow: 0 20px 48px -14px var(--shadow-gold), inset 0 1px 0 rgba(255, 230, 200, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(169, 106, 48, 0.06);
}

.btn-link {
  background: transparent;
  border: 0;
  padding: 4px 0;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--hero-fallback);
  padding: 110px 0 64px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: -1;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(
    rgba(169, 106, 48, 0.06) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  opacity: 0.32;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  max-width: 880px;
}

.hero h1 {
  margin-bottom: 0.4em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.hero .lede {
  color: var(--text);
  opacity: 0.92;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  max-width: 64ch;
}


.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 7px 14px 7px 12px;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  background: rgba(14, 13, 16, 0.55);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}


.hero-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(169, 106, 48, 0.18);
  animation: dotPulse 2.4s infinite ease-in-out;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero .btn-row {
  margin-top: 38px;
}

@media (min-width: 1100px) {
  .hero {
    min-height: 94vh;
    min-height: 94svh;
    padding: 156px 0 116px;
  }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  padding: 88px 0 56px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--hairline);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 0%,
    var(--shadow-gold),
    transparent 60%
  );
  opacity: 0.55;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 18ch;
}

@media (min-width: 900px) {
  .page-hero {
    padding: 128px 0 92px;
  }
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  pointer-events: none;
  opacity: 0.85;
}

.card > * {
  position: relative;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -28px var(--shadow);
}

.card h3 {
  margin-bottom: 0.4em;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card .card-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 0.85rem;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Grid */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Protocol Card ---------- */
.protocol-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 38px;
  display: grid;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.protocol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  pointer-events: none;
}

.protocol-card > * {
  position: relative;
}

.protocol-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -32px var(--shadow), 0 0 0 1px var(--shadow-gold);
}

.protocol-label {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.protocol-fake {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.protocol-section-title {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.protocol-plain {
  color: var(--text);
  font-size: 1.02rem;
}

.protocol-action {
  color: var(--muted);
  font-size: 0.97rem;
}

.protocol-share {
  margin-top: 4px;
  padding: 18px 22px;
  border-left: 1px solid var(--gold);
  background: linear-gradient(
    90deg,
    rgba(169, 106, 48, 0.08) 0%,
    transparent 80%
  );
  border-radius: 0 2px 2px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
}


/* ---------- Share Card ---------- */
.share-card {
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 38px 32px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  overflow: hidden;
  display: grid;
  gap: 14px;
  aspect-ratio: 1 / 1;
  align-content: center;
  box-shadow: 0 30px 60px -36px var(--shadow);
}

.share-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(169, 106, 48, 0.5),
    transparent 40%,
    rgba(169, 106, 48, 0.22) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.share-card .quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.18;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.share-card .attribution {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Section header ---------- */
.section-head {
  text-align: left;
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0.3em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 64ch;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 68px;
  }
}

.editorial-split {
  display: grid;
  gap: 32px;
}

/* Mobile only: when editorial-split stacks vertically, stack the buttons
   full-width with generous vertical breathing room. Desktop unchanged. */
@media (max-width: 899px) {
  .editorial-split .btn-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 22px;
    margin-top: 12px;
  }
  .editorial-split .btn-row .btn {
    width: 100%;
    padding: 19px 26px;
  }
  /* Tighten the gold button's drop-shadow so it doesn't visually crash
     into the ghost button stacked below it. */
  .editorial-split .btn-row .btn-gold {
    box-shadow: 0 8px 22px -14px var(--shadow-gold), inset 0 1px 0 rgba(255, 220, 180, 0.32);
  }
}

@media (min-width: 1024px) {
  .editorial-split {
    grid-template-columns: 1fr 1.4fr;
    gap: 84px;
    align-items: start;
  }
  .editorial-split.right {
    grid-template-columns: 1.4fr 1fr;
  }
  .editorial-split .sticky {
    position: sticky;
    top: 96px;
  }
}

/* ---------- Asset class strip ---------- */
.asset-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .asset-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .asset-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.asset-card {
  position: relative;
  display: block;
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.asset-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  pointer-events: none;
  opacity: 0.6;
}

.asset-card > * {
  position: relative;
}

.asset-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--text);
}

.asset-card .ticker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.asset-card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.asset-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

/* ---------- Press strip ---------- */
.press-strip-label {
  font-family: "Inter", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 26px;
}

.press-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 50px;
  opacity: 0.9;
}

.press-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.press-mark.allcaps {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.press-mark:hover {
  color: var(--gold-soft);
}

/* Official Privacy Partner row beneath press marks */
.privacy-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.85;
}

.privacy-partner:hover,
.privacy-partner:focus-visible {
  opacity: 1;
}

.privacy-partner-label {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.privacy-partner img {
  height: 22px;
  width: auto;
  display: inline-block;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.testimonial-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 30px 28px;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  opacity: 0.7;
  pointer-events: none;
}

.testimonial-card > * {
  position: relative;
}

.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.018em;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-soft));
  color: #0a0805;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.testimonial-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  display: block;
  letter-spacing: 0;
}

.testimonial-role {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Inline verified badge for public-figure testimonials */
.tweet-verified {
  display: inline-block;
  width: 16px;
  height: 16px;
  color: var(--gold);
  vertical-align: -3px;
  margin-left: 5px;
}

/* ---------- Pricing tiers ---------- */
.tier-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
}

.tier-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 38px 30px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tier-gradient);
  pointer-events: none;
  opacity: 0.65;
}

.tier-card > * {
  position: relative;
}

.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: 0 30px 80px -36px var(--shadow), 0 0 0 1px var(--shadow-gold);
  transform: none;
}

@media (min-width: 900px) {
  .tier-card.featured {
    transform: translateY(-12px);
  }
}

/* Mobile-only weighting for the tier section. Desktop above 900px is untouched. */
@media (max-width: 899px) {
  .tier-grid {
    gap: 18px;
  }
  .tier-card {
    padding: 32px 24px 26px;
  }
  .tier-name {
    font-size: 1.7rem;
  }
  .tier-pitch {
    min-height: 0;
    margin-bottom: 18px;
  }
  .tier-includes {
    padding-top: 18px;
    margin-bottom: 22px;
  }
  .tier-flag.is-spacer {
    /* On mobile each card is its own row, so the spacer adds dead space.
       Hide it entirely. */
    display: none;
  }
  .tier-flag {
    margin-bottom: 16px;
  }
}

.tier-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    160deg,
    var(--gold-soft),
    transparent 50%,
    var(--gold) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.tier-flag {
  display: inline-flex;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #0a0805;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Invisible same-height spacer on non-featured cards so tier-name aligns
   horizontally across the row with the featured card's flag. */
.tier-flag.is-spacer {
  visibility: hidden;
  pointer-events: none;
  background: transparent;
  user-select: none;
}

.tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: var(--text);
}

/* Desktop only: reserve two lines of tier-name height so single-line
   titles (e.g. "The Founder Reset") still leave the price label aligned
   horizontally with the two-line titles. */
@media (min-width: 900px) {
  .tier-name {
    min-height: 2.2em;
  }
}

.tier-pitch {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 3em;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
}

.tier-price .currency {
  font-size: 1.3rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-price .amount {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: var(--text);
  font-weight: 600;
  line-height: 1;
}

.tier-price .cents {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-price .amount-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tier-price-note {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.tier-includes {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}

.tier-includes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  color: var(--text);
}

.tier-includes li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a96a30' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tier-cta {
  margin-top: auto;
}

.tier-cta .btn {
  width: 100%;
}

.tier-card.featured .btn {
  box-shadow: 0 18px 44px -16px var(--shadow-gold), inset 0 1px 0 rgba(255, 230, 200, 0.4);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq details[open] {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: var(--gold-soft);
}

.faq-body {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.faq-body p {
  margin: 0 0 0.8em;
  color: var(--muted);
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Affirmation generator ---------- */
.affirmation-stage {
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  padding: 56px 30px;
  background: radial-gradient(
      ellipse at 30% 0%,
      rgba(169, 106, 48, 0.18),
      transparent 60%
    ),
    var(--surface);
  overflow: hidden;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}


.affirmation-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  max-width: 22ch;
  font-style: italic;
  margin: 0;
  min-height: 2.6em;
  transition: opacity 0.3s ease;
  letter-spacing: -0.025em;
}

.affirmation-text.fading {
  opacity: 0;
}

.affirmation-cite {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

@media (min-width: 900px) {
  .affirmation-stage {
    padding: 88px 40px;
    min-height: 360px;
  }
}

/* ---------- Quiz ---------- */
.quiz {
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.quiz::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  opacity: 0.6;
  pointer-events: none;
}

.quiz > * {
  position: relative;
}

.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.quiz-progress span {
  height: 2px;
  flex: 1;
  background: var(--surface-3);
  border-radius: 1px;
  transition: background 0.3s ease;
}

.quiz-progress span.active {
  background: var(--gold);
}

.quiz-question {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 4px;
}

.quiz-meta {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.quiz-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
  font-family: inherit;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: var(--gold);
  background: var(--surface-3);
  transform: translateX(2px);
}

.quiz-result {
  display: grid;
  gap: 16px;
}

.quiz-result h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin: 0;
}

.quiz-result .protocol-share {
  margin-top: 12px;
}

.quiz-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ---------- Safety note ---------- */
.safety-note {
  border-left: 2px solid var(--danger);
  background: rgba(226, 85, 85, 0.06);
  padding: 18px 22px;
  border-radius: 0 2px 2px 0;
  margin: 28px 0;
}


.safety-note h4 {
  color: var(--danger);
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.safety-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.97rem;
}

/* ---------- Manifesto principles ---------- */
.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.principles {
  counter-reset: principle;
}

.principles li {
  position: relative;
  padding: 24px 26px 24px 64px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.principles li::before {
  counter-increment: principle;
  content: counter(principle, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

@media (min-width: 900px) {
  .principles li {
    font-size: 1.5rem;
    padding: 30px 34px 30px 80px;
  }
  .principles li::before {
    left: 32px;
    top: 30px;
    font-size: 1rem;
  }
}

/* ---------- Pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Partner ad ---------- */
.partner-ad {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  overflow: hidden;
}

.partner-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  opacity: 1;
  align-self: center;
  justify-self: start;
}

.partner-ad::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  opacity: 0.7;
}

.partner-ad > * {
  position: relative;
}

.partner-label {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.partner-copy {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.015em;
  max-width: 60ch;
}

.partner-copy a {
  color: var(--gold-soft);
  border-bottom: 1px solid var(--border);
  font-style: italic;
  white-space: nowrap;
}

.partner-copy a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  justify-self: start;
}

.partner-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.partner-cta:hover::after,
.partner-cta:focus-visible::after {
  transform: translateX(4px);
}

@media (min-width: 760px) {
  .partner-ad {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 30px 34px;
  }
  .partner-logo {
    height: 76px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  padding: 72px 0 36px;
  margin-top: 80px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-strong) 50%,
    transparent 100%
  );
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-content > * {
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3) { animation-delay: 0.32s; }
.hero-content > *:nth-child(4) { animation-delay: 0.46s; }
.hero-content > *:nth-child(5) { animation-delay: 0.6s; }
.hero-content > *:nth-child(6) { animation-delay: 0.74s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #0a0805;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 0 0 2px 0;
  z-index: 100;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Utility ---------- */
.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;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 24px; }

.fine-print {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: 0.005em;
}

/* ---------- Long-form prose ---------- */
.prose p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 65ch;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 1.4em;
}

.prose h3 {
  margin-top: 1.4em;
  color: var(--gold-soft);
}

.prose ul,
.prose ol {
  max-width: 65ch;
  padding-left: 1.4em;
}

.prose li {
  margin-bottom: 0.5em;
  color: var(--text);
  line-height: 1.7;
}

.prose a {
  color: var(--gold-soft);
  border-bottom: 1px solid var(--border);
}

.prose a:hover {
  border-bottom-color: var(--gold);
}

/* Buttons inside prose blocks: restore button contrast and drop the
   prose-link underline. Selector specificity (0,2,0) beats .prose a. */
.prose .btn {
  border-bottom: 0;
}

.prose .btn-gold {
  color: #0a0805;
}

.prose .btn-ghost {
  color: var(--text);
}
