:root {
  color-scheme: dark;
  --ink: #f7fbf8;
  --muted: #aab9b3;
  --subtle: #73847e;
  --line: rgba(214, 231, 224, 0.16);
  --line-strong: rgba(214, 231, 224, 0.28);
  --surface: #070908;
  --surface-2: #0d1210;
  --panel: rgba(15, 22, 19, 0.78);
  --panel-strong: rgba(18, 27, 24, 0.94);
  --accent: #42d7b7;
  --accent-strong: #9ff4df;
  --gold: #d7ae63;
  --danger: #ff9c8a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 70% 8%, rgba(66, 215, 183, 0.14), transparent 34rem),
    radial-gradient(circle at 8% 28%, rgba(215, 174, 99, 0.10), transparent 28rem),
    linear-gradient(180deg, #050706 0%, #0b0f0d 42%, #070908 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  margin: 0;
  min-height: 100vh;
}

body::before {
  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: 52px 52px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 22px 24px;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 6, 0.58);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header a,
.site-footer a,
.text-link {
  color: var(--accent-strong);
  font-weight: 760;
  text-decoration: none;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.02rem;
  font-weight: 860;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  background:
    linear-gradient(135deg, rgba(66, 215, 183, 0.95), rgba(215, 174, 99, 0.85)),
    #111;
  border-radius: 6px;
  box-shadow: 0 0 26px rgba(66, 215, 183, 0.28);
  display: inline-block;
  height: 18px;
  width: 18px;
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 24px 64px;
}

.hero,
.product-hero {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  min-height: calc(100vh - 112px);
  padding: 54px 0 44px;
}

.product-hero {
  min-height: 560px;
}

.premium-hero {
  position: relative;
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  align-items: center;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(5, 7, 6, 0.64), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.15rem);
}

h3 {
  font-size: 1.35rem;
}

.lede {
  color: var(--muted);
  font-size: 1.18rem;
  margin: 24px 0 0;
  max-width: 710px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 840;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button.primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  border-color: rgba(159, 244, 223, 0.72);
  color: #05100d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.metrics-strip,
.division-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.metrics-strip > div,
.division-card,
.price-card,
.product-panel,
.policy-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.metrics-strip > div {
  padding: 18px;
}

.metric,
.division-code {
  color: var(--gold);
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.metrics-strip p,
.division-card p,
.price-card p,
.split p,
.policy-box p,
.policy-box li,
.checkout-note {
  color: var(--muted);
}

.section {
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.wide {
  max-width: 850px;
}

.section-heading p {
  color: var(--muted);
  max-width: 720px;
}

.division-card,
.price-card {
  min-height: 260px;
  padding: 24px;
}

.division-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.division-card.active,
.price-card.featured {
  background:
    linear-gradient(180deg, rgba(66, 215, 183, 0.13), rgba(215, 174, 99, 0.06)),
    var(--panel-strong);
  border-color: rgba(159, 244, 223, 0.32);
}

.split {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.feature-band {
  border-bottom: 1px solid var(--line);
}

.funnel-list {
  display: grid;
  gap: 14px;
}

.funnel-list p {
  border-left: 2px solid rgba(66, 215, 183, 0.4);
  margin: 0;
  padding-left: 16px;
}

.product-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.stat {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: block;
  font-weight: 760;
  padding-top: 14px;
}

.stat:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-box {
  margin: 24px 0;
  padding: 28px;
}

.policy-box.compact {
  margin: 0;
}

.policy-box h2 {
  font-size: 1.46rem;
  margin-top: 30px;
}

.policy-box h2:first-child {
  margin-top: 0;
}

.policy-box a {
  color: var(--accent-strong);
}

.pricing-grid {
  align-items: stretch;
}

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

.screenshot-grid figure {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-column: span 2;
  margin: 0;
  overflow: hidden;
}

.screenshot-grid figure:nth-child(4),
.screenshot-grid figure:nth-child(5) {
  grid-column: span 3;
}

.screenshot-grid img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.screenshot-grid figcaption {
  color: var(--muted);
  font-weight: 760;
  padding: 12px 14px 14px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card ul {
  color: var(--muted);
  margin: 0 0 8px;
  padding-left: 20px;
}

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

.checkout-note {
  min-height: 28px;
}

.license-output {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font: 0.88rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  min-height: 150px;
  padding: 14px;
  resize: vertical;
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .product-hero,
  .split,
  .metrics-strip,
  .division-grid,
  .pricing-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid figure,
  .screenshot-grid figure:nth-child(4),
  .screenshot-grid figure:nth-child(5) {
    grid-column: auto;
  }

  .hero,
  .product-hero {
    min-height: auto;
    padding-top: 42px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }
}
