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

:root {
  --bg: #0C0C0C;
  --bg-2: #141414;
  --lime: #BAFF4F;
  --lime-dim: rgba(186, 255, 79, 0.12);
  --white: #F5F0E8;
  --muted: #8A8A8A;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--lime) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; color: #000 !important; }

/* ===== HERO ===== */
.hero {
  padding: 160px 48px 80px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--lime-dim);
  border: 1px solid rgba(186,255,79,0.2);
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-headline .lime { color: var(--lime); }

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-primary {
  display: inline-block;
  background: var(--lime);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-primary:hover { opacity: 0.85; }

.cta-sub {
  font-size: 13px;
  color: var(--muted);
}

/* Demo window */
.demo-window {
  background: #1A1A1A;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(186,255,79,0.06);
}

.demo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #333;
}

.demo-dot:first-child { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #febc2e; }
.demo-dot:nth-child(3) { background: #28c840; }

.demo-url {
  margin-left: 12px;
  font-size: 12px;
  color: #555;
  font-family: var(--font-body);
}

.demo-body { padding: 20px; }

.demo-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.demo-field {
  flex: 1;
  background: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
}

.demo-prefix { color: #555; margin-right: 4px; }

.demo-cursor {
  border-right: 2px solid var(--lime);
  padding-right: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { border-color: transparent; } }

.demo-btn {
  background: var(--lime);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 10px;
  white-space: nowrap;
  font-family: var(--font-head);
}

.demo-output-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}

.meme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.meme-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.meme-img {
  height: 80px;
  position: relative;
  overflow: hidden;
}

.meme-img-1 {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 50%, #1a3a1a 100%);
}
.meme-img-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(186,255,79,0.06) 8px,
    rgba(186,255,79,0.06) 9px
  );
}

.meme-img-2 {
  background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 50%, #1a1a3a 100%);
}
.meme-img-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(186,255,79,0.08) 0%, transparent 60%);
}

.meme-img-3 {
  background: linear-gradient(135deg, #2a1a1a 0%, #4a2a2a 50%, #2a1a1a 100%);
}
.meme-img-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,100,100,0.05) 6px,
    rgba(255,100,100,0.05) 7px
  );
}

.meme-caption {
  font-size: 10px;
  color: #666;
  padding: 8px;
  font-style: italic;
  line-height: 1.4;
}

/* Stats column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 120px;
}

.stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.stat:first-child { border-top: 1px solid var(--border); }

.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== HOW ===== */
.how {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 72px;
  max-width: 640px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 40px;
  border-right: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--lime-dim);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 48px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature:nth-child(3n) { border-right: none; }
.feature:nth-child(4),
.feature:nth-child(5),
.feature:nth-child(6) { border-bottom: none; }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--lime-dim);
  border: 1px solid rgba(186,255,79,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime);
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== PROOF ===== */
.proof {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.proof-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.proof-quote {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.proof-source {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.proof-bottom {
  max-width: 700px;
}

.proof-bottom p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(186,255,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.closing p {
  color: var(--muted);
  font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--lime);
}

.footer-copy {
  font-size: 13px;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; padding-top: 0; }
  .stat { flex: 1; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature:nth-child(2n) { border-right: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .meme-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none !important; }
  .how, .features, .proof { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .meme-cards { grid-template-columns: 1fr; }
  .stat { padding: 20px 0; }
  .stat-num { font-size: 36px; }
}