/* ===========================
   ANTHORNY BRAND DASHBOARD
   Premium Dark Cinematic Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@300;400;500&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --gold: #c9a96e;
  --gold-light: #e2c98a;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --charcoal: #1a1814;
  --charcoal-mid: #252219;
  --charcoal-soft: #2e2b24;
  --charcoal-border: rgba(201, 169, 110, 0.12);
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.4);
  --accent-rose: #d4847a;
  --accent-teal: #7aatd4;
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.12);
  --shadow-deep: 0 24px 64px rgba(0,0,0,0.5);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Typography ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.mono { font-family: 'DM Mono', monospace; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 24, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--charcoal-border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  color: var(--gold);
  font-size: 1.1rem;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.live-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #7eda8e;
  background: rgba(126, 218, 142, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(126, 218, 142, 0.25);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(212, 132, 122, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--charcoal) 0%, #1e1b16 50%, var(--charcoal) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.eyebrow-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.eyebrow-divider { color: var(--gold); opacity: 0.5; }

.eyebrow-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover { border-color: rgba(201, 169, 110, 0.3); transform: translateY(-2px); }
.stat-card.highlight { background: var(--gold-dim); border-color: rgba(201, 169, 110, 0.4); }

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.stat-card.highlight .stat-number { color: var(--gold-light); }

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.stat-divider {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.4);
}

.cta-arrow { animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========================
   PROGRESS TRACKER
   ======================== */
.progress-tracker {
  position: sticky;
  top: 64px;
  z-index: 900;
  background: rgba(30, 27, 22, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--charcoal-border);
  padding: 0.85rem 2rem;
}

.tracker-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tracker-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tracker-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step { display: flex; align-items: center; gap: 0.4rem; }

.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--charcoal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.step-dot.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.step-dot.completed { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.step-name { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }

.step-line {
  width: 24px;
  height: 1px;
  background: var(--charcoal-border);
}

.tracker-progress-bar {
  flex: 1;
  min-width: 100px;
  height: 3px;
  background: var(--charcoal-border);
  border-radius: 2px;
  overflow: hidden;
}

.tracker-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s ease;
}

/* ========================
   SECTIONS
   ======================== */
.section {
  padding: 120px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.dark-section {
  background: var(--charcoal-mid);
  max-width: none;
  padding: 120px 0;
}

.dark-section > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.dark-section .section-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}

.dark-section .scripts-section,
.dark-section .story-strategy,
.dark-section .call-framework {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.step-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.step-badge.light {
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.2);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--cream); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(245, 240, 232, 0.65); }

/* ========================
   POSITIONING
   ======================== */
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.angle-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.angle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}

.angle-card.recommended::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.angle-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.angle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.angle-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.angle-badge.secondary {
  color: #a0d4c4;
  background: rgba(160, 212, 196, 0.1);
  border-color: rgba(160, 212, 196, 0.25);
}

