:root {
  --bg: #08080c;
  --bg-2: #0e0e16;
  --surface: #13131e;
  --surface-2: #1a1a27;
  --accent: #f5a623;
  --accent-2: #e8930a;
  --accent-dim: rgba(245,166,35,0.12);
  --text: #f0ede8;
  --text-2: #a8a49a;
  --text-3: #6a6660;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }

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

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(8,8,12,0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-tag {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
  font-family: var(--font-body);
}
.nav-link:hover {
  color: var(--accent);
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 60px;
  align-items: center;
}
.hero-label {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
}
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline {
  grid-column: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  grid-column: 1;
  margin-bottom: 0;
}
.hero-sub p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-detail {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.03em;
}
.hero-art-block {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.color-bars {
  display: flex;
  gap: 6px;
  height: 12px;
}
.bar {
  flex: 1;
  border-radius: 3px;
}
.bar-1 { background: linear-gradient(90deg, #f5a623, #e8692c); }
.bar-2 { background: linear-gradient(90deg, #7c3aed, #db2777); }
.bar-3 { background: linear-gradient(90deg, #0ea5e9, #06b6d4); }
.bar-4 { background: linear-gradient(90deg, #10b981, #84cc16); }
.cover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.cover {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cover-a { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.cover-b { background: linear-gradient(135deg, #1a0a00 0%, #3d0c02 50%, #5c1a0a 100%); }
.cover-c { background: linear-gradient(135deg, #0d1f22 0%, #0e3a42 50%, #0a5f66 100%); }
.cover-d { background: linear-gradient(135deg, #1c1c0e 0%, #2d3a0a 50%, #4a5c10 100%); }
.cover-e { background: linear-gradient(135deg, #2a1a3e 0%, #4a1a5c 50%, #6a2a7a 100%); }
.cover-f { background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #1a1a1a 100%); }
/* inner glow overlays */
.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
/* subtle texture lines on some covers */
.cover-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 9px);
}
.cover-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(0,229,230,0.06) 12px, rgba(0,229,230,0.06) 13px);
}
.hero-caption {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ─── MANIFESTO ────────────────────────────── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-bar {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 32px;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* ─── FEATURES ─────────────────────────────── */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.features-header p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 36px;
  border: 1px solid var(--border);
}
.feature-card.feature-primary { background: var(--surface-2); }
.feature-card.feature-wide { grid-column: 1 / -1; }
.feature-visual {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-text p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* cover art visual */
.cover-art-visual {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.mini-cover {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 4px;
}
.mc-1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.mc-2 { background: linear-gradient(135deg, #3d1a00, #5c2a00); }
.mc-3 { background: linear-gradient(135deg, #0d1f22, #0e3a42); }

/* video visual */
.video-visual { padding: 24px; background: var(--bg-2); }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a3e 0%, #0a1a2e 50%, #0a2a1a 100%);
}
/* waveform lines */
.video-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 4px,
    rgba(245,166,35,0.4) 4px,
    rgba(245,166,35,0.4) 6px,
    transparent 6px,
    transparent 14px
  );
  animation: waveAnim 1.5s ease-in-out infinite;
}
@keyframes waveAnim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}
.play-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,166,35,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #08080c;
}
.video-label {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

/* calendar visual */
.calendar-visual {
  padding: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.cal-row {
  display: flex;
  gap: 4px;
}
.cal-day {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--surface);
}
.cal-day.filled { background: var(--accent); }
.cal-note {
  font-size: 11px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* social visual */
.social-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.social-post {
  background: var(--surface);
  border-radius: 6px;
  padding: 12px;
}
.sp-header {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.sp-body {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 6px;
}
.sp-tags {
  font-size: 10px;
  color: var(--accent);
  font-family: var(--font-display);
}
.sp-2 { opacity: 0.7; }

/* ─── PRICING ──────────────────────────────── */
.pricing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.pricing-header p {
  font-size: 16px;
  color: var(--text-2);
}
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.plan {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.plan-pro {
  background: var(--surface-2);
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 0 60px rgba(245,166,35,0.06);
}
.plan-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text-3);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.plan-tag.pro { background: var(--accent); }
.plan-tag.premium {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.plan-price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-3);
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 32px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 4px 8px;
  border-radius: 3px;
}

/* ─── OUTCOMES ────────────────────────────── */
.outcomes {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 64px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.outcome-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.outcome h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.outcome p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── CLOSING ──────────────────────────────── */
.closing {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 56px;
}
.closing-cta-block {
  display: inline-block;
  text-align: center;
}
.cta-label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.cta-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.cta-price span {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-3);
}
.cta-note {
  font-size: 13px;
  color: var(--text-3);
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.footer-tag {
  font-size: 13px;
  color: var(--text-3);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-art-block { grid-column: 1; grid-row: auto; display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.feature-wide { grid-column: 1; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 16px 24px; }
  .hero, .features, .outcomes { padding-left: 24px; padding-right: 24px; }
  .manifesto, .pricing, .closing { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .social-visual { grid-template-columns: 1fr; }
}