/* === FRINGERIGHTS THEME === */
:root {
  --burgundy: #6B2737;
  --burgundy-deep: #4A1A27;
  --cream: #F5F0E8;
  --cream-dark: #EDE7DA;
  --charcoal: #1A1A1A;
  --warm-gray: #7A6E66;
  --light-gray: #B5ADA5;
  --accent-gold: #C9973D;
  --playwright-color: #8B4513;
  --theater-color: #6B2737;
  --materials-color: #2E5D4B;
}

/* === BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 16px 40px;
}

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

.nav-logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  background: var(--burgundy);
  color: var(--cream);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.nav-wordmark {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107, 39, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(107, 39, 55, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Stage-light vertical bar effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(107, 39, 55, 0.08), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-lede {
  font-size: 20px;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--burgundy);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 100px 60px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-label, .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}

.manifesto-headline {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 32px;
  color: var(--cream);
}

.manifesto-body {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 24px;
}

.manifesto-stat-row {
  display: flex;
  gap: 40px;
  margin: 56px 0 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
}

.stat-label {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  max-width: 220px;
  line-height: 1.4;
}

.manifesto-closing {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--cream);
  padding: 100px 60px;
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-headline {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 64px;
  color: var(--charcoal);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portal-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  border: 1.5px solid var(--cream-dark);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.portal-card:hover {
  box-shadow: 0 12px 40px rgba(107, 39, 55, 0.1);
  transform: translateY(-4px);
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}

.portal-card--playwright::before { background: var(--playwright-color); }
.portal-card--theater::before { background: var(--theater-color); }
.portal-card--materials::before { background: var(--materials-color); }

.portal-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.portal-card--playwright .portal-icon { background: rgba(139, 69, 19, 0.1); color: var(--playwright-color); }
.portal-card--theater .portal-icon { background: rgba(107, 39, 55, 0.1); color: var(--theater-color); }
.portal-card--materials .portal-icon { background: rgba(46, 93, 75, 0.1); color: var(--materials-color); }

.portal-title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.portal-desc {
  font-size: 15px;
  color: var(--warm-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.portal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portal-features li {
  font-size: 14px;
  color: var(--warm-gray);
  padding-left: 20px;
  position: relative;
}

.portal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.5;
}

/* === PRICING === */
.pricing {
  background: var(--cream-dark);
  padding: 100px 60px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-lede {
  font-size: 20px;
  color: var(--warm-gray);
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.pricing-tier {
  background: white;
  border-radius: 16px;
  padding: 40px;
  border: 1.5px solid var(--cream-dark);
  position: relative;
}

.pricing-tier--featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}

.tier-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: inherit;
}

.tier-price {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1;
}

.tier-period {
  font-size: 18px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.7;
}

.tier-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--warm-gray);
}

.pricing-tier--featured .tier-desc { color: rgba(245, 240, 232, 0.7); }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  font-size: 14px;
  color: var(--warm-gray);
  padding-left: 20px;
  position: relative;
}

.pricing-tier--featured .tier-features li { color: rgba(245, 240, 232, 0.8); }

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
}

.pricing-tier--featured .tier-features li::before { background: var(--accent-gold); }

.pricing-note {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.pricing-note p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--warm-gray);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--cream);
  padding: 100px 60px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--burgundy-deep);
  border-radius: 16px;
  padding: 40px;
}

.testimonial-quote {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-source {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
}

/* === CLOSING === */
.closing {
  background: var(--charcoal);
  color: var(--cream);
  padding: 120px 60px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.15;
}

.closing-body {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 24px;
}

.closing-cta {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 48px;
}

/* === FOOTER === */
.footer {
  background: var(--burgundy-deep);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding: 48px 60px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  background: rgba(245, 240, 232, 0.1);
  color: var(--cream);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.footer-wordmark {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.7;
  max-width: 640px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .portal-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 100px 32px 60px; }
  .manifesto, .how-it-works, .pricing, .testimonials, .closing { padding: 72px 32px; }
  .footer { padding: 40px 32px; }
  .manifesto-stat-row { flex-direction: column; gap: 32px; }
  .stat-label { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 44px; }
  .closing-cta { font-size: 36px; }
  .tier-price { font-size: 40px; }
  .navbar { padding: 14px 24px; }
}
