:root {
  --ink: #18181b;
  --muted: #62626a;
  --line: #d4d4d8;
  --paper: #ffffff;
  --surface: #f8fafc;
  --navy: #18181b;
  --blue: #0891b2;
  --blue-dark: #0e7490;
  --green: #f59e0b;
  --shadow: 0 18px 45px rgba(16, 36, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a,
button,
.btn,
.card,
.segment-card,
.why-card,
.resource-card,
.price-card,
.region-card,
.blog-card,
.node,
.comparison-row,
.faq-grid article,
.assurance-grid article,
.trust-wrap,
.savings span {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 234, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand:hover,
.brand:focus-visible {
  color: var(--blue);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  background: var(--blue);
  transform: translateY(-1px);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #3f3f46;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.btn-sm {
  min-height: 40px;
  padding: 9px 14px;
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.24);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--blue);
  border-color: #67e8f9;
  box-shadow: 0 10px 24px rgba(16, 36, 62, 0.1);
  transform: translateY(-2px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(6, 18, 34, 0.92) 0%, rgba(6, 18, 34, 0.82) 45%, rgba(6, 18, 34, 0.36) 100%),
    linear-gradient(0deg, rgba(6, 18, 34, 0.72), rgba(6, 18, 34, 0.1)),
    url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: block;
  padding: 80px 0 96px;
}

.hero-content {
  max-width: 740px;
}

.hero-panel {
  display: none;
}

.kicker {
  margin: 0 0 12px;
  color: #67e8f9;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: #f4f4f5;
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

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

.hero-stats {
  margin: 44px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
}

.hero-stats li {
  min-width: 150px;
  padding-left: 18px;
  border-left: 2px solid rgba(145, 194, 255, 0.8);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  color: #f4f4f5;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0;
}

.trust-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.trust-wrap p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.savings span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--navy);
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-wrap:hover {
  border-color: #67e8f9;
  box-shadow: 0 20px 48px rgba(16, 36, 62, 0.18);
}

.savings span:hover {
  color: var(--blue);
  background: #ecfeff;
  border-color: #67e8f9;
  transform: translateY(-1px);
}

section {
  padding: 94px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head .kicker {
  color: #0891b2;
}

.section-head h2 {
  max-width: 20ch;
}

.section-head p,
.card p,
.segment-card p,
.why-card p,
.resource-card p,
.region-card p,
.blog-card p,
.arch-grid p,
.price-card li,
.card li {
  color: var(--muted);
}

.service-grid,
.segment-grid,
.why-grid,
.resource-grid,
.pricing-grid,
.region-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.segment-card,
.why-card,
.resource-card,
.price-card,
.region-card,
.blog-card,
.diagram {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(16, 36, 62, 0.03);
}

.card {
  min-height: 285px;
}

.card:hover,
.segment-card:hover,
.why-card:hover,
.resource-card:hover,
.price-card:hover,
.region-card:hover,
.blog-card:hover {
  border-color: #67e8f9;
  box-shadow: 0 18px 40px rgba(16, 36, 62, 0.12);
  transform: translateY(-5px);
}

.card:hover h3,
.segment-card:hover h3,
.why-card:hover h3,
.resource-card:hover h3,
.price-card:hover h3,
.region-card:hover h3,
.blog-card:hover h3 {
  color: var(--blue);
}

.card ul,
.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.card li,
.price-card li {
  margin-top: 8px;
}

.card-accent {
  color: #ffffff;
  background: var(--navy);
  border-color: var(--navy);
}

.card-accent p,
.card-accent a {
  color: #d8e4f3;
}

.card-accent:hover {
  background: #17375f;
  border-color: #315d94;
}

.card-accent:hover h3 {
  color: #ffffff;
}

.card-accent a:hover,
.segment-card a:hover,
.footer-wrap a:hover {
  color: #67e8f9;
}

.architecture,
.pricing,
.regions,
.comparison,
.faq {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.arch-grid,
.cta-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.ticks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  position: relative;
  margin: 12px 0;
  padding-left: 24px;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.diagram {
  display: grid;
  gap: 12px;
  background: #18181b;
  color: #ffffff;
  box-shadow: var(--shadow);
  border-color: #25344a;
}

.node {
  border: 1px solid #2f415d;
  border-radius: 8px;
  background: #162338;
  padding: 14px 16px;
}

.node:hover {
  border-color: #4f83cf;
  background: #1b2f4c;
  transform: translateX(6px);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: #8cb8ff;
  box-shadow: var(--shadow);
}

.price-card.featured:hover {
  box-shadow: 0 24px 54px rgba(23, 105, 224, 0.2);
}

.tag {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  background: #ecfeff;
  color: var(--blue);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 1.85rem;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card .btn {
  width: 100%;
  margin-top: 18px;
}

.calculator {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator h3 {
  font-size: 1.6rem;
}

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

.calculator label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.calculator input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.calculator input:hover,
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #9fb9e6;
}

.calculator input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.12);
  outline: 0;
}

.calculator-total {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
}

.calculator-total strong {
  display: block;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.calculator-breakdown {
  display: grid;
  gap: 5px;
  color: #d4d4d8;
  font-size: 0.9rem;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row:hover {
  background: #ecfeff;
}

.comparison-head {
  color: #ffffff;
  background: var(--navy);
  font-weight: 800;
}

.security-detail {
  color: #ffffff;
  background: #18181b;
}

.security-detail .kicker {
  color: #67e8f9;
}

.security-detail p {
  color: #d4d4d8;
}

.security-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.assurance-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.assurance-grid article:hover {
  border-color: rgba(139, 197, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-grid article:hover {
  border-color: #67e8f9;
  box-shadow: 0 18px 40px rgba(16, 36, 62, 0.1);
  transform: translateY(-4px);
}

.cta {
  background: #18181b;
  color: #ffffff;
}

.cta .kicker {
  color: #67e8f9;
}

.cta p {
  color: #d4d4d8;
}

.cta-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.contact-line {
  color: #ffffff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.page-hero {
  padding: 94px 0 70px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 18, 34, 0.92), rgba(6, 18, 34, 0.62)),
    url("https://images.pexels.com/photos/325229/pexels-photo-325229.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 720px;
  color: #f4f4f5;
  font-size: 1.14rem;
}

.feature-band {
  padding: 84px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.detail-list article:hover {
  border-color: #67e8f9;
  box-shadow: 0 16px 34px rgba(16, 36, 62, 0.1);
  transform: translateY(-4px);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-metrics div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.mini-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.7rem;
}

.page-cta {
  padding: 76px 0;
  color: #ffffff;
  background: var(--navy);
}

.page-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-cta p {
  max-width: 660px;
  color: #d4d4d8;
}

.site-footer {
  background: #111113;
  color: #ffffff;
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #d4d4d8;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-nav,
  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px 20px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open a {
    padding: 12px 0;
  }

  .service-grid,
  .segment-grid,
  .why-grid,
  .resource-grid,
  .pricing-grid,
  .region-grid,
  .blog-grid,
  .arch-grid,
  .cta-wrap,
  .calculator,
  .security-detail-grid,
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(rgba(6, 18, 34, 0.84), rgba(6, 18, 34, 0.84)),
      url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1000");
  }

  .hero-grid {
    padding: 70px 0 82px;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats li {
    min-width: 0;
  }

  .service-grid,
  .segment-grid,
  .why-grid,
  .resource-grid,
  .pricing-grid,
  .region-grid,
  .blog-grid,
  .arch-grid,
  .cta-wrap,
  .calculator,
  .calculator-fields,
  .security-detail-grid,
  .assurance-grid,
  .faq-grid,
  .split-grid,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

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

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

  section {
    padding: 68px 0;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Premium Niimbuss UI pass */
.nx-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #f8fafc;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 247, 255, 0.58)),
    rgba(255, 255, 255, 0.68);
}

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

.site-nav {
  padding: 8px 12px;
  border: 1px solid rgba(217, 224, 234, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 78px);
  background-image:
    radial-gradient(circle at 78% 22%, rgba(79, 211, 170, 0.34), transparent 26%),
    radial-gradient(circle at 22% 18%, rgba(139, 197, 255, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(5, 14, 28, 0.96) 0%, rgba(8, 24, 43, 0.88) 50%, rgba(8, 24, 43, 0.58) 100%),
    url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.85fr);
  padding: 96px 0 112px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(145, 194, 255, 0.3);
  border-right: 0;
  border-bottom: 0;
}

.hero-copy {
  color: rgba(219, 232, 247, 0.92);
}

.hero-stats li {
  min-width: 164px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ui-console {
  min-height: 560px;
  padding: 0;
  border-radius: 24px;
  transform-style: preserve-3d;
  will-change: transform;
}

.console-toolbar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 22, 39, 0.62);
}

.console-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #6f829e;
}

.console-toolbar span:first-child {
  background: #ff6b6b;
}

.console-toolbar span:nth-child(2) {
  background: #ffbf57;
}

.console-toolbar span:nth-child(3) {
  background: #fbbf24;
}

.console-toolbar strong {
  margin-left: auto;
  color: #9eb2cc;
  font-size: 0.82rem;
}

.console-command {
  display: flex;
  gap: 12px;
  margin: 22px;
  padding: 16px;
  border: 1px solid rgba(139, 197, 255, 0.18);
  border-radius: 14px;
  background: rgba(5, 12, 24, 0.64);
  box-shadow: inset 0 0 28px rgba(23, 105, 224, 0.12);
}

.console-command span {
  color: #fbbf24;
  font-weight: 800;
}

.console-command code {
  color: #f4f4f5;
  white-space: normal;
}

.console-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px;
}

.console-status article {
  padding: 16px;
  border: 1px solid rgba(139, 197, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.console-status span {
  display: block;
  color: #9eb2cc;
  font-size: 0.78rem;
}

.console-status strong {
  display: block;
  margin: 6px 0 14px;
  color: #ffffff;
  font-size: 1.25rem;
}

.console-status i {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.console-status i::after {
  content: "";
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0891b2, #fbbf24);
  animation: metricFill 1s ease both;
}

.infra-map {
  position: relative;
  height: 190px;
  margin: 22px;
  border: 1px solid rgba(139, 197, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(7, 17, 31, 0.54);
  background-size: 28px 28px;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 197, 255, 0.36);
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(23, 105, 224, 0.88), rgba(19, 138, 107, 0.82));
  box-shadow: 0 0 34px rgba(79, 211, 170, 0.18);
  font-weight: 800;
}

.map-edge {
  left: 28px;
  top: 68px;
}

.map-compute {
  left: 36%;
  top: 26px;
}

.map-vpc {
  left: 52%;
  bottom: 28px;
}

.map-store {
  right: 30px;
  top: 68px;
}

.map-link {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #67e8f9, #fbbf24, transparent);
  transform-origin: left;
  animation: pulseLine 2.2s ease-in-out infinite;
}

.link-a {
  left: 82px;
  top: 96px;
  width: 34%;
  transform: rotate(-18deg);
}

.link-b {
  left: 42%;
  top: 80px;
  width: 26%;
  transform: rotate(38deg);
  animation-delay: 240ms;
}

.link-c {
  left: 58%;
  top: 106px;
  width: 30%;
  transform: rotate(-12deg);
  animation-delay: 480ms;
}

.console-feed {
  display: grid;
  gap: 10px;
  margin: 0 22px 22px;
}

.console-feed div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4f4f5;
  font-size: 0.92rem;
}

.console-feed span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow: 0 0 18px rgba(79, 211, 170, 0.7);
}

.deploy-flow {
  padding: 84px 0;
}

.deploy-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(217, 224, 234, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.76)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(16, 36, 62, 0.12);
  backdrop-filter: blur(18px);
}

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

.flow-steps article {
  position: relative;
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(217, 224, 234, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.flow-steps article::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -60%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(23, 105, 224, 0.1), transparent 58%);
  transform: rotate(16deg);
}

.flow-steps span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 800;
}

.flow-steps strong,
.flow-steps p {
  position: relative;
  z-index: 1;
  display: block;
}

.flow-steps strong {
  margin-top: 22px;
  color: var(--navy);
  font-size: 1.08rem;
}

.flow-steps p {
  margin: 9px 0 0;
  color: var(--muted);
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

.card,
.price-card,
.resource-card,
.region-card,
.blog-card,
.faq-grid article,
.detail-list article,
.flow-steps article {
  border-radius: 18px;
}

.card:hover,
.price-card:hover,
.resource-card:hover,
.region-card:hover,
.blog-card:hover,
.faq-grid article:hover,
.detail-list article:hover,
.flow-steps article:hover {
  border-color: rgba(23, 105, 224, 0.32);
  box-shadow:
    0 24px 60px rgba(16, 36, 62, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.section-head h2,
.deploy-shell h2 {
  text-wrap: balance;
}

@media (max-width: 980px) {
  .site-nav {
    border-radius: 18px;
  }

  .hero-grid,
  .deploy-shell {
    grid-template-columns: 1fr;
  }

  .ui-console {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .console-status,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .infra-map {
    height: 220px;
  }

  .map-compute {
    left: 28px;
    top: 24px;
  }

  .map-vpc {
    left: 42%;
    bottom: 24px;
  }

  .map-store {
    right: 26px;
    top: 28px;
  }

  .link-a,
  .link-b,
  .link-c {
    display: none;
  }
}

/* Modern UI layer */
@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 72px 72px, -72px -72px;
  }
}

@keyframes floatPanel {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.36;
    transform: scaleX(0.78);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes scanGlow {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes metricFill {
  from {
    width: 12%;
  }

  to {
    width: var(--fill, 78%);
  }
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    linear-gradient(90deg, rgba(23, 105, 224, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(19, 138, 107, 0.06) 1px, transparent 1px),
    #f8fafc;
  background-size: auto, 72px 72px, 72px 72px, auto;
  animation: gridShift 22s linear infinite;
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(16, 36, 62, 0.08);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #18181b, #0891b2 58%, #f59e0b);
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.18);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-130%);
  animation: scanGlow 3.8s ease-in-out infinite;
}

.site-nav a {
  position: relative;
  border-bottom: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(6, 18, 34, 0.94) 0%, rgba(6, 18, 34, 0.82) 48%, rgba(6, 18, 34, 0.48) 100%),
    linear-gradient(135deg, rgba(23, 105, 224, 0.22), rgba(19, 138, 107, 0.13)),
    url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #67e8f9, #fbbf24, transparent);
  animation: pulseLine 2.8s ease-in-out infinite;
  transform-origin: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.hero-content {
  animation: revealUp 700ms ease both;
}

.hero-panel {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(14, 29, 51, 0.7);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
  animation: floatPanel 6s ease-in-out infinite;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 197, 255, 0.75), rgba(79, 211, 170, 0.46), transparent 68%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 90px;
  border: 1px solid rgba(139, 197, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(79, 211, 170, 0.7) 12% 13%, transparent 13% 34%, rgba(139, 197, 255, 0.7) 34% 35%, transparent 35% 58%, rgba(255, 191, 87, 0.8) 58% 59%, transparent 59%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 100% 18px;
  opacity: 0.9;
  pointer-events: none;
}

.panel-title {
  margin: 0 0 18px;
  color: #f4f4f5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: var(--fill, 76%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0891b2, #fbbf24);
  animation: metricFill 900ms ease both;
}

.metric-row:nth-of-type(2)::after {
  --fill: 58%;
}

.metric-row:nth-of-type(3)::after {
  --fill: 88%;
}

.metric-row:nth-of-type(4)::after {
  --fill: 66%;
}

.metric-row span {
  color: #b8c7dc;
}

.metric-row strong {
  color: #ffffff;
}

.healthy {
  color: #fbbf24;
}

.panel-foot {
  position: relative;
  z-index: 1;
  margin: 110px 0 0;
  color: #b8c7dc;
}

.hero-stats li,
.trust-wrap,
.card,
.segment-card,
.why-card,
.resource-card,
.price-card,
.region-card,
.blog-card,
.faq-grid article,
.detail-list article,
.calculator,
.comparison-table,
.contact-form {
  backdrop-filter: blur(16px);
}

.hero-stats li {
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid rgba(145, 194, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.trust-wrap {
  background: rgba(255, 255, 255, 0.78);
}

.card,
.segment-card,
.why-card,
.resource-card,
.price-card,
.region-card,
.blog-card,
.faq-grid article,
.detail-list article {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.card::before,
.segment-card::before,
.why-card::before,
.resource-card::before,
.price-card::before,
.region-card::before,
.blog-card::before,
.faq-grid article::before,
.detail-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), #ffbf57);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.card:hover::before,
.segment-card:hover::before,
.why-card:hover::before,
.resource-card:hover::before,
.price-card:hover::before,
.region-card:hover::before,
.blog-card:hover::before,
.faq-grid article:hover::before,
.detail-list article:hover::before {
  transform: scaleX(1);
}

.card:hover,
.segment-card:hover,
.why-card:hover,
.resource-card:hover,
.price-card:hover,
.region-card:hover,
.blog-card:hover,
.faq-grid article:hover,
.detail-list article:hover {
  box-shadow: 0 24px 56px rgba(16, 36, 62, 0.16);
  transform: translateY(-8px);
}

.card h3,
.segment-card h3,
.why-card h3,
.resource-card h3,
.price-card h3,
.region-card h3,
.blog-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card h3::before,
.resource-card h3::before,
.region-card h3::before,
.blog-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 6px rgba(23, 105, 224, 0.1);
}

.calculator {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 255, 0.76)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(16, 36, 62, 0.14);
}

.calculator-total {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.95), rgba(16, 36, 62, 0.96) 56%, rgba(19, 138, 107, 0.92));
}

.calculator-total::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
  pointer-events: none;
}

.calculator-total > * {
  position: relative;
  z-index: 1;
}

.comparison-table {
  box-shadow: 0 20px 52px rgba(16, 36, 62, 0.1);
}

.comparison-head {
  background: linear-gradient(135deg, #18181b, #0891b2);
}

.security-detail,
.page-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 36, 62, 0.96), rgba(11, 23, 40, 0.98)),
    linear-gradient(90deg, rgba(139, 197, 255, 0.08) 1px, transparent 1px);
}

