:root {
  --bg: #05070c;
  --panel: #071018;
  --panel-2: #0d1722;
  --ink: #0c111d;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #64f4df;
  --teal: #0f766e;
  --amber: #d99217;
  --paper: #f6f8f7;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

button {
  font: inherit;
}

.site-header {
  left: 0;
  padding: 16px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
}

.nav-shell {
  align-items: center;
  background: rgba(7, 16, 24, 0.78);
  backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px 16px;
}

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

.brand-mark {
  align-items: center;
  background: var(--cyan);
  border-radius: 6px;
  color: #061114;
  display: inline-flex;
  flex: none;
  font-size: 14px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.brand-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  color: rgba(207, 250, 254, 0.6);
  display: block;
  font-size: 12px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 26px;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-contact {
  align-items: center;
  background: var(--white);
  border-radius: 6px;
  color: #061114;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  padding: 0 16px;
  transition: background 180ms ease;
}

.nav-contact:hover {
  background: var(--cyan);
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay,
.hero-fade,
.hero-mesh {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(4, 7, 12, 0.98) 0%,
    rgba(4, 7, 12, 0.86) 34%,
    rgba(4, 7, 12, 0.32) 68%,
    rgba(4, 7, 12, 0.65) 100%
  );
}

.hero-fade {
  background: linear-gradient(
    180deg,
    rgba(4, 7, 12, 0.18) 0%,
    rgba(4, 7, 12, 0.4) 68%,
    #05070c 100%
  );
}

.hero-mesh {
  background-image:
    linear-gradient(rgba(100, 244, 223, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 244, 223, 0.1) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0%, rgba(100, 244, 223, 0.12) 48%, transparent 72%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  opacity: 0.45;
}

.hero-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 160px 24px 80px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  background: rgba(103, 232, 249, 0.08);
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 6px;
  color: #cffafe;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 9vw, 108px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 28px 0 0;
  max-width: 820px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button-primary,
.button-secondary {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button-primary {
  background: var(--cyan);
  box-shadow: 0 0 38px rgba(100, 244, 223, 0.25);
  color: #061114;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.signal-panel {
  align-self: end;
  background: rgba(7, 16, 24, 0.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.signal-top {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.signal-title {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
}

.badge {
  background: rgba(100, 244, 223, 0.12);
  border-radius: 6px;
  color: #8fffea;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.signal-list {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

.signal-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.signal-label {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-value {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
}

.marquee {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
}

.marquee-inner {
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.section-light {
  background: var(--paper);
  color: #111827;
  padding: 92px 24px;
}

.section-dark {
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  overflow: hidden;
  padding: 92px 24px;
  position: relative;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

.split {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section-kicker {
  color: var(--teal);
  font-size: 14px;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--cyan);
}

.section-title {
  color: #0c111d;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 16px 0 0;
}

.section-dark .section-title {
  color: var(--white);
}

.section-copy {
  color: #5c6470;
  font-size: 16px;
  line-height: 1.85;
  margin: 22px 0 0;
  max-width: 640px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  padding: 12px;
}

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

.service-tab {
  align-items: flex-start;
  background: #f7faf8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: #374151;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 950;
  justify-content: space-between;
  min-height: 96px;
  padding: 16px;
  text-align: left;
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-tab:hover {
  background: #eef7f3;
  border-color: rgba(15, 118, 110, 0.3);
  transform: translateY(-2px);
}

.service-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 18px 45px rgba(15, 118, 110, 0.24);
  color: var(--white);
}

.service-detail {
  background: var(--panel);
  border-radius: 6px;
  color: var(--white);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  margin-top: 12px;
  padding: 28px;
}

.service-feature,
.service-text {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  min-height: 250px;
  padding: 22px;
}

.service-feature {
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-text {
  background: var(--panel-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-metric {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 900;
  margin: 28px 0 8px;
  text-transform: uppercase;
}

.service-heading {
  font-size: 30px;
  font-weight: 950;
  line-height: 1.15;
  margin: 0;
}

.service-description {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.service-scan {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.service-scan span {
  animation: service-scan 2.8s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 999px;
  display: block;
  height: 100%;
  width: 42%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.chips span {
  background: rgba(103, 232, 249, 0.08);
  border: 1px solid rgba(165, 243, 252, 0.18);
  border-radius: 6px;
  color: #cffafe;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.process-grid {
  background-image:
    linear-gradient(rgba(100, 244, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 244, 223, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  opacity: 0.45;
  position: absolute;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  min-height: 230px;
  padding: 24px;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(100, 244, 223, 0.4);
  transform: translateY(-4px);
}

.process-number {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 950;
}

.process-card h3 {
  font-size: 28px;
  font-weight: 950;
  margin: 62px 0 0;
}

.process-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
  margin: 12px 0 0;
}

.assurance-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.assurance-item {
  align-items: center;
  background: #f7faf8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: #374151;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  padding: 14px 16px;
}

.contact-card {
  background: #f7faf8;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.company-visual {
  background: #071018;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
  max-height: 220px;
  overflow: hidden;
}

.company-visual img {
  display: block;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-console {
  background: var(--panel);
  border-radius: 6px;
  color: var(--white);
  padding: 20px;
}

.console-top {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.contact-rows {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-row {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  gap: 14px;
  padding: 16px;
}

.contact-row p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.contact-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.profile-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 0;
}

.quick-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.quick-links a {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  color: #0c111d;
  font-size: 14px;
  font-weight: 950;
  padding: 16px;
  text-align: center;
  transition: border 180ms ease, color 180ms ease;
}

.quick-links a:hover {
  border-color: rgba(15, 118, 110, 0.4);
  color: var(--teal);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-links {
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--white);
}

.policy-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 86px 24px 96px;
  position: relative;
}

.policy-header {
  background: var(--panel);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1050px;
  padding: 20px 24px;
}

.policy-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.policy-nav a:hover {
  color: var(--cyan);
}

.policy-container {
  margin: 0 auto;
  max-width: 1050px;
  position: relative;
}

.policy-hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 950;
  line-height: 1.02;
  margin: 24px 0 0;
  max-width: 860px;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 760px;
}

.policy-main {
  background: var(--paper);
  color: #111827;
  padding: 64px 24px;
}

.policy-document {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  color: #4b5563;
  line-height: 1.85;
  padding: 32px;
}

.policy-document h2 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 36px 0 12px;
}

.policy-document h2:first-child {
  margin-top: 0;
}

.policy-document h3 {
  color: #132033;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 28px 0 10px;
}

.policy-document p,
.policy-document li {
  color: #55606f;
  font-size: 15px;
}

.policy-document p {
  margin: 14px 0;
}

.policy-document ul {
  margin: 16px 0 22px;
  padding-left: 20px;
}

.policy-document li {
  margin: 7px 0;
}

.policy-document a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
}

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

.policy-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.policy-card h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  margin: 18px 0 0;
}

.policy-card p,
.policy-card li {
  color: #5c6470;
  font-size: 14px;
  line-height: 1.85;
}

.policy-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.policy-contact {
  background: var(--panel);
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 24px;
  padding: 28px;
}

.policy-contact p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.icon {
  color: var(--cyan);
  height: 22px;
  width: 22px;
}

.icon-teal {
  color: var(--teal);
  height: 22px;
  width: 22px;
}

@keyframes service-scan {
  0% {
    transform: translateX(-110%);
  }
  50% {
    transform: translateX(85%);
  }
  100% {
    transform: translateX(260%);
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .split,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    align-self: auto;
  }

  .policy-grid,
  .process-cards,
  .contact-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px;
  }

  .brand-subtitle,
  .nav-contact span {
    display: none;
  }

  .hero-inner {
    padding: 116px 18px 52px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .service-tabs,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .section-light,
  .section-dark {
    padding: 64px 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
