:root {
  color-scheme: dark;
  --page: #050910;
  --page-2: #07161a;
  --ink: rgba(249, 253, 255, 0.96);
  --muted: rgba(222, 235, 246, 0.72);
  --soft: rgba(222, 235, 246, 0.52);
  --line: rgba(132, 204, 255, 0.18);
  --line-strong: rgba(132, 204, 255, 0.34);
  --surface: rgba(24, 57, 72, 0.64);
  --surface-2: rgba(12, 28, 34, 0.72);
  --blue: #4da3ff;
  --cyan: #65d8ff;
  --mint: #63d39c;
  --amber: #ffc857;
  --coral: #ff8a65;
  --pink: #ff7ccb;
  --violet: #a78bfa;
  --radius: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(77, 163, 255, 0.026), transparent 32%),
    radial-gradient(circle at 18% 74%, rgba(99, 211, 156, 0.024), transparent 30%),
    linear-gradient(132deg, rgba(6, 15, 22, 0.99) 0%, rgba(4, 8, 15, 1) 52%, rgba(6, 14, 16, 1) 100%),
    var(--page);
  color: var(--ink);
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.011) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.78) 58%, transparent 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 5, 10, 0.74), transparent 24%, transparent 76%, rgba(0, 5, 10, 0.64)),
    linear-gradient(180deg, rgba(101, 216, 255, 0.012), transparent 34%, rgba(99, 211, 156, 0.012));
  content: "";
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(101, 216, 255, 0.92);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

.topbar,
.section-shell,
.footer {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(117, 203, 255, 0.42);
  border-radius: 12px;
  background: #071522;
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  transform: translateY(calc(-100% - 18px));
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid rgba(101, 216, 255, 0.92);
  outline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1596px, calc(100% - 60px));
  min-height: 48px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.topbar.is-elevated {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(29, 60, 86, 0.88), rgba(8, 18, 29, 0.84)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.18);
}

.brand,
.topbar nav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: white;
  font-size: 1.18rem;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
}

.topbar nav {
  justify-content: center;
  gap: 5px;
}

.topbar nav a {
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.topbar nav a:hover,
.topbar nav a.is-active {
  background: rgba(101, 216, 255, 0.10);
  color: white;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(117, 203, 255, 0.24);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 19, 31, 0.72);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(117, 203, 255, 0.38);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(50, 123, 224, 0.98), rgba(34, 77, 166, 0.96)),
    rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(20, 76, 128, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(117, 230, 255, 0.68);
}

.button-small {
  min-height: 48px;
  padding: 0 24px;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(4, 12, 21, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-play {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid rgba(222, 235, 246, 0.34);
  border-radius: 999px;
}

.button-play::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(249, 253, 255, 0.88);
  transform: translate(-36%, -50%);
  content: "";
}

.cta-short {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(58px, 6.7vw, 94px) 0 clamp(62px, 7vw, 108px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(540px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(34px, 4.4vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 630px;
}

h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(3.55rem, 4.95vw, 5.55rem);
  line-height: 1.10;
  letter-spacing: 0;
}

h1 span {
  display: block;
  background: linear-gradient(180deg, #f7fbff 16%, #a9ccff 96%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 3.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.14;
}

.hero-copy > p,
.product-copy p,
.pricing-copy p,
.operations-copy p,
.support-copy p,
.price-card p,
.price-card li,
.operations-grid p,
.price-status small,
.support-topics span,
.proof-band span,
.hero-proof span,
.cloud-widget p,
.form-note,
.success-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy > p {
  max-width: 445px;
  margin-bottom: 0;
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 545px;
  margin-top: 17px;
}

.hero-proof span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 35px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 760;
}

.hero-proof span::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(99, 211, 156, 0.62);
  content: "";
}

.hero-proof b {
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.widget-cloud {
  position: relative;
  min-height: clamp(510px, 39vw, 655px);
  isolation: isolate;
  overflow: visible;
}

.widget-cloud::before {
  position: absolute;
  inset: 5% 4% 2% -3%;
  z-index: -1;
  pointer-events: none;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 52% 52%, rgba(77, 163, 255, 0.19), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 53% 52%, black 0%, black 54%, transparent 76%);
  opacity: 0.64;
  content: "";
}

.widget-cloud::after {
  position: absolute;
  inset: 3% 9% 8% 1%;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(126, 190, 239, 0.105);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 52%, rgba(77, 163, 255, 0.12), transparent 48%),
    radial-gradient(ellipse at 64% 52%, rgba(99, 211, 156, 0.082), transparent 36%);
  box-shadow:
    0 0 0 38px rgba(126, 190, 239, 0.025),
    0 0 0 78px rgba(126, 190, 239, 0.014);
  opacity: 0.92;
  transform: rotate(-8deg);
  content: "";
}

.cloud-orbit {
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 211, 240, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 35%, rgba(255, 255, 255, 0.13), transparent 32%),
    rgba(8, 21, 34, 0.74);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  color: rgba(222, 235, 246, 0.78);
  animation: orbitFloat 13s ease-in-out infinite;
}

