/*
Theme Name: Starblue Capital
Theme URI: https://starbluecapitalllc.com
Author: Starblue Capital LLC
Description: Official Starblue Capital theme — dark space, blue glow, five divisions.
Version: 2.0
*/

/* ============================================================
   RESET & ROOT
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #01040a;
  --blue:     #0055ff;
  --bl:       #1a6eff;
  --bg2:      rgba(2, 8, 24, 0.85);
  --tx:       #ddeeff;
  --dim:      #7799bb;
  --bdr:      rgba(26, 110, 255, 0.28);
  --bdrb:     #1a6eff;
  --orange:   #ff6600;
  --green:    #00cc66;
}

html, body {
  background: var(--bg);
  color: var(--tx);
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================================================
   STAR CANVAS
============================================================ */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   PAGE WRAPPER
============================================================ */
.page {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TOP NAVIGATION
============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  height: 60px;
  background: rgba(1, 4, 15, 0.95);
  border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
  cursor: pointer;
}

.nav-logo svg { width: 32px; height: 32px; }

.nav-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}

.nav-links a, .tab-btn {
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dim);
  cursor: pointer;
  transition: all .2s;
  border: none;
  background: none;
  font-family: 'Exo 2', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.nav-links a:hover, .tab-btn:hover,
.nav-links a.active, .tab-btn.active {
  color: #fff;
  background: rgba(26, 110, 255, .15);
}

.nav-cta {
  margin-left: auto;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0055ff, #0033cc);
  border: 1px solid #4d9fff;
  border-radius: 8px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 0 16px rgba(0,85,255,.5);
  text-decoration: none;
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(0,85,255,.85);
  transform: translateY(-1px);
}

/* ============================================================
   GLOW DIVIDER
============================================================ */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bl), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  text-align: center;
  padding: 64px 20px 48px;
}

.logo-star svg {
  width: 175px;
  height: 175px;
  filter: drop-shadow(0 0 40px rgba(0,85,255,.9));
  animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
  0%,100% { filter: drop-shadow(0 0 40px rgba(0,85,255,.9)); }
  50%      { filter: drop-shadow(0 0 75px rgba(30,130,255,1)); }
}

.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 6vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-top: 14px;
}

.brand-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(13px, 2.5vw, 20px);
  color: var(--dim);
  letter-spacing: .2em;
  margin-top: 4px;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  margin: 14px 0 10px;
}

.hero-heading span { color: #2080ff; }

.hero-sub {
  color: var(--dim);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  padding: 11px 28px;
  background: linear-gradient(135deg, #0055ff, #0033cc);
  border: 1px solid #4d9fff;
  border-radius: 8px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(0,85,255,.45);
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0,85,255,.85);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  padding: 11px 28px;
  background: transparent;
  border: 1px solid var(--bdrb);
  border-radius: 8px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(26,110,255,.18);
  box-shadow: 0 0 18px rgba(26,110,255,.35);
  color: #fff;
}

/* ============================================================
   NAV TABS (hero section)
============================================================ */
.nav-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.nav-tabs a {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid var(--bdr);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dim);
  transition: all .25s;
  font-family: 'Exo 2', sans-serif;
  background: transparent;
}

.nav-tabs a:hover, .nav-tabs a.active {
  background: linear-gradient(to bottom, #0055ff, #0033aa);
  border-color: #4d9fff;
  box-shadow: 0 0 22px rgba(0,85,255,.8);
  color: #fff;
}

/* ============================================================
   SECTIONS
============================================================ */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.section-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

/* ============================================================
   START GRID (Home — Start Here)
============================================================ */
.start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.start-card {
  background: var(--bg2);
  border: 1px solid rgba(26,110,255,.3);
  box-shadow: inset 0 0 15px rgba(26,110,255,.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--tx);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: block;
}
.start-card:hover {
  border-color: var(--bdrb);
  box-shadow: 0 0 28px rgba(26,110,255,.5), inset 0 0 12px rgba(26,110,255,.2);
  transform: translateY(-3px);
  color: #fff;
}

/* ============================================================
   FEATURE CARDS GRID (5 divisions)
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 16px;
}

.feature-card {
  border: 1px solid rgba(26,110,255,.2);
  background: linear-gradient(180deg, rgba(5,15,40,.9) 0%, rgba(2,5,15,.9) 100%);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: all .3s;
}
.feature-card:hover {
  border-color: var(--bdrb);
  box-shadow: 0 0 30px rgba(26,110,255,.35);
  transform: translateY(-4px);
}

.feature-icon { font-size: 40px; margin-bottom: 12px; }

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}

.feature-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.55;
  margin-bottom: 18px;
}

.feature-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ============================================================
   PLATFORMS ROW
============================================================ */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 24px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  min-width: 120px;
  transition: all .25s;
  text-decoration: none;
}
.platform-link:hover {
  border-color: var(--bdrb);
  box-shadow: 0 0 16px rgba(26,110,255,.3);
  transform: translateY(-2px);
}

.platform-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.platform-url  { font-size: 11px; color: var(--dim); }

/* ============================================================
   HIGHLIGHTS / FEATURE LIST
============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.highlight-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  align-items: flex-start;
}

.highlight-icon { font-size: 28px; flex-shrink: 0; }
.highlight-title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 5px; }
.highlight-desc  { font-size: 12.5px; color: var(--dim); line-height: 1.5; }

/* ============================================================
   LINK CARDS (category pages)
============================================================ */
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 16px;
}

.link-card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 22px;
  transition: all .3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.link-card:hover {
  border-color: var(--bdrb);
  box-shadow: 0 0 24px rgba(26,110,255,.38);
  transform: translateY(-3px);
  color: inherit;
}

.link-card-icon  { font-size: 32px; margin-bottom: 10px; }
.link-card-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: #fff; }
.link-card-desc  { font-size: 12px; color: var(--dim); line-height: 1.55; margin-bottom: 12px; }
.link-card-url   { font-size: 11px; color: var(--bl); margin-bottom: 12px; display: block; }

.visit-btn {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0055ff, #0033cc);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  transition: all .2s;
  text-decoration: none;
}
.visit-btn:hover {
  box-shadow: 0 0 14px rgba(0,85,255,.65);
  color: #fff;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,40,120,.4), rgba(0,10,40,.8));
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  margin: 0 20px;
}

.cta-banner h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-banner p { color: var(--dim); font-size: 15px; margin-bottom: 24px; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  border-top: 1px solid var(--bdr);
  padding: 40px 20px 20px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px repeat(5, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.65;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--bl);
  margin-bottom: 10px;
  letter-spacing: .05em;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--bdr);
  padding-top: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--dim);
}

.footer-bottom a { color: var(--bl); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

.disclaimer {
  font-size: 11px;
  color: var(--dim);
  opacity: .72;
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links   { display: none; }
}

@media (max-width: 600px) {
  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero         { padding: 40px 16px 32px; }
  .cta-banner   { margin: 0 10px; padding: 32px 18px; }
}