/* ---------- Tokens ---------- */
:root {
  --bg:         #0a0e18;
  --bg-2:       #0d121e;
  --bg-grain:   #0c1120;

  --gold:       #c9a961;
  --gold-2:     #d9ba72;
  --gold-dim:   #8a7a4a;
  --gold-line:  rgba(201, 169, 97, 0.22);

  --paper:      #f4efe4;
  --paper-2:    #faf6ec;
  --paper-edge: #e6dfce;

  --ink:        #151b29;
  --ink-2:      #1a2030;
  --ink-3:      #222a3c;

  --text-light: #e8e2d1;
  --text-muted: #8d8775;
  --text-faint: #5d5a4e;

  --text-dark:       #1a2030;
  --text-dark-muted: #6a675a;

  --green:      #3f8063;
  --green-2:    #4d916f;
  --green-bg:   #e4ede1;
  --green-text: #2e5640;

  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --shadow-card: 0 30px 80px -20px rgba(0,0,0,0.55), 0 10px 30px -10px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text-light);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* subtle paper grain for the dark canvas */
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,0.05), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(201,169,97,0.03), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.66 0 0 0 0 0.38 0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 640px;
}

.hidden { display: none !important; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin: 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  margin-bottom: 28px;
}

.lede {
  color: var(--text-muted);
  max-width: 60ch;
  font-size: 17px;
}
.center.lede { margin-left: auto; margin-right: auto; }

/* ---------- Nav ---------- */
.nav {
  padding: 34px 32px 0;
  text-align: center;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.44em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.brand-rule {
  width: 160px;
  height: 1px;
  background: var(--gold-line);
  margin: 12px auto 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 32px 96px;
  text-align: center;
  position: relative;
}
.hero-copy {
  max-width: 720px;
  margin: 0 auto 56px;
}
.hero-title {
  font-size: clamp(38px, 6.5vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--text-light);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-lede {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- Credential Card ---------- */
.credential {
  max-width: 440px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--gold-line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 22px;
  text-align: left;
  position: relative;
}

.cred-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.cred-id {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.cred-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,169,97,0.12);
  margin-bottom: 0;
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 8px;
}
.platforms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.platform-pill {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: 999px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Cream inner section */
.cred-body {
  background: var(--paper);
  color: var(--text-dark);
  margin: 18px -28px 0;
  padding: 18px 26px 26px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.verified-box {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.check-lg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.verified-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--green-text);
  margin-bottom: 3px;
}
.verified-text {
  font-size: 12.5px;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  margin: 22px 0 10px;
  font-weight: 500;
}
.cred-body > .section-label:first-child { margin-top: 0; }

.tier-block {
  background: var(--ink-2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.tier-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,169,97,0.15);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.tier-body { flex: 1; }
.tier-name {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.tier-desc {
  color: var(--text-muted);
  font-size: 11.5px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 22px;
}
.meta-label {
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 4px;
}
.meta-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.verified-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.verified-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--text-dark-muted);
  line-height: 1.45;
}
.check-sm { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

.qr-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.qr-svg,
.qr-link {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
  display: block;
  line-height: 0;
}
.qr-link svg { display: block; width: 100%; height: 100%; }
.qr-meta { flex: 1; min-width: 0; }
.qr-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.qr-note {
  font-size: 10.5px;
  color: var(--text-dark-muted);
  line-height: 1.45;
}

.cred-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.cred-brand {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}
.cred-foot-meta {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  font-size: 9.5px;
}

/* ---------- Hero CTA block below card ---------- */
.hero-cta-block {
  max-width: 440px;
  margin: 48px auto 0;
  text-align: center;
}
.cta-question {
  color: var(--text-light);
  font-size: 16px;
  margin: 0 0 18px;
}
.cta-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.6;
  margin-top: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--ink-2);
  padding: 16px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px -10px rgba(201,169,97,0.4);
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -10px rgba(201,169,97,0.5);
}
.btn-gold:active { transform: translateY(0); }
.btn-full { width: 100%; padding: 18px 24px; }
.btn-label { display: inline-block; }
.arrow { display: inline-block; transition: transform .18s ease; }
.btn-gold:hover .arrow { transform: translateX(3px); }

.link-gold {
  color: var(--gold);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .18s ease;
}
.link-gold:hover { border-color: var(--gold-line); }
.link-gold:hover .arrow { transform: translateX(3px); }

/* ---------- Sections (general) ---------- */
.section {
  padding: 110px 0;
  border-top: 1px solid rgba(201,169,97,0.08);
  position: relative;
}

/* ---------- Problem section ---------- */
.section-problem .section-title { max-width: 18ch; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.problem-card {
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 500;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.55;
}
.kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.4;
  color: var(--text-light);
  text-align: center;
  margin-top: 56px;
  font-weight: 400;
}
.kicker strong { color: var(--gold); font-weight: 500; }

.ref {
  font-size: 0.38em;
  color: var(--gold-dim);
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
  font-family: 'Inter', sans-serif;
}
.sources {
  list-style: none;
  padding: 0;
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin: 28px auto 0;
  line-height: 1.7;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sources li { display: block; }
.sources a {
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201,169,97,0.18);
  transition: color .15s ease, border-color .15s ease;
}
.sources a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.sources sup {
  color: var(--gold-dim);
  font-weight: 600;
}

/* ---------- Tiers section ---------- */
.section-tiers { background: rgba(255,255,255,0.012); }
.section-tiers .section-title { max-width: 22ch; }
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tier-card {
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.tier-card:hover {
  border-color: rgba(201,169,97,0.4);
  transform: translateY(-2px);
}
.tier-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,169,97,0.05), rgba(201,169,97,0.01));
}
.featured-flag {
  position: absolute;
  top: -10px;
  left: 30px;
  background: var(--gold);
  color: var(--ink-2);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
}
.tier-num-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 500;
}
.tier-card h3 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.tier-subtitle {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 18px;
}
.tier-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.tier-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-card li {
  color: var(--text-muted);
  font-size: 13px;
  padding-left: 16px;
  position: relative;
}
.tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ---------- Audiences section ---------- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.audience h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.audience p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.audience-rule {
  background: var(--gold-line);
  width: 1px;
  height: 100%;
  min-height: 160px;
}