.cloud-orbit svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.cloud-orbit path,
.cloud-orbit rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.orbit-check {
  top: 5%;
  left: 42%;
}

.orbit-check svg {
  width: 17px;
  height: 17px;
}

.orbit-inbox {
  top: 34%;
  left: -1%;
  animation-delay: -4s;
}

.orbit-message {
  top: 52%;
  right: 8%;
  animation-delay: -7s;
}

.orbit-message svg {
  width: 19px;
  height: 19px;
}

.orbit-mail {
  right: 66%;
  bottom: 6%;
  animation-delay: -10s;
}

.cloud-widget {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 11px;
  padding: clamp(21px, 1.95vw, 27px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, rgba(126, 190, 239, 0.18));
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 12%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 34%),
    linear-gradient(146deg, rgba(35, 73, 96, 0.72), rgba(7, 18, 30, 0.84) 72%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 30px 88px rgba(0, 0, 0, 0.34),
    0 0 44px color-mix(in srgb, var(--accent) 5%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.062);
  animation: widgetFloat 12s ease-in-out infinite;
}

.cloud-widget::before {
  display: none;
}

.cloud-widget::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 36%, transparent));
  opacity: 0.58;
  content: "";
}

.cloud-widget span {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  color: rgba(249, 253, 255, 0.92);
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  font-style: italic;
  font-weight: 650;
  line-height: 1;
}

.cloud-widget span::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 55%, transparent);
  content: "";
}

.cloud-widget strong {
  max-width: 16ch;
  color: white;
  font-size: clamp(1.08rem, 1.35vw, 1.52rem);
  font-style: italic;
  font-weight: 720;
  line-height: 1.16;
}

.cloud-widget p {
  max-width: 27ch;
  margin: 0;
  font-size: clamp(0.8rem, 0.86vw, 0.98rem);
  font-style: italic;
  font-weight: 520;
}

.cloud-focus p {
  max-width: 35ch;
}

.cloud-focus strong {
  margin-top: 5px;
}

.cloud-widget em {
  justify-self: start;
  min-height: 25px;
  padding: 6px 9px;
  border: 1px solid rgba(126, 190, 239, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(238, 247, 255, 0.82);
  font-size: 0.62rem;
  font-style: italic;
  font-weight: 740;
  text-transform: uppercase;
}

.cloud-focus {
  --accent: var(--blue);
  position: absolute;
  top: 15%;
  left: 4%;
  z-index: 3;
  width: 52%;
  min-height: 212px;
  transform: translateY(-10px) rotate(-1.1deg);
}

.cloud-ticket {
  --accent: var(--amber);
  position: absolute;
  top: 17%;
  right: 7%;
  z-index: 2;
  width: 38%;
  min-height: 205px;
  animation-delay: -3s;
  transform: translate(4px, 2px) rotate(1.1deg);
}

.cloud-task {
  --accent: var(--cyan);
  position: absolute;
  bottom: 16.6%;
  left: -1.5%;
  z-index: 2;
  width: 40%;
  min-height: 205px;
  animation-delay: -5s;
  transform: translateY(8px) rotate(0.7deg);
}

.cloud-waiting {
  --accent: var(--mint);
  position: absolute;
  right: 20%;
  bottom: 14.1%;
  z-index: 3;
  width: 40%;
  min-height: 205px;
  animation-delay: -2s;
  transform: translate(-2px, 10px) rotate(-0.6deg);
}

.cloud-card-icon {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 39px;
  height: 39px;
  padding: 6px;
  border: 0;
  border-radius: 0;
  color: color-mix(in srgb, var(--accent) 82%, white);
  opacity: 0.54;
}

.cloud-focus .cloud-card-icon {
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, rgba(126, 190, 239, 0.14));
  border-radius: 999px;
  opacity: 0.78;
}

