/* ==========================================================
   Nicktronic IT
   Navy #0a1628 · Blue #2563eb · Off-white #f7f8fa
   ========================================================== */

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy:    #0a1628;
  --blue:    #2563eb;
  --blue-h:  #1d4ed8;
  --blue-l:  #3b82f6;
  --white:   #f7f8fa;
  --g50:     #f1f5f9;
  --g100:    #e2e8f0;
  --g200:    #cbd5e1;
  --g400:    #94a3b8;
  --g500:    #64748b;
  --g600:    #475569;
  --g900:    #0f172a;
  --card-bg: #ffffff;
  --font:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', monospace;
  --ease:    cubic-bezier(.22,1,.36,1);
  --radius:  12px;
}

html[data-theme="dark"] {
  --white:   #0b1420;
  --g50:     #101b2e;
  --g100:    #223047;
  --g200:    #34445c;
  --g400:    #94a3b8;
  --g500:    #93a3b8;
  --g600:    #cbd5e1;
  --g900:    #f1f5f9;
  --card-bg: #121e33;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--g900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .25s var(--ease), color .25s var(--ease);
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- shared ---- */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--mono);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.035em;
  color: var(--g900);
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease);
}

.btn--main {
  background: var(--blue);
  color: #fff;
}
.btn--main:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(37,99,235,.3);
}
.btn--outline:hover {
  background: rgba(37,99,235,.06);
  border-color: var(--blue);
}

.btn--white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.btn--outline-w {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline-w:hover {
  border-color: #fff;
}

.btn--full { width: 100%; }

/* ==========================
   NAV
   ========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s;
}

.nav.scrolled {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav__logo-img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.nav__logo-name span {
  color: var(--blue-l);
  font-weight: 800;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-right: 24px;
}

.nav__links > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,.55);
  font-size: .813rem;
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:hover { color: #fff; }
.nav__links a.active { color: #fff; }

/* dropdown (Services) */
.nav__drop-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__drop-trigger svg {
  transition: transform .2s;
}
.nav__dropdown:hover .nav__drop-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  padding: 8px;
  min-width: 190px;
  background: rgba(10,22,40,.98);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: .82rem;
  white-space: nowrap;
}
.nav__dropdown-menu li a:hover {
  background: rgba(37,99,235,.12);
  color: #fff;
}
.nav__dropdown-menu li a.active {
  color: var(--blue-l);
  font-weight: 700;
}

.nav__cta {
  padding: 8px 18px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--blue-l);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--mono);
  transition: all .2s;
}
.nav__cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .3s var(--ease);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  flex-shrink: 0;
  margin-right: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: all .2s;
}
.theme-toggle:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle__moon { display: none; }
html[data-theme="dark"] .theme-toggle__sun { display: none; }
html[data-theme="dark"] .theme-toggle__moon { display: block; }

/* ==========================
   HERO
   ========================== */
.hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}

.hero__gradient {
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-40px, 30px); }
}

.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--g400);
  margin-bottom: 24px;
  background: rgba(255,255,255,.03);
}

.hero__chip-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  animation: blinker 2s ease-in-out infinite;
}

@keyframes blinker {
  0%,100% { opacity: 1; }
  50%     { opacity: .4; }
}

.hero__h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}

.hero__h1-em {
  color: var(--blue-l);
}

.hero__p {
  color: var(--g400);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* status card */
.hero__right { position: relative; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ef4444; }
.dot--y { background: #f59e0b; }
.dot--g { background: #22c55e; }

.hero__status {
  background: #0c1a2e;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 22px 24px 26px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
}

.hero__status-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}

.hero__status-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blinker 2s ease-in-out infinite;
}

.hero__status-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__status-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  opacity: 0;
  animation: statusIn .5s var(--ease) forwards;
}

.hero__status-list li:nth-child(1) { animation-delay: .2s; }
.hero__status-list li:nth-child(2) { animation-delay: .4s; }
.hero__status-list li:nth-child(3) { animation-delay: .6s; }
.hero__status-list li:nth-child(4) { animation-delay: .8s; }

.hero__status-list svg { flex-shrink: 0; }

@keyframes statusIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* floating pills */
.hero__float {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(12,26,46,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.hero__float--1 {
  top: -10px; right: -20px;
  animation: bob 5s ease-in-out infinite;
}
.hero__float--2 {
  bottom: -10px; left: -10px;
  animation: bob 6s ease-in-out infinite .5s;
}

@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ==========================
   PARTNERS
   ========================== */
.partners {
  padding: 48px 0;
  border-bottom: 1px solid var(--g100);
}

.partners__label {
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.partners__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--g100);
  border-radius: 8px;
  background: #fff;
  transition: all .2s;
}

.partner-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(37,99,235,.08);
  transform: translateY(-2px);
}

