:root {
  --bg: #08080e;
  --bg-alt: #0f0f1a;
  --fg: #f2ede6;
  --fg-dim: #8a857e;
  --accent: #e40dee;
  --accent-dim: rgba(228, 13, 238, 0.12);
  --accent-glow: rgba(228, 13, 238, 0.35);
  --border: rgba(242, 237, 230, 0.07);
  --radius: 14px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 14, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-weight: 400;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
}
.waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  opacity: 0.25;
  padding: 0 40px;
}
.wave-bar {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.wave-bar:nth-child(1)  { height: 20px; animation-delay: 0.0s; }
.wave-bar:nth-child(2)  { height: 45px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 70px; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 95px; animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { height: 110px; animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { height: 100px; animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { height: 80px; animation-delay: 0.6s; }
.wave-bar:nth-child(8)  { height: 60px; animation-delay: 0.7s; }
.wave-bar:nth-child(9)  { height: 40px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 65px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 90px; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 75px; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 50px; animation-delay: 1.2s; }
.wave-bar:nth-child(14) { height: 30px; animation-delay: 1.3s; }
.wave-bar:nth-child(15) { height: 15px; animation-delay: 1.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-overline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.hiw {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.hiw-step { padding: 0 32px; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.7;
}
.hiw-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 8px;
}

/* ── FEATURES ── */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
}
.feat:hover {
  border-color: var(--accent-dim);
  background: rgba(15, 15, 26, 0.9);
}
.feat-wide { grid-column: span 2; }
.feat-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feat-body {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ── DAILY REPORT ── */
.daily-report {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.report-inner { max-width: 1200px; margin: 0 auto; }
.report-card {
  background: var(--bg);
  border: 1px solid var(--accent-dim);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px var(--accent-dim);
}
.report-header {
  padding: 24px 36px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(228, 13, 238, 0.04);
}
.report-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}
.report-status {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-status::before {
  content: '';
  width: 7px;
  height: 7px;
  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.4; transform: scale(0.8); }
}
.report-items { padding: 12px 0; }
.report-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 36px;
  border-bottom: 1px solid var(--border);
}
.report-item:last-child { border-bottom: none; }
.report-item-highlight {
  background: rgba(228, 13, 238, 0.06);
}
.report-metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  min-width: 120px;
  padding-top: 2px;
}
.report-desc {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.5;
}
.report-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 32px;
  font-size: 0.78rem;
  color: var(--fg-dim);
  font-weight: 500;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 40px;
  background: var(--bg);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
}
.manifesto-body {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--fg-dim);
  max-width: 680px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-dim);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hiw { padding: 80px 24px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-divider { display: none; }
  .hiw-step { padding: 0; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: span 1; }
  .daily-report { padding: 80px 24px; }
  .report-header { flex-direction: column; gap: 8px; align-items: flex-start; }
  .report-item { flex-direction: column; gap: 6px; padding: 16px 24px; }
  .report-metric { min-width: unset; }
  .manifesto { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .report-footer { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .manifesto-headline { font-size: 1.8rem; }
}