:root {
  --ink: #020a13;
  --silver: #e9f1f8;
  --muted: #9aa9bc;
  --cyan: #38ddff;
  --blue: #098fd8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--silver);
  background: #01070f;
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 118, 190, 0.13), transparent 34rem),
    radial-gradient(circle at 8% 2%, rgba(0, 92, 160, 0.1), transparent 28rem),
    linear-gradient(110deg, #020b15 0%, #010811 45%, #00050b 100%);
  content: "";
}

a {
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(0.1rem, 0.35vw, 0.3rem) clamp(1.1rem, 4vw, 4.5rem)
    0;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.045) 0,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 5px
  );
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 7, 15, 0.96) 0%, rgba(1, 7, 15, 0.7) 26%, transparent 54%),
    linear-gradient(0deg, rgba(1, 7, 15, 0.86) 0%, transparent 34%);
  content: "";
}

.site-header {
  position: relative;
  z-index: 3;
  width: min(42vw, 600px);
}

.site-header::before {
  position: absolute;
  z-index: 2;
  top: calc(91.5% - 30px);
  right: 94.5%;
  left: -5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(25, 181, 236, 0.48),
    rgba(188, 238, 255, 0.7) 70%,
    transparent
  );
  box-shadow: 0 0 8px rgba(38, 201, 255, 0.34);
  transform: scaleX(0);
  transform-origin: right center;
  animation: mainLineReveal 1.6s ease-out 1.8s forwards;
  content: "";
}

.site-header::after {
  position: absolute;
  z-index: 2;
  top: calc(91.5% - 30px);
  right: -1rem;
  left: 25%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(188, 238, 255, 0.76) 18%,
    rgba(25, 181, 236, 0.78) 76%,
    rgba(26, 190, 240, 0.22)
  );
  box-shadow: 0 0 8px rgba(38, 201, 255, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
  animation: mainLineReveal 2.25s ease-out 150ms forwards;
  content: "";
}

.brand {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  filter: drop-shadow(0 0 18px rgba(31, 179, 245, 0.2));
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.ambient-code {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--code-columns, 4), minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: 1rem clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  color: rgba(101, 183, 215, 0.045);
  mix-blend-mode: screen;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}