/* ---------- Waitlist section ---------- */
.section-waitlist {
  background: rgba(255,255,255,0.015);
}
.section-waitlist .lede { margin-bottom: 44px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 38px 36px;
  box-shadow: var(--shadow-card);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 500;
}
.field-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 400;
}
.field input,
.field textarea,
.field select {
  background: rgba(10,14,24,0.7);
  border: 1px solid rgba(201,169,97,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10,14,24,0.9);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dim);
  pointer-events: none;
  font-size: 12px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  margin: -4px 0 0;
}
.form-error {
  background: rgba(190, 60, 60, 0.1);
  border: 1px solid rgba(190, 60, 60, 0.3);
  color: #e6a8a8;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin: 0;
}

.success {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-2);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.success-check-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.success h3 {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.success p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 auto;
  max-width: 44ch;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--gold-line);
  padding: 44px 0;
  background: var(--bg-2);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-meta {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .section { padding: 84px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 18px; }
  .tier-cards { grid-template-columns: 1fr; gap: 18px; }
  .audience-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .audience-rule {
    width: 80%;
    height: 1px;
    min-height: 0;
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .container { padding: 0 22px; }
  .hero { padding: 56px 22px 72px; }
  .hero-copy { margin-bottom: 40px; }
  .credential { padding: 24px 22px 20px; }
  .cred-body { margin: 16px -22px 0; padding: 16px 22px 22px; }
  .handle { font-size: 22px; }
  .avatar { width: 50px; height: 50px; font-size: 24px; }
  .meta-grid { gap: 16px 16px; }
  .form { padding: 28px 22px; }
  .section-title { font-size: 32px; }
  .kicker { font-size: 20px; }
  .stat { font-size: 42px; }
  .footer-row { flex-direction: column; text-align: center; }
  .hero-title { font-size: 36px; }
}
