/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-alt: #111118;
  --text: #e8e8ef;
  --text-muted: #8888a0;
  --accent: #ff3366;
  --accent-glow: rgba(255, 51, 102, 0.3);
  --splat-1: #ff3366;
  --splat-2: #7c3aed;
  --splat-3: #06b6d4;
  --splat-4: #f59e0b;
  --splat-5: #10b981;
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.center { text-align: center; }

/* ── Splat Background Blobs ────────────────────── */
.splats {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.splat {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: drift 20s ease-in-out infinite alternate;
}
.splat-1 { width: 500px; height: 500px; background: var(--splat-1); top: -10%; left: -5%; animation-delay: 0s; }
.splat-2 { width: 400px; height: 400px; background: var(--splat-2); top: 30%; right: -10%; animation-delay: -4s; }
.splat-3 { width: 350px; height: 350px; background: var(--splat-3); bottom: 10%; left: 10%; animation-delay: -8s; }
.splat-4 { width: 300px; height: 300px; background: var(--splat-4); top: 60%; left: 50%; animation-delay: -12s; }
.splat-5 { width: 250px; height: 250px; background: var(--splat-5); top: 10%; right: 20%; animation-delay: -16s; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.15); }
}

/* ── Sections ──────────────────────────────────── */
section, footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  padding: 160px 0 120px;
  text-align: center;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.splat-text {
  background: linear-gradient(135deg, var(--splat-1), var(--splat-2), var(--splat-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tld {
  color: var(--text-muted);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn:hover { text-decoration: none; }

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover {
  background: #e6295a;
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-1px);
}

/* ── Reasons Grid ──────────────────────────────── */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.reason {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.reason:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.reason-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.reason h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.reason p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Uses ──────────────────────────────────────── */
.uses {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.use {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s;
}
.use:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* ── Testimonials ──────────────────────────────── */
.testimonials {
  display: grid;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  border-left: 3px solid var(--accent);
}
.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}
.testimonial cite {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── CTA Section ───────────────────────────────── */
.section-cta {
  padding: 120px 0;
}
.section-cta h2 {
  margin-bottom: 16px;
}
.section-cta .section-sub {
  margin-bottom: 32px;
}
.cta-email {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Footer ────────────────────────────────────── */
.footer {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer p + p { margin-top: 6px; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--text); }
.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 120px 0 80px; }
  .section { padding: 64px 0; }
  .reasons { grid-template-columns: 1fr; }
  .hero-sub { font-size: 1.05rem; }
}
