/* SailChecker Market Intelligence — Shared Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a1628;
  color: #e0e6ed;
  min-height: 100vh;
}

/* === NAVIGATION === */
.sc-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e3050;
  padding: 10px 20px;
}
.sc-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sc-nav .home-link {
  font-size: 11px; color: #3a5a7a; text-decoration: none;
  font-weight: 700; letter-spacing: 0.5px;
  margin-right: auto; white-space: nowrap;
}
.sc-nav a.nav-link {
  color: #4a6a8a; text-decoration: none;
  font-size: 11px; font-weight: 500;
  padding: 5px 10px; border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.sc-nav a.nav-link:hover {
  color: #8ab0cc;
  border-color: #1e3050;
}
.sc-nav a.nav-link.active {
  color: #4ecdc4;
  border-color: #4ecdc4;
  background: rgba(78,205,196,0.08);
}
.sc-nav .nav-sep {
  width: 1px; height: 16px;
  background: #1e3050; margin: 0 2px;
}

/* === LAYOUT === */
.sc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* === TYPOGRAPHY === */
.sc-eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: #4a6a8a; margin-bottom: 8px;
}
.sc-title {
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.sc-subtitle {
  font-size: 14px; color: #5a7a9a;
  margin-bottom: 36px;
}
.sc-subtitle span { color: #4ecdc4; font-weight: 500; }

/* === CHART CARD === */
.sc-card {
  background: #111d32;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #1e3050;
  margin-bottom: 32px;
}
.sc-card h2 {
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.sc-card .chart-sub {
  font-size: 12px; color: #5a7a9a;
  margin-bottom: 24px;
}

/* === TOOLTIP === */
.sc-tooltip {
  position: fixed; pointer-events: none;
  background: #1a2744;
  border: 1px solid #2a4060;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px; line-height: 1.6;
  color: #e0e6ed;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 100; opacity: 0;
  transition: opacity 0.15s;
  max-width: 280px;
}

/* === BETA NOTICE === */
.sc-beta {
  background: #1a2744;
  border: 1px solid #2a4060;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 24px 0;
  font-size: 12px; color: #7b8fa3;
  line-height: 1.6;
}
.sc-beta strong { color: #e8b448; }

/* === EXPLORE MORE CARDS === */
.sc-explore {
  margin: 28px 0;
}
.sc-explore-title {
  font-size: 13px; font-weight: 600;
  color: #4ecdc4; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
}
.sc-explore-grid {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.sc-explore-card {
  flex: 1; min-width: 200px;
  background: #111d32;
  border: 1px solid #1e3050;
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none; color: #fff;
  transition: border-color 0.2s;
}
.sc-explore-card:hover { border-color: #2a4060; }
.sc-explore-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.sc-explore-card p {
  font-size: 12px; color: #7b8fa3;
}
.sc-explore-card .arrow {
  color: #4ecdc4; font-size: 12px;
  margin-top: 10px; font-weight: 600;
}

/* === CTA === */
.sc-cta {
  text-align: center; margin: 24px 0 16px;
}
.sc-cta a {
  display: inline-block;
  background: #e8b448; color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 36px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.sc-cta a:hover { background: #f0c05a; }

/* === FOOTER === */
.sc-footer {
  margin-top: 28px; font-size: 11px;
  color: #3d5068; text-align: center;
}
.sc-footer a { color: #4ecdc4; text-decoration: none; }
