/* ============================================
   Lead Lists — ColdStart
   Cube-landing / AI-benefits style
   Cabinet Grotesk + Inter · Purple accent
   ============================================ */

:root {
  --bg: #050508;
  --text: #e8e8ec;
  --text-dim: rgba(232, 232, 236, 0.3);
  --text-muted: rgba(232, 232, 236, 0.55);
  --text-body: rgba(232, 232, 236, 0.85);
  --accent: #8b9cf7;
  --accent-warm: #c4a0f7;
  --red: #ef4444;
  --font-display: 'Unbounded', sans-serif;
  --font-heading: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* --- Canvas --- */
#cube-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* --- Grain --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 2rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(139, 156, 247, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 156, 247, 0.35);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu-btn.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-menu-btn.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .nav-cta {
  font-size: 1rem;
  margin-top: 1rem;
}

/* --- Hero --- */
.hero-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  max-width: 720px;
  text-align: center;
  width: 90%;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero-heading .line {
  display: block;
  opacity: 0;
}

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

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 540px;
  margin: 1.5rem auto 0;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  pointer-events: auto;
  opacity: 0;
}

/* --- Buttons --- */
.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--text);
  border-radius: 100px;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.cta-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(139, 156, 247, 0.2);
}

.cta-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  box-shadow: none;
}

/* --- Scroll Hint --- */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 0.6; transform: scaleY(1); transform-origin: top; }
}

/* --- Scroll Content --- */
.scroll-content {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
  justify-content: center;
}

.section-inner {
  max-width: 540px;
}

.section-inner--wide {
  max-width: 800px;
}

.section-number {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(15px);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
}

.section-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
}

/* --- Data Grid (What You Get) --- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(15px);
}

.data-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.data-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.data-card svg {
  color: var(--accent);
  flex-shrink: 0;
}

.data-card span {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-body);
}

/* --- Steps Grid (How It Works) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(15px);
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.step-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Competitor Grid --- */
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(15px);
}

.competitor-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.competitor-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(239, 68, 68, 0.2);
}

.competitor-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.competitor-price {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

/* --- Pricing Card --- */
.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 156, 247, 0.2);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(15px);
}

.pricing-amount {
  margin-bottom: 2rem;
}

.pricing-dollar {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pricing-period {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card .cta-btn {
  width: 100%;
  text-align: center;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  z-index: 10;
  padding: 8rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-split {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  max-width: 1100px;
  width: 100%;
}

.cta-left {
  flex: 1;
  min-width: 0;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta-heading .line {
  display: block;
}

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

.cta-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 440px;
  opacity: 0;
  transform: translateY(20px);
}

/* Form */
.cta-form {
  flex: 1;
  min-width: 0;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit-btn {
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--text);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139, 156, 247, 0.2);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

  .site-header { padding: 1rem 1.5rem; }

  .hero-text {
    top: auto;
    bottom: 6rem;
    left: 1.5rem;
    right: 1.5rem;
    transform: none;
    text-align: left;
    width: auto;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-heading .line {
    white-space: normal;
  }

  .hero-ctas {
    justify-content: flex-start;
    flex-direction: column;
  }

  .hero-ctas .cta-btn {
    text-align: center;
  }

  .section {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .competitor-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-split {
    flex-direction: column;
    gap: 3rem;
  }

  .cta-form {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .scroll-hint {
    bottom: 1.5rem;
  }
}