.cloud-ticket .cloud-card-icon,
.cloud-waiting .cloud-card-icon {
  color: rgba(202, 219, 236, 0.55);
  opacity: 0.54;
}

.cloud-task .cloud-card-icon {
  color: color-mix(in srgb, var(--blue) 72%, white);
  opacity: 0.62;
}

.cloud-card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.focus-bars {
  display: grid;
  gap: 7px;
  margin-top: 7px;
  width: 100%;
  min-width: 0;
}

.focus-bars i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77, 163, 255, 0.68), rgba(255, 255, 255, 0.10));
}

.focus-bars i:nth-child(2) {
  width: 76%;
  background: linear-gradient(90deg, rgba(99, 211, 156, 0.68), rgba(255, 255, 255, 0.09));
}

.focus-bars i:nth-child(3) {
  width: 52%;
  background: linear-gradient(90deg, rgba(255, 200, 87, 0.68), rgba(255, 255, 255, 0.08));
}

@keyframes widgetFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

.proof-band {
  position: absolute;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  left: 50%;
  width: 100vw;
  margin-top: 0;
  margin-left: -50vw;
  border-top: 1px solid rgba(126, 190, 239, 0.18);
  border-bottom: 1px solid rgba(126, 190, 239, 0.14);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(6, 15, 27, 0.62), rgba(3, 9, 17, 0.72)),
    rgba(255, 255, 255, 0.006);
  box-shadow:
    0 -20px 70px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.proof-band article {
  position: relative;
  display: grid;
  grid-template-columns: 34px auto;
  column-gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  padding: 18px 20px;
}

.proof-band article + article {
  border-left: 0;
}

.proof-icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 1px solid rgba(126, 190, 239, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 216, 255, 0.30), transparent 40%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 24px rgba(101, 216, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  color: rgba(222, 235, 246, 0.70);
}

.proof-icon path,
.proof-icon rect,
.proof-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-band b,
.product-map b,
.support-topics b {
  display: block;
  color: white;
}

.proof-band b {
  margin: 0;
  color: rgba(238, 247, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 650;
}

.product-section,
.features-section,
.operations-section,
.pricing-section,
.comparison-section,
.support-section {
  position: relative;
  padding: clamp(78px, 6.5vw, 132px) 0;
}

.product-section::before,
.features-section::before,
.operations-section::before,
.pricing-section::before,
.comparison-section::before,
.support-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 190, 239, 0.16), transparent);
  content: "";
}

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(36px, 5.5vw, 86px);
  align-items: center;
  overflow: visible;
}

.product-copy,
.features-copy,
.pricing-copy,
.comparison-copy,
.support-copy {
  max-width: 710px;
}

.product-copy {
  position: relative;
  top: auto;
  align-self: center;
}

