:root {
  --bg: #05070d;
  --surface: #0b101c;
  --surface2: #0e1524;
  --text: #f3f5fa;
  --muted: #9ba7ba;
  --line: #ffffff12;
  --blue: #00b7ff;
  --purple: #7c3aed;
  --green: #51d9ac;
  --gradient: linear-gradient(100deg, #00b7ff, #3972ff 55%, #9861f5);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
svg {
  display: inline-block;
}
p {
  color: var(--muted);
  margin: 0 0 24px;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0;
}
h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 650;
  margin: 17px 0 24px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
}
a,
button {
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
::selection {
  background: #2563ff;
  color: white;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 105px 0;
}
.section-bordered {
  border-top: 1px solid var(--line);
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gradient-text {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.text-blue {
  color: #54baff;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px #51d9ac40;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 14px 22px;
  color: white;
  background: linear-gradient(110deg, #117fcf, #3262ea);
  border: 1px solid #548afa55;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 4px 24px #1f68ff12;
}
.button:hover {
  background: #3267ec;
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button-outline {
  background: #0b122080;
  border-color: #ffffff25;
  box-shadow: none;
}
.button-outline:hover {
  background: #142038;
}
.button-small {
  font-size: 11px;
  padding: 10px 14px;
  gap: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #79caff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}
.text-link:hover {
  color: white;
}
.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  flex-shrink: 0;
}
.service-icon {
  width: 33px;
  height: 33px;
  color: #49b6ff;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  color: black;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #05070ddd;
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 83px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: 170px;
  height: auto;
}
.footer-top .brand-logo {
  width: 184px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-left: auto;
}
nav a {
  font-size: 10px;
  color: #aeb7c8;
}
nav a:hover,
nav a.active {
  color: white;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background: radial-gradient(ellipse at 76% 46%, #10255b45, transparent 52%);
}
.hero-grid {
  position: absolute;
  inset: 0 0 0 40%;
  background-image:
    linear-gradient(#5678b108 1px, transparent 1px),
    linear-gradient(90deg, #5678b108 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 625px;
  position: relative;
}
.hero-copy {
  padding: 58px 0;
}
.hero h1 {
  font-size: clamp(48px, 4.9vw, 68px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.055em;
  margin: 28px 0;
}
.hero-copy > p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 475px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7e8ba1;
  font-size: 10px;
  margin-top: 25px;
}
.hero-note svg {
  width: 15px;
  color: #7485a0;
}
.hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #7e8ba1;
}
.hero-bottom a {
  color: #aab9cf;
}
.hero-bottom a span {
  margin-left: 14px;
  color: #5ab7f8;
}
.ecosystem {
  position: relative;
  aspect-ratio: 560/510;
  width: 100%;
  max-width: 600px;
}
.orbit {
  position: absolute;
  border: 1px solid #6792d817;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 66%;
  height: 72%;
}
.orbit-two {
  width: 86%;
  height: 94%;
  border-style: dashed;
}
.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: url(#line);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  opacity: 0.5;
}
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 155px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #456eda77;
  border-radius: 30px;
  background: linear-gradient(145deg, #142f52, #11132c);
  box-shadow:
    0 0 70px #2660e52b,
    inset 0 0 35px #5b49e410;
  rotate: -5deg;
}
.core-logo {
  display: block;
  width: 76px;
  height: auto;
  filter: drop-shadow(0 0 14px #2563ff30);
}
.core strong {
  font-size: 17px;
  letter-spacing: 0.14em;
  margin: 9px 0 3px;
}
.core small {
  font-size: 5px;
  letter-spacing: 0.18em;
  color: #8b9dbd;
}
.network-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 84px;
  height: 85px;
  background: linear-gradient(145deg, #132038, #0a1020);
  border: 1px solid #48659944;
  border-radius: 15px;
  box-shadow: 0 12px 30px #0005;
  color: #b3c2d9;
  transform: translate(-50%, -50%);
  font-size: 9px;
}
.network-node svg {
  width: 29px;
  height: 29px;
  color: #659dff;
}
.node-cloud {
  left: 22%;
  top: 20%;
}
.node-ms {
  left: 76%;
  top: 18%;
}
.node-shield {
  left: 83%;
  top: 53%;
}
.node-server {
  left: 73%;
  top: 82%;
}
.node-laptop {
  left: 24%;
  top: 81%;
}
.node-switch {
  left: 12%;
  top: 51%;
}
.ms-icon {
  width: 27px;
  height: 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.ms-icon i {
  background: #5c8fff;
}
.ms-icon i:nth-child(2) {
  background: #8e71e8;
}
.ms-icon i:nth-child(3) {
  background: #51bce8;
}
.ms-icon i:nth-child(4) {
  background: #4062c1;
}
.floating-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border-radius: 7px;
  border: 1px solid #6b88be2b;
  background: #101b2cea;
  box-shadow: 0 12px 25px #0004;
  font-size: 8px;
  color: #96a5bc;
  z-index: 2;
}
.floating-status strong {
  display: block;
  color: #d8e5f3;
  font-size: 10px;
  font-weight: 500;
}
.status-top {
  top: 5%;
  left: 32%;
}
.status-bottom {
  bottom: 2%;
  left: 33%;
}
.status-bars {
  color: #43d8b4;
  font-size: 20px;
  margin-left: 10px;
}
.monitor-icon {
  font-size: 25px;
  color: #719dff;
}
.diagram-caption {
  position: absolute;
  bottom: -19px;
  text-align: center;
  width: 100%;
  font-size: 7px;
  letter-spacing: 0.15em;
  color: #66758d;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p,
.section-heading > div + div {
  max-width: 400px;
}
.section-heading p {
  font-size: 14px;
  margin-bottom: 0;
}
.compact h2 {
  font-size: 34px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 29px 25px 21px;
  background: linear-gradient(140deg, #0d1422, #090e17);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.solution-card:hover {
  border-color: #3985db75;
  transform: translateY(-4px);
}
.card-number {
  position: absolute;
  right: 22px;
  top: 23px;
  color: #667389;
  font-size: 10px;
  font-family: monospace;
}
.solution-card .service-icon {
  margin-bottom: 28px;
}
.solution-card h3 {
  font-size: 19px;
  margin-bottom: 13px;
}
.solution-card p {
  font-size: 12px;
  line-height: 1.8;
  min-height: 45px;
  margin-bottom: 25px;
}
.card-link {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 9px;
  color: #95a6be;
}
.card-link b {
  color: #6ebdff;
  font-size: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.split > div > p {
  max-width: 500px;
  font-size: 14px;
}
.infra-stack {
  display: grid;
  gap: 13px;
}
.infra-layer {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px;
  background: linear-gradient(100deg, #101b2c, #0b101b);
  border: 1px solid #ffffff13;
  border-radius: 7px;
}
.infra-layer svg {
  flex-shrink: 0;
}
.infra-layer h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.infra-layer p {
  font-size: 11px;
  line-height: 1.9;
  margin: 0;
}
.infra-layer > span {
  align-self: flex-start;
  font-size: 10px;
  color: #5f718e;
}
.stack-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: #7f91ac;
  padding: 10px 0 0 15px;
}
.monitor-section {
  background: radial-gradient(ellipse at 50% 60%, #15234d50, transparent 70%);
  border-top: 1px solid var(--line);
}
.dashboard {
  display: grid;
  grid-template-columns: 195px 1fr;
  border: 1px solid #3c4c6e88;
  background: #0b111e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 30px 100px #0008,
    0 0 60px #2a5adc10;
}
.dashboard-sidebar {
  background: #080e19;
  border-right: 1px solid var(--line);
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 22px;
}
.mini-brand span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #dae5f9;
}
.dash-nav {
  padding: 10px 13px;
  font-size: 15px;
  color: #7b8ca9;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.dash-nav span {
  font-size: 10px;
}
.dash-nav.active {
  background: #1d44803b;
  color: #83bdff;
}
.sidebar-bottom {
  margin-top: auto;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 8px;
  color: #7f8da6;
  padding: 20px 8px 0;
}
.dashboard-main {
  padding: 27px;
}
.dashboard-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.tiny-label {
  font-size: 8px;
  color: #8797b2;
  letter-spacing: 0.14em;
}
.dashboard-title h3 {
  font-size: 20px;
  margin-top: 9px;
}
.demo-badge {
  font-size: 7px;
  letter-spacing: 0.09em;
  color: #99b3d7;
  border: 1px solid #6682b233;
  background: #1d2e4833;
  border-radius: 4px;
  padding: 5px 8px;
  white-space: nowrap;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.status-grid > div {
  position: relative;
  border: 1px solid var(--line);
  background: #111b2b;
  padding: 18px;
  border-radius: 5px;
}
.status-grid > div > span {
  font-size: 10px;
  color: #8e9bb0;
  display: block;
}
.status-grid strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
}
.status-grid svg {
  position: absolute;
  right: 15px;
  top: 17px;
  color: #5683bc;
  width: 18px;
  height: 18px;
}
.dash-panels {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 15px;
  margin-top: 18px;
}
.chart-panel,
.environment-panel {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #0c1523;
  padding: 17px;
}
.panel-title {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 10px;
}
.panel-title > span {
  font-size: 8px;
  color: #7992b8;
}
.chart {
  width: 100%;
  height: 144px;
  margin-top: 20px;
}
.chart-grid {
  stroke: #ffffff0b;
  stroke-width: 1;
}
.chart-line {
  stroke: #3db4ff;
  stroke-width: 2;
  fill: none;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #7887a0;
}
.environment-panel > div:not(:first-child) {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.environment-panel > div > span {
  color: #68cdb0;
  font-size: 8px;
}
.environment-panel .panel-title {
  margin-bottom: 8px;
}
.dashboard-foot {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #8091ac;
  font-size: 8px;
  margin-top: 21px;
}
.dashboard-foot > span:last-child {
  margin-left: auto;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}
.tags > span {
  font-size: 10px;
  color: #a4b2c8;
  border: 1px solid #ffffff12;
  background: #11192766;
  border-radius: 4px;
  padding: 6px 10px;
}
.monitor-tags {
  justify-content: center;
  margin: 32px auto;
  max-width: 1000px;
}
.monitor-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  color: #b4c1d7;
  font-size: 11px;
}
.monitor-flow small {
  display: block;
  color: #6f829f;
  font-size: 7px;
  letter-spacing: 0.06em;
  margin-top: 5px;
}
.monitor-flow b {
  color: #4a70b3;
  font-weight: 400;
}
.inventory-mockup {
  border: 1px solid #39476170;
  border-radius: 10px;
  background: #0d1421;
  overflow: hidden;
  transform: perspective(1000px) rotateY(4deg);
}
.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  background: #ffffff03;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  color: #7e8ba3;
}
.window-dots {
  font-size: 8px;
  letter-spacing: 3px;
  color: #45546b;
}
.inventory-content {
  padding: 25px;
}
.inventory-content h3 {
  font-size: 24px;
  margin: 10px 0 24px;
}
.inventory-table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
  text-align: left;
}
th {
  font-size: 8px;
  color: #8194b0;
  font-weight: 400;
  padding: 10px 7px;
  background: #131e30;
}
td {
  font-size: 9px;
  padding: 14px 7px;
  border-bottom: 1px solid var(--line);
  color: #b2bfd1;
}
td svg {
  width: 16px;
  height: 16px;
  color: #769ed0;
  margin-right: 4px;
}
.tag-green,
.tag-blue,
.tag-yellow {
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 8px;
}
.tag-green {
  color: #68dcab;
  background: #183a30;
}
.tag-blue {
  color: #7abaff;
  background: #172c47;
}
.tag-yellow {
  color: #e9c578;
  background: #382e1d;
}
.asset-detail {
  border: 1px solid var(--line);
  padding: 16px;
  margin-top: 20px;
  border-radius: 4px;
}
.asset-detail > span {
  font-size: 8px;
  color: #819cc3;
  letter-spacing: 0.12em;
}
.asset-detail > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 8px;
  color: #7f90aa;
}
.asset-detail b {
  display: block;
  color: #bbc8dc;
  font-size: 10px;
  font-weight: 400;
}
.asset-detail p {
  font-size: 8px;
  margin: 14px 0 0;
}
.emphasis {
  color: #d7e2f5;
  font-weight: 500;
}
details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 20px 0;
}
summary {
  cursor: pointer;
  font-size: 12px;
  color: #bfcee4;
}
summary span {
  float: right;
  color: #63b4fa;
}
details p {
  font-size: 12px;
  margin: 15px 0 0;
}
.care-section {
  background: #0a0f19;
  border-block: 1px solid var(--line);
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.care-grid article {
  border-top: 1px solid #294365;
  padding-top: 27px;
}
.care-grid h3 {
  font-size: 17px;
  margin: 20px 0 13px;
}
.care-grid p {
  font-size: 12px;
}
.care-section .tags {
  margin: 30px 0;
}
.security-section {
  background: radial-gradient(ellipse at 25% 50%, #16224555, transparent 55%);
  border-bottom: 1px solid var(--line);
}
.security-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}
.security-art > svg {
  width: 120px;
  height: 150px;
  color: #7baaff;
  filter: drop-shadow(0 0 20px #2b60dc60);
}
.security-ring {
  position: absolute;
  border: 1px solid #3566ac44;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.ring-outer {
  width: 350px;
  height: 350px;
  border-style: dashed;
}
.ring-inner {
  width: 260px;
  height: 260px;
  box-shadow:
    0 0 50px #23438c1a,
    inset 0 0 50px #23438c1a;
}
.security-label {
  position: absolute;
  background: #0e1829;
  border: 1px solid #3f578e55;
  border-radius: 4px;
  padding: 8px 12px;
  color: #9cb5df;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.label-one {
  top: 53px;
  left: 49%;
}
.label-two {
  left: 0;
  top: 50%;
}
.label-three {
  right: 0;
  bottom: 85px;
}
.security-caption {
  position: absolute;
  bottom: 0;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #7287a7;
}
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  margin: 25px 0;
}
.check-list li {
  font-size: 11px;
  color: #b3bfd4;
}
.check-list li:before {
  content: "✓";
  color: #62adf3;
  margin-right: 10px;
}
.security-note {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #13203966;
  border-left: 2px solid #457eff;
  padding: 14px;
  color: #6cabff;
}
.security-note p {
  font-size: 11px;
  margin: 0;
}
.web-art {
  position: relative;
  padding: 25px 25px 75px 0;
}
.desktop-mock {
  border: 1px solid #44527388;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 20px 70px #0006;
}
.site-preview {
  position: relative;
  height: 290px;
  background:
    radial-gradient(ellipse at 90% 70%, #4245a360, transparent 65%), #0e1524;
  padding: 23px;
  overflow: hidden;
}
.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}
.preview-nav img,
.phone-brand {
  display: block;
  max-width: 100%;
  height: auto;
}
.preview-nav span {
  float: right;
  font-size: 6px;
  color: #a4afc4;
  font-weight: 400;
}
.site-preview strong {
  display: block;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 9px 0 12px;
  position: relative;
  z-index: 1;
}
.site-preview em,
.phone-mock em {
  font-style: normal;
  color: #8998ff;
}
.site-preview p {
  font-size: 7px;
}
.preview-button {
  display: inline-block;
  font-size: 7px;
  color: #e0e7ff;
  background: #4166d2;
  padding: 7px 11px;
  border-radius: 3px;
}
.preview-shape {
  width: 135px;
  height: 135px;
  border: 22px solid #6076c8;
  position: absolute;
  right: 20px;
  bottom: 50px;
  border-radius: 29px;
  transform: rotate(35deg);
  opacity: 0.4;
  box-shadow:
    inset 8px 8px 10px #0e1524,
    10px 10px 20px #10172d;
}
.phone-mock {
  position: absolute;
  right: -8px;
  bottom: 64px;
  width: 133px;
  height: 255px;
  border: 4px solid #344057;
  background: #10192c;
  border-radius: 24px;
  padding: 28px 13px 12px;
  box-shadow: 0 10px 40px #0008;
  overflow: hidden;
}
.phone-camera {
  position: absolute;
  width: 37px;
  height: 8px;
  background: #05070d;
  border-radius: 0 0 8px 8px;
  top: 0;
  left: 44px;
}
.phone-mock > b {
  font-size: 11px;
}
.phone-mock > span:not(.phone-camera):not(.preview-button) {
  display: block;
  font-size: 4px;
  margin-top: 23px;
  letter-spacing: 0.09em;
  color: #99abd0;
}
.phone-mock strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
  margin-top: 8px;
  letter-spacing: -0.04em;
}
.phone-art {
  height: 36px;
  width: 36px;
  border: 7px solid #7588d9;
  transform: rotate(35deg);
  border-radius: 10px;
  margin: 11px auto;
}
.phone-mock .preview-button {
  font-size: 5px;
}
.web-traits {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  color: #8da2c3;
  font-size: 10px;
}
.web-traits span:before {
  content: "✓";
  margin-right: 6px;
  color: #547fe0;
}
.hosting-section {
  padding: 0 0 50px;
}
.hosting-card {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 35px 40px;
  border: 1px solid #34487660;
  background: linear-gradient(100deg, #11213a88, #15102b66);
  border-radius: 9px;
}
.hosting-card > .service-icon {
  width: 47px;
  height: 47px;
  flex-shrink: 0;
}
.hosting-card h2 {
  font-size: 27px;
  margin: 10px 0;
}
.hosting-card p {
  font-size: 12px;
  margin-bottom: 12px;
}
.hosting-features {
  font-size: 10px;
  color: #aabbd3;
  word-spacing: 2px;
}
.hosting-features i {
  font-style: normal;
  color: #476493;
  margin: 0 9px;
}
.circle-link {
  margin-left: auto;
  border: 1px solid #46597988;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: #86bfff;
  font-size: 21px;
}
.circle-link:hover {
  background: #234069;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 47px;
}
.process-grid article {
  position: relative;
  border-top: 1px solid #294267;
  padding-top: 28px;
}
.process-grid article:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b9fea;
  position: absolute;
  top: -4px;
  box-shadow: 0 0 12px #258fff55;
}
.process-grid article > span {
  font-size: 12px;
  color: #598dc4;
  font-family: monospace;
}
.process-grid h3 {
  font-size: 17px;
  margin: 17px 0 13px;
}
.process-grid p {
  font-size: 12px;
  margin: 0;
}
.about-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(120deg, #0a1120, #0c0e19);
}
.about-lead {
  font-size: 22px !important;
  line-height: 1.5;
  color: #d1dcef;
}
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 10px;
  color: #8db7ed;
}
.contact-section {
  background: radial-gradient(ellipse at 15% 70%, #15285538, transparent 50%);
}
.contact-section .split {
  align-items: start;
}
.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-channels a {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #d5e3f9;
  font-size: 14px;
}
.contact-channels a:hover {
  color: #5fbcff;
}
.contact-channels small {
  font-size: 10px;
  display: block;
  color: #7e91af;
}
.contact-channel-icon {
  display: grid;
  place-items: center;
  color: #6ebeff;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff15;
  border-radius: 7px;
  background: #101a2a;
}
.contact-expectation {
  display: flex;
  gap: 17px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 35px;
}
.contact-expectation h3 {
  font-size: 13px;
  margin-bottom: 7px;
}
.contact-expectation p {
  font-size: 11px;
  margin: 0;
}
form {
  padding: 30px;
  background: #0e1521;
  border: 1px solid #ffffff17;
  border-radius: 9px;
}
label {
  display: block;
  font-size: 11px;
  color: #ccd6e6;
  margin-bottom: 7px;
}
label span {
  color: #69b7fb;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  background: #090f1b;
  border: 1px solid #ffffff19;
  border-radius: 4px;
  color: #e2e9f5;
  padding: 12px;
  font-size: 11px;
  margin-bottom: 18px;
  min-width: 0;
}
input::placeholder,
textarea::placeholder {
  color: #76849a;
}
select {
  min-height: 44px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-privacy {
  font-size: 9px;
  line-height: 1.8;
  margin-bottom: 19px;
}
.form-privacy a {
  text-decoration: underline;
  color: #acbedb;
}
form .button {
  width: 100%;
  justify-content: space-between;
}
#form-status {
  font-size: 11px;
  color: #90c6ff;
  margin: 12px 0 0;
}
#form-status:empty {
  display: none;
}
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 0;
  background: #04060b;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 38px;
}
.footer-top p {
  font-size: 10px;
  margin: 16px 0 0;
}
.footer-links {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
  max-width: 600px;
}
.footer-links a {
  font-size: 10px;
  color: #99a9c1;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 9px;
  color: #78869c;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 47px;
  height: 47px;
  background: #11392f;
  border: 1px solid #49be9188;
  box-shadow: 0 7px 24px #0006;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7ae2b7;
  z-index: 15;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #19513f;
}
.legal-main {
  padding: 150px 0 100px;
  min-height: 80vh;
}
.legal-content {
  max-width: 780px;
}
.legal-content h1 {
  font-size: 44px;
  margin: 18px 0 30px;
}
.legal-content h2 {
  font-size: 23px;
  margin-top: 35px;
}
.legal-content p {
  font-size: 14px;
}
.legal-content a {
  color: #72c6ff;
  text-decoration: underline;
}
.error-page {
  text-align: center;
  padding: 170px 24px 120px;
  min-height: 85vh;
}
.error-number {
  font-size: 130px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.08em;
}
.error-page h1 {
  font-size: 32px;
  margin: 15px 0;
}
.error-page p {
  margin: 18px 0 30px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.complementary-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.complementary-solutions > a {
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 19px 25px;
  border-radius: 7px;
  background: #0a101b;
}
.complementary-solutions > a:hover {
  border-color: #3985db75;
  background: #101c2e;
}
.complementary-solutions .icon {
  color: #849dc7;
  width: 25px;
  height: 25px;
}
.complementary-solutions h3 {
  font-size: 14px;
}
.complementary-solutions p {
  font-size: 10px;
  margin: 5px 0 0;
}
.complementary-solutions > a > span {
  margin-left: auto;
  color: #80afe9;
}
.rack-illustration {
  position: relative;
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 30px;
  padding: 22px 28px 40px;
  background: radial-gradient(ellipse at 30% 60%, #1c3e622e, transparent 80%);
  max-width: 410px;
}
.rack-hardware {
  width: 210px;
  padding: 8px 10px 12px;
  border: 1px solid #5c79a446;
  border-radius: 7px;
  background: linear-gradient(120deg, #152136, #0b1221);
  box-shadow: 0 15px 40px #0005;
}
.rack-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 6px;
  letter-spacing: 0.12em;
  color: #7894bc;
  padding: 6px 4px 12px;
}
.rack-unit {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #4a638536;
  border-radius: 3px;
  padding: 10px;
  margin: 5px 0;
  background: #0a111c;
  box-shadow: 0 2px 4px #0006;
}
.rack-vents {
  width: 110px;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #34445f 0 2px,
    transparent 2px 5px
  );
}
.rack-unit i {
  width: 4px;
  height: 4px;
  background: #55dbae;
  border-radius: 50%;
  box-shadow: 0 0 5px #55dbae55;
}
.rack-unit b {
  font-size: 7px;
  font-weight: 400;
  color: #8fa5c7;
}
.rack-network {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 7px;
  color: #8db7e9;
}
.rack-network > span {
  border: 1px solid #3c699651;
  background: #111e31;
  border-radius: 4px;
  padding: 7px 11px;
}
.rack-network b {
  font-weight: 400;
  color: #4379b2;
}
.rack-caption {
  position: absolute;
  bottom: 10px;
  font-size: 7px;
  letter-spacing: 0.13em;
  color: #7188a9;
  left: 28px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.metric-grid > div {
  min-width: 0;
  padding: 11px;
  background: #0e1828;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.metric-grid > div > span {
  font-size: 9px;
  color: #b9c9e1;
}
.metric-grid svg {
  display: block;
  width: 100%;
  height: 24px;
  stroke: #55aaf9;
  stroke-width: 1.5;
  fill: none;
  margin: 10px 0;
}
.metric-grid small {
  font-size: 7px;
  color: #8397b7;
  display: block;
}
.metric-grid > div:nth-child(even) svg {
  stroke: #9a80ee;
}
#form-status a {
  text-decoration: underline;
}
.button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.form-privacy {
  font-size: 10px;
}
.hero-note,
.hero-bottom,
.diagram-caption,
.card-number,
.card-link,
.footer-bottom {
  color: #98a6bd;
}
.rack-caption,
.security-caption,
.tiny-label {
  color: #92a7c6;
}
@media (max-width: 1024px) {
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rack-illustration {
    padding-left: 0;
    padding-right: 0;
    gap: 22px;
  }
  .rack-caption {
    left: 0;
  }
  .rack-hardware {
    width: 180px;
  }
  .rack-vents {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .complementary-solutions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .complementary-solutions > a {
    padding: 19px;
  }
  .rack-illustration {
    margin-bottom: 0;
    margin-inline: auto;
    max-width: 340px;
  }
  .rack-hardware {
    width: 210px;
  }
  .rack-vents {
    width: 110px;
  }
  .metric-grid {
    gap: 8px;
  }
  .metric-grid small {
    font-size: 7px;
  }
}

.preview-button {
  background: #3657bb;
  color: #ffffff;
}
.network-node small {
  font-size: 7px;
  color: #69cbaa;
  line-height: 1;
}
.node-shield,
.node-server {
  gap: 5px;
}
.node-shield svg,
.node-server svg {
  width: 26px;
  height: 26px;
}
