/* ============================================
   MAIN — base, layout, hero
   ============================================ */
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  background: var(--bg-base);
  position: relative;
}

/* ===== Aurora background ===== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -150px; left: -100px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  top: 200px; right: -150px;
  animation-delay: -6s;
}
.blob-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  top: 800px; left: 40%;
  animation-delay: -12s;
  opacity: 0.35;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 6, 26, 0.7);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: url('../assets/logo.svg') center / contain no-repeat;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.45);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
}

.nav-links a {
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
}

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

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  color: var(--text-primary);
  font-size: 26px;
}

/* ===== Hero ===== */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease-out;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.05;
  animation: fadeUp 0.9s ease-out 0.1s backwards;
}

.gradient-text {
  background: var(--gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-subtitle {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.6;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 1.1s ease-out 0.3s backwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  animation: fadeUp 1.2s ease-out 0.4s backwards;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-value i {
  color: #fbbf24;
  font-size: 26px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-default);
}

/* ===== Trust bar ===== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-faint);
}

.logos span {
  transition: color var(--t-base);
}

.logos span:hover {
  color: var(--text-secondary);
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: rgba(15, 14, 42, 0.4);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Hero Stop Paying title ===== */
.stop-paying {
  display: block;
  color: var(--text-primary);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.strike-price {
  display: block;
  font-size: clamp(48px, 7.5vw, 95px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  position: relative;
  text-decoration: none;
}

.strike-price::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  width: 85%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-cyan));
  border-radius: 2px;
  margin-top: -2px;
}

.every-month {
  display: block;
  font-size: clamp(48px, 7.5vw, 95px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(90deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .stop-paying  { font-size: 52px; }
  .strike-price { font-size: 48px; }
  .every-month  { font-size: 48px; }
  .strike-price::after { height: 3px; }
}

@media (max-width: 480px) {
  .stop-paying  { font-size: 40px; }
  .strike-price { font-size: 38px; }
  .every-month  { font-size: 38px; }
}
