/*
Theme Name: Starblue Capital Pro
Author: Starblue
Description: High-fidelity neon theme matching mockup perfectly.
Version: 3.0
*/

:root {
  --deep-black: #01040a;
  --neon-blue: #1a6eff;
  --glow-shadow: 0 0 25px rgba(26, 110, 255, 0.6);
  --card-bg: rgba(4, 14, 36, 0.85);
}

body {
  background: var(--deep-black) radial-gradient(circle at 50% 0%, #0a1b3d 0%, #01040a 80%) fixed;
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

/* Header & Logo */
.logo-container { padding: 40px 0 20px; }
.main-logo { max-width: 420px; filter: drop-shadow(0 0 15px rgba(26, 110, 255, 0.4)); }

.main-title { font-size: 2.2rem; font-weight: 700; margin: 20px 0 10px; letter-spacing: 0.5px; }
.tagline { color: #7ca3d0; font-size: 1rem; margin-bottom: 40px; }

/* Tabs - Matching the exact blue-glow active state */
.nav-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; }
.tab-btn {
  background: #040e24; border: 1px solid #1e2a44; color: #a0b0d0;
  padding: 12px 28px; border-radius: 4px; font-weight: 600; cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(180deg, #1a75ff 0%, #0044cc 100%);
  border: 1px solid #4da6ff; color: #fff; box-shadow: var(--glow-shadow);
}

/* Start Here Section */
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin: 60px 0 30px; font-size: 1.8rem; font-weight: 700;
}
.section-divider::before, .section-divider::after {
  content: ''; height: 1px; width: 100px; background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.start-here-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
  max-width: 1100px; margin: 0 auto 80px; padding: 0 20px;
}
.start-card {
  background: var(--card-bg); border: 1px solid rgba(26, 110, 255, 0.3);
  border-radius: 6px; padding: 45px 25px; font-size: 1.15rem; font-weight: 300;
  transition: 0.3s; cursor: pointer;
}
.start-card:hover { border-color: var(--neon-blue); box-shadow: var(--glow-shadow); }

/* Feature Cards 4-Column Grid */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto 100px; padding: 0 20px;
}
.feature-card {
  background: #020816; border: 1px solid #101d3d; border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; padding-bottom: 25px;
}
.feature-header {
  background: linear-gradient(180deg, #051636 0%, #020816 100%);
  width: 100%; height: 140px; display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { margin: 20px 0 10px; font-size: 1.3rem; }
.feature-card p { font-size: 0.85rem; color: #7ca3d0; padding: 0 15px; margin-bottom: 20px; }

/* Buttons inside cards */
.btn-blue {
  background: #0d47c8; color: #fff; border: 1px solid #1a6eff;
  width: 80%; padding: 10px; border-radius: 4px; margin-bottom: 10px; cursor: pointer;
}
.btn-outline {
  background: #050f26; color: #a0b0d0; border: 1px solid #1e2a44;
  width: 80%; padding: 10px; border-radius: 4px; cursor: pointer;
}