:root {
  --primary-background: #0b0b0d;
  --secondary-background: #09090b;
  --primary-color: #ffffff;
  --secondary-color: #707b85;
}

body {
  background-color: var(--primary-background);
  color: var(--primary-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

.btn-start {
  color: var(--primary-background);
  background-color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.btn-start:hover {
  opacity: 0.85;
}

.btn-secondary {
  color: var(--primary-color);
  background-color: rgba(22, 23, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background-color: rgba(22, 23, 28, 1);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-page {
  background-color: var(--primary-background);
}

.hero-content,
.proof-strip-inner,
.section-divider,
.intro-section {
  width: min(75vw, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
   padding: 120px 0 64px;
  background-color: #09101c;
  background-image: url('../images/root.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.hero-copy-column {
  max-width: 760px;
}

.hero-kicker {
  margin: 0;
  font-size: clamp(56px, 10vw, 104px);
  line-height: 0.95;
  font-weight: 800;
  color: var(--primary-color);
}

.hero-rotator {
  min-height: 1.2em;
  margin: 12px 0 0;
  color: var(--secondary-color);
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.05;
  font-weight: 600;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

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

.hero-visual-card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
}

.hero-image-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 460px;
  padding: 8px;
  box-sizing: border-box;
}

.hero-image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
}

.proof-strip {
  padding: 1rem 0 22px;
  background: linear-gradient(180deg, rgb(14, 18, 25), rgba(11, 11, 13, 0));
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.proof-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.section-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.intro-section {
  padding: 104px 0 112px;
}

.intro-copy-block {
  max-width: 760px;
}

.intro-label {
  margin: 0 0 8px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.intro-copy-block h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.1;
  font-weight: 500;
}

.intro-copy-block strong {
  font-weight: 800;
}

.intro-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.intro-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background-color: var(--secondary-background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro-card-rocket {
  background-image: url('../images/speed.png');
}

.intro-card-server {
  background-image: url('../images/server.png');
}

.intro-card-space {
  background-image: url('../images/space.png');
}

.intro-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 11, 13, 0.72);
}

.intro-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
}

.intro-card-label {
  margin: 0 0 10px;
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-card-stat {
  margin: 0;
  color: var(--primary-color);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.intro-card h3 {
  margin: 12px 0 10px;
  color: var(--primary-color);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.intro-card p:last-child {
  margin: 0;
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.network-section {
  width: min(75vw, 1280px);
  margin: 0 auto;
  height: 520px;
  padding: 36px 36px 112px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(70, 130, 180, 0.12), transparent 28%),
    #090a0c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}

.network-visual-shell {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.network-visual-card {
  width: min(100%, 320px);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  box-sizing: border-box;
  transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  overflow: hidden;
}

.visual-panel {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.visual-panel.is-active {
  opacity: 1;
  transform: scale(1);
}

.network-visual {
  position: relative;
  width: min(100%, 240px);
  aspect-ratio: 1;
  transition: transform 0.35s ease;
}

.deploy-timeline-panel {
  width: min(100%, 272px);
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 13, 18, 0.98) 0%, rgba(9, 9, 11, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.deploy-timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deploy-timeline-head strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.deploy-timeline-head span {
  color: #4682b4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deploy-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.deploy-step {
  position: relative;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deploy-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.deploy-step.is-complete,
.deploy-step.is-active {
  color: rgba(255, 255, 255, 0.82);
}

.deploy-step.is-complete::before {
  background-color: rgba(70, 130, 180, 0.75);
  box-shadow: 0 0 12px rgba(70, 130, 180, 0.28);
}

.deploy-step.is-active::before {
  background-color: #4682b4;
  box-shadow: 0 0 16px rgba(70, 130, 180, 0.45);
}

.deploy-timeline-bar {
  position: relative;
  margin-top: 16px;
  height: 8px;
}

.deploy-timeline-bar-track,
.deploy-timeline-bar-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.deploy-timeline-bar-track {
  background-color: rgba(255, 255, 255, 0.06);
}

.deploy-timeline-bar-fill {
  width: 74%;
  background: linear-gradient(90deg, rgba(70, 130, 180, 0.28) 0%, #4682b4 100%);
  box-shadow: 0 0 14px rgba(70, 130, 180, 0.35);
}

.deploy-timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.server-rack {
  position: relative;
  width: min(100%, 190px);
  padding: 18px 18px 14px;
  border-radius: 18px;
  background-color: rgba(9, 9, 11, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 24px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 8px;
  background-color: rgba(22, 23, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-unit span {
  display: block;
}

.server-unit span:first-child {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.16);
}

.server-unit span:nth-child(2),
.server-unit span:nth-child(3) {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #4682b4;
  box-shadow: 0 0 10px rgba(70, 130, 180, 0.25);
}

.rack-rail {
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.08);
}

.rack-rail-left { left: 10px; }
.rack-rail-right { right: 10px; }

.radar-visual {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 999px;
  background-color: rgba(9, 9, 11, 0.9);
  border: 1px solid rgba(70, 130, 180, 0.14);
  overflow: hidden;
}

.radar-ring,
.radar-cross {
  position: absolute;
}

.radar-ring {
  border-radius: 999px;
  border: 1px solid rgba(70, 130, 180, 0.16);
}

.radar-ring-1 { inset: 18px; }
.radar-ring-2 { inset: 52px; }
.radar-ring-3 { inset: 86px; }

.radar-cross-h {
  top: 50%;
  left: 18px;
  right: 18px;
  height: 1px;
  background-color: rgba(70, 130, 180, 0.16);
}

.radar-cross-v {
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background-color: rgba(70, 130, 180, 0.16);
}

.radar-sweep {
  position: absolute;
  inset: -10%;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(70, 130, 180, 0.08) 40deg, rgba(70, 130, 180, 0.28) 68deg, transparent 90deg);
  animation: radar-sweep 4s linear infinite;
}

.radar-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #4682b4;
  box-shadow: 0 0 14px rgba(70, 130, 180, 0.45);
}

.radar-blip-1 { top: 38%; left: 62%; }
.radar-blip-2 { top: 65%; left: 40%; }
.radar-blip-3 { top: 24%; left: 34%; }

.pricing-board {
  width: min(100%, 220px);
  padding: 16px;
  border-radius: 18px;
  background-color: rgba(9, 9, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pricing-header span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-header strong {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.pricing-row + .pricing-row {
  margin-top: 10px;
}

.pricing-row span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-meter {
  height: 7px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pricing-meter-bar {
  height: 100%;
  border-radius: inherit;
  background-color: #4682b4;
}

.pricing-meter-bar-1 { width: 68%; }
.pricing-meter-bar-2 { width: 42%; }
.pricing-meter-bar-3 { width: 54%; }

.pricing-total {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.5;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background-color: rgba(70, 130, 180, 0.1);
  border: 1px solid rgba(70, 130, 180, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.network-core-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #4682b4;
  box-shadow: 0 0 14px rgba(70, 130, 180, 0.5);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.network-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.network-ring-outer {
  border: 1px dashed rgba(255, 255, 255, 0.05);
  transform: rotate(18deg);
  transition: transform 0.35s ease, border-color 0.28s ease;
}

.network-ring-inner {
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: inset 0.28s ease, border-color 0.28s ease;
}

.network-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 1px;
  transform-origin: left center;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

.network-spoke-1 { transform: rotate(0deg); }
.network-spoke-2 { transform: rotate(60deg); }
.network-spoke-3 { transform: rotate(120deg); }
.network-spoke-4 { transform: rotate(180deg); }
.network-spoke-5 { transform: rotate(240deg); }
.network-spoke-6 { transform: rotate(300deg); }

.network-line {
  position: absolute;
  inset: 0;
  background: rgba(70, 130, 180, 0.25);
  transition: background-color 0.28s ease, opacity 0.28s ease;
}

.network-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #4682b4;
  box-shadow: 0 0 6px rgba(70, 130, 180, 0.8);
  transform: translateY(-50%);
  animation: network-pulse 4.8s linear infinite;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.network-spoke-2 .network-pulse { animation-delay: 0.8s; }
.network-spoke-3 .network-pulse { animation-delay: 1.6s; }
.network-spoke-4 .network-pulse { animation-delay: 2.4s; }
.network-spoke-5 .network-pulse { animation-delay: 3.2s; }
.network-spoke-6 .network-pulse { animation-delay: 4s; }

.network-node {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: var(--secondary-background);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.network-node span {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.6);
}

.network-stat-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 100px;
  padding: 10px 14px;
  border-radius: 12px;
  background-color: var(--secondary-background);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: border-color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.network-visual-shell[data-visual-state='deploy'] .network-stat-badge,
.network-visual-shell[data-visual-state='hardware'] .network-stat-badge,
.network-visual-shell[data-visual-state='security'] .network-stat-badge,
.network-visual-shell[data-visual-state='pricing'] .network-stat-badge {
  opacity: 0;
  transform: translateY(8px);
}

.network-stat-badge strong {
  display: block;
  color: var(--primary-color);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.network-stat-badge span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network-visual-shell[data-visual-state='deploy'] .network-visual {
  transform: scale(0.95);
}

.network-visual-shell[data-visual-state='deploy'] .network-ring-outer {
  transform: rotate(42deg);
}

.network-visual-shell[data-visual-state='deploy'] .network-ring-inner {
  inset: 26px;
}

.network-visual-shell[data-visual-state='deploy'] .network-pulse {
  animation-duration: 2.2s;
}

.network-visual-shell[data-visual-state='deploy'] .network-stat-badge {
  background-color: rgba(22, 23, 28, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
}

.network-visual-shell[data-visual-state='hardware'] .network-core {
  transform: translate(-50%, -50%) scale(1.1);
}

.network-visual-shell[data-visual-state='hardware'] .network-core-dot {
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(70, 130, 180, 0.65);
}

.network-visual-shell[data-visual-state='hardware'] .network-ring-inner {
  inset: 42px;
}

.network-visual-shell[data-visual-state='hardware'] .network-spoke-2,
.network-visual-shell[data-visual-state='hardware'] .network-spoke-4,
.network-visual-shell[data-visual-state='hardware'] .network-spoke-6 {
  opacity: 0.35;
  filter: saturate(0.6);
}

.network-visual-shell[data-visual-state='security'] .network-core,
.network-visual-shell[data-visual-state='security'] .network-stat-badge {
  border-color: rgba(70, 130, 180, 0.4);
}

.network-visual-shell[data-visual-state='security'] .network-line {
  background: rgba(70, 130, 180, 0.4);
}

.network-visual-shell[data-visual-state='security'] .network-node {
  transform: translateY(-50%) scale(1.12);
  border-color: rgba(70, 130, 180, 0.35);
}

.network-visual-shell[data-visual-state='security'] .network-ring-outer {
  border-color: rgba(70, 130, 180, 0.18);
}

.network-visual-shell[data-visual-state='pricing'] .network-visual-card {
  transform: scale(0.97);
}

.network-visual-shell[data-visual-state='pricing'] .network-ring-outer {
  transform: rotate(0deg);
}

.network-visual-shell[data-visual-state='pricing'] .network-spoke {
  opacity: 0.55;
}

.network-visual-shell[data-visual-state='pricing'] .network-spoke-1,
.network-visual-shell[data-visual-state='pricing'] .network-spoke-4 {
  opacity: 1;
}

.network-visual-shell[data-visual-state='pricing'] .network-pulse {
  animation-duration: 6.2s;
}

.network-heading-block {
  margin-bottom: 28px;
}

.network-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-copy h2 {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 600;
}

.network-copy h2 span {
  color: rgba(255, 255, 255, 0.5);
}

.network-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 240px;
}

.network-item {
  position: relative;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background-color: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.network-item:hover,
.network-item.is-active {
  background-color: rgba(255, 255, 255, 0.04);
}

.network-item-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #4682b4;
  box-shadow: 0 0 8px rgba(70, 130, 180, 0.4);
  transform: scaleX(0);
  transform-origin: left center;
}

.network-item.is-active .network-item-bar {
  animation: network-item-progress var(--network-progress-duration, 3200ms) linear forwards;
}

.network-item-dot {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: #4682b4;
}

.network-item-copy {
  padding-left: 14px;
}

.network-item-copy strong {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.2s ease;
}

.network-item.is-active .network-item-copy strong {
  color: var(--primary-color);
}

.network-item-copy p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  line-height: 1.5;
  transition: max-height 0.22s ease, opacity 0.22s ease, margin-top 0.22s ease;
  opacity: 0;
}

.network-item.is-active .network-item-copy p {
  max-height: 72px;
  margin-top: 8px;
  opacity: 1;
}

.services-section {
  width: min(75vw, 1280px);
  margin: 0 auto;
  padding: 112px 0;
  position: relative;
}

.services-shell {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}

.services-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  align-items: end;
}

.services-heading-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-kicker-logo {
  width: auto;
  height: 18px;
  opacity: 0.9;
}

.services-heading-kicker span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-section h2 {
  max-width: 640px;
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 600;
}

.services-section h2 span {
  color: rgba(255, 255, 255, 0.46);
}

.services-intro {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.75;
}

.services-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  height: 100%;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.services-info-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-height: 560px;
}

.services-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: transparent;
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.services-tab-trigger {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  cursor: pointer;
}

.services-tab-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.services-tab-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
}

.services-tab-icon svg {
  width: 16px;
  height: 16px;
}

.services-tab strong {
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.services-tab-head > div > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-tab:hover,
.services-tab.is-active {
  background: linear-gradient(180deg, rgba(70, 130, 180, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 1px rgba(70, 130, 180, 0.16);
}

.services-tab.is-active strong,
.services-tab:hover strong {
  color: #ffffff;
}

.services-tab.is-active .services-tab-icon,
.services-tab:hover .services-tab-icon {
  background-color: rgba(70, 130, 180, 0.14);
  color: #9ed8ff;
}

.services-tab.is-active .services-tab-head > div > span,
.services-tab:hover .services-tab-head > div > span {
  color: rgba(255, 255, 255, 0.62);
}

.services-tab-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 14px 0;
  transition: max-height 0.24s ease, opacity 0.24s ease, padding 0.24s ease;
}

.services-tab.is-active .services-tab-detail {
  max-height: 380px;
  opacity: 1;
  padding: 0 14px 18px;
}

.services-tab-soon {
  opacity: 0.78;
}

.services-tab-soon .services-tab-head > div > span {
  color: #6fd4ff;
}

.services-panel-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  min-height: 560px;
  height: 560px;
  align-items: stretch;
}

.services-visual-card {
  position: relative;
  min-height: 560px;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(70, 130, 180, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.services-visual-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.services-visual-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.services-tab:last-child {
  border-bottom-color: transparent;
}

.services-visual-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-stack {
  width: 100%;
  max-width: 320px;
}

.service-stack-cloud {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.cloud-world-visual {
  position: relative;
  min-height: 300px;
}

.cloud-world-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(111, 212, 255, 0.26), transparent 20%),
    linear-gradient(180deg, rgba(22, 40, 70, 0.96), rgba(8, 16, 31, 0.98));
  border: 1px solid rgba(111, 212, 255, 0.18);
  box-shadow: inset 0 -24px 48px rgba(0, 0, 0, 0.34), 0 28px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.cloud-world-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  border: 1px solid rgba(70, 130, 180, 0.14);
  transform: translate(-50%, -50%);
}

.cloud-world-orbit-1 {
  width: 290px;
  height: 290px;
}

.cloud-world-orbit-2 {
  width: 320px;
  height: 170px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.cloud-world-orbit-3 {
  width: 170px;
  height: 320px;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.cloud-world-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(111, 212, 255, 0.12);
}

.cloud-world-grid-lat {
  width: 100%;
  height: 42%;
}

.cloud-world-grid-lat-2 {
  height: 70%;
}

.cloud-world-grid-lon {
  width: 42%;
  height: 100%;
}

.cloud-world-grid-lon-2 {
  width: 70%;
}

.cloud-world-continent {
  position: absolute;
  border-radius: 999px;
  background: rgba(158, 216, 255, 0.14);
}

.cloud-world-continent-1 {
  top: 28%;
  left: 24%;
  width: 64px;
  height: 34px;
  transform: rotate(-18deg);
}

.cloud-world-continent-2 {
  top: 46%;
  right: 20%;
  width: 52px;
  height: 28px;
  transform: rotate(14deg);
}

.cloud-world-continent-3 {
  bottom: 26%;
  left: 34%;
  width: 44px;
  height: 22px;
  transform: rotate(10deg);
}

.cloud-world-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9ed8ff;
  box-shadow: 0 0 10px rgba(158, 216, 255, 0.7);
}

.cloud-world-node-1 { top: 30%; left: 62%; }
.cloud-world-node-2 { top: 50%; left: 28%; }
.cloud-world-node-3 { top: 64%; left: 54%; }
.cloud-world-node-4 { top: 42%; left: 76%; }

.service-stack-metal,
.service-stack-colo,
.service-stack-ddos,
.service-stack-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.metal-chassis {
  width: min(100%, 280px);
  padding: 16px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metal-chip-grid {
  display: flex;
  gap: 12px;
}

.metal-chip-card {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metal-chip-label,
.metal-block-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metal-chip-package {
  position: relative;
  aspect-ratio: 1;
  padding: 3px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(63, 63, 70, 0.95), rgba(24, 24, 27, 0.95));
  border: 1px solid rgba(113, 113, 122, 0.5);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.metal-chip-glow {
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background-color: rgba(26, 71, 42, 0.3);
}

.metal-chip-surface {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(135deg, #8a8a8a, #a0a0a0 52%, #707070);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.metal-chip-trace {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background-color: rgba(82, 82, 91, 0.4);
}

.metal-chip-core {
  width: 66%;
  height: 66%;
  border-radius: 4px;
  border: 1px solid rgba(113, 113, 122, 0.5);
  background: linear-gradient(135deg, rgba(82, 82, 91, 0.95), rgba(63, 63, 70, 0.95));
}

.metal-chip-corner {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-left: 1px solid rgba(113, 113, 122, 0.4);
  border-bottom: 1px solid rgba(113, 113, 122, 0.4);
}

.metal-chip-heat {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(245, 158, 11, 0.24), rgba(245, 158, 11, 0.08), transparent);
}

.metal-chip-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 8px;
}

.metal-chip-meta span:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.metal-chip-meta span:last-child {
  color: rgba(245, 158, 11, 0.6);
}

.metal-memory-block,
.metal-storage-block {
  margin-top: 14px;
}

.metal-memory-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
}

.metal-memory-stick {
  height: 32px;
  padding: 2px;
  border-radius: 4px;
  background-color: rgba(70, 130, 180, 0.16);
  border: 1px solid rgba(70, 130, 180, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}

.metal-memory-stick span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.08);
}

.metal-storage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.metal-drive {
  height: 24px;
  padding: 0 6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metal-drive-body {
  width: 8px;
  height: 12px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.08);
}

.metal-drive-led {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: #24c98b;
}

.colo-clusters {
  display: flex;
  gap: 8px;
}

.colo-cluster {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.colo-cluster-active {
  background-color: rgba(70, 130, 180, 0.08);
  border-color: rgba(70, 130, 180, 0.25);
}

.colo-slot {
  width: 112px;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
}

.colo-slot.is-on,
.colo-slot.is-warn {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.colo-slot.is-blue {
  background-color: rgba(70, 130, 180, 0.2);
  border: 1px solid rgba(70, 130, 180, 0.3);
}

.colo-slot.is-empty {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.05);
}

.colo-slot > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #24c98b;
}

.colo-slot.is-warn > span:first-child {
  background-color: rgba(245, 158, 11, 0.9);
}

.colo-slot.is-blue > span:first-child {
  background-color: #4682b4;
}

.colo-slot > span:nth-child(2) {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(96, 165, 250, 0.6);
}

.colo-slot > div {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.colo-slot i {
  display: block;
  width: 10px;
  height: 12px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.08);
}

.ddos-traffic-card {
  width: min(100%, 300px);
}

.ddos-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ddos-group-head span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.ddos-group-head-danger span { background-color: rgba(239, 68, 68, 0.9); }
.ddos-group-head-safe span { background-color: #24c98b; }

.ddos-group-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddos-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ddos-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ddos-row-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ddos-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.ddos-fill-danger { background-color: rgba(239, 68, 68, 0.5); }
.ddos-fill-safe { background-color: rgba(36, 201, 139, 0.5); }

.ddos-row label {
  width: 92px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.ddos-filter-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 14px 0;
}

.ddos-filter-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(70, 130, 180, 0.6), transparent);
}

.ddos-filter-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(70, 130, 180, 0.2);
  border: 1px solid rgba(70, 130, 180, 0.3);
}

.ddos-filter-shield {
  width: 12px;
  height: 14px;
  clip-path: polygon(50% 0%, 88% 18%, 88% 56%, 50% 100%, 12% 56%, 12% 18%);
  background-color: #4682b4;
}

.ddos-filter-pill span {
  color: #4682b4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-soon-card {
  padding: 28px 32px;
  border-radius: 16px;
  background-color: rgba(9, 9, 11, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary-color);
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}

.service-soon-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.services-tab-detail h3 {
  margin: 10px 0 12px;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
}

.services-tab-detail p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.testimonials-section {
  width: min(75vw, 1280px);
  margin: 0 auto;
  padding: 112px 0;
}

.locations-section {
  width: min(75vw, 1280px);
  margin: 0 auto;
  padding: 24px 0 112px;
}

.locations-heading-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.locations-heading-kicker span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.locations-section h2 {
  max-width: 640px;
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 600;
}

.locations-section h2 span {
  color: rgba(255, 255, 255, 0.46);
}

.locations-intro {
  max-width: 760px;
  margin: 14px 0 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.75;
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
  gap: 22px;
  align-items: stretch;
}

.locations-map-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: #121114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  min-height: 340px;
}

.locations-world-visual {
  position: absolute;
  inset: 12px;
  min-height: calc(100% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.locations-map-image {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
  filter: brightness(0) saturate(100%) invert(89%) sepia(19%) saturate(914%) hue-rotate(170deg) brightness(98%) contrast(97%);
}

.location-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

  .location-pin-bend {
    top: 27%;
    left: 18.5%
  }

  .location-pin-ashburn {
    top: 35%;
    left: 22.5%;
  }

.location-pin-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: #9ed8ff;
  box-shadow: 0 0 0 6px rgba(70, 130, 180, 0.14), 0 0 22px rgba(70, 130, 180, 0.45);
}

.location-pin-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(158, 216, 255, 0.26);
  transform: translate(-50%, -50%);
}

.location-pin-label {
  padding: 3px 6px;
  border-radius: 9px;
  background-color: rgba(11, 15, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary-color);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.location-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 0;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.34), rgba(8, 12, 18, 0.76)),
    radial-gradient(circle at top right, rgba(70, 130, 180, 0.14), transparent 34%);
  pointer-events: none;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 130, 180, 0.22);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
}

.location-card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #9ed8ff;
}

.location-card-copy {
  position: relative;
  z-index: 1;
}

.location-card h3 {
  margin: 2px 0 8px;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.location-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.testimonials-heading-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.testimonials-heading-kicker span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.testimonials-section h2 {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 600;
}

.testimonials-intro {
  max-width: 720px;
  margin: 14px 0 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
}

.testimonials-rotator {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
}

.testimonial-card {
  position: relative;
  padding: 22px;
  width: clamp(280px, 30vw, 360px);
  min-height: 260px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(70, 130, 180, 0.03), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%);
  pointer-events: none;
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  align-items: stretch;
  animation: testimonial-stream 34s linear infinite;
  will-change: transform;
}

.testimonials-rotator:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-meta strong {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.testimonial-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-section {
  width: min(75vw, 1280px);
  margin: 0 auto;
  padding: 112px 0 120px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background-color: #09101c;
  background-image: url('../images/root.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.24);
}

.cta-card-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(70, 130, 180, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.62), rgba(9, 16, 28, 0.86));
}

.cta-card-content {
  position: relative;
  z-index: 1;
  padding: 72px 56px;
}

.cta-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.cta-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.12;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.network-visual-shell[data-visual-state='deploy'] .deploy-timeline-bar-fill {
  animation: deploy-progress 2s ease-in-out infinite;
}

@keyframes network-pulse {
  0% { transform: translateY(-50%) translateX(0); opacity: 0.1; }
  15% { opacity: 1; }
  100% { transform: translateY(-50%) translateX(92px); opacity: 0.2; }
}

@keyframes deploy-progress {
  0% { width: 22%; }
  65% { width: 82%; }
  100% { width: 58%; }
}

@keyframes testimonial-stream {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes network-item-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .hero-section,
  .intro-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content,
  .proof-strip-inner,
  .section-divider,
  .intro-section,
  .network-section,
  .services-section,
  .locations-section,
  .testimonials-section,
  .cta-section {
    width: calc(100vw - 40px);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    min-height: 420px;
  }

  .hero-image-shell {
    min-height: 340px;
  }

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

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

  .network-section {
    height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-panel-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .services-visual-card {
    min-height: 420px;
  }

  .services-heading-row {
    grid-template-columns: 1fr;
  }

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

  .locations-layout {
    grid-template-columns: 1fr;
  }

  .locations-map-card {
    min-height: 300px;
  }

  .locations-map-image {
    height: 100%;
  }

  .testimonials-rotator {
    min-height: 0;
  }

  .testimonial-card {
    width: 320px;
    min-height: 300px;
  }

  .network-visual-shell {
    order: 1;
  }

  .network-copy {
    order: 2;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hero-image-shell {
    min-height: 280px;
  }

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

  .services-tabs {
    grid-template-columns: 1fr;
  }

  .locations-map-card {
    min-height: 260px;
  }

  .locations-world-visual {
    inset: 18px;
    min-height: calc(100% - 36px);
  }

  .locations-map-image {
    height: 100%;
  }

  .location-card {
    min-height: 0;
  }

  .location-pin-bend {
    top: 34%;
    left: 18.5%;
  }

  .location-pin-ashburn {
    top: 38%;
    left: 20.5%;
  }

  .cta-card-content {
    padding: 32px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .network-stat-badge {
    right: 50%;
    bottom: 8px;
    transform: translateX(50%);
  }

  .testimonial-card {
    width: 280px;
    min-height: 0;
  }
}