.partner-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.partner-logo span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--g600);
  white-space: nowrap;
}

/* ==========================
   SERVICES
   ========================== */
.services {
  padding: 100px 0;
}

.services__header {
  max-width: 560px;
  margin-bottom: 56px;
}

.services__sub {
  color: var(--g500);
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.svc {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}

.svc:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: 0 8px 32px rgba(37,99,235,.06);
  transform: translateY(-3px);
}

.svc--feature {
  grid-row: span 2;
  background: var(--navy);
  border-color: rgba(255,255,255,.06);
}

.svc--feature:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 12px 40px rgba(37,99,235,.12);
}

.svc--feature h3 { color: #fff; }
.svc--feature p  { color: var(--g400); }

.svc__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--blue);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
  width: fit-content;
}

.svc__top {
  flex: 1;
}

.svc__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  background: rgba(37,99,235,.07);
  transition: all .25s;
}

.svc--feature .svc__icon {
  background: rgba(37,99,235,.15);
}

.svc:hover .svc__icon {
  background: var(--blue);
  color: #fff;
}

.svc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.svc p {
  font-size: .85rem;
  color: var(--g500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc__tools {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--g100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc--feature .svc__tools {
  border-color: rgba(255,255,255,.08);
}

.svc__tools > span {
  font-size: .65rem;
  font-weight: 600;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.svc__tools-logos {
  display: flex;
  gap: 6px;
}

.svc__tools-logos img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 5px;
  border: 1px solid var(--g100);
  padding: 2px;
  background: #fff;
  transition: transform .2s;
}

.svc__tools-logos img:hover {
  transform: scale(1.15);
}

.svc--feature .svc__tools-logos img {
  border-color: rgba(255,255,255,.1);
}

.svc__tools-inhouse {
  font-size: .68rem !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 3px 9px;
  background: rgba(37,99,235,.08);
  border-radius: 100px;
}

.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap .2s;
}

.svc--feature .svc__more { color: var(--blue-l); }

.svc__more span { transition: transform .2s; }
.svc:hover .svc__more { gap: 10px; }

.svc--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.svc--full .svc__icon { margin-bottom: 0; flex-shrink: 0; }

.svc__full-body { flex: 1; }
.svc__full-body h3 { margin-bottom: 4px; }
.svc__full-body p { margin-bottom: 0; }

.svc__more--full {
  margin-top: 0;
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1.5px solid rgba(37,99,235,.25);
  border-radius: 8px;
}

/* ==========================
   INFRASTRUCTURE
   ========================== */
.infra {
  padding: 100px 0;
}

.infra__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.infra__p {
  color: var(--g600);
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 28px;
  font-size: .95rem;
}

.infra__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--g600);
  font-weight: 500;
  line-height: 1.5;
}

.infra__list svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.infra__diagram {
  position: relative;
  height: 340px;
  background: var(--navy);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.infra__node {
  position: absolute;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.infra__node span {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  color: var(--g400);
  margin-top: 2px;
}

.infra__node--c1 { top: 18%; left: 18%; }
.infra__node--c2 { top: 66%; left: 18%; }

.infra__node--hub {
  top: 42%; left: 50%;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(37,99,235,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.infra__node--hub .infra__hub-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
}

.infra__hub-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blinker 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.infra__node--servers {
  top: 42%; left: 85%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.infra__live {
  padding: 2px 7px;
  background: rgba(34,197,94,.15);
  color: #22c55e;
  font-size: .58rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: .04em;
  animation: blinker 1.6s ease-in-out infinite;
}

.infra__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.infra__path {
  fill: none;
  stroke: rgba(37,99,235,.45);
  stroke-width: .6;
  stroke-dasharray: 3 2.4;
  vector-effect: non-scaling-stroke;
  animation: dashFlow 1s linear infinite;
}
.infra__path--d2  { animation-delay: .3s; }
.infra__path--out { animation-delay: .6s; stroke: rgba(37,99,235,.65); }

@keyframes dashFlow {
  to { stroke-dashoffset: -10.8; }
}

/* ==========================
   DASHBOARD SHOWCASE
   ========================== */
.dash {
  padding: 100px 0;
  background: var(--g50);
}

.dash__header {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.dash__sub {
  color: var(--g500);
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.dash__window {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--g100);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,.1);
}

.dash__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--g50);
  border-bottom: 1px solid var(--g100);
}

.dash__url {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--g500);
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: 5px;
  padding: 3px 10px;
}

.dash__body {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.dash__side {
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  gap: 4px;
  border-right: 1px solid var(--g100);
  background: var(--g50);
}

.dash__tab {
  padding: 9px 14px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--g500);
  cursor: default;
}

.dash__tab--active {
  background: var(--blue);
  color: #fff;
}

.dash__main {
  padding: 24px;
}

.dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash__stat {
  padding: 14px 16px;
  background: var(--g50);
  border-radius: 10px;
  border: 1px solid var(--g100);
}

.dash__stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--g900);
  letter-spacing: -.02em;
}

