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

:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #191919;
  --border: #2A2A2A;
  --lime: #BFFF00;
  --lime-dim: #6B9900;
  --red: #FF3D00;
  --text: #F5F0EB;
  --text-dim: #8A8680;
  --text-muted: #444440;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

/* noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.03em; line-height: 1.0; }
p { color: var(--text-dim); }
a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.logo span { color: var(--lime); }
.header-nav {
  display: flex;
  gap: 2.5rem;
}
.header-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--lime); }

/* === HERO === */
.hero {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  border: 1px solid var(--lime-dim);
  padding: 0.4rem 0.8rem;
  width: fit-content;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 440px;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--lime);
  letter-spacing: 0.08em;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === DROP FEED PANEL === */
.drop-feed-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--font-mono);
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.panel-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.panel-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--lime);
  text-transform: uppercase;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.5s ease-in-out infinite;
}
.feed-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: background 0.15s;
}
.feed-item:last-of-type { border-bottom: none; }
.feed-item:hover { background: var(--surface-2); }
.feed-brand {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
}
.feed-info {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.feed-time {
  font-size: 0.58rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: right;
}
.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.scan-count { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.08em; }
.free-badge {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--lime-dim);
  padding: 0.2rem 0.5rem;
}
.hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime) 0%, transparent 60%);
  z-index: 2;
}

/* === SECTIONS === */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--lime);
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
}

/* === FEED SECTION === */
.feed-section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}
.feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feed-card {
  display: flex;
  gap: 1.2rem;
  padding: 2rem 2rem;
  background: var(--surface);
  transition: background 0.2s;
}
.feed-card:hover { background: var(--surface-2); }
.feed-card-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191,255,0,0.08);
  border: 1px solid rgba(191,255,0,0.2);
  border-radius: 3px;
}
.feed-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.feed-card-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.feed-card-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--lime-dim);
  padding: 0.25rem 0.6rem;
  display: inline-block;
}

/* === FEATURES SECTION === */
.features-section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-section .section-header { max-width: 1400px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.feature-item:last-child { border-bottom: none; }
.feature-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  padding-top: 0.4rem;
}
.feature-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.feature-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 580px;
}

/* === PRICING SECTION === */
.pricing-section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}
.pricing-card--highlighted {
  border-color: var(--lime-dim);
  background: linear-gradient(180deg, rgba(191,255,0,0.04) 0%, transparent 100%), var(--surface);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--lime);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2rem;
}
.pricing-price span { font-size: 1.2rem; color: var(--text-dim); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-feature::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}
.pricing-feature--active::before { background: var(--lime); }
.pricing-feature--active { color: var(--text); }
.pricing-feature--muted { color: var(--text-muted); opacity: 0.5; }
.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.8rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.pricing-cta--pro {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
  font-weight: 500;
}

/* === CLOSING === */
.closing-section {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 1400px; margin: 0 auto; }
.closing-stripe {
  width: 120px;
  height: 4px;
  background: var(--lime);
  margin-bottom: 2.5rem;
}
.closing-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 480px;
}

/* === FOOTER === */
.site-footer {
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 0.9;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--lime); }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .drop-feed-panel { max-width: 500px; }
  .feed-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .feature-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .header-nav { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .feed-card { flex-direction: column; }
  .closing-headline { font-size: 2.4rem; }
}