.security-detail::before,
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 197, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(79, 211, 170, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent);
  pointer-events: none;
}

.security-detail > *,
.page-cta > * {
  position: relative;
  z-index: 1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  body {
    animation: none;
  }

  .hero {
    background-image:
      linear-gradient(rgba(6, 18, 34, 0.86), rgba(6, 18, 34, 0.86)),
      linear-gradient(135deg, rgba(23, 105, 224, 0.18), rgba(19, 138, 107, 0.12)),
      url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1000");
  }

  .hero-panel {
    padding: 20px;
  }

  .panel-foot {
    margin-top: 92px;
  }
}

/* Charcoal / teal / amber theme override */
:root {
  --ink: #18181b;
  --muted: #62626a;
  --line: #d4d4d8;
  --paper: #ffffff;
  --surface: #f8fafc;
  --navy: #18181b;
  --blue: #0891b2;
  --blue-dark: #0e7490;
  --green: #f59e0b;
  --shadow: 0 18px 45px rgba(24, 24, 27, 0.14);
}

body {
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    linear-gradient(90deg, rgba(8, 145, 178, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(245, 158, 11, 0.07) 1px, transparent 1px),
    #f8fafc;
}

.nx-canvas {
  background: #f8fafc;
}

.site-header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 254, 255, 0.58)),
    rgba(255, 255, 255, 0.68);
}

