:root {
  --bg: #090d13;
  --bg-soft: #111722;
  --panel: #171e2a;
  --panel-strong: #202938;
  --line: #303b4c;
  --text: #f4f7fb;
  --muted: #a6b0bf;
  --faint: #687383;
  --accent: #2ca9ff;
  --cyan: #38dfff;
  --green: #5fd66a;
  --warning: #ffbe4f;
  --danger: #ff4d4a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(44, 169, 255, 0.20), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(95, 214, 106, 0.08), transparent 28rem),
    linear-gradient(180deg, #0b1119 0%, var(--bg) 42%, #080b10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(11, 15, 22, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 0 22px rgba(44, 169, 255, 0.62);
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--text);
}

.nav-cta,
.button,
.billing-toggle button {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  background: var(--panel-strong);
  color: var(--text);
}

.nav-cta {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 72px 0 54px;
}

.hero-copy h1,
.section-heading h2,
.split h2,
.product-band h2,
.deploy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.split h2,
.product-band h2,
.deploy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text,
.product-band p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  border-color: rgba(44, 169, 255, 0.55);
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(44, 169, 255, 0.22);
}

.button.secondary {
  color: var(--muted);
}

.hero-media {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: #111720;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: 0 0 110px;
}

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

.feature-grid article,
.price-card,
.deploy-steps article,
.band-panel,
.showcase-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(23, 30, 42, 0.82);
}

.feature-grid article {
  min-height: 210px;
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  border-radius: 5px;
  background: rgba(44, 169, 255, 0.14);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-grid h3,
.showcase-card h3,
.deploy-steps h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
}

.feature-grid p,
.price-top p,
.deploy-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.showcase {
  padding-bottom: 112px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 16px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 620px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
}

.showcase-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgba(5, 8, 13, 0.92));
}

.showcase-card div {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
}

.showcase-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card h3 {
  max-width: 480px;
  margin: 8px 0 0;
}

.product-band {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(44, 169, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(44, 169, 255, 0.12), transparent),
    rgba(17, 23, 34, 0.88);
}

.band-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.band-panel div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--panel);
}

.band-panel span,
.savings {
  color: var(--muted);
}

.band-panel strong {
  font-size: 1.25rem;
}

.pricing-section {
  padding: 112px 0;
}

.pricing-heading {
  align-items: center;
}

.billing-toggle {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(17, 23, 34, 0.88);
}

.billing-toggle button {
  min-width: 96px;
  min-height: 38px;
  cursor: pointer;
  color: var(--muted);
}

.billing-toggle button.active {
  border-color: rgba(44, 169, 255, 0.55);
  background: var(--accent);
  color: var(--text);
}

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

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.highlighted {
  border-color: rgba(44, 169, 255, 0.45);
  box-shadow: 0 20px 70px rgba(44, 169, 255, 0.14);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(44, 169, 255, 0.14);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 28px 0 4px;
}

.price strong {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.95;
}

.price span {
  padding-bottom: 8px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
}

.price-card li::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at center, var(--green) 0 40%, transparent 41%),
    rgba(95, 214, 106, 0.16);
}

.deploy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding-bottom: 112px;
}

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

.deploy-steps article {
  padding: 22px;
}

.deploy-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--faint);
}

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

  .hero,
  .split,
  .product-band,
  .deploy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    transform: none;
  }

  .feature-grid,
  .pricing-grid,
  .deploy-steps,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card.large,
  .showcase-card {
    min-height: 320px;
  }

  .section-heading {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-shell,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .section-heading h2,
  .split h2,
  .product-band h2,
  .deploy h2 {
    max-width: 340px;
    font-size: 1.85rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-copy h1 {
    max-width: 340px;
    font-size: 2rem;
    line-height: 1.06;
  }

  .hero-text {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .product-band,
  .price-card {
    padding: 22px;
  }

  .billing-toggle,
  .footer {
    flex-direction: column;
  }

  .billing-toggle button {
    width: 100%;
  }
}
