:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.94);
  --text: #172033;
  --muted: #5e6a7d;
  --brand: #1b6cff;
  --brand-2: #00c2ff;
  --accent: #ff7a18;
  --line: #dde4ef;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 194, 255, 0.35), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(255, 122, 24, 0.24), transparent 26%),
    linear-gradient(135deg, #0b1020 0%, #111a35 48%, #182447 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.hero {
  padding: 54px 0 30px;
  color: white;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 46px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.28);
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.nav a.nav-purchase {
  color: white;
  border-color: rgba(255, 122, 24, 0.78);
  background: rgba(255, 122, 24, 0.28);
  font-weight: 800;
}

.nav a.nav-add-license {
  color: white;
  border-color: rgba(0, 194, 255, 0.72);
  background: rgba(0, 194, 255, 0.18);
  font-weight: 800;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #d6edff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.14);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}


.page-title-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
}

.page-title-lockup h1 {
  margin: 0;
}

.product-title-icon {
  width: clamp(82px, 8vw, 108px);
  height: clamp(82px, 8vw, 108px);
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 85, 190, 0.28));
}

.hero-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 14px;
  font-weight: 800;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.summary-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

.summary-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.fact {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f6f8fc;
  border: 1px solid var(--line);
}

.fact dt {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.fact dd {
  margin: 0;
  font-weight: 750;
}

main {
  padding: 28px 0 70px;
}

.footer {
  padding: 34px 0 50px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: white;
}

@media (max-width: 880px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

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

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

  .hero-copy,
  .summary-card {
    padding: 24px;
  }

  .page-title-lockup {
    gap: 14px;
  }

  .product-title-icon {
    width: 72px;
    height: 72px;
  }
}
