:root {
  --navy-950: #031426;
  --navy-900: #02254a;
  --navy-850: #082f58;
  --navy-800: #0c3968;
  --navy-700: #174a7a;

  --blue-600: #174a7a;
  --blue-500: #356793;
  --blue-400: #6684ad;
  --cyan-400: #8798b8;

  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #d9dee7;
  --slate-300: #c9d0dc;
  --slate-400: #aeb9cc;
  --slate-500: #8798b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;

  --green: #35d399;

  --border: rgba(148, 163, 184, 0.18);
  --dark-border: rgba(255, 255, 255, 0.1);

  --shadow:
    0 30px 80px rgba(7, 17, 31, 0.16),
    0 12px 30px rgba(7, 17, 31, 0.08);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate-900);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border: 0;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #f4f6f9 10%,
    #e1e6ed 20%,
    #c3ccd9 30%,
    #8798b8 43%,
    #496d94 56%,
    #174a7a 72%,
    #082f58 86%,
    #02254a 100%
  );
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  border: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,.98) 0%,
    rgba(244,246,249,.98) 10%,
    rgba(225,230,237,.98) 20%,
    rgba(195,204,217,.98) 30%,
    rgba(135,152,184,.98) 43%,
    rgba(73,109,148,.98) 56%,
    rgba(23,74,122,.98) 72%,
    rgba(8,47,88,.98) 86%,
    rgba(2,37,74,.98) 100%
  );
  box-shadow: 0 8px 24px rgba(0, 16, 35, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 280px;
}



.site-header .brand-logo {
  width: 250px;
}

.site-header.scrolled .brand {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(227, 232, 239, 0.95) 18%,
    rgba(167, 179, 198, 0.87) 45%,
    rgba(102, 132, 173, 0.64) 72%,
    rgba(23, 74, 122, 0.24) 100%
  );
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav > a {
  position: relative;
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 600;
  transition: color 150ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--blue-400);
  transition: transform 160ms ease;
}

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

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.primary-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(72, 181, 255, 0.35);
  border-radius: 10px;
  background: rgba(36, 147, 232, 0.09);
  color: var(--white);
}

.primary-nav .nav-cta:hover {
  border-color: var(--blue-400);
  background: rgba(36, 147, 232, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 175px 0 115px;
  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(102, 132, 173, 0.16),
      transparent 34%
    ),
    linear-gradient(
      110deg,
      #031426 0%,
      #02254a 48%,
      #082f58 100%
    );
  color: var(--white);
}

.hero::before {
  content: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 100px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(36,147,232,.1), transparent 68%);
}

.hero-glow-two {
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75,217,239,.07), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 75px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue-400);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .99;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  margin-top: 9px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #d9dee7 48%,
    #8798b8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--slate-300);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #123f6b, #174a7a 58%, #356793);
  box-shadow: 0 14px 30px rgba(23, 118, 210, 0.28);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(23, 118, 210, 0.38);
}

.button-secondary {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.035);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 600;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(53,211,153,.32);
  border-radius: 50%;
  background: rgba(53,211,153,.08);
  color: var(--green);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.network-card {
  position: relative;
  width: min(100%, 485px);
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(18,41,66,.92), rgba(8,24,42,.96));
  box-shadow:
    0 40px 80px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.network-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.025), transparent 65%);
}

.network-card-top {
  min-height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 25px;
  border-bottom: 1px solid rgba(148,163,184,.1);
}

.network-card-top > div {
  display: grid;
  gap: 7px;
}

.status-label {
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.network-card-top strong {
  font-size: 17px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(53,211,153,.18);
  border-radius: 999px;
  background: rgba(53,211,153,.06);
  color: #88eac6;
  font-size: 9px;
  font-weight: 700;
}

.status-pill span,
.floating-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(53,211,153,.8);
}