.brand-mark,
.flow-steps span,
.service-icon {
  background: linear-gradient(135deg, #18181b, #0891b2 52%, #f59e0b);
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.22);
}

.site-nav a::after,
.card::before,
.segment-card::before,
.why-card::before,
.resource-card::before,
.price-card::before,
.region-card::before,
.blog-card::before,
.faq-grid article::before,
.detail-list article::before,
.ticks li::before {
  background: linear-gradient(90deg, #0891b2, #f59e0b);
}

.btn-primary {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #0e7490, #155e75);
  box-shadow: 0 14px 28px rgba(8, 145, 178, 0.26);
}

.hero {
  background-image:
    radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.3), transparent 26%),
    radial-gradient(circle at 22% 18%, rgba(103, 232, 249, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(12, 12, 15, 0.96) 0%, rgba(24, 24, 27, 0.9) 50%, rgba(24, 24, 27, 0.58) 100%),
    url("https://images.pexels.com/photos/5480781/pexels-photo-5480781.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(12, 12, 15, 0.92), rgba(24, 24, 27, 0.62)),
    url("https://images.pexels.com/photos/325229/pexels-photo-325229.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.kicker,
.hero .kicker,
.cta .kicker,
.security-detail .kicker {
  color: #67e8f9;
}

.hero-copy,
.page-hero p,
.console-command code,
.console-feed div {
  color: #f4f4f5;
}

.healthy,
.console-command span,
.console-feed span {
  color: #f59e0b;
}

.console-feed span {
  background: #f59e0b;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.55);
}

.console-toolbar span:nth-child(3) {
  background: #f59e0b;
}

.console-command {
  border-color: rgba(103, 232, 249, 0.2);
  box-shadow: inset 0 0 28px rgba(8, 145, 178, 0.14);
}

.console-status i::after,
.metric-row::after,
.map-link,
.calculator-total {
  background: linear-gradient(90deg, #0891b2, #f59e0b);
}

.map-node {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.92), rgba(245, 158, 11, 0.84));
  box-shadow: 0 0 34px rgba(245, 158, 11, 0.18);
}

.comparison-head {
  background: linear-gradient(135deg, #18181b, #0891b2);
}

.calculator-total {
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.96), rgba(24, 24, 27, 0.96) 56%, rgba(245, 158, 11, 0.9));
}

.security-detail,
.page-cta,
.site-footer {
  background:
    linear-gradient(135deg, rgba(24, 24, 27, 0.98), rgba(12, 12, 15, 0.98));
}

.card h3::before,
.resource-card h3::before,
.region-card h3::before,
.blog-card h3::before {
  background: linear-gradient(135deg, #0891b2, #f59e0b);
  box-shadow: 0 0 0 6px rgba(8, 145, 178, 0.1);
}

.card:hover,
.price-card:hover,
.resource-card:hover,
.region-card:hover,
.blog-card:hover,
.faq-grid article:hover,
.detail-list article:hover,
.flow-steps article:hover {
  border-color: rgba(8, 145, 178, 0.34);
  box-shadow:
    0 24px 60px rgba(24, 24, 27, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

/* Dark product surface override */
:root {
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.14);
  --paper: rgba(24, 24, 27, 0.78);
  --surface: #09090b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 145, 178, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    #09090b;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.nx-canvas {
  background: #09090b;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(24, 24, 27, 0.82), rgba(9, 9, 11, 0.72)),
    rgba(9, 9, 11, 0.72);
}

.site-nav {
  color: #d4d4d8;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 27, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand,
.header-action,
.btn-secondary {
  color: #f4f4f5;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.trust-wrap,
.deploy-shell,
.calculator,
.contact-form,
.comparison-table,
.card,
.segment-card,
.why-card,
.resource-card,
.price-card,
.region-card,
.blog-card,
.faq-grid article,
.detail-list article,
.mini-metrics div,
.flow-steps article {
  color: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(39, 39, 42, 0.88), rgba(24, 24, 27, 0.72)),
    rgba(24, 24, 27, 0.72);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.architecture,
.pricing,
.regions,
.comparison,
.faq,
.platform {
  background:
    radial-gradient(circle at 86% 12%, rgba(8, 145, 178, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(24, 24, 27, 0.96), rgba(9, 9, 11, 0.98));
  border-color: rgba(255, 255, 255, 0.1);
}

.services,
.segments,
.why,
.resources,
.blog,
.feature-band,
.contact-section,
.deploy-flow {
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 158, 11, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.92), rgba(24, 24, 27, 0.94));
}

.trust-wrap p,
.card p,
.segment-card p,
.why-card p,
.resource-card p,
.region-card p,
.blog-card p,
.arch-grid p,
.price-card li,
.card li,
.section-head p,
.calculator p,
.comparison-row,
.faq-grid article p,
.detail-list article p,
.mini-metrics span,
.flow-steps p {
  color: #a1a1aa;
}

.section-head h2,
.card h3,
.segment-card h3,
.why-card h3,
.resource-card h3,
.price-card h3,
.region-card h3,
.blog-card h3,
.faq-grid h3,
.detail-list h3,
.calculator h3,
.flow-steps strong,
.price,
.trust-wrap p {
  color: #f4f4f5;
}

.savings span,
.contact-points span,
.tag,
.plan-tag {
  color: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label,
.calculator label {
  color: #f4f4f5;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.calculator input {
  color: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 11, 0.58);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #71717a;
}

.comparison-row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.comparison-row:hover,
.strip-grid a:hover {
  background: rgba(8, 145, 178, 0.12);
}

.strip-grid {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 27, 0.86);
}

.strip-grid a {
  color: #f4f4f5;
  border-right-color: rgba(255, 255, 255, 0.1);
}

.node,
.diagram,
.console-stat,
.resource-table {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 11, 0.56);
}

.site-nav.open {
  background: rgba(24, 24, 27, 0.98);
}

/* Cursor interaction effect */
.cursor-spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      420px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
      rgba(8, 145, 178, 0.16),
      rgba(245, 158, 11, 0.07) 34%,
      transparent 68%
    );
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-spotlight.is-active {
  opacity: 1;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 160ms ease, width 160ms ease, height 160ms ease, border-color 160ms ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(103, 232, 249, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 28px rgba(8, 145, 178, 0.32),
    inset 0 0 18px rgba(245, 158, 11, 0.12);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.65);
}

body.cursor-active .cursor-ring,
body.cursor-active .cursor-dot {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(245, 158, 11, 0.86);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-spotlight,
  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

/* Modern scrolling experience */
html {
  scroll-padding-top: 96px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #f59e0b);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.36);
  pointer-events: none;
}

.site-header {
  transition:
    min-height 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .nav-wrap {
  min-height: 64px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #f4f4f5;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.92), rgba(245, 158, 11, 0.86)),
    rgba(24, 24, 27, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 24px 52px rgba(8, 145, 178, 0.28);
  transform: translateY(-3px) scale(1.03);
}

.hero-content,
.ui-console,
.page-hero .container {
  transform: translateY(var(--parallax-y, 0));
  transition: transform 80ms linear;
}

.reveal {
  filter: blur(8px);
}

.reveal.is-visible {
  filter: blur(0);
}

@media (min-width: 1100px) and (prefers-reduced-motion: no-preference) {
  main > section {
    scroll-margin-top: 86px;
  }
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* Full animated 3D model section */
.three-cloud {
  position: relative;
  min-height: min(820px, calc(100svh - 40px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 38%, rgba(8, 145, 178, 0.24), transparent 34%),
    radial-gradient(circle at 28% 72%, rgba(245, 158, 11, 0.16), transparent 32%),
    linear-gradient(135deg, #050507, #111113 55%, #18181b);
}

.three-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.036) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 86%);
  pointer-events: none;
}

#cloudModelCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.three-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.42fr);
  gap: 44px;
  align-items: center;
  pointer-events: none;
}

.three-copy {
  max-width: 620px;
  transform: translateY(var(--model-copy-y, 0));
}

.three-cloud .reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.three-copy h2 {
  max-width: 12ch;
}

.three-copy p {
  max-width: 560px;
  color: #d4d4d8;
  font-size: 1.08rem;
}

.three-stats {
  display: grid;
  gap: 16px;
  justify-self: end;
  width: min(100%, 360px);
  pointer-events: auto;
}

.model-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(9, 9, 11, 0.54);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.three-cloud canvas {
  filter: saturate(1.3) contrast(1.14);
}

.model-stat span {
  display: block;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-stat strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.08rem;
}

.image-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(8, 145, 178, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(24, 24, 27, 0.98), rgba(9, 9, 11, 0.96));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 20px;
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #111113;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
}

.image-panel-large {
  min-height: 520px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 32%, rgba(9, 9, 11, 0.74)),
    linear-gradient(90deg, rgba(8, 145, 178, 0.16), transparent 42%);
  pointer-events: none;
}

.image-panel:hover img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.08);
}

