/* ============================================================
   Agents of Wine — Editorial Luxury (Ivory + Wine + Gold)
   ============================================================ */

:root {
  /* Surfaces — warm ivory palette (primary) */
  --ink:        #FBF7EF;     /* page body: ivory */
  --oxblood:    #F2E9D6;     /* card surface: warm cream */
  --burgundy:   #E8DCC4;     /* alt surface: deeper cream */
  --wine:       #6B1423;     /* wine accent (unchanged) */

  /* Text on light surfaces */
  --cream:      #1A0A0D;     /* primary text: deep wine-black */
  --parchment:  #3A1519;     /* secondary text: burgundy ink */
  --muted:      #6B5A54;     /* muted body: warm taupe */

  /* Gold — deeper for readability on light */
  --gold:       #9C7A3C;     /* champagne on light */
  --gold-bright:#B8956A;

  /* Rules */
  --rule:       rgba(156, 122, 60, 0.32);
  --rule-soft:  rgba(26, 10, 13, 0.09);

  /* Dark tokens — for hero, final CTA, footer */
  --d-ink:      #0D0608;
  --d-oxblood:  #2A0A0F;
  --d-burgundy: #4A1018;
  --d-cream:    #F5EFE6;
  --d-parchment:#E8DCC4;
  --d-muted:    #A89585;
  --d-gold:     #C9A961;

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad:  clamp(1.25rem, 4vw, 2.5rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
em.serif-italic, .serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* Grain */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(4rem, 10vh, 8rem) 0; position: relative; }

/* ============================================================
   Header — light glass
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 1.25rem 0;
  background: rgba(251, 247, 239, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
}
.brand-mark.lg { font-size: 3rem; }
.brand-logo { width: 36px; height: 36px; display: block; }
.brand-logo.lg { width: 84px; height: 84px; }
.hero-seal { width: 56px; height: 56px; display: block; margin: 0 auto 1.25rem; opacity: 0.9; }
.brand-name {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 400;
}
.nav {
  display: flex;
  gap: 2.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--gold); }
@media (max-width: 860px) { .nav { display: none; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine);
  color: var(--d-cream);
  border-color: var(--wine);
}
.btn-primary:hover {
  background: #8A1A2D;
  border-color: #8A1A2D;
  transform: translateY(-1px);
}
.btn-lg { padding: 1.15rem 2.2rem; font-size: 0.85rem; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-link {
  padding: 0.95rem 0;
  background: transparent;
  color: var(--parchment);
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.btn-link:hover { color: var(--gold); border-color: var(--gold); }

.cta-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   Typography primitives
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.eyebrow, .label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before, .label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--gold);
}
.label.gold { color: var(--gold); }
.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--parchment);
  max-width: 38rem;
  font-weight: 300;
}
.section-lede { font-size: 1.1rem; line-height: 1.7; color: var(--muted); max-width: 42rem; }

.section-head { margin-bottom: 4rem; max-width: 52rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede,
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.section-head.center .label { padding-left: 0; }
.section-head.center .label::before { display: none; }

/* ============================================================
   Hero — stays dramatic (dark image + veil)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 20, 35, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13, 6, 8, 0.85) 0%, rgba(13, 6, 8, 0.75) 40%, rgba(13, 6, 8, 0.95) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 60rem; }
/* Light text overrides for hero (sits on dark backdrop) */
.hero .display { color: var(--d-cream); }
.hero .lede { color: var(--d-parchment); margin-top: 2rem; font-size: 1.2rem; max-width: 34rem; }
.hero .eyebrow { color: var(--d-gold); }
.hero .eyebrow::before { background: var(--d-gold); }
.hero-meta {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--d-muted);
  flex-wrap: wrap;
}
.hero-meta .dot { width: 3px; height: 3px; background: var(--d-gold); border-radius: 50%; }
/* Hero button overrides — primary stays wine */
.hero .btn-ghost { color: var(--d-cream); border-color: rgba(201, 169, 97, 0.35); }
.hero .btn-ghost:hover { color: var(--d-gold); border-color: var(--d-gold); }
.hero .btn-link { color: var(--d-parchment); border-bottom-color: rgba(201, 169, 97, 0.3); }
.hero .btn-link:hover { color: var(--d-gold); border-bottom-color: var(--d-gold); }