.network-illustration {
  position: relative;
  height: 255px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.network-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.network-center {
  position: relative;
  z-index: 3;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72,181,255,.42);
  border-radius: 50%;
  background: linear-gradient(145deg, #174a7a, #02254a);
  box-shadow:
    0 0 0 8px rgba(36,147,232,.05),
    0 0 35px rgba(36,147,232,.22);
}

.network-center svg {
  width: 32px;
  fill: none;
  stroke: var(--blue-400);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(72,181,255,.12);
  border-radius: 50%;
}

.ring-one {
  width: 120px;
  height: 120px;
}

.ring-two {
  width: 200px;
  height: 200px;
}

.ring-three {
  width: 300px;
  height: 300px;
}

.device-node {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border: 2px solid #15324e;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 12px rgba(72,181,255,.7);
}

.node-one {
  top: 59px;
  left: 108px;
}

.node-two {
  right: 92px;
  bottom: 65px;
}

.node-three {
  bottom: 44px;
  left: 151px;
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(148,163,184,.1);
}

.network-metrics div {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  text-align: center;
}

.network-metrics div + div {
  border-left: 1px solid rgba(148,163,184,.1);
}

.network-metrics span {
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.network-metrics strong {
  color: #8de8c8;
  font-size: 10px;
}

.floating-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 12px;
  background: rgba(9, 26, 45, .92);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.floating-card > div {
  display: grid;
  gap: 4px;
}

.floating-card small {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card-one {
  top: 58px;
  right: -27px;
}

.floating-card-two {
  bottom: 52px;
  left: -30px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(36,147,232,.12);
  color: var(--blue-400);
}

.trust-strip {
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
}

.trust-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.trust-inner > p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 600;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--slate-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slate-300);
}

.section {
  padding: 115px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-heading h2,
.hospitality-copy h2,
.support-copy h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 625px;
  margin: 21px 0 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.services {
  background:
    radial-gradient(circle at 85% 15%, rgba(36,147,232,.05), transparent 28%),
    var(--white);
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36,147,232,.3);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36,147,232,.12);
  border-radius: 12px;
  background: rgba(36,147,232,.06);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.service-card p {
  margin: 0 0 26px;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.72;
}

.service-card a {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 150ms ease;
}

.service-card:hover a span {
  transform: translateX(4px);
}

.hospitality {
  overflow: hidden;
  background: var(--slate-50);
}

.hospitality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.hospitality-visual {
  position: relative;
}

.hospitality-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(36,147,232,.1);
  filter: blur(80px);
}

.building-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #dbe5ee;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.building-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--slate-200);
  background: #fbfdff;
}

.building-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--slate-300);
}

.building-body {
  min-height: 355px;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.building-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  border-right: 1px solid var(--slate-200);
  background: #f8fbfd;
}

.building-sidebar span {
  width: 24px;
  height: 6px;
  border-radius: 10px;
  background: var(--slate-300);
}

.building-sidebar span:first-child {
  background: var(--blue-500);
}

.building-content {
  padding: 35px;
}

.mini-status {
  display: grid;
  gap: 8px;
}

.mini-status span {
  color: var(--slate-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.mini-status strong {
  font-size: 18px;
}

.mini-chart {
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 34px;
  padding: 18px 18px 0;
  border-radius: 12px;
  background:
    linear-gradient(rgba(226,232,240,.55) 1px, transparent 1px);
  background-size: 100% 25%;
}

.mini-chart span {
  flex: 1;
  min-height: 15px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, var(--blue-600), var(--blue-400));
  opacity: .75;
}

.mini-devices {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.mini-devices div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  color: var(--slate-600);
  font-size: 10px;
}

.mini-devices div > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.mini-devices strong {
  color: #139565;
  font-size: 9px;
}

.hospitality-copy > p {
  margin: 25px 0 0;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
}

.feature-item {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--slate-200);
}

.feature-number {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.feature-item h3 {
  margin: -3px 0 7px;
  font-size: 15px;
}

.feature-item p {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.7;
}

.support {
  background: var(--white);
}

.support-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  padding: 72px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 20%, rgba(72,181,255,.16), transparent 30%),
    linear-gradient(135deg, #071321, #0d2742);
  color: var(--white);
}

.support-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(72,181,255,.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(72,181,255,.025),
    0 0 0 140px rgba(72,181,255,.018);
}

.light-eyebrow {
  color: var(--blue-400);
}

.support-copy {
  position: relative;
  z-index: 2;
}

.support-copy > p {
  margin: 23px 0 31px;
  color: var(--slate-300);
  font-size: 14px;
  line-height: 1.8;
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--slate-100);
}

.support-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-features > div {
  display: flex;
  gap: 13px;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.support-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(53,211,153,.1);
  color: var(--green);
  font-size: 11px;
}

.support-features p {
  margin: 0;
  color: var(--slate-400);
  font-size: 11px;
  line-height: 1.55;
}

.support-features strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 12px;
}

.about {
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.about .section-heading {
  margin: 0;
}

.about-copy {
  padding-top: 32px;
}

.about-copy > p {
  margin: 0 0 18px;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.85;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 29px;
}

.about-tags span {
  padding: 8px 11px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate-600);
  font-size: 10px;
  font-weight: 700;
}

.contact-section {
  padding: 95px 0;
  background: var(--white);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 56px 60px;
  border: 1px solid rgba(36,147,232,.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(36,147,232,.1), transparent 28%),
    var(--slate-50);
}

.contact-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.contact-panel h2 {
  max-width: 620px;
  font-size: clamp(33px, 4vw, 48px);
}

.contact-panel p {
  max-width: 620px;
  margin: 17px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.7;
}

.contact-actions {
  flex: 0 0 auto;
  text-align: center;
}

.contact-actions .contact-note {
  max-width: 210px;
  margin: 10px auto 0;
  font-size: 9px;
}

