* {
  box-sizing: border-box;
}

:root {
  --bg: #07114f;
  --bg-2: #0b1d7a;
  --panel: rgba(10, 24, 91, 0.58);
  --panel-border: rgba(255, 255, 255, 0.18);
  --text: #eaf4ff;
  --muted: #bfd1ff;
  --heading: #ffffff;
  --accent: #4fd8f8;
  --accent-2: #8ef0ff;
  --card: rgba(255, 255, 255, 0.06);
  --card-solid: #0d1a63;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 216, 248, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #09185f 45%, #07114f 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: var(--accent);
  top: 90px;
  right: -80px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: #355dff;
  bottom: 120px;
  left: -80px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1e4a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  min-width: 0;
}

.brand span {
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

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

.btn-sm {
  padding: 0.7rem 1rem;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05133d;
}

.btn-secondary,
.btn-outline {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.hero {
  padding: 6.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  color: var(--heading);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-text,
.section-heading p,
.service-card p,
.feature p,
.info-panel,
.cta p,
.site-footer p,
.hero-note,
.detail-list span {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  padding: 0;
  margin: 1.4rem 0 0;
  color: #fff;
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.45rem;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card,
.info-panel,
.cta,
.service-card,
.feature {
  border-radius: var(--radius);
}

.hero-card {
  padding: 1.35rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.hero-note {
  margin-top: 1rem;
  padding: 1rem 0.2rem 0.1rem;
}

.section {
  padding: 4.7rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  padding: 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79,216,248,0.22), rgba(255,255,255,0.08));
  color: var(--accent-2);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.8rem;
  align-items: start;
}

.info-panel {
  padding: 1.4rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.detail-list li:last-child {
  border-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature {
  padding: 1.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.cta-section {
  padding-top: 1rem;
}

.cta {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .cta,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.5rem;
  }

  .brand span {
    display: none;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
}


/* Compatibility fixes for the deployed HTML */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
}

.nav a:not(.btn):hover {
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  flex: 0 0 auto;
}

.brand-text {
  min-width: 0;
}

.brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.hero-copy {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.06rem;
}

.mini-label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card-inner {
  padding: 2rem;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #3cf18f;
  box-shadow: 0 0 0 8px rgba(60,241,143,0.12);
  margin-bottom: 1rem;
}

.stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.stats strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: rgba(255,255,255,0.03);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.checklist-box, .cta-box, .contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist-box {
  padding: 1.75rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  color: var(--text);
  margin: 0.8rem 0;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.6rem;
}

.cta-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.contact-list p {
  margin: 0 0 0.8rem;
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(234,244,255,0.55);
}

.form-msg {
  color: var(--muted);
  margin-top: 0.9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 52px;
    height: 52px;
  }

  .brand-tag {
    display: none;
  }

  .nav {
    gap: 0.75rem;
  }

  .hero {
    padding-top: 5rem;
  }
}