.dash__stat-label {
  display: block;
  font-size: .68rem;
  color: var(--g500);
  font-weight: 500;
  margin-top: 2px;
}

.dash__chart {
  height: 110px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--g50);
  border: 1px solid var(--g100);
}

.dash__chart svg { width: 100%; height: 100%; }

.dash__chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: drawLine 2s var(--ease) forwards .3s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.dash__promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.dash__promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--g600);
}

.dash__toggle {
  display: inline-flex;
  align-items: center;
  width: 34px; height: 20px;
  background: var(--g200);
  border-radius: 100px;
  padding: 2px;
  transition: background .2s;
}

.dash__toggle span {
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s;
}

.dash__toggle--on {
  background: var(--blue);
}
.dash__toggle--on span {
  transform: translateX(14px);
}

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

.dash__photo {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid var(--g100);
}

.dash__photo--1 { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.dash__photo--2 { background: linear-gradient(135deg, #0a1628, #334155); }

.dash__photo--add {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--g200);
  color: var(--g400);
  font-size: 1.4rem;
  font-weight: 300;
  background: var(--card-bg);
}

/* ==========================
   ABOUT
   ========================== */
.about {
  padding: 100px 0;
  background: var(--g50);
}

.about__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__p {
  color: var(--g600);
  line-height: 1.75;
  margin-top: 16px;
  font-size: .95rem;
}

.about__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__card {
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: var(--radius);
  transition: all .25s;
}

.about__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.about__card--accent {
  background: var(--navy);
  border-color: transparent;
}

.about__card-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -.03em;
  color: var(--g900);
  margin-bottom: 4px;
}

.about__card--accent .about__card-num { color: #fff; }

.about__card-label {
  font-size: .78rem;
  color: var(--g500);
  font-weight: 500;
}

.about__card--accent .about__card-label { color: var(--g400); }

/* ==========================
   PROCESS
   ========================== */
.process {
  padding: 100px 0;
}

.process__header {
  max-width: 500px;
  margin-bottom: 56px;
}

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

.step {
  position: relative;
  padding: 0 24px;
}

.step__line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g100);
}

.step:first-child .step__line { left: 50%; }
.step:last-child .step__line  { display: none; }

.step__dot {
  position: relative;
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  z-index: 2;
  transition: all .25s;
}

.step:hover .step__dot {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37,99,235,.15);
  transform: scale(1.1);
}

.step__dot span {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue-l);
}

.step:hover .step__dot span { color: #fff; }

.step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: .83rem;
  color: var(--g500);
  line-height: 1.6;
}

/* ==========================
   NUMBERS
   ========================== */
.numbers {
  padding: 64px 0;
  background: var(--navy);
}

.numbers__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.numbers__item { text-align: center; }

.numbers__val {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  font-family: var(--mono);
  letter-spacing: -.03em;
}

.numbers__val--text {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.numbers__unit {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--blue-l);
  font-family: var(--mono);
}

.numbers__label {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  color: var(--g400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.numbers__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.08);
}

/* ==========================
   CTA
   ========================== */
.cta {
  padding: 100px 0;
}

.cta__box {
  background: var(--navy);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: var(--blue);
  border-radius: 50%;
  opacity: .08;
  filter: blur(80px);
}

.cta__box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: #6366f1;
  border-radius: 50%;
  opacity: .06;
  filter: blur(80px);
}

.cta__box h2 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta__box p {
  color: var(--g400);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.65;
  position: relative;
}