.code-stream {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(0.68rem, 0.84vw, 0.82rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.code-highlight {
  color: inherit;
  text-shadow: none;
}

.code-highlight-active {
  color: rgba(190, 232, 242, 0.052);
  text-shadow: 0 0 4px rgba(105, 219, 245, 0.04);
}

.code-highlight-active-lower {
  color: rgba(190, 232, 242, 0.085);
  text-shadow: 0 0 5px rgba(105, 219, 245, 0.065);
}

.header-phone {
  position: absolute;
  z-index: 4;
  top: calc(var(--main-line-y, 10rem) - 10px);
  right: clamp(1.1rem, 4vw, 4.5rem);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(52, 205, 248, 0.34);
  border-radius: 0.45rem;
  color: #c8d8e5;
  background: rgba(2, 11, 20, 0.8);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(49, 203, 249, 0.35);
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.header-phone:hover {
  border-color: rgba(90, 225, 255, 0.72);
  color: #f1fbff;
}

.network-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(70rem, 100%);
  margin: clamp(1.25rem, 2.5vw, 2.5rem) auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(56, 221, 255, 0.45);
}

h1 {
  margin: 0;
  color: #f4f8fc;
  font-size: clamp(2rem, 6.2vw, 6.3rem);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(9, 143, 216, 0.2);
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.headline-line:first-child {
  color: transparent;
  background: linear-gradient(
    100deg,
    #f4f8fc 0%,
    #f4f8fc 50%,
    #dce5eb 78%,
    #9bcfdd 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.headline-accent {
  color: transparent;
  background: linear-gradient(100deg, #b9c7d2 4%, #e4edf2 45%, #1aafe0 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 45rem;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(86, 211, 255, 0.34);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #00111d;
  border-color: transparent;
  background: linear-gradient(110deg, #dff9ff, #39d8ff 52%, #078ed5);
  box-shadow: 0 0 24px rgba(19, 175, 232, 0.25);
}

.button-secondary {
  background: rgba(3, 15, 27, 0.62);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(160, 232, 255, 0.7);
  background: rgba(8, 38, 60, 0.72);
}

.contact-widget {
  position: fixed;
  z-index: 50;
  right: clamp(0.9rem, 2vw, 1.75rem);
  bottom: clamp(0.9rem, 2vw, 1.75rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.42rem 0.48rem 0.42rem 1.05rem;
  border: 1px solid rgba(82, 211, 255, 0.34);
  border-radius: 999px;
  color: #e9f5fc;
  background:
    linear-gradient(135deg, rgba(10, 35, 54, 0.92), rgba(2, 12, 22, 0.94));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(16, 163, 220, 0.14);
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.contact-widget-copy {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.15;
}

.contact-widget-copy small {
  color: #8ea4b7;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-widget-copy strong {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-widget-avatar {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  overflow: visible;
  flex: 0 0 auto;
  border: 2px solid rgba(101, 221, 255, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #15344b, #03101c 72%);
  box-shadow:
    inset 0 0 16px rgba(49, 195, 240, 0.12),
    0 0 18px rgba(27, 184, 235, 0.24);
}

.contact-widget-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.contact-widget-status {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid #06111c;
  border-radius: 50%;
  background: #35e7ff;
  box-shadow: 0 0 10px rgba(53, 231, 255, 0.85);
  animation: contactStatusPulse 2.8s ease-in-out infinite;
}

.contact-widget:hover {
  border-color: rgba(109, 226, 255, 0.72);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(20, 181, 235, 0.26);
  transform: translateY(-4px);
}

.contact-widget:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.capabilities {
  position: relative;
  z-index: 3;
  left: 50%;
  width: 100vw;
  margin-top: clamp(2.25rem, 4vw, 3.75rem);
  padding: 0.65rem clamp(1rem, 4vw, 4.5rem) 0.8rem;
  border-top: 1px solid rgba(91, 195, 235, 0.16);
  border-bottom: 1px solid rgba(91, 195, 235, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(12, 119, 180, 0.09), transparent 34rem),
    linear-gradient(180deg, rgba(2, 11, 20, 0.68), rgba(1, 7, 14, 0.68));
  text-align: center;
  transform: translateX(-50%);
}

.capabilities::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 5px
  );
  content: "";
}

.capabilities-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(88rem, 100%);
  margin: 0 auto;
}

.capability {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(8rem, 11vw, 10rem);
  padding: 0.8rem clamp(0.7rem, 1.6vw, 1.5rem);
}

.capability + .capability {
  border-left: 1px solid rgba(145, 184, 211, 0.3);
}

.capability img {
  width: clamp(3.4rem, 4.6vw, 4.6rem);
  height: clamp(3.4rem, 4.6vw, 4.6rem);
  margin-bottom: 0.7rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(11, 159, 232, 0.2));
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.capability:nth-child(3) img {
  transform: scale(1.08);
}

.capability h3 {
  min-height: 3.2em;
  margin: 0;
  color: #b7c2d0;
  font-size: clamp(0.68rem, 1vw, 0.88rem);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    transform 240ms ease;
}

.capability:hover img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 18px rgba(22, 181, 246, 0.52));
}

.capability:nth-child(3):hover img {
  transform: translateY(-4px) scale(1.12);
}

.capability:hover h3 {
  color: #d8e4ef;
  transform: scale(1.07);
}

.featured-solutions {
  position: relative;
  z-index: 2;
  left: 50%;
  width: 100vw;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.1rem, 5vw, 5.5rem);
  overflow: hidden;
  border-top: 1px solid rgba(94, 193, 236, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(12, 129, 190, 0.1), transparent 35rem),
    linear-gradient(145deg, rgba(3, 12, 22, 0.76), rgba(1, 7, 14, 0.76) 65%);
  transform: translateX(-50%);
}

.featured-solutions::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(75, 186, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 186, 229, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  content: "";
}

.featured-heading {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.section-label {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 750;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.featured-heading h2 {
  margin: 0;
  color: #edf5fc;
  font-size: clamp(0.95rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  width: min(86rem, 100%);
  margin: 0 auto;
}

.featured-card {
  --brand-color: #149ed8;

  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(18rem, 27vw, 23rem);
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(123, 188, 219, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(3, 14, 25, 0.57);
  box-shadow:
    inset 0 0 38px rgba(29, 146, 202, 0.035),
    0 22px 60px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition:
    border-color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.featured-card::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
  box-shadow: 0 0 14px var(--brand-color);
  content: "";
}

.featured-card::after {
  position: absolute;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: var(--brand-color);
  filter: blur(90px);
  opacity: 0.075;
  content: "";
}

.featured-card-odoo {
  --brand-color: #8f6683;
}

.featured-card-proxmox {
  --brand-color: #e57000;
}

.featured-card-unifi {
  --brand-color: #0875dc;
}

.featured-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(7.5rem, 11vw, 10rem);
  height: clamp(7.5rem, 11vw, 10rem);
  margin-bottom: 1.6rem;
  place-items: center;
  border: 1px solid rgba(154, 208, 231, 0.12);
  border-radius: 50%;
  background: rgba(3, 12, 21, 0.5);
  box-shadow: inset 0 0 30px rgba(28, 151, 204, 0.05);
}

.featured-logo img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.featured-card h3 {
  position: relative;
  z-index: 1;
  min-height: 2.7em;
  margin: 0;
  color: #d9e4ee;
  font-size: clamp(1rem, 1.75vw, 1.42rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card:hover {
  border-color: color-mix(in srgb, var(--brand-color) 65%, white 10%);
  box-shadow:
    inset 0 0 46px color-mix(in srgb, var(--brand-color) 10%, transparent),
    0 28px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.featured-card:hover .featured-logo img {
  transform: scale(1.08);
}

.deployment-options {
  position: relative;
  z-index: 1;
  width: min(86rem, 100%);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(111, 191, 225, 0.16);
}

.deployment-heading {
  margin-bottom: 1.75rem;
  text-align: center;
}

.deployment-heading h3 {
  margin: 0;
  color: #dce8f1;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deployment-heading p {
  margin: 0.65rem 0 0;
  color: #8295a7;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.deployment-card {
  display: flex;
  align-items: center;
  min-height: 9.5rem;
  gap: 1.15rem;
  padding: 1.25rem clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(119, 184, 216, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(3, 14, 24, 0.49);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.deployment-card:hover {
  border-color: rgba(65, 201, 245, 0.42);
  transform: translateY(-3px);
}

.deployment-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(91, 199, 236, 0.18);
  border-radius: 50%;
  background: rgba(2, 13, 23, 0.55);
}

.deployment-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.deployment-icon-hybrid img {
  width: 54%;
  height: 54%;
}

.deployment-card h4 {
  margin: 0;
  color: #d6e3ed;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deployment-card p {
  margin: 0.5rem 0 0;
  color: #7f92a4;
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
  line-height: 1.45;
}

.deployment-card-cloud {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.cloud-providers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.2rem;
}

.cloud-provider {
  display: grid;
  min-width: 0;
  height: 4.3rem;
  padding: 0.7rem;
  overflow: hidden;
  place-items: center;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
}

.cloud-provider > img {
  display: block;
  object-fit: contain;
}

.cloud-provider-named,
.cloud-provider-linode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.cloud-provider-named > img {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
}

.cloud-provider-named strong {
  color: #0069c9;
  font-size: clamp(0.52rem, 0.68vw, 0.66rem);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cloud-provider-linode > img {
  width: 1.85rem;
  height: 2.15rem;
  flex: 0 0 auto;
}

.cloud-provider-linode > span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.cloud-provider-linode strong {
  color: #004711;
  font-size: clamp(0.62rem, 0.84vw, 0.76rem);
  letter-spacing: 0.02em;
}

.cloud-provider-linode small {
  margin-top: 0.18rem;
  color: #456171;
  font-size: clamp(0.48rem, 0.64vw, 0.58rem);
  white-space: nowrap;
}

.cloud-provider-aws > img {
  width: 5.35rem;
  height: 2.5rem;
}

.self-hosted {
  position: relative;
  z-index: 2;
  left: 50%;
  width: 100vw;
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid rgba(94, 193, 236, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(17, 135, 190, 0.09), transparent 28rem),
    linear-gradient(150deg, rgba(2, 11, 20, 0.74), rgba(1, 7, 13, 0.74));
  transform: translateX(-50%);
}

.self-hosted-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
}

.self-hosted-heading h2 {
  margin: 0;
  color: #edf5fc;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.self-hosted-heading > p:last-child {
  margin: 1rem 0 0;
  color: #8799aa;
  font-size: clamp(0.88rem, 1.25vw, 1.02rem);
}

.self-hosted-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(86rem, 100%);
  margin: 0 auto;
}

.software-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 10.5rem;
  padding: 1.35rem 0.85rem 1.1rem;
  border: 1px solid rgba(123, 188, 219, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    rgba(3, 14, 24, 0.51);
  text-align: center;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.software-card img {
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 0.85rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(24, 161, 218, 0.12));
  transition: transform 220ms ease;
}

.software-card h3 {
  margin: 0;
  color: #d6e1eb;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.software-card p {
  max-width: 13rem;
  margin: 0.55rem auto 0;
  color: #7f92a4;
  font-size: clamp(0.66rem, 0.85vw, 0.76rem);
  line-height: 1.45;
}

.software-card:hover {
  border-color: rgba(70, 201, 245, 0.42);
  background-color: rgba(5, 24, 40, 0.59);
  transform: translateY(-3px);
}

.software-card:hover img {
  transform: scale(1.08);
}

.pricing {
  position: relative;
  z-index: 2;
  left: 50%;
  width: 100vw;
  padding: clamp(5rem, 8vw, 7.5rem) clamp(1.1rem, 5vw, 5.5rem);
  border-top: 1px solid rgba(94, 193, 236, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 144, 198, 0.1), transparent 32rem),
    linear-gradient(160deg, rgba(2, 10, 18, 0.77), rgba(1, 6, 12, 0.77));
  transform: translateX(-50%);
}

.pricing-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.pricing-heading h2 {
  margin: 0;
  color: #edf5fc;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  width: min(78rem, 100%);
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: clamp(18rem, 25vw, 22rem);
  padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(119, 184, 216, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(3, 14, 25, 0.55);
  box-shadow:
    inset 0 0 40px rgba(20, 145, 202, 0.03),
    0 24px 65px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition:
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.pricing-card::before {
  position: absolute;
  top: 0;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 211, 255, 0.76), transparent);
  box-shadow: 0 0 14px rgba(44, 211, 255, 0.36);
  content: "";
}

.pricing-card-featured {
  border-color: rgba(61, 204, 249, 0.36);
  background:
    linear-gradient(145deg, rgba(57, 202, 248, 0.07), transparent 45%),
    rgba(4, 19, 33, 0.59);
}

.pricing-type {
  min-height: 2.8em;
  margin: 0 0 1.3rem;
  color: #a9b9c9;
  font-size: clamp(0.72rem, 1.05vw, 0.88rem);
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-rate {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  color: #eaf9ff;
}

.pricing-rate span {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 750;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-shadow: 0 0 26px rgba(39, 193, 243, 0.2);
}

.pricing-rate small {
  padding-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-detail {
  max-width: 24rem;
  margin: 1.8rem auto 0;
  color: #8fa0b3;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}

.pricing-card:hover {
  border-color: rgba(77, 214, 255, 0.56);
  box-shadow:
    inset 0 0 46px rgba(27, 163, 219, 0.06),
    0 30px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.pricing-note {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: clamp(2rem, 4vw, 3.2rem) auto 0;
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(68, 189, 232, 0.2);
  color: #aebdca;
  background: rgba(2, 13, 23, 0.49);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes mainLineReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes contactStatusPulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(53, 231, 255, 0.58);
  }

  50% {
    box-shadow: 0 0 16px rgba(53, 231, 255, 0.96);
  }
}

@media (max-width: 1100px) {
  .self-hosted-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ambient-code {
    gap: 1rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    color: rgba(101, 183, 215, 0.03);
  }

  .code-stream {
    font-size: 0.58rem;
  }

  .code-highlight-active {
    color: rgba(190, 232, 242, 0.035);
  }

  .header-phone {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: fit-content;
    margin: -1.5rem auto 0;
    font-size: 1rem;
    transform: none;
  }

  .site-header {
    width: min(88vw, 600px);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(1, 7, 15, 0.88), transparent 85%),
      linear-gradient(0deg, rgba(1, 7, 15, 0.94) 0%, rgba(1, 7, 15, 0.48) 52%, transparent 80%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-text {
    max-width: 38rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability {
    border-top: 1px solid rgba(145, 184, 211, 0.22);
  }

  .capability:nth-child(-n + 3) {
    border-top: 0;
  }

  .capability:nth-child(3n + 1) {
    border-left: 0;
  }

  .featured-solutions {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    width: min(30rem, 100%);
  }

  .featured-card {
    min-height: 16rem;
  }

  .deployment-grid {
    grid-template-columns: 1fr;
    width: min(30rem, 100%);
    margin: 0 auto;
  }

  .deployment-card {
    min-height: 8.5rem;
  }

  .self-hosted {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .self-hosted-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(30rem, 100%);
  }

  .pricing-card {
    min-height: 16rem;
  }
}

@media (max-width: 520px) {
  .contact-widget {
    padding: 0.3rem;
  }

  .contact-widget-copy {
    display: none;
  }

  .contact-widget-avatar {
    width: 4.15rem;
    height: 4.15rem;
  }

  .site-header {
    width: 100%;
  }

  .eyebrow {
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(22rem, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .capabilities {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability {
    min-height: 8rem;
  }

  .capability:nth-child(-n + 3) {
    border-top: 1px solid rgba(145, 184, 211, 0.22);
  }

  .capability:nth-child(-n + 2) {
    border-top: 0;
  }

  .capability:nth-child(3n + 1) {
    border-left: 1px solid rgba(145, 184, 211, 0.3);
  }

  .capability:nth-child(odd) {
    border-left: 0;
  }

  .self-hosted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header::before,
  .site-header::after {
    animation: none;
    transform: none;
  }

  .button {
    transition: none;
  }

  .contact-widget-status {
    animation: none;
  }

}
