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

:root {
  --bg: #0A0A0B;
  --surface: #111113;
  --surface2: #1A1A1D;
  --accent: #F97316;
  --accent-light: #FB923C;
  --fg: #F4F4F5;
  --fg-muted: #A1A1AA;
  --fg-dim: #52525B;
  --border: #27272A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding: var(--space-xl) var(--space-2xl);
  gap: var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 600px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(249,115,22,0.3);
  display: inline-block;
  border-radius: 2px;
  width: fit-content;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-sub p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  margin-top: var(--space-sm);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

.video-card-stack {
  position: relative;
  width: 320px;
  height: 420px;
}
.video-card {
  position: absolute;
  width: 240px;
  height: 320px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.vc-icon {
  font-size: 3rem;
  color: var(--accent);
}
.vc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.vc-1 {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  top: 0; left: 0;
  z-index: 3;
  transform: rotate(-3deg);
  box-shadow: 0 20px 60px rgba(249,115,22,0.12);
}
.vc-2 {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  top: 40px; left: 40px;
  z-index: 2;
  transform: rotate(2deg);
}
.vc-3 {
  background: linear-gradient(135deg, rgba(20,20,30,0.9), rgba(20,20,30,0.7));
  top: 80px; left: 80px;
  z-index: 1;
  transform: rotate(-1deg);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.manifesto-body p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== SECTION SHARED ===== */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

/* ===== FEATURES ===== */
.features {
  padding: var(--space-3xl) var(--space-2xl);
}
.features-header {
  margin-bottom: var(--space-2xl);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-body);
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 860px; margin: 0 auto; }
.process-inner .section-title { margin-bottom: var(--space-2xl); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.step-body { padding-top: 0.4rem; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.step-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--space-3xl) var(--space-2xl);
}
.pricing-header { margin-bottom: var(--space-2xl); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}
.price-card-featured {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.03));
  border-color: rgba(249,115,22,0.4);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.price-amount span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.price-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.2rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.pricing-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-top: var(--space-xl);
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: var(--space-lg);
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.closing-cta {}
.closing-cta-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.closing-cta-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.closing-cta-text a:hover { color: var(--accent-light); }

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-xl) var(--space-2xl);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-info {
  text-align: right;
}
.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--space-lg);
    min-height: auto;
    padding-top: 5rem;
    gap: var(--space-xl);
  }
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
  .manifesto, .features, .process, .pricing, .closing, .footer {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .stat-divider { display: none; }
  .step-num { font-size: 2.5rem; }
}