*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  background-color: #05070b;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 11, 0.96),
    rgba(5, 7, 11, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at 30% 0%, #38bdf8, #0f172a);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f9fafb;
}

.nav-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-link {
  color: #e5e7eb;
  padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #38bdf8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.35);
}

.nav-cta span {
  font-size: 0.95em;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.05);
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.6rem 0.15rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.75)
  );
  color: #e5e7eb;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #16a34a);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.badge-label {
  color: #9ca3af;
}

.badge-text {
  font-weight: 600;
}

main {
  flex: 1;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 0 3.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-kicker {
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: #f9fafb;
  margin-bottom: 0.9rem;
}

.hero-title span {
  background: linear-gradient(120deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 34rem;
  color: #9ca3af;
}

.hero-subtitle strong {
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  box-shadow: 0 18px 55px rgba(56, 189, 248, 0.42);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.06);
}

.btn-secondary {
  background: radial-gradient(circle at 0% 0%, #1f2937, #020617);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: radial-gradient(circle at 0% 0%, #111827, #020617);
}

.btn-icon {
  font-size: 1.1rem;
}

.hero-footnote {
  margin-top: 1.35rem;
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 30rem;
}

.hero-footnote strong {
  color: #e5e7eb;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0% 0%, #0f172a, #020617);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.3);
  padding: 1.15rem 1.2rem 1.25rem;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hero-card-chip {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.hero-card-body {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 480px) {
  .hero-card-body {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.hero-card-copy {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-card-copy strong {
  color: #e5e7eb;
}

.hero-card-metrics {
  display: grid;
  gap: 0.65rem;
  font-size: 0.8rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.metric-label {
  color: #9ca3af;
}

.metric-value {
  font-weight: 600;
  color: #e5e7eb;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
  font-size: 0.7rem;
}

.hero-card-image {
  margin-top: 0.9rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.8);
  background: radial-gradient(circle at 10% 0%, #22c55e, #0f172a);
}

.hero-card-image-inner {
  padding: 0.6rem 0.6rem 0.4rem;
}

.hero-card-image-label {
  font-size: 0.72rem;
  color: #cbd5f5;
  margin-bottom: 0.25rem;
}

.hero-card-image-caption {
  font-size: 0.68rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: 10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent);
  filter: blur(8px);
}

.hero-glow::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28), transparent);
  filter: blur(8px);
}

section {
  padding: 2.5rem 0 2.75rem;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

section:nth-of-type(odd) {
  background: radial-gradient(circle at top left, #020617, #020617);
}

section:nth-of-type(even) {
  background: radial-gradient(circle at top right, #020617, #020617);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 650;
  color: #f9fafb;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.section-intro {
  font-size: 0.92rem;
  color: #9ca3af;
  max-width: 32rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.72rem;
  color: #9ca3af;
}

.pill strong {
  color: #e5e7eb;
}

.pill.green {
  border-color: rgba(34, 197, 94, 0.7);
  color: #bbf7d0;
}

.pill.blue {
  border-color: rgba(56, 189, 248, 0.7);
  color: #bae6fd;
}

.pill.amber {
  border-color: rgba(245, 158, 11, 0.7);
  color: #fed7aa;
}

.two-column {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.section-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.section-list li + li {
  margin-top: 0.65rem;
}

.section-list strong {
  color: #e5e7eb;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stat-card {
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top, #020617, #020617);
}

.stat-label {
  font-size: 0.72rem;
  color: #9ca3af;
}

.stat-value {
  margin-top: 0.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fafb;
}

.stat-footnote {
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: #6b7280;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at 10% 0%, #020617, #020617);
  padding: 0.9rem 1rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.card-tag {
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #9ca3af;
}

.card-body {
  font-size: 0.84rem;
  color: #9ca3af;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.65rem;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
}

.timeline {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.timeline-item {
  display: grid;
  gap: 0.15rem;
  border-left: 2px solid rgba(31, 41, 55, 1);
  padding-left: 0.75rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #38bdf8, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.timeline-label {
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.timeline-title {
  color: #e5e7eb;
  font-weight: 600;
}

.timeline-body {
  color: #9ca3af;
  font-size: 0.86rem;
}

.contact {
  text-align: left;
}

.contact p {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 30rem;
}

.contact-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-item-label {
  color: #6b7280;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-item-value a {
  color: #38bdf8;
}

.contact-item-value a:hover,
.contact-item-value a:focus-visible {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 1.6rem 0 2.1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e5e7eb;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


