:root {
  --bg: #06101e;
  --surface: rgba(17, 24, 38, 0.88);
  --surface-strong: rgba(11, 20, 35, 0.94);
  --text: #f5f7ff;
  --muted: #aeb9d3;
  --accent: #2455ff;
  --accent-dark: #1238c9;
  --accent-soft: #1a2d57;
  --line: rgba(114, 145, 234, 0.18);
  --shadow: 0 20px 45px rgba(1, 8, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36, 85, 255, 0.28), transparent 26%),
    radial-gradient(circle at bottom left, rgba(11, 74, 250, 0.2), transparent 22%),
    radial-gradient(circle at right center, rgba(30, 57, 110, 0.22), transparent 30%),
    linear-gradient(135deg, #030915 0%, #081223 40%, #07111e 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

main {
  width: min(1320px, calc(100% - 1.25rem));
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(35, 66, 128, 0.2), transparent 13%, transparent 87%, rgba(35, 66, 128, 0.2)),
    rgba(4, 13, 26, 0.28);
  border-left: 1px solid rgba(119, 151, 239, 0.18);
  border-right: 1px solid rgba(119, 151, 239, 0.18);
  box-shadow:
    inset 24px 0 45px rgba(36, 85, 255, 0.06),
    inset -24px 0 45px rgba(36, 85, 255, 0.06);
}

.container {
  width: min(1120px, calc(100% - 1.25rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.page-hero .narrow {
  width: min(920px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 20, 0.82);
  border-bottom: 1px solid rgba(84, 112, 196, 0.16);
}

.nav-wrap,
.split-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: brightness(0) invert(0.92) sepia(0.08) saturate(0.6) hue-rotate(10deg) brightness(1.08);
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: #ffffff;
  font-weight: 700;
}

.product-subnav {
  position: sticky;
  top: 78px;
  z-index: 9;
  background: rgba(7, 14, 27, 0.94);
  border-bottom: 1px solid rgba(84, 112, 196, 0.14);
  backdrop-filter: blur(12px);
}

.subnav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
}

.subnav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.subnav-label {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
}

.subnav-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 0.28rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  object-fit: cover;
}

.subnav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.subnav-links a {
  text-decoration: none;
  color: var(--muted);
}

.subnav-links a[aria-current="page"] {
  color: #ffffff;
  font-weight: 700;
}

.hero {
  padding: 4rem 0 4.5rem;
}

.page-main {
  padding: 2rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100vh - 140px);
}

.hero-bleed-right {
  overflow-x: hidden;
}

.hero-bleed-right .hero-grid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: clamp(0.625rem, 7.5vw, 6.25rem);
  gap: 0;
  grid-template-columns: minmax(0, 620px) minmax(360px, 1fr);
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #7ea0ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  max-width: 13ch;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  max-width: none;
}

.page-hero .lead {
  max-width: none;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(36, 85, 255, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(17, 27, 48, 0.72);
  border-color: var(--line);
  color: #dde6ff;
}

.section {
  padding: 2rem 0 4rem;
}

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

.section-heading {
  margin-bottom: 1.5rem;
}

.section-actions {
  margin-top: 1.5rem;
}

.card-grid,
.support-layout {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-layout {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.product-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.product-title .eyebrow {
  margin-bottom: 0.35rem;
}

.product-title h2 {
  margin-bottom: 0;
}

.product-card-copy p:last-child,
.product-card-meta p:last-child {
  margin-bottom: 0;
}

.product-card-meta .feature-list {
  font-size: 0.96rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(36, 85, 255, 0.88), rgba(14, 39, 116, 0.95));
  border: 1px solid rgba(167, 191, 255, 0.24);
  box-shadow: 0 16px 28px rgba(4, 15, 38, 0.3), 0 0 14px rgba(84, 127, 255, 0.18);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  height: 100%;
}

.pricing-card-primary {
  background:
    linear-gradient(160deg, rgba(26, 39, 72, 0.94), rgba(10, 22, 43, 0.96)),
    var(--surface-strong);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.screenshot-card {
  overflow: hidden;
  padding: 0;
}

.screenshot-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(97, 130, 224, 0.16);
  background: rgba(6, 12, 23, 0.9);
}

.screenshot-card figcaption {
  padding: 1.25rem 1.25rem 1.4rem;
}

.screenshot-card h3 {
  margin-bottom: 0.45rem;
}

.price-line {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
}

.price-line-secondary {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #b9cbff;
}

.feature-card {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid rgba(97, 130, 224, 0.16);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.spotlight {
  background:
    linear-gradient(160deg, rgba(26, 39, 72, 0.94), rgba(10, 22, 43, 0.96)),
    var(--surface-strong);
  position: relative;
  overflow: hidden;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 25%;
  height: 180px;
  background: radial-gradient(circle, rgba(36, 85, 255, 0.3), transparent 68%);
  pointer-events: none;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-bleed-right .hero-image-wrap {
  justify-self: stretch;
  align-self: stretch;
  margin-right: 0;
  overflow: visible;
}

.hero-image-wrap::after {
  content: none;
}

.hero-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-bleed-right .hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero-bleed-right .hero-image-home {
  height: 122%;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}

.split-panel {
  padding: 1.7rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(8, 18, 40, 0.98), rgba(18, 33, 72, 0.94));
  color: #fff7ef;
  border: 1px solid rgba(74, 106, 207, 0.24);
  box-shadow: var(--shadow);
}

.split-panel p {
  color: rgba(228, 236, 255, 0.8);
}

.support-form {
  display: grid;
  gap: 0.8rem;
}

.support-form label {
  font-weight: 700;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(11, 18, 31, 0.92);
}

.support-form textarea {
  resize: vertical;
}

.form-field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-status p {
  margin: 0 0 0.45rem;
}

.form-status ul {
  margin: 0;
  padding-left: 1.2rem;
}

.form-status-success {
  color: #dff8ec;
  background: rgba(5, 112, 72, 0.22);
  border-color: rgba(62, 205, 142, 0.32);
}

.form-status-error {
  color: #ffe5e5;
  background: rgba(143, 24, 35, 0.22);
  border-color: rgba(255, 115, 127, 0.32);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: 2px solid rgba(36, 85, 255, 0.24);
  border-color: rgba(77, 118, 255, 0.62);
}

.form-note,
.policy-date,
.site-footer,
.legal-copy p,
.feature-card p {
  color: var(--muted);
}

.feature-list li::marker {
  color: #4d76ff;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-copy h3 {
  margin-top: 1.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 20, 0.82);
  border-top: 1px solid rgba(84, 112, 196, 0.16);
}

.footer-wrap {
  display: block;
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid,
  .pricing-grid,
  .screenshot-grid,
  .support-layout,
  .product-card,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-bleed-right .hero-grid {
    width: min(1120px, calc(100% - 1.25rem));
    margin: 0 auto;
    padding-left: 0;
    gap: 2rem;
  }

  .hero-bleed-right .hero-image-wrap {
    align-self: auto;
    min-height: auto;
    overflow: hidden;
  }

  .hero-bleed-right .hero-image {
    position: static;
    width: 100%;
    height: auto;
  }

  .hero-bleed-right .hero-image-home {
    width: 116%;
    max-width: none;
    margin-left: auto;
  }

  .split-panel,
  .subnav-wrap,
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero,
  .page-main {
    padding-bottom: 3rem;
  }

  .feature-card,
  .split-panel {
    padding: 1.25rem;
  }
}
