:root {
  color-scheme: dark;
  --bg: #050b13;
  --bg-soft: #08111d;
  --panel: rgba(12, 24, 39, .82);
  --panel-solid: #0c1827;
  --panel-light: #122239;
  --line: rgba(137, 173, 211, .17);
  --line-strong: rgba(112, 177, 235, .32);
  --text: #eef6ff;
  --muted: #8da3b9;
  --muted-light: #b7c6d5;
  --accent: #67c0ff;
  --accent-bright: #8bd4ff;
  --accent-dark: #188bd4;
  --green: #72e6aa;
  --orange: #f5bd6e;
  --shadow: 0 35px 100px rgba(0, 0, 0, .34);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 83% 4%, rgba(33, 111, 177, .24), transparent 27%),
    radial-gradient(circle at 9% 35%, rgba(28, 97, 148, .13), transparent 28%),
    linear-gradient(180deg, #050b13 0%, #07111d 45%, #050a12 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(120, 170, 215, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 170, 215, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(130, 170, 210, .12);
  background: rgba(5, 11, 19, .74);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: .9rem;
  letter-spacing: .17em;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .56rem;
  letter-spacing: .14em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(70, 156, 222, .18), rgba(8, 19, 31, .7));
  box-shadow: inset 0 0 22px rgba(74, 165, 234, .1);
}

.brand-mark span {
  display: block;
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(to top, #2196df, #92d8ff);
}

.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 75%; }
.brand-mark span:nth-child(3) { height: 100%; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  color: var(--muted-light);
  font-size: .9rem;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 650;
  font-size: .9rem;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

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

.button-primary {
  color: #03101a;
  background: linear-gradient(135deg, #8ed7ff, #4aafea);
  box-shadow: 0 13px 34px rgba(42, 151, 220, .22);
}

.button-primary:hover {
  box-shadow: 0 15px 40px rgba(42, 151, 220, .34);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(12, 28, 45, .72);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(120, 195, 245, .52);
  background: rgba(24, 49, 75, .72);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-large {
  min-height: 50px;
  padding-inline: 24px;
}

.full-width {
  width: 100%;
}

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

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  padding: 96px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: 74px;
}

.eyebrow,
.section-label {
  color: var(--accent-bright);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .18em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(114, 230, 170, .1);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.3rem, 6.4vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, #ffffff, #75c8f7 58%, #4c9dd2);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 34px;
  color: var(--muted-light);
  font-size: 1.13rem;
  line-height: 1.72;
}

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

.hero-trust {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-trust div {
  padding-right: 22px;
}

.hero-trust div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-trust strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.12rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: .75rem;
}

.hero-console {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(21, 45, 70, .8), rgba(7, 17, 29, .94));
  box-shadow: var(--shadow);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(107, 197, 255, .34), transparent 40%);
  filter: blur(18px);
}

.console-topbar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  background: rgba(3, 10, 18, .42);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38516a;
}

.window-controls span:first-child { background: #ce6f6f; }
.window-controls span:nth-child(2) { background: #d7ac63; }
.window-controls span:nth-child(3) { background: #66bd8d; }

.live-indicator {
  justify-self: end;
  color: var(--green);
  font-weight: 700;
}

.console-body {
  padding: 25px;
}

.console-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.console-heading small,
.traffic-header small {
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .12em;
}

.console-heading strong {
  display: block;
  margin-top: 7px;
  font-size: 1.05rem;
}

.health-ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 4px solid rgba(108, 228, 170, .25);
  border-top-color: var(--green);
  background: rgba(5, 17, 26, .55);
}

.health-ring span {
  font-weight: 750;
  line-height: 1;
}

.health-ring small {
  margin-top: 4px;
  color: var(--green);
  font-size: .48rem;
  letter-spacing: .13em;
}

.service-list {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(4, 14, 24, .45);
}

.service-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
}

.service-row + .service-row {
  border-top: 1px solid var(--line);
}

.service-row strong {
  display: block;
  font-size: .83rem;
}

.service-row small {
  color: var(--muted);
  font-size: .7rem;
}

.service-status {
  color: var(--green);
  font-size: .69rem;
}

.service-icon {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(65, 154, 217, .1);
}

.storage-icon::after,
.sync-icon::after,
.edge-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: .95rem;
}

