@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@600;700;800&display=swap');

:root {
  --navy: #1B2C7A;
  --navy-bright: #2B52E0;
  --navy-light: #4A7AFF;
  --bg: #06090F;
  --surface: #0C1221;
  --surface-2: #111D33;
  --surface-3: #182540;
  --text: #EEF2FF;
  --text-muted: #7A8FAF;
  --text-dim: #3A4A6A;
  --border: rgba(75, 122, 255, 0.12);
  --border-bright: rgba(75, 122, 255, 0.3);
  --gradient: linear-gradient(135deg, #1B2C7A 0%, #2B52E0 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(27, 44, 122, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(43, 82, 224, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.dot-grid-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--navy-light);
  display: block;
}

h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

h1 span { color: var(--navy-light); }

.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-bright);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover { background: var(--surface-2); transform: translateY(-1px); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CREDENTIAL BAR ── */
.credential-bar {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.credential-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cred-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 12px;
  white-space: nowrap;
}

.cred-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.cred-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section {
  padding: 100px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-arrow {
  color: var(--navy-light);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy-bright), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy-bright);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(43, 82, 224, 0.2);
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h3 { margin-bottom: 4px; }

.timeline-company {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── FEATURED BLOCK ── */
.featured-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.featured-tag {
  display: inline-block;
  background: rgba(43, 82, 224, 0.15);
  border: 1px solid rgba(43, 82, 224, 0.3);
  color: var(--navy-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.featured-block p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
}

.featured-badge .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-light);
  line-height: 1;
  margin-bottom: 6px;
}

.featured-badge .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
}

.stat-item {
  background: var(--surface);
  padding: 36px 28px;
  text-align: center;
}

.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: var(--navy-light); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── QUOTE ── */
.quote-block {
  border-left: 3px solid var(--navy-bright);
  padding: 24px 32px;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  margin: 48px 0;
}

.quote-block p {
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-source {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 48px;
}

.cta-section h2 { margin-bottom: 16px; }

.cta-section p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(27, 44, 122, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { position: relative; max-width: 720px; }

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.check-list li::before {
  content: '→';
  color: var(--navy-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-bright);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── NETWORK CARDS ── */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.network-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.network-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.network-card .role {
  font-size: 13px;
  color: var(--navy-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.network-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── INLINE SVG LOGO ── */
.logo-svg { height: 32px; width: auto; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(27, 44, 122, 0.2), rgba(43, 82, 224, 0.1));
  border: 1px solid rgba(43, 82, 224, 0.25);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
}

.highlight-box p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* ── PHOTO STRIP ── */
@keyframes scroll-strip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.photo-strip-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-strip 80s linear infinite;
}

.photo-strip-inner img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.photo-strip-inner:hover { animation-play-state: paused; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  nav .nav-links { display: none; }
  section, .hero, .page-hero { padding-left: 24px; padding-right: 24px; }
  .two-col, .two-col-wide, .featured-block { grid-template-columns: 1fr; }
  .featured-badge { min-width: unset; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .credential-bar { padding: 24px; }
}