.image-panel figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(9, 9, 11, 0.58);
  backdrop-filter: blur(16px);
}

.image-panel figcaption span {
  display: block;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-panel figcaption strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .three-overlay,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .three-stats {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .three-cloud {
    min-height: 760px;
    align-items: start;
  }

  .three-overlay {
    align-content: start;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .three-copy h2 {
    max-width: 11ch;
  }

  .three-copy p {
    font-size: 1rem;
  }

  .three-stats {
    margin-top: 280px;
    width: 100%;
  }

  .model-stat {
    padding: 14px 15px;
  }

  .image-panel,
  .image-panel-large {
    min-height: 360px;
  }

  .image-panel figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }
}

/* 3D visual asset layer */
.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  perspective: 1200px;
  background:
    radial-gradient(circle at 50% 45%, rgba(103, 232, 249, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(39, 39, 42, 0.82), rgba(9, 9, 11, 0.72));
}

.hero-visual::after {
  display: none;
}

.hero-visual img,
.media-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(112%, 760px);
  max-width: none;
  border-radius: 18px;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, 0, 46px) rotateX(3deg) rotateY(-5deg);
}

.orbit-ring {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 50%;
  transform: rotateX(70deg) rotateZ(-18deg);
  pointer-events: none;
}

.orbit-a {
  width: 82%;
  aspect-ratio: 1;
  animation: orbitSpin 14s linear infinite;
}