.storage-icon::after { content: "▱"; }
.sync-icon::after { content: "↻"; }
.edge-icon::after { content: "◇"; }

.traffic-panel {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(4, 14, 24, .45);
}

.traffic-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: .8rem;
}

.chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.chart span {
  flex: 1;
  min-width: 5px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(43, 139, 203, .32), #63bff7);
  animation: chart-rise .8s ease both;
}

@keyframes chart-rise {
  from { height: 5%; opacity: .2; }
}

.logo-strip {
  border-block: 1px solid var(--line);
  background: rgba(8, 18, 30, .54);
}

.logo-strip .container {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-strip p {
  color: var(--muted);
  font-size: .78rem;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 37px;
  color: #61778d;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.security-grid h2,
.company-grid h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.section-heading > p,
.section-intro,
.company-copy > p,
.contact-copy > p {
  color: var(--muted-light);
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 32, 51, .78), rgba(8, 18, 30, .84));
  transition:
    transform .25s ease,
    border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.feature-large {
  grid-row: span 2;
  min-height: 617px;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #50687e;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .14em;
}

.feature-card h3 {
  margin: 22px 0 11px;
  font-size: 1.4rem;
}

.feature-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card ul,
.price-card ul {
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.feature-card li,
.price-card li {
  position: relative;
  padding: 8px 0 8px 23px;
  color: var(--muted-light);
  font-size: .88rem;
}

.feature-card li::before,
.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 15px;
  left: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(95, 188, 247, .45);
}

.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-top: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--accent-bright);
  background: rgba(64, 151, 215, .09);
  font-size: 1.25rem;
}

.feature-visual {
  position: relative;
  height: 285px;
  margin: 33px 0 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(103, 181, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 181, 235, .055) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(43, 145, 212, .13), transparent 55%);
  background-size: 31px 31px, 31px 31px, auto;
}

.storage-node {
  width: 72px;
  height: 72px;
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(113, 202, 255, .42);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(76, 177, 240, .23), rgba(8, 27, 43, .9));
  box-shadow:
    inset 0 0 25px rgba(87, 187, 246, .13),
    0 18px 35px rgba(0, 0, 0, .28);
}

.storage-node::before,
.storage-node::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  height: 5px;
  border-radius: 3px;
  background: #5ab8ef;
}

.storage-node::before { top: 23px; }
.storage-node::after { top: 40px; opacity: .58; }

.node-one { top: 38px; left: calc(50% - 36px); }
.node-two { bottom: 37px; left: 19%; }
.node-three { bottom: 37px; right: 19%; }

.storage-line {
  height: 1px;
  position: absolute;
  z-index: 1;
  transform-origin: left center;
  background: linear-gradient(90deg, #64c5ff, rgba(100, 197, 255, .08));
}

.line-one {
  width: 160px;
  top: 117px;
  left: 48%;
  transform: rotate(126deg);
}

.line-two {
  width: 160px;
  top: 117px;
  left: 48%;
  transform: rotate(54deg);
}

.security-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 42%, rgba(34, 126, 191, .17), transparent 31%),
    rgba(7, 16, 27, .56);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 85px;
}

.security-list {
  margin-top: 42px;
}

.security-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.security-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.security-list > div > span {
  color: var(--accent);
  font-size: .69rem;
  letter-spacing: .12em;
}

.security-list h3 {
  margin: -5px 0 6px;
  font-size: 1rem;
}

.security-list p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.security-panel {
  padding: 31px;
  border: 1px solid var(--line-strong);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(17, 38, 60, .85), rgba(7, 17, 29, .92));
  box-shadow: var(--shadow);
}

.security-orbit {
  height: 330px;
  position: relative;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(94, 185, 239, .2);
  border-radius: 50%;
}

.orbit-one {
  width: 275px;
  height: 275px;
  animation: orbit-spin 18s linear infinite;
}

.orbit-two {
  width: 208px;
  height: 208px;
  border-style: dashed;
  animation: orbit-spin 13s linear infinite reverse;
}

