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

:root {
  --bg: #0e0e0e;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --fg: #f0ede8;
  --fg2: #9a9590;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --accent-glow: rgba(245, 166, 35, 0.3);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }

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

/* === TOP NAV === */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,14,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,237,232,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* === HERO === */
.hero {
  padding: 80px 48px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  gap: 28px;
  align-items: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(240,237,232,0.1);
}

/* === PHONE MOCKUP === */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 260px;
}

.phone-frame {
  background: #1c1c1e;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 40px 80px rgba(0,0,0,0.6), 0 0 60px var(--accent-glow);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0e0e0e;
  border-radius: 24px;
  padding: 16px 14px;
  min-height: 480px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.screen-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
}

.status-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.alert-card {
  background: #141414;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(245,166,35,0.1);
  position: relative;
}

.alert-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #0e0e0e;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.alert-photo {
  margin-bottom: 8px;
}

.photo-placeholder {
  width: 100%;
  height: 90px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.alert-meta {
  font-size: 0.65rem;
  color: var(--fg2);
  margin-bottom: 6px;
}

.alert-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.old-price {
  font-size: 0.75rem;
  color: var(--fg2);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.alert-distance {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  color: var(--fg2);
}

.feed-label {
  font-size: 0.65rem;
  color: var(--fg2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(240,237,232,0.06);
  padding-bottom: 6px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(240,237,232,0.04);
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-dot.green { background: var(--green); }
.feed-dot.amber { background: var(--accent); }

.feed-item span:first-of-type { flex: 1; color: var(--fg); }

.feed-price {
  font-weight: 600;
  color: var(--fg2);
  font-size: 0.7rem;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(240,237,232,0.08);
}

.nav-btn {
  color: var(--fg2);
  opacity: 0.5;
}

.nav-btn.active { color: var(--accent); opacity: 1; }

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* === FEATURES === */
.features {
  padding: 80px 48px;
  background: var(--bg2);
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.features-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}

.features-sub {
  color: var(--fg2);
  font-size: 1rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border: 1px solid rgba(240,237,232,0.07);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--fg2);
  line-height: 1.65;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* Feature visuals */
.feature-visual {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(240,237,232,0.06);
}

/* Alerts visual */
.fv-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.fv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fv-dot.live {
  background: var(--green);
  animation: pulse 2s infinite;
}

.fv-list { display: flex; flex-direction: column; gap: 8px; }

.fv-item {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(240,237,232,0.05);
}

.fv-item.fv-active {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.05);
}

.fv-keyword { font-size: 0.75rem; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.fv-meta { font-size: 0.65rem; color: var(--fg2); }
.fv-scan {
  font-size: 0.6rem;
  color: var(--green);
  margin-top: 4px;
}

/* Cross-list visual */
.xlist-header {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.xlist-platforms { display: flex; flex-direction: column; gap: 8px; }

.xlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.75rem;
}

.xlist-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.xlist-icon.fb { background: #1877f2; }
.xlist-icon.ebay { background: #e53238; }
.xlist-icon.vinted { background: #00b1b5; }

.xlist-item span:nth-child(2) { flex: 1; color: var(--fg); }

.xlist-status {
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.xlist-status.posted { color: var(--green); }

.xlist-time {
  font-size: 0.65rem;
  color: var(--fg2);
  text-align: center;
  margin-top: 8px;
}

/* Profit visual */
.profit-header {
  font-size: 0.65rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.profit-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.profit-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.bar-fill {
  flex: 1;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.4;
}

.bar-fill:nth-child(1) { opacity: 0.4; }
.bar-fill:nth-child(2) { opacity: 0.55; }
.bar-fill:nth-child(3) { opacity: 0.75; }
.bar-fill:nth-child(4) { opacity: 1; }

.bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--fg2);
  margin-bottom: 16px;
}

.profit-items { display: flex; flex-direction: column; gap: 6px; }

.profit-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(240,237,232,0.05);
}

.profit-item span:first-child { color: var(--fg2); }

.profit-gain {
  font-weight: 600;
  color: var(--green) !important;
}

/* === HOW === */
.how { padding: 80px 48px; }

.how-inner { max-width: 1200px; margin: 0 auto; }

.how-header { text-align: center; margin-bottom: 64px; }

.how-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step { padding: 0 24px; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--fg2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 30px;
  color: var(--accent);
  opacity: 0.4;
}

.example-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
  margin: 3px 4px 3px 0;
}

.example-tag.muted {
  background: rgba(240,237,232,0.05);
  border-color: rgba(240,237,232,0.1);
  color: var(--fg2);
}

.step-example--alert { margin-top: 0; }

.mini-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141414;
  border: 1px solid var(--accent-glow);
  border-radius: 10px;
  padding: 10px 14px;
}

.mini-alert-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.mini-alert-body { flex: 1; }

.mini-alert-title { font-size: 0.75rem; font-weight: 600; color: var(--fg); }
.mini-alert-sub { font-size: 0.65rem; color: var(--fg2); }

.mini-alert-cta {
  background: var(--accent);
  color: #0e0e0e;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.quick-listing {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141414;
  border-radius: 10px;
  padding: 12px 16px;
}

.ql-price { font-size: 0.8rem; font-weight: 600; color: var(--fg2); }
.ql-arrow { color: var(--accent); font-size: 1rem; }
.ql-margin {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}

/* === STATS === */
.stats {
  padding: 60px 48px;
  background: var(--bg2);
  border-top: 1px solid rgba(240,237,232,0.04);
  border-bottom: 1px solid rgba(240,237,232,0.04);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-item { text-align: center; padding: 0 48px; }

.stats-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.stats-label {
  font-size: 0.85rem;
  color: var(--fg2);
  max-width: 220px;
  line-height: 1.5;
}

.stats-divider {
  width: 1px;
  height: 60px;
  background: rgba(240,237,232,0.1);
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  text-align: center;
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-vision {
  background: var(--bg2);
  border: 1px solid rgba(240,237,232,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.vision-line {
  font-size: 0.95rem;
  color: var(--fg2);
  line-height: 1.6;
}

.vision-line strong { color: var(--accent); font-weight: 600; }

/* === FOOTER === */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(240,237,232,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg2);
  max-width: 400px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--fg2);
  opacity: 0.5;
}

.footer-sep { opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .topnav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; }
  .phone-screen { min-height: 400px; }
  .features { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .how { padding: 48px 24px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stats-divider { width: 60px; height: 1px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
}