.site-footer {
  padding: 72px 0 25px;
  background: linear-gradient(135deg, #020f1d, #02254a 55%, #082f58);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--slate-300);
  font-size: 11px;
}

.footer-links a {
  color: var(--slate-500);
  font-size: 11px;
  transition: color 150ms ease;
}

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

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--slate-600);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--slate-300);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 440px;
    gap: 35px;
  }

  .floating-card-one {
    right: 0;
  }

  .floating-card-two {
    left: 0;
  }

  .hospitality-grid {
    gap: 55px;
  }

  .support-panel {
    padding: 55px;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 32px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(6,16,30,.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 230ms ease,
      opacity 180ms ease;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .hospitality-grid,
  .support-panel,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .hospitality-visual {
    max-width: 570px;
  }

  .hospitality-grid {
    gap: 70px;
  }

  .support-panel {
    gap: 50px;
  }

  .about-grid {
    gap: 10px;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    text-align: left;
  }

  .contact-actions .contact-note {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .primary-nav {
    top: 72px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 85px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-description {
    font-size: 16px;
  }

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

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

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 400px;
  }

  .network-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-card-one {
    top: 37px;
    right: -7px;
  }

  .floating-card-two {
    bottom: 22px;
    left: -7px;
  }

  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 27px 0;
  }

  .trust-items {
    flex-wrap: wrap;
    gap: 13px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .service-card {
    min-height: 270px;
  }

  .building-body {
    grid-template-columns: 52px 1fr;
  }

  .building-content {
    padding: 25px 18px;
  }

  .mini-chart {
    padding-inline: 8px;
    gap: 5px;
  }

  .support-panel {
    padding: 38px 24px;
    border-radius: 20px;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 38px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}


@media (max-width: 680px) {
  


/* =========================================================
   NEXUS HEADER / HERO FINAL BRANDING OVERRIDE
   ========================================================= */

.site-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header.scrolled {
  background: rgba(3, 20, 38, 0.94) !important;
  border-bottom: 1px solid rgba(217, 222, 231, 0.08) !important;
  box-shadow: 0 8px 30px rgba(0, 12, 28, 0.18) !important;
  backdrop-filter: blur(18px);
}

/* Remove any box / badge / clipping around logo */
.site-header .brand {
  position: relative !important;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .brand-logo {
  display: block !important;
  width: 235px !important;
  height: auto !important;
  max-width: none !important;
  transform: none !important;
  position: static !important;
}

/* One continuous hero background */
.hero {
  background:
    radial-gradient(
      ellipse 540px 310px at 4% 2%,
      rgba(255, 255, 255, 1) 0%,
      rgba(247, 249, 252, 0.98) 22%,
      rgba(218, 225, 235, 0.82) 43%,
      rgba(135, 152, 184, 0.42) 62%,
      rgba(50, 91, 132, 0.16) 77%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 680px 540px at 15% 10%,
      rgba(135, 152, 184, 0.26),
      transparent 72%
    ),
    linear-gradient(
      115deg,
      #082f58 0%,
      #05294f 38%,
      #02254a 68%,
      #031b34 100%
    ) !important;
}

/* Remove decorative grid lines */
.hero::before {
  content: none !important;
  display: none !important;
}

/* Remove any accidental top border / line */
.hero,
.site-header,
.nav-wrap {
  border-top: 0 !important;
}

/* Keep navigation readable on blue side */
.primary-nav > a {
  color: rgba(255, 255, 255, 0.78);
}

.primary-nav > a:hover {
  color: #ffffff;
}

.primary-nav .nav-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.primary-nav .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
}

/* Mobile */
@media (max-width: 680px) {
  .site-header .brand-logo {
    width: 185px !important;
  }

  .hero {
    background:
      radial-gradient(
        ellipse 390px 250px at 0% 0%,
        rgba(255,255,255,1) 0%,
        rgba(231,236,244,.9) 35%,
        rgba(135,152,184,.45) 58%,
        transparent 82%
      ),
      linear-gradient(
        135deg,
        #082f58,
        #02254a 70%
      ) !important;
  }
}


/* Softer continuous gradient when header becomes sticky */
.site-header.scrolled {
  background:
    linear-gradient(
      96deg,
      rgba(255,255,255,.98) 0%,
      rgba(248,250,252,.97) 8%,
      rgba(236,240,246,.95) 18%,
      rgba(213,221,232,.91) 30%,
      rgba(177,190,209,.84) 42%,
      rgba(126,149,180,.72) 55%,
      rgba(77,112,151,.68) 68%,
      rgba(39,82,126,.82) 82%,
      rgba(2,37,74,.96) 100%
    ) !important;

  border: 0 !important;
  box-shadow: 0 8px 24px rgba(0, 18, 38, 0.10) !important;
  backdrop-filter: blur(16px);
}

/* Make sure the logo itself has no box or dividing edge */
.site-header.scrolled .brand,
.site-header .brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Kill any pseudo-element or separator around the brand/header */
.site-header::before,
.site-header::after,
.site-header .brand::before,
.site-header .brand::after {
  content: none !important;
  display: none !important;
}