.orbit-three {
  width: 142px;
  height: 142px;
  border-color: rgba(114, 230, 170, .25);
}

.orbit-one::after,
.orbit-two::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: 50%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 17px var(--accent);
}

.orbit-two::after {
  background: var(--green);
  box-shadow: 0 0 17px var(--green);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.shield-core {
  width: 92px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(130, 215, 255, .45);
  border-radius: 26px 26px 38px 38px;
  background: linear-gradient(145deg, rgba(81, 181, 237, .24), rgba(7, 25, 39, .88));
  box-shadow:
    inset 0 0 35px rgba(74, 178, 237, .17),
    0 0 48px rgba(50, 145, 203, .22);
}

.shield-core span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.security-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}

.security-metrics div {
  padding: 17px;
}

.security-metrics div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.security-metrics div:nth-child(n+3) {
  border-top: 1px solid var(--line);
}

.security-metrics strong {
  display: block;
  font-size: .9rem;
}

.security-metrics span {
  color: var(--muted);
  font-size: .68rem;
}

.pricing-heading {
  align-items: center;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 29, 46, .78), rgba(7, 16, 27, .86));
}

.featured-price {
  border-color: rgba(102, 193, 247, .48);
  transform: translateY(-9px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, .25);
}

.popular-label {
  position: absolute;
  top: 17px;
  right: 19px;
  color: var(--accent-bright);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 750;
}

.price-card > p {
  min-height: 49px;
  margin: 12px 0 25px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.price {
  display: flex;
  align-items: start;
  min-height: 83px;
}

.price > span {
  margin: 10px 4px 0 0;
  color: var(--muted-light);
}

.price strong {
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.price small {
  align-self: end;
  margin: 0 0 14px 8px;
  color: var(--muted);
}

.custom-price strong {
  margin-top: 8px;
  font-size: 2.25rem;
}

.price-card ul {
  flex: 1;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.network-section {
  border-block: 1px solid var(--line);
  background: rgba(8, 17, 28, .54);
}

.network-card {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  min-height: 515px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 25px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 48%, rgba(42, 131, 190, .18), transparent 37%),
    #07111d;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(95, 178, 230, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 178, 230, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(500px) rotateX(55deg) scale(1.4);
}

.map::after {
  content: "";
  position: absolute;
  inset: 10% 8%;
  opacity: .7;
  border-radius: 47% 53% 43% 57% / 56% 38% 62% 44%;
  border: 1px solid rgba(98, 182, 234, .15);
  background:
    radial-gradient(ellipse at 60% 25%, rgba(66, 141, 188, .12), transparent 23%),
    radial-gradient(ellipse at 40% 66%, rgba(66, 141, 188, .1), transparent 28%);
}

.map-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-light);
  font-size: .72rem;
}

.map-node i {
  width: 10px;
  height: 10px;
  display: block;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  background: #0a1928;
  box-shadow:
    0 0 0 6px rgba(86, 184, 239, .09),
    0 0 20px rgba(86, 184, 239, .4);
}

.helsinki { top: 25%; left: 63%; }
.stockholm { top: 38%; left: 47%; }
.frankfurt { top: 64%; left: 48%; }
.amsterdam { top: 59%; left: 29%; }

.connection {
  height: 1px;
  position: absolute;
  z-index: 2;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(93, 192, 248, .8), transparent);
}

.connection-one {
  width: 160px;
  top: 30%;
  left: 49%;
  transform: rotate(-23deg);
}

.connection-two {
  width: 155px;
  top: 40%;
  left: 49%;
  transform: rotate(86deg);
}

.connection-three {
  width: 145px;
  top: 60%;
  left: 31%;
  transform: rotate(9deg);
}