.product-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.product-lane span {
  position: relative;
  min-height: 42px;
  padding: 12px 10px;
  border: 1px solid rgba(126, 190, 239, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(238, 247, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.product-lane span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 10px;
  height: 2px;
  background: rgba(101, 216, 255, 0.38);
  content: "";
}

.product-map {
  position: relative;
  display: grid;
  min-height: clamp(360px, 28vw, 430px);
  grid-template-columns: minmax(250px, 1fr) minmax(186px, 232px) minmax(250px, 1fr);
  gap: clamp(14px, 1.7vw, 24px);
  align-items: center;
  padding: clamp(2px, 0.8vw, 10px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
}

.price-card,
.support-form,
.support-topics article {
  position: relative;
  border: 1px solid rgba(126, 190, 239, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(38, 73, 99, 0.58), rgba(8, 20, 33, 0.58)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-map::before {
  position: absolute;
  z-index: -1;
  content: "";
}

.product-map::before {
  inset: 6% 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 216, 255, 0.14), transparent 30%),
    radial-gradient(circle at 15% 73%, rgba(255, 143, 107, 0.08), transparent 26%),
    radial-gradient(circle at 85% 27%, rgba(99, 211, 156, 0.08), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.020) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.48;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, black 36%, transparent 68%);
}

.map-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  align-content: center;
}

.map-label {
  justify-self: center;
  padding: 7px 11px;
  border: 1px solid rgba(126, 190, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(238, 247, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-inputs .map-label {
  justify-self: start;
  margin-left: 18px;
}

.map-outputs .map-label {
  justify-self: end;
  margin-right: 18px;
}

.map-column article,
.map-hub {
  position: relative;
  z-index: 1;
  border: 1px solid color-mix(in srgb, var(--accent, var(--cyan)) 28%, rgba(126, 190, 239, 0.16));
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 66, 88, 0.62), rgba(7, 18, 29, 0.64)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.map-column article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 82px;
  align-content: center;
  gap: 5px 12px;
  padding: 16px 17px 16px 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  animation: mapFloat 12s ease-in-out infinite;
}

.map-column article::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--accent, var(--cyan));
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent, var(--cyan)) 48%, transparent);
  content: "";
}

.features-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.operations-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.50fr) minmax(0, 1.50fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.features-copy p,
.feature-list span,
.operations-copy p {
  color: var(--muted);
  line-height: 1.55;
}

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

.feature-list article {
  --feature-accent: var(--cyan);
  position: relative;
  display: grid;
  min-height: 98px;
  align-content: center;
  gap: 7px;
  padding: 17px 18px 17px 21px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 22%, rgba(126, 190, 239, 0.15));
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(32, 65, 85, 0.54), rgba(7, 18, 29, 0.56)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.feature-list article::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--feature-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--feature-accent) 42%, transparent);
  content: "";
}

.feature-list b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.96rem;
}

.feature-list b::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--feature-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--feature-accent) 56%, transparent);
  content: "";
}

.feature-list span {
  font-size: 0.83rem;
  font-weight: 760;
}

.feature-list article:nth-child(1) {
  --feature-accent: var(--blue);
}

.feature-list article:nth-child(2) {
  --feature-accent: var(--mint);
}

.feature-list article:nth-child(3) {
  --feature-accent: var(--cyan);
}

.feature-list article:nth-child(4) {
  --feature-accent: var(--amber);
}

.feature-list article:nth-child(5) {
  --feature-accent: var(--pink);
}

.feature-list article:nth-child(6) {
  --feature-accent: var(--violet);
}

.feature-list article:nth-child(7) {
  --feature-accent: var(--coral);
}

.feature-list article:nth-child(8) {
  --feature-accent: var(--blue);
}

.feature-list article:nth-child(9) {
  --feature-accent: var(--mint);
}

.feature-list article:nth-child(10) {
  --feature-accent: var(--cyan);
}

.feature-list article:nth-child(11) {
  --feature-accent: var(--amber);
}

.feature-list article:nth-child(12) {
  --feature-accent: var(--coral);
}

.feature-list article:nth-child(13) {
  --feature-accent: var(--violet);
}

.feature-list article:nth-child(14) {
  --feature-accent: var(--mint);
}

.feature-list article:nth-child(15) {
  --feature-accent: var(--cyan);
}

.feature-list article:nth-child(16) {
  --feature-accent: var(--blue);
}

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

.operations-grid article {
  --system-accent: var(--cyan);
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--system-accent) 20%, rgba(126, 190, 239, 0.14));
  border-radius: 17px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--system-accent) 14%, transparent), transparent 32%),
    linear-gradient(145deg, rgba(30, 63, 84, 0.52), rgba(6, 16, 27, 0.60)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.operations-grid article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--system-accent), transparent);
  opacity: 0.74;
  content: "";
}

.operations-grid article:nth-child(1) {
  --system-accent: var(--blue);
}

