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

:root {
  --navy: #08111F;
  --navy-mid: #0D1B30;
  --blue: #2563EB;
  --blue-light: #7BB8FF;
  --text: rgba(255,255,255,0.9);
  --text-muted: rgba(255,255,255,0.4);
  --text-dim: rgba(255,255,255,0.22);
  --border: rgba(255,255,255,0.06);
  --gradient: linear-gradient(135deg, #0D1B30 0%, #1D4ED8 55%, #60A5FA 100%);
  --gradient-text: linear-gradient(135deg, #fff 20%, #93C5FD 100%);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 17, 31, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-wordmark {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.9);
}

.nav-cta {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.22);
}

/* ── Page wrapper ── */
.page {
  height: 100vh;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 38%, rgba(37, 99, 235, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 78% 72%, rgba(96, 165, 250, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2.5rem 1rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.hero-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  padding: 0.78rem 1.6rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

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

/* ── Capabilities strip ── */
.cap-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding: 1.5rem 3.5rem;
  gap: 0;
}

.cap-item {
  flex: 1;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0 2rem;
}

.cap-item:first-child {
  padding-left: 0;
}

.cap-item:last-child {
  padding-right: 0;
}

.cap-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 0.1rem 0;
}

.cap-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
}

.cap-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.cap-desc {
  font-size: 0.77rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-wordmark {
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.02em;
}

.footer-email {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: rgba(255,255,255,0.55);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
}


/* ── Responsive ── */
@media (max-width: 700px) {
  body {
    overflow: auto;
  }

  .page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
  }

  .cap-strip {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .cap-item {
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .cap-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cap-divider {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 1.25rem;
  }
}
