@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg-deep: #0a0a0f;
  --bg-card: #13131a;
  --bg-surface: #1a1a24;
  --mint: #3dffc0;
  --mint-dim: #2acc99;
  --mint-glow: rgba(61, 255, 192, 0.15);
  --lavender: #b69dff;
  --coral: #ff6b6b;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--mint-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid rgba(61, 255, 192, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--mint);
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 540px;
  z-index: 1;
  line-height: 1.7;
}

.hero .price-tag {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  z-index: 1;
}

.hero .price-tag strong {
  color: var(--mint);
  font-size: 1.15rem;
}

/* ── Tools Grid ── */
.tools-section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 3.5rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.2rem;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  border-color: rgba(61, 255, 192, 0.25);
  transform: translateY(-2px);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.tool-card:nth-child(1)::before { background: var(--mint); }
.tool-card:nth-child(2)::before { background: var(--coral); }
.tool-card:nth-child(3)::before { background: var(--lavender); }
.tool-card:nth-child(4)::before { background: #ffb347; }

.tool-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.tool-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.tool-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--mint-glow);
  color: var(--mint);
}

/* ── Problem Section ── */
.problem-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem-section .big-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.problem-section .big-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.problem-section .explanation {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tool-stack {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.tool-stack .pill {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.tool-stack .pill .price {
  color: var(--coral);
  margin-left: 0.4rem;
}

/* ── Closing ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182, 157, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

footer .footer-logo .mint {
  color: var(--mint);
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── CTA Buttons ── */
.hero-cta,
.cta-btn {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--mint);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  z-index: 1;
  position: relative;
}

.hero-cta:hover,
.cta-btn:hover {
  background: var(--mint-dim);
  transform: translateY(-2px);
}

/* ── Tool card states ── */
.tool-card--live {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.tool-card--live:hover {
  border-color: rgba(61, 255, 192, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61, 255, 192, 0.07);
}

.live-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(61, 255, 192, 0.12);
  color: var(--mint);
  border: 1px solid rgba(61, 255, 192, 0.25);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  vertical-align: middle;
  margin-left: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
    padding-top: 8rem;
  }
  
  .tool-card {
    padding: 1.8rem;
  }
  
  .tools-section,
  .problem-section {
    padding: 4rem 1.5rem;
  }
  
  .closing {
    padding: 5rem 1.5rem;
  }
  
  .tool-stack {
    gap: 0.5rem;
  }
}