:root {
  --bg: #0d0f14;
  --bg-card: #151820;
  --bg-card-hover: #1c2030;
  --fg: #f0f0f0;
  --fg-muted: #8a8fa8;
  --fg-subtle: #555a70;
  --accent: #c8f136;
  --accent-dim: #9ec420;
  --red: #f13636;
  --blue: #4d8bf0;
  --green: #36c87a;
  --orange: #f18236;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Fraunces', 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);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(200,241,54,0.1);
  border: 1px solid rgba(200,241,54,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- HERO --- */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.4rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Live feed */
.hero-feed {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.feed-header {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.02);
}
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.feed-dot.live { background: var(--accent); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.feed-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.feed-item {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: rgba(255,255,255,0.03); }
.feed-domain {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-ts {
  font-size: 0.65rem;
  color: var(--fg-subtle);
  font-weight: 400;
}
.feed-diff { padding: 0; }
.diff-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.diff-tag.price { background: rgba(241,54,54,0.15); color: #f13636; }
.diff-tag.job { background: rgba(77,139,240,0.15); color: #4d8bf0; }
.diff-tag.copy { background: rgba(200,241,54,0.12); color: #c8f136; }
.diff-tag.features { background: rgba(241,130,54,0.15); color: #f18236; }
.diff-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.diff-text strong { color: var(--fg); font-weight: 500; }

/* --- HOW --- */
.how { padding: 5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.step {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.8rem;
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(200,241,54,0.25); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(200,241,54,0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step-content p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }


/* --- FEATURES --- */
.features { padding: 5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.6rem;
  transition: background 0.2s, border-color 0.2s;
}
.feat-card:hover { background: var(--bg-card-hover); border-color: rgba(200,241,54,0.2); }
.feat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,241,54,0.1);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.feat-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--fg); }
.feat-card p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }


/* --- ALERTS --- */
.alerts-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(200,241,54,0.03) 0%, transparent 100%);
}
.alerts-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.alerts-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--fg);
}
.alerts-text h2 em { font-style: italic; color: var(--accent); }
.alerts-text p { font-size: 1rem; color: var(--fg-muted); line-height: 1.75; }
.alert-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,241,54,0.2);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.alert-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.alert-time { font-size: 0.72rem; color: var(--fg-muted); }
.alert-tag.critical {
  background: rgba(241,54,54,0.12);
  color: var(--red);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.alert-summary {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.alert-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--fg-subtle);
}

/* --- PRICING --- */
.pricing { padding: 5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}
.price-card.featured {
  border-color: rgba(200,241,54,0.3);
  background: rgba(200,241,54,0.04);
  position: relative;
}
.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
}
.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.price-card > .price-header > p:last-of-type { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; }
.price-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(200,241,54,0.2);
  display: inline-flex;
  flex-shrink: 0;
}
.price-features li::before {
  background: rgba(200,241,54,0.15);
  border: 1px solid rgba(200,241,54,0.3);
  border-radius: 50%;
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  display: inline-block;
}

/* --- CLOSING --- */
.closing {
  padding: 6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--fg);
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- FOOTER --- */
.footer { padding: 3rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer-tagline { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 0.8rem; }
.footer-copy { font-size: 0.75rem; color: var(--fg-subtle); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-inner, .alerts-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .steps, .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.2rem 2.5rem; }
  .how, .features, .alerts-section, .pricing, .closing { padding: 3rem 1.2rem; }
}