:root {
  --bg: #060b14;
  --bg-soft: #0d1626;
  --card: #0f1b2d;
  --line: #1a3150;
  --text: #e8fbff;
  --muted: #9cc0ca;
  --primary: #44f2ff;
  --accent: #6effb3;
  --danger: #ff7f99;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #12304d 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, #113335 0%, transparent 32%),
    linear-gradient(160deg, #050912 0%, #060b14 50%, #0b1321 100%);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

.cyber-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(#9fd9f3 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  z-index: -2;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 20, 0.78);
  border-bottom: 1px solid rgba(68, 242, 255, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo img {
  width: 170px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.28s ease;
}

nav a:hover,
nav a.active {
  border-color: rgba(68, 242, 255, 0.5);
  color: var(--primary);
  background: rgba(68, 242, 255, 0.08);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
}

.hero {
  min-height: 62vh;
  display: grid;
  place-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 9, 18, 0.8), rgba(4, 20, 35, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.84rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.subtitle {
  max-width: 820px;
  color: #c8edf6;
  font-size: 1.06rem;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, #2ad8ff, #6effb3);
  color: #042430;
  box-shadow: 0 8px 25px rgba(68, 242, 255, 0.22);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(12, 26, 41, 0.7);
}

section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  max-width: 820px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(165deg, rgba(15, 27, 45, 0.9), rgba(9, 18, 31, 0.95));
  border: 1px solid rgba(68, 242, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card img.icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.metric {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric-box {
  border: 1px solid rgba(68, 242, 255, 0.18);
  border-radius: 12px;
  padding: 14px;
  background: rgba(10, 21, 35, 0.82);
}

.metric-box strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
}

.metric-box span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  border: 1px solid rgba(110, 255, 179, 0.35);
  color: #baffde;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  background: rgba(15, 46, 40, 0.32);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process .step {
  border: 1px solid rgba(68, 242, 255, 0.2);
  border-radius: 14px;
  background: rgba(13, 25, 40, 0.86);
  padding: 18px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #032330;
  background: linear-gradient(140deg, #44f2ff, #6effb3);
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(68, 242, 255, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(10, 20, 32, 0.9);
}

.faq-item h3 {
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid rgba(68, 242, 255, 0.2);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: var(--accent);
  background: rgba(8, 30, 34, 0.45);
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
}

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 18px;
}

.timeline article {
  margin-bottom: 26px;
  position: relative;
}

.timeline article::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: -24px;
  top: 7px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.info-box {
  background: rgba(16, 31, 49, 0.9);
  border: 1px solid rgba(110, 255, 179, 0.25);
  border-radius: var(--radius);
  padding: 20px;
}

.info-box a {
  color: var(--primary);
}

/* Improve readability on dark backgrounds by overriding browser default link blue. */
.card a,
.info-box a,
.legal-content a {
  color: #8fefff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card a:visited,
.info-box a:visited,
.legal-content a:visited {
  color: #9fe6ff;
}

.card a:hover,
.info-box a:hover,
.legal-content a:hover {
  color: #b8ffd7;
}

.legal-content h2 {
  margin-top: 40px;
}

.legal-content h3 {
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: #d7ecf1;
}

.legal-content ul {
  padding-left: 20px;
}

footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 14, 24, 0.9);
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-grid > div h3 {
  margin: 0 0 26px;
}

.footer-grid > div p {
  margin: 0 0 26px;
  line-height: 1.6;
}

.footer-grid > div p:last-child {
  margin-bottom: 0;
}

.footer-copy {
  margin-top: 0;
  padding-top: 0;
}

.footer-grid a {
  color: #cbe6ef;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #44f2ff, transparent);
  margin: 24px 0;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 242, 255, 0.24);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(68, 242, 255, 0);
  }
}

.pulse {
  animation: pulseGlow 2.5s infinite;
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2,
  .mini-metrics,
  .process,
  .faq-list,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    padding-top: 0;
  }

  nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 4%;
    width: min(320px, 92vw);
    background: #071321;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .menu-btn {
    display: inline-flex;
  }
}
