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

:root {
  --navy:         #0D1B2A;
  --navy-mid:     #1A2F45;
  --navy-light:   #243B55;
  --navy-card:    #142030;
  --silver:       #C8D6E5;
  --silver-dim:   #8FA3B8;
  --silver-bright:#E8EFF7;
  --white:        #F7F9FC;
  --accent:       #4A90D9;
  --accent-glow:  rgba(74,144,217,0.18);
  --accent-dim:   rgba(74,144,217,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(74,144,217,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.35s ease, height 0.35s ease, transform 0.12s ease;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 18px; height: 18px; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 52px; height: 52px; }

/* ── GRAIN ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9997; opacity: 0.5;
}

/* ── SHARED BUTTONS ── */
.btn-ghost {
  padding: 9px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(200,214,229,0.2);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--silver); color: var(--white); }

.btn-primary {
  padding: 9px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: #5BA0E6; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74,144,217,0.35); }

/* ── SHARED SECTION STYLES ── */
.section {
  padding: 120px 60px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 72px;
}

/* ── FEATURE FLAG: COMING SOON ── */
.coming-soon-only { display: none; }
body.coming-soon .full-site-only { display: none !important; }
body.coming-soon .coming-soon-only { display: flex; }

.hero-coming-soon {
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s ease forwards;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(74,144,217,0.35);
  border-radius: 3px;
  background: var(--accent-dim);
  width: fit-content;
}

.cs-note {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 180px; }
  .hero-visual { display: none; }
  .section { padding: 80px 24px; }
  .features-grid,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .cta-section { margin: 0 24px 80px; padding: 48px 32px; }
  footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; }
  .logos-strip { padding: 32px 24px; }
  .stat-item { padding: 20px 24px; }
}