.orbit-b {
  width: 64%;
  aspect-ratio: 1;
  border-color: rgba(245, 158, 11, 0.22);
  animation: orbitSpin 18s linear infinite reverse;
}

.visual-glass,
.depth-card {
  position: absolute;
  z-index: 2;
  min-width: 176px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #f4f4f5;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(9, 9, 11, 0.62);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.visual-glass span,
.depth-card span {
  display: block;
  color: #a1a1aa;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-glass strong,
.depth-card strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 1.05rem;
}

.visual-top {
  right: -18px;
  top: 46px;
  transform: translateZ(92px) rotateY(-8deg);
}

.visual-mid {
  left: -24px;
  top: 45%;
  transform: translateZ(110px) rotateY(8deg);
}

.visual-bottom {
  right: 34px;
  bottom: 36px;
  transform: translateZ(120px) rotateX(4deg);
}

.experience-3d {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(8, 145, 178, 0.18), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(245, 158, 11, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.96), rgba(24, 24, 27, 0.94));
}

.experience-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

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

.experience-copy p {
  color: #a1a1aa;
}

.media-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(103, 232, 249, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(39, 39, 42, 0.78), rgba(9, 9, 11, 0.62));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  perspective: 1200px;
}

.hero-visual,
.media-stage {
  width: 100%;
  max-width: 100%;
}