.operations-grid article:nth-child(2) {
  --system-accent: var(--mint);
}

.operations-grid article:nth-child(3) {
  --system-accent: var(--amber);
}

.operations-grid article:nth-child(4) {
  --system-accent: var(--cyan);
}

.operations-grid article:nth-child(5) {
  --system-accent: var(--coral);
}

.operations-grid article:nth-child(6) {
  --system-accent: var(--violet);
}

.operations-grid b {
  color: white;
  font-size: 1rem;
}

.operations-grid p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 760;
}

.operations-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.operations-grid span {
  min-height: 27px;
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--system-accent) 22%, rgba(126, 190, 239, 0.14));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(238, 247, 255, 0.80);
  font-size: 0.64rem;
  font-weight: 920;
}

.map-inputs article:nth-of-type(1) {
  --accent: var(--amber);
  transform: translateX(10px) rotate(-0.5deg);
}

.map-inputs article:nth-of-type(2) {
  --accent: var(--pink);
  animation-delay: -3s;
}

.map-inputs article:nth-of-type(3) {
  --accent: var(--cyan);
  animation-delay: -6s;
  transform: translateX(16px) rotate(0.45deg);
}

.map-outputs article:nth-of-type(1) {
  --accent: var(--blue);
  animation-delay: -2s;
  transform: translateX(-10px) rotate(0.45deg);
}

.map-outputs article:nth-of-type(2) {
  --accent: var(--mint);
  animation-delay: -5s;
}

.map-outputs article:nth-of-type(3) {
  --accent: var(--coral);
  animation-delay: -8s;
  transform: translateX(-16px) rotate(-0.45deg);
}

.map-column small {
  grid-column: 1;
  color: var(--soft);
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-column b {
  grid-column: 1;
  margin: 0;
  font-size: 0.94rem;
}

.map-column em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  min-height: 25px;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--accent, var(--cyan)) 34%, rgba(126, 190, 239, 0.16));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, var(--cyan)) 12%, rgba(255, 255, 255, 0.025));
  color: rgba(238, 247, 255, 0.78);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-hub {
  display: grid;
  justify-self: center;
  width: min(100%, 226px);
  min-height: 214px;
  aspect-ratio: 1 / 0.96;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border-radius: 24px;
  border-color: rgba(126, 190, 239, 0.25);
  background:
    radial-gradient(circle at 50% 24%, rgba(101, 216, 255, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(35, 72, 96, 0.62), rgba(8, 20, 33, 0.64)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
  text-align: center;
}

.map-hub::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(126, 190, 239, 0.10);
  border-radius: 17px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 50% 48%, black 0%, black 46%, transparent 76%);
  content: "";
}

.map-hub img,
.map-hub strong,
.map-hub span {
  position: relative;
  z-index: 1;
}

.map-hub img {
  width: 42px;
  height: 42px;
  margin-bottom: 11px;
  filter: drop-shadow(0 12px 22px rgba(77, 163, 255, 0.22));
}

.map-hub strong {
  color: white;
  font-size: 1.14rem;
  line-height: 1;
}

.map-hub span {
  max-width: 152px;
  margin: 0;
  color: rgba(222, 235, 246, 0.72);
  font-size: 0.74rem;
  font-weight: 790;
  line-height: 1.48;
}

@keyframes mapFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.comparison-copy p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
}

.price-card::before {
  content: none;
}

.price-card::after {
  content: none;
}