.cta__btns {
  display: flex; gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ==========================
   CONTACT
   ========================== */
.contact {
  padding: 100px 0;
  background: var(--g50);
}

.contact__cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact__p {
  color: var(--g600);
  margin-top: 12px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__info { display: flex; flex-direction: column; gap: 12px; }

.contact__info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: 10px;
  transition: all .2s;
}

.contact__info-row:hover {
  border-color: rgba(37,99,235,.15);
  transform: translateX(4px);
}

.contact__info-row svg { color: var(--blue); flex-shrink: 0; }
.contact__info-row strong { font-size: .9rem; display: block; }
.contact__info-row span { font-size: .78rem; color: var(--g500); }

/* form */
.contact__form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--g100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: 5px;
}

.form-group label span {
  font-weight: 400;
  color: var(--g400);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--g100);
  border-radius: 8px;
  font-size: .875rem;
  font-family: var(--font);
  color: var(--g900);
  background: var(--g50);
  transition: all .15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
  background: var(--card-bg);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--g400);
  margin-top: 12px;
}

/* ==========================
   FOOTER
   ========================== */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__brand p {
  color: var(--g500);
  font-size: .8rem;
  margin-top: 14px;
  line-height: 1.5;
}

.footer__cols { display: flex; gap: 56px; }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col h4 {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.footer__col a,
.footer__col span {
  color: var(--g400);
  font-size: .8rem;
  transition: color .15s;
}

.footer__col a:hover { color: #fff; }

.footer__btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer__btm p { color: var(--g500); font-size: .72rem; }

.footer__btm-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__btm-links a { color: var(--g500); font-size: .72rem; transition: color .15s; }
.footer__btm-links a:hover { color: var(--g400); }

/* ==========================
   PAGE HERO (subpages)
   ========================== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(37,99,235,.16) 0%, transparent 70%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero__crumb {
  font-size: .75rem;
  color: var(--g500);
  margin-bottom: 20px;
  font-family: var(--mono);
}

.page-hero__crumb a { color: var(--g400); transition: color .15s; }
.page-hero__crumb a:hover { color: #fff; }

.page-hero__title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.14;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

.page-hero__title em {
  font-style: normal;
  color: var(--blue-l);
}

.page-hero__sub {
  color: var(--g400);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ==========================
   SIMPLE SECTION (subpages)
   ========================== */
.simple {
  padding: 90px 0;
}
.simple--alt { background: var(--g50); }

.simple__header {
  max-width: 600px;
  margin-bottom: 44px;
}
.simple__header--center { margin-left: auto; margin-right: auto; text-align: center; }

.simple__sub {
  color: var(--g500);
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================
   COMPARISON (proactive vs reactive)
   ========================== */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare__col {
  padding: 36px 32px;
  border-radius: 16px;
}

.compare__col--old {
  background: var(--card-bg);
  border: 1px solid var(--g100);
}

.compare__col--new {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.compare__col--new::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: var(--blue);
  opacity: .1;
  filter: blur(70px);
  border-radius: 50%;
}

.compare__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.compare__col--old .compare__tag { background: var(--g100); color: var(--g500); }
.compare__col--new .compare__tag { background: rgba(37,99,235,.18); color: var(--blue-l); }

.compare__col h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.compare__col--old h3 { color: var(--g600); }
.compare__col--new h3 { color: #fff; }

.compare__col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.compare__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
}

.compare__col--old li { color: var(--g500); }
.compare__col--new li { color: var(--g200); }

.compare__col--old svg { color: var(--g400); flex-shrink: 0; margin-top: 2px; }
.compare__col--new svg { color: var(--blue-l); flex-shrink: 0; margin-top: 2px; }

/* ==========================
   REPORT BUILDER MOCKUP
   ========================== */
.report__body { padding: 24px; }
.report__intro {
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.report__toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.report__delivery {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.report__delivery-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--g600);
}
.report__delivery-opts { display: flex; gap: 8px; }
.report__chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--g500);
  background: var(--g50);
  border: 1px solid var(--g100);
}
.report__chip--active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ==========================
   ICON FEATURE LIST
   ========================== */
.ifeat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ifeat__item {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: 12px;
}
.ifeat__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.07);
  border-radius: 9px;
  color: var(--blue);
}
.ifeat__item h4 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ifeat__item p {
  font-size: .82rem;
  color: var(--g500);
  line-height: 1.55;
}

/* ==========================
   CALLOUT (link back to home sections)
   ========================== */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 36px;
  background: var(--navy);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  top: -100px; left: -60px;
  width: 260px; height: 260px;
  background: var(--blue);
  opacity: .1;
  filter: blur(80px);
  border-radius: 50%;
}
.callout__text { position: relative; max-width: 480px; }
.callout__text h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.callout__text p { color: var(--g400); font-size: .88rem; line-height: 1.55; }
.callout__link {
  position: relative;
  flex-shrink: 0;
}