.angle-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.angle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.angle-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.detail-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.detail-row strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.detail-row p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.angle-revenue {
  padding-top: 1.25rem;
  border-top: 1px solid var(--charcoal-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.revenue-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.revenue-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* Positioning Statement */
.positioning-statement {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.statement-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1rem;
  border: none;
}

.statement-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Bio Template */
.bio-template {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.bio-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.bio-content {
  flex: 1;
  min-width: 240px;
}

.bio-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bio-line.cta-line { color: var(--gold); font-weight: 500; }

.copy-btn {
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
  background: rgba(201, 169, 110, 0.25);
  transform: translateY(-1px);
}

/* ========================
   OFFER SECTION
   ======================== */
.offer-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 900px) {
  .offer-showcase { grid-template-columns: 1fr; }
}

.offer-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.transformation-box {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.transform-before, .transform-after {
  flex: 1;
  min-width: 180px;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.transform-before {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--charcoal-border);
}

.transform-after {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.transform-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

.transform-after .transform-label { color: var(--gold); }

.transform-before p, .transform-after p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

.transform-after p { color: var(--cream); }

.transform-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  align-self: center;
}

.delivery-list { display: flex; flex-direction: column; gap: 1rem; }

.delivery-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.delivery-check {
  width: 24px;
  height: 24px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.delivery-item strong {
  font-size: 0.88rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}

.delivery-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.04));
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing-target {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.pricing-card.featured .pricing-amount { color: var(--gold-light); }

.pricing-usd {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pricing-includes li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.pricing-includes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Preset Product */
.preset-product {
  background: rgba(160, 212, 196, 0.05);
  border: 1px solid rgba(160, 212, 196, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.preset-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a0d4c4;
  margin-bottom: 1rem;
}

.preset-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.preset-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.preset-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.preset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.preset-tags span {
  font-size: 0.65rem;
  background: rgba(160, 212, 196, 0.1);
  border: 1px solid rgba(160, 212, 196, 0.2);
  color: #a0d4c4;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.preset-price { text-align: right; flex-shrink: 0; }

.preset-amount {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #a0d4c4;
  font-weight: 500;
  line-height: 1;
}

.preset-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
  white-space: nowrap;
}

/* ========================
   CONTENT SYSTEM
   ======================== */
.pillars-section { margin-bottom: 4rem; }

.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.subsection-title.light { color: var(--cream); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.pillar-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-3px);
}

.pillar-percent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-color {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.p1 { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.p2 { background: linear-gradient(90deg, #a0d4c4, #7abcb0); }
.p3 { background: linear-gradient(90deg, #d4847a, #c96b60); }

.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pillar-attracts {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pillar-message {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
  line-height: 1.5;
}

/* Calendar Section */
.calendar-section { }

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cadence-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.week-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.week-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--charcoal-border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.week-tab.active, .week-tab:hover {
  background: var(--gold-dim);
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--gold);
}

.week-content { display: flex; flex-direction: column; gap: 1rem; }
.week-content.hidden { display: none; }

.content-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.content-item:hover { border-color: rgba(201, 169, 110, 0.2); }

.content-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.content-day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.content-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.reel { background: rgba(212, 132, 122, 0.15); color: #d4847a; border: 1px solid rgba(212, 132, 122, 0.25); }
.carousel { background: rgba(201, 169, 110, 0.12); color: var(--gold); border: 1px solid rgba(201, 169, 110, 0.2); }
.single { background: rgba(160, 212, 196, 0.1); color: #a0d4c4; border: 1px solid rgba(160, 212, 196, 0.2); }

.content-pillar {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.p1-tag { background: rgba(201, 169, 110, 0.08); color: var(--gold-light); }
.p2-tag { background: rgba(160, 212, 196, 0.08); color: #a0d4c4; }
.p3-tag { background: rgba(212, 132, 122, 0.08); color: #d4847a; }

.hook-box {
  background: rgba(201, 169, 110, 0.06);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.content-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.content-actions { margin-top: 1rem; }

.content-check {
  background: transparent;
  border: 1px solid var(--charcoal-border);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.content-check.done {
  background: rgba(126, 218, 142, 0.1);
  border-color: rgba(126, 218, 142, 0.3);
  color: #7eda8e;
}

/* ========================
   SALES SYSTEM
   ======================== */
.scripts-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.script-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.script-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--charcoal-border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.script-tab.active, .script-tab:hover {
  background: rgba(212, 132, 122, 0.12);
  border-color: rgba(212, 132, 122, 0.3);
  color: #d4847a;
}

.script-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.script-card.hidden { display: none; }

.script-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4847a;
  margin-bottom: 1rem;
}

.script-body {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
  white-space: pre-wrap;
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.04);
}

.copy-script-btn {
  background: rgba(212, 132, 122, 0.12);
  border: 1px solid rgba(212, 132, 122, 0.25);
  color: #d4847a;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.copy-script-btn:hover {
  background: rgba(212, 132, 122, 0.2);
  transform: translateY(-1px);
}

/* Story Flows */
.story-strategy { }

.story-flows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.story-flow {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flow-header {
  padding: 1.25rem 1.5rem;
  background: rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid var(--charcoal-border);
}

.flow-day {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.flow-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
}

.flow-steps { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.flow-step {
  font-size: 0.83rem;
  color: var(--text-secondary);
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  line-height: 1.5;
}

.flow-step.cta-step {
  border-left-color: var(--gold);
  background: var(--gold-dim);
  color: var(--cream);
}

/* Sales Call */
.call-phases { display: flex; flex-direction: column; gap: 0; }

.call-phase {
  display: grid;
  grid-template-columns: 80px 140px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--charcoal-border);
  border-bottom: none;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.call-phase:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.call-phase:last-child { border-bottom: 1px solid var(--charcoal-border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.call-phase:hover { background: rgba(255,255,255,0.04); }

.call-phase.highlight-phase {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.2);
}

.phase-time {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  padding-top: 0.15rem;
}

.phase-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.1rem;
}

.phase-script {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* ========================
   REVENUE
   ======================== */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.revenue-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.revenue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }

.revenue-card.featured-revenue {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.03));
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08);
}

.revenue-month {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.revenue-scenario {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.revenue-items { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }

.revenue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  gap: 1rem;
}

.revenue-num {
  font-family: 'DM Mono', monospace;
  color: var(--cream);
  white-space: nowrap;
}

.revenue-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal-border);
  margin-bottom: 1rem;
}

.revenue-total span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
}

.revenue-card.featured-revenue .total-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.revenue-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1.5s ease;
}

.revenue-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Checklist */
.checklist-section { }

.checklist-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.checklist-week { }

.checklist-week-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--charcoal-border);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.check-item input[type="checkbox"]:checked + span {
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--charcoal-border);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--charcoal-border);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ========================
   TOAST NOTIFICATION
   ======================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 0.75rem; }
  .stat-card { padding: 1rem 1.25rem; }
  .call-phase { grid-template-columns: 1fr; gap: 0.5rem; }
  .phase-time, .phase-name { font-size: 0.75rem; }
  .section { padding: 80px 1.25rem; }
  .offer-showcase { padding: 0 1.25rem; }
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.angle-card, .pillar-card, .revenue-card, .content-item {
  animation: fade-up 0.5s ease forwards;
  opacity: 0;
}

.angle-card:nth-child(1) { animation-delay: 0.1s; }
.angle-card:nth-child(2) { animation-delay: 0.2s; }
.angle-card:nth-child(3) { animation-delay: 0.3s; }
.pillar-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-card:nth-child(3) { animation-delay: 0.3s; }

/* ========================================================
   MORGAN REGULAR LUXURY MONOCHROME SYSTEM (Anhvuwedding)
   ======================================================== */
.theme-monochrome {
  background: #000000 !important;
  color: #ffffff !important;
}

.text-white {
  color: #ffffff !important;
}

.border-thin {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.border-thin-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.font-editorial-serif {
  font-family: 'Cormorant Garamond', serif !important;
  letter-spacing: -0.01em !important;
  font-weight: 300 !important;
}

.font-editorial-mono {
  font-family: 'DM Mono', monospace !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-size: 0.72rem !important;
}

.editorial-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem;
}

.luxury-btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.luxury-btn:hover {
  background: transparent !important;
  color: #ffffff !important;
}

.luxury-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.luxury-btn-secondary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.editorial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 3.5rem 0;
}

.editorial-card {
  background: #050505 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 2.5rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 0px !important; /* luxury Morgan regular uses sharp borders */
}

.editorial-card:hover {
  border-color: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px) !important;
}

