:root {
  --ink: #f7fbff;
  --muted: #aebccc;
  --soft: #dce9f3;
  --bg: #071019;
  --bg-deep: #03070d;
  --panel: rgba(13, 24, 37, .78);
  --panel-strong: #0e1a28;
  --line: rgba(156, 226, 255, .18);
  --line-bright: rgba(24, 210, 255, .48);
  --cyan: #18d2ff;
  --green: #71f4bd;
  --steel: #7f9bb5;
  --shadow: 0 24px 80px rgba(0, 0, 0, .44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 210, 255, .14), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(113, 244, 189, .1), transparent 34rem),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 52%, #0a1722 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.site-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 82%);
}

.network-mesh {
  width: 100%;
  height: 100%;
  opacity: .82;
  filter: drop-shadow(0 0 30px rgba(24, 210, 255, .12));
}

.navbar {
  padding: 1.15rem 0;
  background: rgba(3, 7, 13, .58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding .2s ease, background .2s ease, border-color .2s ease;
}

.navbar.scrolled {
  padding: .75rem 0;
  background: rgba(3, 7, 13, .94);
  border-color: var(--line);
}

.navbar-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 246px;
  height: 76px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) contrast(1.18) brightness(1.08);
}

.nav-link {
  color: rgba(247, 251, 255, .72);
  font-size: .95rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: .6rem;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-primary {
  --bs-btn-color: #031018;
  --bs-btn-bg: #18d2ff;
  --bs-btn-border-color: #18d2ff;
  --bs-btn-hover-color: #031018;
  --bs-btn-hover-bg: #71f4bd;
  --bs-btn-hover-border-color: #71f4bd;
  --bs-btn-active-color: #031018;
  --bs-btn-active-bg: #71f4bd;
  --bs-btn-active-border-color: #71f4bd;
  box-shadow: 0 14px 36px rgba(24, 210, 255, .2);
}

.btn-outline-light {
  --bs-btn-color: #f7fbff;
  --bs-btn-border-color: rgba(247, 251, 255, .32);
  --bs-btn-hover-color: #031018;
  --bs-btn-hover-bg: #f7fbff;
  --bs-btn-hover-border-color: #f7fbff;
}

.nav-button {
  padding: .75rem 1.05rem;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
}

.hero-kicker,
.section-label {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}

.hero-kicker span {
  width: 2.2rem;
  height: 1px;
  background: var(--green);
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 62rem;
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 850;
}

.hero-lead,
.section-intro {
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-lead {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.body-muted,
.section-head p,
.value-card p,
.solution-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-console,
.value-card,
.solution-card,
.contact-card,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: linear-gradient(180deg, rgba(14, 26, 40, .88), rgba(8, 17, 27, .7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-console {
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  gap: .48rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.console-top span {
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: rgba(247, 251, 255, .28);
}

.console-top span:first-child {
  background: var(--cyan);
}

.console-top strong {
  margin-left: auto;
  color: rgba(247, 251, 255, .86);
  font-size: .8rem;
  text-transform: uppercase;
}

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

.snapshot-grid div {
  min-height: 8.5rem;
  padding: 1.25rem;
  background: rgba(8, 17, 27, .88);
}

small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.snapshot-grid strong {
  display: block;
  margin-top: .6rem;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 1rem;
}

.cert-strip span {
  padding: .45rem .7rem;
  border: 1px solid rgba(113, 244, 189, .24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(113, 244, 189, .075);
  font-size: .78rem;
  font-weight: 850;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(4, 10, 18, .74);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid div {
  min-height: 7.25rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid i {
  color: var(--cyan);
  font-size: 1.25rem;
}

.section-block {
  padding: 7rem 0;
}

.section-dark {
  border-block: 1px solid var(--line);
  background: rgba(3, 8, 15, .58);
}

.section-head {
  max-width: 56rem;
  margin-bottom: 2.6rem;
}

.value-card,
.solution-card {
  height: 100%;
  padding: 1.45rem;
}

.value-card i {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: .65rem;
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.solution-card {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 9rem;
  background: radial-gradient(circle, rgba(24, 210, 255, .16), transparent 68%);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-bright);
  background: linear-gradient(180deg, rgba(16, 34, 52, .92), rgba(8, 17, 27, .72));
}

.solution-card span {
  color: rgba(247, 251, 255, .3);
  font-size: .8rem;
  font-weight: 900;
}

.solution-card i {
  display: block;
  margin: 1rem 0 1.25rem;
  color: var(--cyan);
  font-size: 1.65rem;
}

.brand-grid,
.client-grid {
  display: grid;
  gap: 1rem;
}

.brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-grid span,
.client-grid span {
  min-height: 5.75rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  color: var(--soft);
  background: rgba(255, 255, 255, .045);
  font-weight: 850;
  text-align: center;
}

.client-grid span {
  min-height: 6.5rem;
}

.contact-card {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
  padding: 1rem;
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  color: var(--soft);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
}

.contact-card i {
  width: 1.1rem;
  margin-top: .2rem;
  color: var(--cyan);
}

.contact-card a:hover {
  border-color: var(--line-bright);
  color: var(--ink);
}

.enquiry-form {
  padding: 1.5rem;
}

.form-label {
  color: rgba(247, 251, 255, .82);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  border-color: rgba(156, 226, 255, .2);
  border-radius: .65rem;
  color: var(--ink);
  background-color: rgba(3, 7, 13, .76);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  color: var(--ink);
  background-color: rgba(3, 7, 13, .92);
  box-shadow: 0 0 0 .25rem rgba(24, 210, 255, .16);
}

.form-select option {
  color: #071019;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 13, .9);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.footer-inner img {
  width: 170px;
  height: 58px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: invert(1) contrast(1.18) brightness(1.08);
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: var(--ink);
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1199.98px) {
  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: rgba(3, 7, 13, .96);
  }

  .hero-section {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .section-block {
    padding: 5rem 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-inner p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .brand-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .logo-shell {
    width: 182px;
    height: 58px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .snapshot-grid,
  .trust-grid,
  .brand-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .enquiry-form {
    padding: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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