.price-card.featured {
  border-color: rgba(101, 216, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(45, 91, 124, 0.72), rgba(10, 24, 37, 0.66)),
    rgba(255, 255, 255, 0.03);
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.price-head span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-head em {
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(126, 190, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(220, 234, 246, 0.76);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.price-card > b {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: clamp(2.35rem, 3.35vw, 3.18rem);
  line-height: 1;
}

.price-card > p {
  margin-bottom: 0;
}

.price-status {
  display: grid;
  gap: 6px;
  min-height: 88px;
  margin-top: 16px;
  padding: 13px;
  border: 1px solid rgba(126, 190, 239, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.price-status strong {
  color: white;
  font-size: 0.94rem;
  line-height: 1.3;
}

.price-status small {
  font-size: 0.78rem;
  font-weight: 780;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  min-height: 36px;
  padding: 9px 12px 9px 18px;
  overflow: hidden;
  border: 1px solid rgba(126, 190, 239, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 820;
}

.price-card li::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(101, 216, 255, 0.28);
  content: "";
}

.price-card:not(.featured) li::before {
  background: var(--mint);
  box-shadow: 0 0 18px rgba(99, 211, 156, 0.24);
}

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

.plan-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(126, 190, 239, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(24, 54, 72, 0.46), rgba(5, 14, 24, 0.58)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(120px, 0.32fr) minmax(150px, 0.36fr);
  min-height: 45px;
  align-items: center;
  border-top: 1px solid rgba(126, 190, 239, 0.10);
}

.plan-row:first-child {
  border-top: 0;
}

.plan-row > span {
  padding: 11px 16px;
  color: rgba(226, 239, 249, 0.78);
  font-size: 0.78rem;
  font-weight: 820;
}

.plan-row > span + span {
  border-left: 1px solid rgba(126, 190, 239, 0.10);
  text-align: center;
}

.plan-head {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.035);
}

.plan-head > span {
  color: white;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-row .check {
  position: relative;
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0;
  border: 1px solid rgba(99, 211, 156, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 45%),
    rgba(99, 211, 156, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 0 18px rgba(99, 211, 156, 0.12);
  color: #93f3bf;
  font-size: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-row .check::before {
  position: static;
  width: 6px;
  height: 10px;
  border-right: 2px solid #7ef0b4;
  border-bottom: 2px solid #7ef0b4;
  border-radius: 1px;
  content: "";
  transform: rotate(42deg);
  transform-origin: center;
}

.plan-row .dash {
  position: relative;
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0;
  border: 1px solid rgba(126, 190, 239, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(226, 239, 249, 0.46);
  font-size: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-row .dash::before {
  position: static;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(226, 239, 249, 0.32);
  content: "";
}

.support-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.support-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.support-topics article {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
}

.support-topics span {
  font-size: 0.84rem;
}

.support-form {
  overflow: hidden;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(126, 190, 239, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.panel-top b {
  color: white;
}

.panel-top span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.support-form label {
  display: grid;
  gap: 8px;
  padding: 0 20px 16px;
  color: rgba(223, 238, 249, 0.78);
  font-size: 0.86rem;
  font-weight: 860;
}

.panel-top + .visually-hidden + label {
  padding-top: 20px;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 190, 239, 0.16);
  border-radius: 14px;
  background: rgba(4, 12, 22, 0.72);
  color: white;
  font: inherit;
  font-weight: 760;
  outline: none;
}

.support-form input,
.support-form select {
  min-height: 48px;
  padding: 0 14px;
}

.support-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(226, 241, 255, 0.72) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(18, 43, 64, 0.96), rgba(4, 12, 22, 0.78));
  padding-right: 42px;
}

.support-form option {
  background: #081522;
  color: white;
}

.support-form textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(117, 203, 255, 0.50);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.10);
}

.support-form .button {
  width: calc(100% - 40px);
  margin: 4px 20px 12px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.82rem;
}

.form-note[data-state="error"] {
  color: #ffb2a3;
}

.form-note[data-state="loading"] {
  color: var(--cyan);
}

.success-panel {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 38px 28px;
  text-align: center;
}

.success-check {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(99, 211, 156, 0.52);
  border-radius: 999px;
  background: rgba(99, 211, 156, 0.14);
  color: #7ff0b4;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 0 48px rgba(99, 211, 156, 0.22);
}

.success-panel h3 {
  margin: 18px 0 8px;
  color: white;
  font-size: 1.8rem;
}

.success-panel p {
  max-width: 340px;
  margin: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(126, 190, 239, 0.12);
  color: var(--soft);
  font-size: 0.84rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer a:not(.brand) {
  color: white;
  font-weight: 900;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1181px) {
  .topbar {
    width: calc(100% - 60px);
    max-width: none;
  }

  .hero.section-shell {
    width: 91.545vw;
    max-width: none;
  }

  .hero {
    height: calc(100svh - 68px);
    min-height: 680px;
    padding: 0;
  }

  .hero-grid.reveal.is-visible {
    transform: translateY(-29px);
  }

  .hero-copy {
    transform: translateY(18px);
  }

  .hero-actions {
    margin-top: 46px;
  }

  .hero-actions .button {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .hero-proof {
    margin-top: 16px;
  }

  .features-section,
  .operations-section,
  .pricing-section,
  .comparison-section,
  .support-section {
    min-height: calc(100svh - 94px);
  }

  .support-section {
    min-height: calc(100svh - 190px);
    padding-top: clamp(82px, 6vw, 112px);
    padding-bottom: clamp(44px, 4.2vw, 76px);
  }

  .product-section {
    min-height: calc(100svh - 94px);
    padding-top: clamp(106px, 7.4vw, 152px);
    padding-bottom: clamp(112px, 8vw, 172px);
  }
}

@media (max-width: 1180px) {
  .topbar,
  .section-shell,
  .footer {
    width: min(980px, calc(100% - 32px));
  }

  .hero-grid,
  .product-section,
  .features-section,
  .operations-section,
  .pricing-section,
  .comparison-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .product-copy,
  .features-copy,
  .operations-copy,
  .pricing-copy,
  .comparison-copy,
  .support-copy {
    max-width: 760px;
  }

  .product-copy {
    position: static;
  }

  .product-map {
    min-height: clamp(360px, 46vw, 460px);
  }
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .product-map {
    grid-template-columns: minmax(150px, 1fr) minmax(176px, 210px) minmax(150px, 1fr);
    gap: 12px;
  }
}

@media (max-width: 1520px) and (min-width: 1181px) {
  .hero-grid {
    grid-template-columns: minmax(420px, 0.74fr) minmax(620px, 1.26fr);
    gap: clamp(28px, 3vw, 46px);
  }

  h1 {
    max-width: 620px;
    font-size: clamp(3.35rem, 4.05vw, 3.9rem);
  }

  .hero-copy > p {
    max-width: 510px;
  }

  .widget-cloud {
    min-height: clamp(440px, 36vw, 500px);
  }

  .widget-cloud::after {
    inset: 4% 8% 8% 2%;
    box-shadow:
      0 0 0 34px rgba(126, 190, 239, 0.024),
      0 0 0 66px rgba(126, 190, 239, 0.013);
  }

  .cloud-widget {
    padding: 20px;
  }

  .cloud-widget strong {
    font-size: clamp(1.12rem, 1.58vw, 1.42rem);
  }

  .cloud-widget p {
    font-size: 0.8rem;
  }

  .cloud-focus {
    top: 9%;
    left: 13%;
    width: 49%;
    min-height: 168px;
  }

  .cloud-ticket {
    top: 12%;
    right: 0;
    width: 34%;
    min-height: 168px;
  }

  .cloud-task {
    bottom: 4%;
    left: 6%;
    width: 38%;
    min-height: 176px;
  }

  .cloud-waiting {
    right: 4%;
    bottom: 1%;
    width: 39%;
    min-height: 176px;
  }

  .orbit-check {
    top: 4%;
    left: 43%;
  }

  .orbit-inbox {
    left: 0.5%;
  }

  .orbit-message {
    top: 51%;
    right: 5.5%;
  }

  .orbit-mail {
    right: 64%;
    bottom: 2.5%;
  }

  .cloud-card-icon {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

@media (max-width: 900px) {
  .widget-cloud {
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .widget-cloud::before {
    inset: 0;
  }

  .widget-cloud::after,
  .cloud-orbit {
    display: none;
  }

  .cloud-widget {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 190px;
    grid-column: auto;
    grid-row: auto;
    transform: none;
    animation-duration: 12s;
  }

  .proof-band {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    margin-top: 22px;
    margin-left: 0;
  }

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

  .product-map {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px 0;
  }

  .product-map::before {
    inset: 0;
    opacity: 0.34;
  }

  .map-hub {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    aspect-ratio: auto;
    min-height: 136px;
    padding: 18px;
  }

  .map-inputs .map-label,
  .map-outputs .map-label {
    justify-self: start;
    margin-right: 0;
    margin-left: 12px;
  }

  .proof-band article:nth-child(3) {
    border-left: 0;
  }

  .proof-band article:nth-child(odd) {
    border-left: 0;
  }

  .proof-band article:nth-child(n + 3) {
    border-top: 1px solid rgba(126, 190, 239, 0.12);
  }

  .pricing-grid,
  .feature-list,
  .operations-grid,
  .support-topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .topbar,
  .section-shell,
  .footer {
    width: min(430px, calc(100% - 24px));
    margin-right: auto;
    margin-left: auto;
  }

  .topbar {
    top: 0;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    width: min(430px, calc(100% - 24px));
    min-height: 58px;
    margin-top: 12px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(29, 60, 86, 0.88), rgba(8, 18, 29, 0.84)),
      rgba(255, 255, 255, 0.03);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(1.18);
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 2;
    grid-row: 1;
  }

  .button-small {
    grid-column: 3;
    grid-row: 1;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 13px;
    font-size: 0.78rem;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .topbar nav {
    position: static;
    z-index: 2;
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(117, 203, 255, 0.20);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgb(30, 65, 95), rgb(6, 18, 30)),
      #06121e;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .topbar nav.is-open {
    display: grid;
  }

  .topbar nav a {
    justify-content: center;
    min-height: 40px;
    padding: 11px 8px;
    border: 1px solid rgba(126, 190, 239, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    max-width: 12.5ch;
    font-size: 2.18rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy > p {
    max-width: 31ch;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: stretch;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-proof span {
    width: 100%;
    justify-content: flex-start;
  }

  .widget-cloud {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    width: 100%;
    justify-self: stretch;
  }

  .widget-cloud::before {
    inset: 0;
  }

  .widget-cloud::after {
    display: none;
  }

  .cloud-orbit {
    display: none;
  }

  .cloud-widget {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    grid-column: auto;
    grid-row: auto;
    transform: none;
    animation-duration: 12s;
  }

  .cloud-focus p {
    max-width: 27ch;
  }

  .proof-band,
  .product-map,
  .product-lane,
  .feature-list,
  .operations-grid,
  .pricing-grid,
  .support-topics {
    grid-template-columns: 1fr;
  }

  .proof-band {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    margin-top: 22px;
    margin-left: 0;
  }

  .proof-band article + article,
  .proof-band article:nth-child(n + 3) {
    border-top: 1px solid rgba(126, 190, 239, 0.12);
    border-left: 0;
  }

  .product-section,
  .features-section,
  .pricing-section,
  .comparison-section,
  .support-section {
    padding: 82px 0;
  }

  .product-section {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .product-lane span + span::before {
    display: none;
  }

  .product-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .product-lane span {
    min-height: 40px;
  }

  .product-map {
    gap: 12px;
  }

  .map-hub,
  .map-inputs,
  .map-outputs {
    grid-column: auto;
    grid-row: auto;
  }

  .map-hub {
    min-height: 124px;
    padding: 16px;
  }

  .map-hub img {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
  }

  .map-hub strong {
    font-size: 1.08rem;
  }

  .map-hub span {
    max-width: 210px;
    font-size: 0.72rem;
  }

  .map-column article {
    grid-template-columns: minmax(0, 1fr);
    min-height: 72px;
    transform: none !important;
  }

  .map-column em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 2px;
  }

  .price-card {
    min-height: auto;
  }

  .plan-row {
    grid-template-columns: minmax(150px, 1fr) minmax(64px, 0.34fr) minmax(92px, 0.46fr);
  }

  .plan-row > span {
    padding: 12px 10px;
    font-size: 0.72rem;
  }

  .plan-head > span {
    font-size: 0.62rem;
  }

  .price-status {
    min-height: auto;
  }

  .price-head,
  .panel-top {
    align-items: flex-start;
  }

  .panel-top {
    display: grid;
    gap: 2px;
    justify-content: stretch;
    min-height: auto;
    padding: 14px 18px;
  }

  .support-section {
    grid-template-columns: 1fr;
  }

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

  .footer nav {
    justify-content: flex-start;
  }
}
