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

:root {
  --bg: #0a0a0f;
  --bg2: #0f0f17;
  --card: #13131a;
  --border: #2a2a3a;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --text: #f0f0f8;
  --muted: #8888a0;
  --font-head: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}
.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* HERO */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 160, 0.25);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.subheadline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 420px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.trust-pill {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* EXTENSION MOCKUP */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.ext-popup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 280px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.ext-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.ext-logo { font-size: 0.9rem; font-weight: 800; }
.ext-tab {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
}
.ext-tab.active {
  background: var(--accent-dim);
  color: var(--accent);
}
.ext-items { padding: 8px 0; }
.ext-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  transition: background 0.15s;
}
.ext-item:hover { background: rgba(255,255,255,0.03); }
.ext-emoji { font-size: 1.2rem; }
.ext-item-info { flex: 1; min-width: 0; }
.ext-item-name {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ext-item-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.ext-was {
  text-decoration: line-through;
  font-size: 0.7rem;
}
.ext-btn {
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head);
  white-space: nowrap;
}
.ext-btn.pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0, 229, 160, 0); }
}
.ext-btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--font-head);
  white-space: nowrap;
}
.ext-footer {
  padding: 10px 16px;
  font-size: 0.72rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  text-align: center;
}
.hover-tooltip {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0, 229, 160, 0.15);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.track-btn {
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head);
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* HOW IT WORKS */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  margin-top: 60px;
  flex-shrink: 0;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-2px);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.83rem; color: var(--muted); }

/* STORES */
.stores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.store-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s;
}
.store-pill:hover { border-color: var(--accent); }
.stores-plus {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* COMPARE TABLE */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: var(--card);
  font-size: 0.9rem;
  font-weight: 700;
}
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.col-pg { color: var(--accent); }
.col-honey { color: var(--muted); }

/* CTA */
.cta-section {
  background: radial-gradient(ellipse at center, rgba(0, 229, 160, 0.07) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  text-align: center;
  padding: 20px 0;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cta-inner p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1rem;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-disclosure {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-mockup { justify-content: flex-start; }
  .steps {
    flex-direction: column;
    align-items: stretch;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.75rem; }
}
