:root {
  --bg: #06101a;
  --bg-2: #091523;
  --panel: rgba(11, 22, 37, 0.78);
  --panel-strong: rgba(13, 27, 45, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(114, 184, 255, 0.22);
  --text: #edf4ff;
  --muted: #96a8c3;
  --muted-2: #72839b;
  --primary: #78bcff;
  --primary-2: #4a8fd6;
  --accent: #8be7d3;
  --success: #72dba9;
  --danger: #ff9898;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1280px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(120, 188, 255, 0.09), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(139, 231, 211, 0.07), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(120, 188, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #06101a 0%, #09131f 35%, #07111b 100%);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  position: relative;
}

/* animated tech background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.08));
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle, rgba(120,188,255,0.06), transparent 30%),
    radial-gradient(circle, rgba(139,231,211,0.05), transparent 28%);
  background-size: 38% 38%, 44% 44%;
  background-position: 10% 20%, 85% 60%;
  animation: floatGlow 18s linear infinite alternate;
  filter: blur(20px);
  pointer-events: none;
  z-index: -2;
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -2%, 0) scale(1.06);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-sm {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 920px;
  margin-bottom: 18px;
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero.compact {
  padding: 140px 0 60px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%),
    radial-gradient(circle at 20% 15%, rgba(120,188,255,0.08), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(139,231,211,0.06), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  max-width: 860px;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff, #b8dcff, #a4efde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: #dbe9fb;
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(139, 231, 211, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #06111d;
  background: linear-gradient(135deg, #dcedff, #94d1ff);
  box-shadow: 0 16px 28px rgba(120, 188, 255, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: var(--line-strong);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 16, 26, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #13243a, #0d1b2c);
  border: 1px solid var(--line-strong);
  position: relative;
  box-shadow: inset 0 0 24px rgba(120,188,255,0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  border: 2px solid rgba(143,208,255,0.78);
}

.brand-mark::before {
  inset: 10px;
}

.brand-mark::after {
  inset: 16px;
  border-color: rgba(139,231,211,0.72);
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: var(--transition);
}

.menu-toggle::before { top: 15px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 27px; }

.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle.open::after {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding-bottom: 18px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(180deg, rgba(14, 27, 45, 0.9), rgba(9, 18, 31, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -30% 100% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(120,188,255,0.08), transparent 65%);
  transform: translateY(50%);
  pointer-events: none;
}

.card-dark {
  background: linear-gradient(180deg, rgba(10, 19, 32, 0.96), rgba(8, 15, 26, 0.98));
}

.card h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--muted);
}

.panel {
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.95), rgba(9, 18, 31, 0.96));
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.panel-body {
  padding: 24px;
}

.panel-title {
  font-weight: 800;
  color: #dbe9fb;
  font-size: 0.95rem;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d3e4fb;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139,231,211,0.22);
  background: rgba(139,231,211,0.06);
}

.panel-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(114, 219, 169, 0.6);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.list-clean {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.list-clean li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.list-clean li:first-child {
  padding-top: 0;
  border-top: none;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(120,188,255,0.14), rgba(139,231,211,0.12));
  border: 1px solid rgba(120,188,255,0.18);
  color: #e5f1ff;
  font-size: 1.1rem;
}

.list-copy h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.list-copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card {
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,231,211,0.22);
  box-shadow: 0 22px 50px rgba(0,0,0,0.3);
}

.feature-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-card li {
  position: relative;
  padding-left: 16px;
  color: #dce9f8;
  font-size: 0.94rem;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.stat-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 100%;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.stat-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-index {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1c3552, #12253c);
  border: 1px solid var(--line-strong);
  font-weight: 800;
}

.timeline-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.timeline-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.timeline-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.trust-item:last-child {
  border-right: none;
}

.progress-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.progress-item {
  display: grid;
  gap: 8px;
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: #dceafb;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5ea9f3, #9de9d8);
  transition: width 1.4s ease;
}

.quote-box {
  padding: 36px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(17, 31, 49, 0.96), rgba(9, 18, 31, 0.98));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-xl);
}

.quote-box p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #dceafb;
  line-height: 1.6;
  max-width: 980px;
}

.form-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form {
  display: grid;
  gap: 16px;
}

.input-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.94rem;
  color: #dceafb;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #8297b4;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(143,208,255,0.45);
  box-shadow: 0 0 0 4px rgba(120,188,255,0.08);
  background: rgba(255,255,255,0.045);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.form-status {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.info-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
}

.info-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(3, 8, 14, 0.38);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Force the copyright sentence to wrap on mobile only */
.footer-mobile-br {
  display: none;
}

.footer-bottom .footer-mobile-br {
  display: none;
}

/* cyber lines */
.cyber-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cyber-lines span {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120,188,255,0.35), transparent);
  animation: lineMove 9s linear infinite;
  opacity: 0.45;
}

.cyber-lines span:nth-child(1) {
  top: 18%;
  left: -20%;
  width: 50%;
}

.cyber-lines span:nth-child(2) {
  top: 42%;
  right: -15%;
  width: 38%;
  animation-duration: 11s;
}

.cyber-lines span:nth-child(3) {
  top: 68%;
  left: -10%;
  width: 60%;
  animation-duration: 13s;
}

@keyframes lineMove {
  0% {
    transform: translateX(0);
    opacity: 0.15;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(12%);
    opacity: 0.15;
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* parallax targets */
.parallax {
  will-change: transform;
}

/* page banner panel */
.dashboard-grid {
  display: grid;
  gap: 16px;
}

.dashboard-block {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.dashboard-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.dashboard-block h4 {
  font-size: 0.98rem;
}

.dashboard-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.dashboard-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.93rem;
}

.dashboard-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dashboard-list strong {
  color: #dbe9fb;
  font-weight: 600;
}

.cta-banner {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,28,46,0.98), rgba(9,17,29,0.98));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-xl);
}

.cta-banner-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta-banner p {
  color: var(--muted);
  max-width: 760px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: #dceafb;
  font-size: 0.88rem;
}

@media (max-width: 1140px) {
  .hero-grid,
  .grid-2,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 82px 0;
  }

  .page-hero,
  .page-hero.compact {
    padding: 128px 0 56px;
  }

  .grid-3,
  .grid-4,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-index {
    width: 52px;
    height: 52px;
  }

  .card,
  .panel,
  .quote-box,
  .cta-banner {
    border-radius: 22px;
  }

  .footer-mobile-br {
    display: block;
  }
}