.media-stage img {
  width: min(108%, 780px);
  max-width: none;
  transform: translate3d(0, 8px, 36px) rotateX(4deg) rotateY(-4deg);
  filter: saturate(1.08) contrast(1.06);
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 18%;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.22);
  filter: blur(34px);
}

.depth-card-one {
  left: 24px;
  top: 28px;
}

.depth-card-two {
  right: 26px;
  top: 42%;
}

.depth-card-three {
  left: 44px;
  bottom: 34px;
}

@keyframes orbitSpin {
  from {
    transform: rotateX(70deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(360deg);
  }
}

@media (max-width: 980px) {
  .hero-visual {
    min-height: 460px;
  }

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

  .media-stage {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .hero-visual {
    min-height: 360px;
    overflow: hidden;
  }

  .hero-visual img,
  .media-stage img {
    width: 132%;
  }

  .visual-glass,
  .depth-card {
    min-width: 142px;
    padding: 11px 12px;
  }

  .visual-glass strong,
  .depth-card strong {
    font-size: 0.9rem;
  }

  .visual-top {
    left: 14px;
    right: auto;
    top: 18px;
  }

  .visual-mid {
    left: 14px;
    top: 48%;
  }

  .visual-bottom {
    left: 14px;
    right: auto;
    bottom: 18px;
  }

  .media-stage {
    min-height: 360px;
  }

  .depth-card-one {
    left: 14px;
    top: 14px;
  }

  .depth-card-two {
    right: 14px;
    top: auto;
    bottom: 82px;
  }

  .depth-card-three {
    left: 14px;
    bottom: 14px;
  }
}