.network-stats {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.network-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.network-stats div + div {
  border-top: 1px solid var(--line);
}

.network-stats small {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .13em;
}

.network-stats strong {
  margin-top: 7px;
  font-size: 1.02rem;
}

.green-text {
  color: var(--green);
}

.company-section {
  background:
    radial-gradient(circle at 10% 50%, rgba(35, 116, 170, .12), transparent 28%);
}

.company-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.company-copy > p {
  max-width: 720px;
  margin-top: 0;
  font-size: 1.04rem;
}

.company-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.company-details div {
  padding: 22px 22px 22px 0;
}

.company-details div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.company-details small {
  display: block;
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .12em;
}

.company-details strong {
  display: block;
  margin-top: 8px;
  font-size: .79rem;
  overflow-wrap: anywhere;
}

.faq-section {
  border-block: 1px solid var(--line);
  background: rgba(8, 17, 28, .54);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 20px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  margin: -8px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  background:
    radial-gradient(circle at 76% 44%, rgba(43, 138, 202, .16), transparent 32%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.contact-copy p {
  max-width: 500px;
}

.contact-channel {
  margin-top: 26px;
}

.contact-channel span {
  display: block;
  color: var(--muted);
  font-size: .73rem;
}

.contact-channel strong {
  display: block;
  margin-top: 5px;
  font-size: .88rem;
  overflow-wrap: anywhere;
}

.contact-form,
.modal-card {
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 36, 57, .9), rgba(7, 17, 29, .96));
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-light);
  font-size: .78rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--text);
  background: rgba(4, 13, 22, .65);
  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #53697e;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(96, 191, 247, .68);
  box-shadow: 0 0 0 4px rgba(73, 171, 230, .09);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7392ab 50%),
    linear-gradient(135deg, #7392ab 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 14px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--accent-dark);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--orange);
  font-size: .78rem;
  line-height: 1.5;
}

.site-footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: #040910;
}

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

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid > div:first-child > p {
  max-width: 330px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: .79rem;
}

.footer-column > strong {
  margin-bottom: 7px;
  color: var(--text);
  font-size: .8rem;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-status {
  color: var(--green);
}

.footer-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 10, .78);
  backdrop-filter: blur(10px);
}

.modal-card {
  width: min(460px, 100%);
  position: relative;
  z-index: 1;
}

.modal-card h2 {
  margin: 10px 0 10px;
  font-size: 1.85rem;
  letter-spacing: -.035em;
}

.modal-card > p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: .86rem;
}

#loginForm {
  display: grid;
  gap: 18px;
}

.modal-logo {
  margin-bottom: 22px;
}

.modal-close {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted-light);
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
}

.modal-security-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: .68rem;
}

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

  .hero-grid,
  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-console {
    max-width: 680px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .security-grid,
  .contact-grid {
    gap: 55px;
  }

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

  .featured-price {
    transform: none;
  }

  .network-card {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-stats {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .network-stats div + div {
    border-top: 0;
  }

  .network-stats div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .network-stats div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

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

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

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .mobile-menu-button {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button-primary {
    display: none;
  }

  .main-nav {
    width: 100%;
    order: 5;
    flex-direction: column;
    align-items: stretch;
    padding: 7px 0 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding: 70px 0 65px;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-console {
    margin-top: 55px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .hero-trust div,
  .hero-trust div + div {
    padding: 0;
    border: 0;
  }

  .logo-strip .container {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-list {
    justify-content: flex-start;
    gap: 17px 24px;
  }

  .section {
    padding: 82px 0;
  }

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

  .feature-large {
    grid-row: auto;
    min-height: 570px;
  }

  .feature-visual {
    height: 250px;
  }

  .form-row,
  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details div,
  .company-details div + div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .company-details div:first-child {
    border-top: 0;
  }

  .contact-form,
  .modal-card {
    padding: 24px;
  }

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

.chart span:nth-child(1)  { height: 34%; }
.chart span:nth-child(2)  { height: 49%; }
.chart span:nth-child(3)  { height: 43%; }
.chart span:nth-child(4)  { height: 66%; }
.chart span:nth-child(5)  { height: 58%; }
.chart span:nth-child(6)  { height: 78%; }
.chart span:nth-child(7)  { height: 64%; }
.chart span:nth-child(8)  { height: 88%; }
.chart span:nth-child(9)  { height: 74%; }
.chart span:nth-child(10) { height: 93%; }
.chart span:nth-child(11) { height: 72%; }
.chart span:nth-child(12) { height: 82%; }

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
