/* ============================================
   REELRUSH — CUSTOM THEME
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0c0c0e;
  --bg-raised:   #131316;
  --bg-card:    #18181d;
  --accent:     #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --text:       #f5f0e8;
  --text-dim:   #8a8680;
  --text-muted: #4a4844;
  --border:     rgba(245, 240, 232, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  padding: 100px 32px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 560px;
  font-weight: 300;
}

/* ---- STATS ---- */
.stats {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

/* ---- OFFER ---- */
.offer {
  padding: 96px 32px;
}
.offer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.offer-header {
  margin-bottom: 56px;
}
.offer-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 540px;
  color: var(--text);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.offer-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-icon {
  color: var(--accent);
  margin-bottom: 4px;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.offer-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dim);
  font-weight: 300;
}

/* ---- PRICING ---- */
.offer-pricing {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.pricing-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  align-self: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-right: 20px;
}
.pricing-tier {
  flex: 1;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.pricing-tier-featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.pricing-tier-name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.pricing-tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
}
.pricing-tier-detail {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  font-weight: 300;
}

/* ---- HOW ---- */
.how {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-inner .section-label { margin-bottom: 20px; }
.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 500px;
  margin-bottom: 64px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.how-step {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 96px 32px;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 168, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dim);
  font-style: italic;
  font-weight: 300;
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 96px 32px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-text {
  max-width: 680px;
}
.manifesto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 32px;
}
.manifesto-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 20px;
}
.manifesto-text p:last-child { margin-bottom: 0; }

/* ---- FOOTER ---- */
.footer {
  padding: 56px 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
  flex: 1;
}
.footer-links {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 72px 24px 60px; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat { padding: 0; min-width: calc(50% - 16px); }
  .stat-divider { display: none; }
  .offer { padding: 72px 24px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-pricing { flex-direction: column; }
  .pricing-label { writing-mode: horizontal-tb; transform: none; }
  .how { padding: 72px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 40px; }
  .how-step:last-child { border-bottom: none; padding-bottom: 0; }
  .testimonials { padding: 72px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .hero-headline { font-size: 2.2rem; }
  .stat { min-width: 100%; }
}