/* ==========================
   LEGAL / PROSE PAGES
   ========================== */
.legal {
  padding: 70px 0 100px;
}
.legal__body {
  max-width: 760px;
}
.legal__updated {
  font-size: .8rem;
  color: var(--g500);
  margin-bottom: 40px;
  font-family: var(--mono);
}
.legal__body h2 {
  font-size: 1.35rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p {
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal__body ul {
  margin: 0 0 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal__body li {
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.legal__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.legal__body a { color: var(--blue); font-weight: 600; }
.legal__body a:hover { text-decoration: underline; }
.legal__body strong { color: var(--g900); }

.legal__box {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.legal__box p:last-child { margin-bottom: 0; }

.legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 20px 24px;
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: 12px;
  margin-bottom: 40px;
}
.legal__toc a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
}
.legal__toc a:hover { text-decoration: underline; }

/* ==========================
   NETWORK / NOC PAGE
   ========================== */
.noc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.noc__card {
  padding: 24px 26px;
  background: var(--card-bg);
  border: 1px solid var(--g100);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
}
.noc__card:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: 0 8px 24px rgba(37,99,235,.06);
}
.noc__card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.07);
  border-radius: 10px;
  color: var(--blue);
}
.noc__card h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.noc__card a, .noc__card span {
  font-size: .85rem;
  color: var(--g600);
  font-family: var(--mono);
}
.noc__card a:hover { color: var(--blue); }
.noc__card p {
  font-size: .78rem;
  color: var(--g500);
  margin-top: 3px;
}

.noc__asn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--navy);
  border-radius: 100px;
  margin-bottom: 32px;
}
.noc__asn-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.noc__asn-val {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-l);
}

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

.noc__linkcard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  background: var(--navy);
  border-radius: 14px;
  transition: transform .2s, box-shadow .2s;
}
.noc__linkcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.noc__linkcard-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.15);
  border-radius: 10px;
  color: var(--blue-l);
}
.noc__linkcard h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.noc__linkcard span { color: var(--g400); font-size: .78rem; }
.noc__linkcard-arrow { margin-left: auto; color: var(--g500); flex-shrink: 0; }

.noc__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.noc__table th, .noc__table td {
  text-align: left;
  padding: 12px 16px;
  font-size: .85rem;
  border-bottom: 1px solid var(--g100);
}
.noc__table th {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--g500);
  font-weight: 700;
}
.noc__table td { color: var(--g600); }
.noc__table td:first-child { font-weight: 600; color: var(--g900); }

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 1024px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .svc--feature { grid-row: span 1; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step__line { display: none; }
  .infra__grid { grid-template-columns: 1fr; gap: 40px; }
  .dash__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .nav__links.open a { font-size: .95rem; color: #fff; }
  .nav__links.open > li { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 8px 0 0 14px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav__dropdown-menu li a { font-size: .85rem; color: rgba(255,255,255,.6); padding: 4px 0; }
  .nav__drop-trigger svg { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero__container { grid-template-columns: 1fr; gap: 36px; }
  .hero__h1 { font-size: 2.2rem; }
  .hero__float { display: none; }

  .partners__row { gap: 8px; }
  .partner-logo { padding: 6px 10px; }
  .partner-logo span { font-size: .68rem; }

  .grid { grid-template-columns: 1fr; }
  .svc--full { flex-direction: column; align-items: flex-start; gap: 16px; }

  .about__cols { grid-template-columns: 1fr; gap: 40px; }

  .process__steps { grid-template-columns: 1fr; gap: 24px; }

  .numbers__grid { flex-wrap: wrap; gap: 24px; }
  .numbers__divider { display: none; }

  .contact__cols { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .cta__box { padding: 48px 24px; border-radius: 14px; }

  .footer__top { flex-direction: column; gap: 28px; }
  .footer__cols { flex-wrap: wrap; gap: 28px; }
  .footer__btm { flex-direction: column; gap: 12px; text-align: center; }

  .infra__diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 24px;
  }
  .infra__lines { display: none; }
  .infra__node {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
  }
  .infra__node--hub { order: -1; }

  .dash__body { grid-template-columns: 1fr; }
  .dash__side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--g100); }
  .dash__stats { grid-template-columns: 1fr; }
  .dash__photos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 1.8rem; }
  .hero__btns { flex-direction: column; }
  .about__right { grid-template-columns: 1fr; }
  .numbers__grid { flex-direction: column; }
}