/* ============================================================
   Problem
   ============================================================ */
.problem { background: var(--oxblood); border-top: 1px solid var(--rule-soft); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.problem-card {
  background: var(--oxblood);
  padding: 3rem 2.5rem;
  transition: background .3s;
}
.problem-card:hover { background: var(--burgundy); }
.problem-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1rem;
}
.problem-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Model / Steps
   ============================================================ */
.model { background: var(--ink); }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 64rem;
  margin: 0 auto;
}
.step { display: flex; gap: 1.75rem; align-items: flex-start; }
.step-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  min-width: 3rem;
  border-right: 1px solid var(--rule);
  padding-right: 1.25rem;
  font-style: italic;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.step p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 2.5rem; } }

.trust-bar {
  margin-top: 5rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--parchment);
  flex-wrap: wrap;
}
.trust-bar .sep { color: var(--gold); }

/* ============================================================
   Features
   ============================================================ */
.features { background: var(--oxblood); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.feature {
  background: var(--oxblood);
  padding: 2.75rem 2.25rem;
  transition: background .3s;
  position: relative;
}
.feature:hover { background: var(--burgundy); }
.feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--rule);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.feature h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.9rem;
  line-height: 1.25;
}
.feature p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Collections
   ============================================================ */
.collections { background: var(--ink); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.collection { transition: transform .4s ease; }
.collection:hover { transform: translateY(-6px); }
.collection-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.25rem;
  filter: saturate(0.9) contrast(1.05);
  position: relative;
}
.collection-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 10, 13, 0.35) 100%);
}
.collection h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.collection p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 960px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .collections-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Founding Circle — warm cream gradient with wine accent
   ============================================================ */
.founding {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--oxblood) 60%, var(--ink) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.founding::before {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(107, 20, 35, 0.08), transparent 60%);
  pointer-events: none;
}
.founding-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.founding-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.founding-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-left: 1px solid var(--rule);
  background: rgba(251, 247, 239, 0.5);
  color: var(--parchment);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all .2s;
}
.founding-list li:hover { border-left-color: var(--wine); background: rgba(251, 247, 239, 0.85); }
.founding-list li span { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; }
@media (max-width: 900px) { .founding-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ink); }
.faq-list { max-width: 56rem; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--cream);
  list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--wine); }
.faq-item .chev {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 48rem;
}

/* ============================================================
   Final CTA — stays dramatic (dark image + veil)
   ============================================================ */
.final-cta {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
  text-align: center;
}
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.final-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(107, 20, 35, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, rgba(13, 6, 8, 0.9) 0%, rgba(13, 6, 8, 0.8) 100%);
}
.final-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.final-cta .eyebrow { padding-left: 0; color: var(--d-gold); }
.final-cta .eyebrow::before { display: none; }
.final-cta .display { color: var(--d-cream); margin-bottom: 2rem; }
.final-cta .lede { color: var(--d-parchment); margin: 0 auto 2.5rem; text-align: center; }
.final-cta .btn { margin: 0 auto; }

/* ============================================================
   Footer — dark bookend
   ============================================================ */
.site-footer {
  background: var(--d-oxblood);
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  padding: 5rem 0 2rem;
  color: var(--d-parchment);
}
.site-footer .brand-mark { color: var(--d-cream); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
}
.footer-tag {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--d-cream);
  margin-top: 1rem;
}
.footer-meta { color: var(--d-muted); font-size: 0.85rem; margin-top: 0.25rem; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--d-parchment);
  padding: 0.4rem 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--d-gold); }
.footer-soon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--d-muted);
  padding: 0.4rem 0;
  cursor: default;
}
.footer-soon em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-gold);
  border: 1px solid rgba(201, 169, 97, 0.22);
  padding: 0.1rem 0.5rem;
}
.footer-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--d-muted);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Creators Page — Earnings
   ============================================================ */
