:root {
  --ink: #101827;
  --muted: #617086;
  --line: #d8e1eb;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #3190f6;
  --blue-2: #0d58b8;
  --teal: #29c7d9;
  --red: #fe5a5c;
  --green: #20a66a;
  --shadow: 0 22px 70px rgba(16, 24, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216, 225, 235, 0.82);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  display: block;
  width: 152px;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #27364a;
  font-size: 14px;
  font-weight: 650;
}

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

.nav a:hover {
  border-color: var(--red);
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
}

.nav-cta {
  color: #fff;
  background: var(--blue);
}

.button--primary {
  border: 1px solid var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(254, 90, 92, 0.28);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.icon {
  width: 18px;
  text-align: center;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 10px 24px 18px;
  background: #fff;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  padding: 64px max(24px, calc((100vw - 1200px) / 2)) 56px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(16, 24, 39, 0.93) 0%, rgba(13, 88, 184, 0.84) 54%, rgba(49, 144, 246, 0.68) 100%),
    #101827;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background:
    linear-gradient(154deg, transparent 0 18%, rgba(255, 255, 255, 0.14) 18.2% 19%, transparent 19.2%),
    linear-gradient(141deg, transparent 0 36%, rgba(255, 255, 255, 0.09) 36.2% 37%, transparent 37.2%),
    linear-gradient(169deg, transparent 0 54%, rgba(255, 255, 255, 0.1) 54.2% 55%, transparent 55.2%);
  opacity: 0.8;
  clip-path: polygon(0 50%, 10% 42%, 20% 58%, 31% 32%, 44% 64%, 56% 35%, 71% 62%, 84% 28%, 100% 55%, 100% 100%, 0 100%);
}

.city {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 54%;
  height: 45%;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18px, transparent 18px 54px);
  clip-path: polygon(0 100%, 0 58%, 9% 58%, 9% 45%, 18% 45%, 18% 66%, 28% 66%, 28% 35%, 40% 35%, 40% 68%, 52% 68%, 52% 48%, 64% 48%, 64% 70%, 75% 70%, 75% 38%, 88% 38%, 88% 61%, 100% 61%, 100% 100%);
  opacity: 0.72;
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 40%, #000 0, transparent 64%);
}

.data-stream {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, var(--teal), transparent);
  opacity: 0.75;
  animation: stream 6s linear infinite;
}

.data-stream--two {
  top: 54%;
  right: -15%;
  width: 34%;
  animation-delay: 2s;
}

@keyframes stream {
  from { transform: translateX(0); }
  to { transform: translateX(-220%); }
}

.hero__content,
.hero__product {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4d4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.hero__product {
  justify-self: end;
  width: min(100%, 640px);
}

.console-shot {
  display: block;
  width: 100%;
  aspect-ratio: 1280 / 591;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: -36px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 4;
}

.trust div {
  min-height: 128px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.1);
}

.trust div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust strong {
  display: block;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.trust span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 104px 24px;
}

.section--intro {
  padding-top: 104px;
}

.section__head {
  max-width: 800px;
  margin-bottom: 42px;
}

.section__head h2,
.automation h2,
.cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section__head p:not(.eyebrow),
.automation__copy p,
.cta p {
  color: var(--muted);
  font-size: 17px;
}

.about-section {
  padding-bottom: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.about-layout h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
}

.about-layout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about-mission {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.08);
}

.about-mission h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.feature-grid,
.workloads,
.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature,
.workloads article,
.edition-grid article,
.recovery-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature {
  padding: 30px;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 22px;
}

.feature h3,
.workloads h3,
.edition-grid h3,
.recovery-list h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature p,
.workloads p,
.edition-grid p,
.recovery-list p {
  margin: 0;
  color: var(--muted);
}

.workload-section,
.recovery-section,
.environments {
  max-width: none;
  background: var(--soft);
}

.workload-section > *,
.recovery-section > *,
.environments > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.workloads article {
  padding: 24px;
}

.workload-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.workload-top span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--blue-2);
  background: #eaf4ff;
  font-weight: 900;
}

.workload-top h3 {
  margin: 0;
}

.workloads article p {
  margin-top: 18px;
}

.automation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 104px 24px;
}

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

.automation__steps div {
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(160deg, var(--blue-2), #172239);
  box-shadow: var(--shadow);
}

.automation__steps span {
  display: block;
  color: #ffd0d1;
  font-size: 13px;
  font-weight: 850;
}

.automation__steps strong {
  display: block;
  margin-top: 40px;
  font-size: 22px;
}

.automation__steps p {
  color: rgba(255, 255, 255, 0.72);
}

.recovery-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.recovery-map {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(49, 144, 246, 0.34), transparent 34%),
    linear-gradient(145deg, #111b2b, var(--blue-2));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.recovery-screen {
  position: absolute;
  inset: 42px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.recovery-screen__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.recovery-screen__head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(254, 90, 92, 0.16);
}

.restore-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.restore-points button {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
}

.restore-points button.active {
  color: #fff;
  border-color: rgba(254, 90, 92, 0.6);
  background: var(--red);
}

.recovery-screen p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.recovery-list article {
  padding: 26px;
}

.env-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.env-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #26364b;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
}

.env-tabs button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.env-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.env-panel span {
  padding: 12px 14px;
  border-radius: 8px;
  color: #27364a;
  background: var(--soft);
  font-size: 14px;
  font-weight: 680;
}

.edition-grid article {
  padding: 30px;
}

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

.edition-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.edition-grid .highlight {
  border-color: rgba(254, 90, 92, 0.38);
  box-shadow: 0 22px 54px rgba(254, 90, 92, 0.14);
}

.support-section {
  padding-top: 0;
}

.support-box {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.08);
}

.support-box h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.support-box p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.support-box a,
.contact-email a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-box a {
  color: var(--blue-2);
}

.cta {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 56px 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(16, 24, 39, 0.96), rgba(13, 88, 184, 0.92)),
    #101827;
}

.cta .eyebrow {
  color: #ffd0d1;
}

.cta p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-email {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 64px;
  border-top: 1px solid var(--line);
}

.footer p,
.footer span,
.footer a {
  color: var(--muted);
}

.footer strong,
.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

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

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-top: 64px;
  }

  .hero__product {
    justify-self: stretch;
    width: 100%;
  }

  .trust,
  .about-layout,
  .feature-grid,
  .workloads,
  .automation,
  .recovery-layout,
  .edition-grid,
  .cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .trust {
    margin-top: 0;
  }

  .trust div,
  .trust div:first-child,
  .trust div:last-child {
    border-radius: 0;
  }

  .automation__steps,
  .recovery-list {
    grid-template-columns: 1fr;
  }

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

  .editions .edition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar__inner {
    min-height: 66px;
    padding: 0 16px;
  }

  .hero,
  .section,
  .automation,
  .cta,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .lead {
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__badges {
    margin-top: 18px;
  }

  .hero__badges span {
    font-size: 12px;
  }

  .hero__product {
    display: none;
  }

  .env-panel {
    grid-template-columns: 1fr;
  }

  .recovery-map {
    min-height: 360px;
  }

  .recovery-screen {
    inset: 20px;
    padding: 20px;
  }

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