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

:root {
  --bg: #07070d;
  --bg-2: #0e0e18;
  --violet: #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.15);
  --coral: #ff3366;
  --coral-dim: rgba(255, 51, 102, 0.12);
  --white: #f0f0ff;
  --gray: #8888a0;
  --gray-dark: #2a2a3a;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* Noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; }

a { color: inherit; text-decoration: none; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
  display: block;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  backdrop-filter: blur(20px);
  background: rgba(7, 7, 13, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.logo-mark {
  color: var(--violet);
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--white); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,51,102,0.2) 0%, transparent 70%);
  bottom: 50px;
  left: 100px;
  animation: glow-pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes glow-pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.15); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(124, 58, 237, 0.05);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  margin-bottom: 28px;
  max-width: 900px;
}

.line { display: block; }

.line-1 { color: var(--white); }
.line-2 { color: var(--white); }

.accent-line {
  background: linear-gradient(135deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

/* Hero frames */
.hero-frames {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.frame {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}

.frame-screen {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.frame-video {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ad-preview {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
}

.ad-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(124,58,237,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255,51,102,0.1) 0%, transparent 60%);
}

.ad-play {
  font-size: 28px;
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
}

.ad-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}

.ad-logo {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  background: var(--violet);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
}

.ad-preview-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1b2a 50%, #1b1b2f 100%);
  padding: 20px;
}

.ad-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stars {
  font-size: 22px;
  color: #ffd700;
  letter-spacing: 2px;
}

.cta {
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
}

.ad-preview-3 {
  background: linear-gradient(135deg, #2d1b4e, #1a1040, #0d0620);
  padding: 20px;
  justify-content: center;
  text-align: center;
}

.ad-ugc {
  font-size: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}

.ad-headline {
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.frame-label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  font-weight: 500;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  width: fit-content;
}

.stat { text-align: center; }

.stat-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
  white-space: nowrap;
}

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

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

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

.manifesto-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.manifesto-old {
  font-size: 22px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.manifesto-divider {
  text-align: center;
  font-size: 24px;
  color: var(--violet);
  margin-bottom: 40px;
}

.manifesto-new {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
}

.highlight {
  color: var(--coral);
}

/* ===== SHOWCASE ===== */
.showcase { padding: 100px 48px; }

.showcase-header { text-align: center; margin-bottom: 56px; }

.showcase-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}

.showcase-sub {
  font-size: 18px;
  color: var(--gray);
  font-weight: 300;
}

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

.card-featured { grid-column: span 2; }

.showcase-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.showcase-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}

.card-inner {
  padding: 28px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.card-featured .card-inner {
  background: linear-gradient(180deg, transparent 0%, rgba(7,7,13,0.95) 100%);
}

.card-play {
  font-size: 20px;
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
}

.card-badge {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}

.card-meta { margin-bottom: 16px; }

.card-headline {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.card-sub {
  font-size: 13px;
  color: var(--gray);
}

.card-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-platforms span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--gray);
}

/* Showcase card backgrounds */
.card-featured .showcase-card { background: linear-gradient(135deg, #1a1040 0%, #0d0620 50%, #1a0530 100%); }
.card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-card:nth-child(2) { background: linear-gradient(135deg, #1a1a2e, #0f1729); }
.showcase-card:nth-child(3) { background: linear-gradient(135deg, #1a0f2e, #0d0a20); }
.showcase-card:nth-child(4) {
  background: linear-gradient(135deg, #0d2b1a, #0a1f14);
  grid-column: span 3;
}

/* ===== FEATURES ===== */
.features { padding: 100px 48px; background: var(--bg-2); border-top: 1px solid var(--border); }

.features-header { text-align: center; margin-bottom: 56px; }

.features-title {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  padding: 40px 36px;
  background: rgba(14,14,24,0.5);
  transition: background 0.3s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card:hover { background: rgba(124,58,237,0.05); }

.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(4), .feature-card:nth-child(5), .feature-card:nth-child(6) { border-bottom: none; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  margin-bottom: 20px;
}

.feature-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== PROCESS ===== */
.process { padding: 100px 48px; border-top: 1px solid var(--border); }

.process-header { text-align: center; margin-bottom: 72px; }

.process-title { font-size: clamp(32px, 4vw, 52px); }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 32px;
}

.step {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  flex-shrink: 0;
  display: none;
}

.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(255,51,102,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.step-example {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 12px;
}

.example-label {
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--violet);
  display: block;
  margin-bottom: 6px;
}

.example-text {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  line-height: 1.5;
}

.step-visual { margin-top: 12px; }

.mini-player {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-progress {
  width: 100px;
  height: 4px;
  background: var(--gray-dark);
  border-radius: 4px;
  overflow: hidden;
}

.mini-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  border-radius: 4px;
  animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
  0% { width: 30%; }
  50% { width: 80%; }
  100% { width: 30%; }
}

.mini-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.step-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.step-platforms span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 100px;
  color: var(--violet);
}

/* ===== RESULTS ===== */
.results { padding: 100px 48px; background: var(--bg-2); border-top: 1px solid var(--border); }

.results-header { text-align: center; margin-bottom: 56px; }

.results-title { font-size: clamp(32px, 4vw, 52px); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-card {
  padding: 40px 32px;
  background: rgba(14,14,24,0.5);
  text-align: center;
  border-right: 1px solid var(--border);
}

.result-card:last-child { border-right: none; }

.result-value {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.result-note {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
}

.quote-block blockquote {
  font-size: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quote-block cite {
  font-size: 14px;
  color: var(--gray);
  font-style: normal;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.closing-statement {
  font-size: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--coral);
  padding: 20px 32px;
  border: 1px solid rgba(255,51,102,0.2);
  border-radius: 8px;
  background: rgba(255,51,102,0.05);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 48px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 40px; }
  .hero-frames { gap: 12px; }
  .frame { min-width: 160px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: span 1; }
  .showcase-card:nth-child(4) { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature-card:nth-child(2n) { border-right: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-card:nth-child(2n) { border-right: none; }
  .process-steps { flex-direction: column; }
  .step { max-width: 100%; }
  .manifesto, .showcase, .features, .process, .results, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .feature-card:nth-child(4), .feature-card:nth-child(5), .feature-card:nth-child(6) { border-bottom: 1px solid var(--border); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .hero-frames { flex-direction: column; }
  .frame { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
}