.earnings { background: var(--oxblood); border-top: 1px solid var(--rule-soft); }
.earnings-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.big-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.big-stat .amount {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--wine);
  letter-spacing: -0.02em;
}
.big-stat .per {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
}
.hashtag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
.sub-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.reason-list { display: flex; flex-direction: column; gap: 1.75rem; }
.reason-list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.reason-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  padding-top: 0.2rem;
  min-width: 1.5rem;
}
.reason-list strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 0.3rem;
}
.reason-list p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 900px) { .earnings-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   5Cs Flywheel
   ============================================================ */
.flywheel { background: var(--ink); }
.flywheel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.c-card {
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--rule-soft);
  background: var(--oxblood);
  transition: all .3s;
  position: relative;
}
.c-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.c-letter {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
.c-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.c-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
@media (max-width: 1060px) { .flywheel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .flywheel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) {
  .brand-logo { width: 28px; height: 28px; }
  .brand-logo.lg { width: 64px; height: 64px; }
  .hero-seal { width: 48px; height: 48px; }
}

/* ============================================================
   Personas
   ============================================================ */
.personas { background: var(--oxblood); border-top: 1px solid var(--rule-soft); }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.persona {
  background: var(--oxblood);
  padding: 2.75rem 2.25rem;
  transition: background .3s;
}
.persona:hover { background: var(--burgundy); }
.persona-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.9rem;
  letter-spacing: 0.1em;
}
.persona h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.persona p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
@media (max-width: 900px) { .personas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .personas-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Genesis Pricing
   ============================================================ */
.genesis {
  background:
    radial-gradient(ellipse at top, rgba(156, 122, 60, 0.08), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 54rem;
  margin: 0 auto 5rem;
}
.tier {
  padding: 3rem 2.5rem;
  border: 1px solid var(--rule);
  background: var(--oxblood);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s;
}
.tier:hover { border-color: var(--gold); }
.tier.featured {
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--oxblood) 100%);
  border-color: var(--gold);
}
.tier.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--wine);
  color: var(--d-cream);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 1rem;
}
.tier-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.tier-price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.25rem; }
.tier-price .amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.01em;
}
.tier-price .period { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.05em; }
.tier-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.75rem; }
.tier-list {
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.tier-list li {
  color: var(--parchment);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.tier-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.tier .btn { justify-content: center; width: 100%; }
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }

.genesis-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 60rem;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--rule-soft);
}
.why-item { text-align: left; }
.why-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.75rem;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.why-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
@media (max-width: 760px) { .genesis-why { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Economy
   ============================================================ */
.economy { background: var(--ink); }
.economy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.economy-card {
  padding: 2.5rem 1.75rem;
  border-top: 1px solid var(--gold);
  background: var(--oxblood);
}
.economy-stat {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.economy-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.economy-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
@media (max-width: 960px) { .economy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .economy-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Invite-to-Earn
   ============================================================ */
.invite {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--oxblood) 70%, var(--ink) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.invite-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.invite-list { display: flex; flex-direction: column; gap: 1.5rem; }
.invite-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(251, 247, 239, 0.6);
  border-left: 2px solid var(--wine);
}
.invite-stat {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
  min-width: 5rem;
  letter-spacing: -0.01em;
}
.invite-list strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}
.invite-list p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
@media (max-width: 900px) { .invite-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   Why Launch AoW / Infinite Avatars
   ============================================================ */
.why-launch { background: var(--ink); }
.infinite-avatars { background: var(--oxblood); border-top: 1px solid var(--rule-soft); }
.flywheel-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .flywheel-grid.three { grid-template-columns: 1fr; } }

.pullquote {
  max-width: 48rem;
  margin: 4rem auto 0;
  padding: 2rem 2.5rem;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--parchment);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.pullquote::before,
.pullquote::after {
  content: "✦";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--ink);
  padding: 0 1rem;
  font-size: 0.8rem;
}
.pullquote::before { top: -0.6rem; }
.pullquote::after { bottom: -0.6rem; }
