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

:root {
  --bg: #0F0F0F;
  --bg-2: #161614;
  --bg-3: #1E1E1A;
  --fg: #F5F0E8;
  --fg-2: #B8B3A8;
  --fg-3: #7A756C;
  --accent: #C8FF00;
  --accent-2: #A8D900;
  --border: rgba(245,240,232,0.08);
  --radius: 6px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1rem;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 99px;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  max-width: 42ch;
  line-height: 1.7;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/14;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,255,0,0.06);
}

.frame-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a14 0%, #0d0d0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.frame-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F0F0F;
  margin-bottom: 0.5rem;
}

.platform-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1px solid;
}

.tiktok { color: #ff0050; border-color: rgba(255,0,80,0.3); background: rgba(255,0,80,0.08); }
.reels { color: #E1306C; border-color: rgba(225,48,108,0.3); background: rgba(225,48,108,0.08); }
.shorts { color: #FF0000; border-color: rgba(255,0,0,0.3); background: rgba(255,0,0,0.08); }

.frame-stripe {
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.12;
}
.stripe-2 { top: 30%; transform: rotate(-3deg); }
.stripe-3 { bottom: 35%; transform: rotate(2deg); }

/* === HERO INTERACTIVE STATES === */
.frame-screen.playing .play-icon {
  background: #0F0F0F;
  color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,255,0,0.25);
}

.platform-badge {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s;
}

.platform-badge.active {
  opacity: 1;
  border-color: currentColor;
}

.frame-screen.playing .platform-badge {
  opacity: 0.3;
}

.frame-screen.playing .platform-badge.active {
  opacity: 1;
}

/* Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.8;
}

/* === PROCESS === */
.process {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 3.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.process-step:hover { background: var(--bg-2); }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* === PRICING === */
.pricing {
  background: var(--bg-2);
  padding: 5rem 2rem;
}

.pricing-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 50ch;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: rgba(200,255,0,0.2); }

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-3);
}

.card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.card-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-3);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-features li {
  font-size: 0.88rem;
  color: var(--fg-2);
  padding-left: 1.2rem;
  position: relative;
}

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

/* === PRICING CTA BUTTON === */
.pricing-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  min-height: 44px;   /* tap-friendly on mobile */
  line-height: 1;
}
.pricing-btn:hover {
  background: var(--accent-2);
  text-decoration: none;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-3);
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-3);
  cursor: default;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--fg-3);
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual { order: -1; }
  .visual-frame { max-width: 280px; }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .manifesto { padding: 3.5rem 1.25rem; }
  .process { padding: 3.5rem 1.25rem; }
  .pricing { padding: 3.5rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
}