/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #060814;
  color: #f5f7fb;
}

/* Layout */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, #1d2b4e 0, #050713 55%);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00e0ff, #1590ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001021;     /* dark navy, not purple */
  font-size: 0.9rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #FFFFFF;          /* bright, almost white */
}

.logo-text span:last-child {
  font-size: 0.72rem;
  opacity: 1;               /* no fading */
  color: #d9ddff;           /* soft light blue for good contrast */
}


.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #d9def7;
  opacity: 0.8;
  padding: 0.25rem 0.1rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-color: #22c1ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile nav button */
.nav-toggle {
  display: none; /* shown only on mobile */
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 5, 18, 0.9);
  color: #e1e5ff;
  padding: 0.35rem 0.7rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: #22c1ff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #e1e5ff;
  background: transparent;
}

.btn-outline:hover {
  border-color: #22c1ff;
}

.btn-primary {
  background: linear-gradient(135deg, #00e0ff, #1478ff);
  color: #020308;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

/* Hero section */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top, #192446 0, #050713 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8aa4ff;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #c4c9ee;
  max-width: 38rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: #9aa1ce;
}

.hero-badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 35, 0.8);
}

.hero-panel {
  border-radius: 1.2rem;
  padding: 1.5rem;
  background: radial-gradient(circle at top, #151f3c 0, #050713 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #97b4ff;
  margin-bottom: 0.9rem;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat {
  padding: 0.65rem 0.7rem;
  border-radius: 0.9rem;
  background: rgba(8, 13, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8d94c0;
  margin-bottom: 0.1rem;
}

.hero-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel-footnote {
  font-size: 0.7rem;
  color: #8d94c0;
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #10162a 0, #050713 60%);
}

.section-header {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7f96ff;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section-body {
  font-size: 0.95rem;
  color: #c4c9ee;
}

/* Grids & cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, min
