:root {
  --bg-0: #06121f;
  --bg-1: #071a2c;
  --topbar-h: 74px;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.55);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);

  --accent: #42f5a5;
  --accent-2: #6ad0ff;
  --warn: #ff5d4a;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --font-sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  min-height: 100%;
  background-color: var(--bg-0);
}

body {
  margin: 0;
  color: var(--text);
  padding-top: var(--topbar-h);
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(66, 245, 165, 0.12), transparent 55%),
    radial-gradient(1000px 700px at 90% 10%, rgba(106, 208, 255, 0.1), transparent 55%),
    radial-gradient(900px 700px at 40% 90%, rgba(255, 93, 74, 0.08), transparent 58%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed, fixed;
  background-color: var(--bg-0);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--stroke);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(6, 18, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.topbar[data-elevate="true"] {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: var(--topbar-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(66, 245, 165, 0.18);
}

.brand__text {
  display: grid;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: -2px;
}

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

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: 3px solid rgba(66, 245, 165, 0.35);
  outline-offset: 2px;
}

.nav__toggle-bars {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav__toggle-bars::before {
  top: -6px;
}

.nav__toggle-bars::after {
  top: 6px;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15px;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--text);
  text-decoration: none;
}

.nav__cta {
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(66, 245, 165, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(66, 245, 165, 0.95), rgba(106, 208, 255, 0.9));
  color: rgba(6, 18, 31, 0.92);
  border-color: rgba(255, 255, 255, 0);
  box-shadow: 0 16px 50px rgba(66, 245, 165, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(66, 245, 165, 1), rgba(106, 208, 255, 0.96));
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn--block {
  width: 100%;
}

.promo-tab {
  position: fixed;
  top: calc(var(--topbar-h) + 12px);
  right: 16px;
  z-index: 9;
  width: min(340px, calc(100vw - 32px));
  border-radius: 18px;
  border: 1px solid rgba(66, 245, 165, 0.44);
  background:
    radial-gradient(360px 180px at 100% 0%, rgba(66, 245, 165, 0.22), transparent 64%),
    radial-gradient(360px 180px at 0% 100%, rgba(106, 208, 255, 0.18), transparent 64%),
    rgba(6, 18, 31, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(66, 245, 165, 0.14) inset;
  padding: 14px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.promo-tab__eyebrow {
  display: inline-block;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: rgba(6, 18, 31, 0.95);
  background: linear-gradient(135deg, rgba(66, 245, 165, 1), rgba(106, 208, 255, 0.94));
  border-radius: 999px;
  padding: 6px 10px;
}

.promo-tab__title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.35px;
  line-height: 1.1;
  text-wrap: balance;
}

.promo-tab__impact {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.25px;
  color: rgba(6, 18, 31, 0.95);
  background: linear-gradient(135deg, rgba(66, 245, 165, 1), rgba(106, 208, 255, 0.96));
  box-shadow: 0 18px 50px rgba(66, 245, 165, 0.28);
  text-decoration: none;
}

.promo-tab__impact:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.promo-tab__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-tab__actions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.promo-tab__btn {
  width: 100%;
  font-size: 14px;
  justify-content: center;
}

.hero {
  position: relative;
  padding: 64px 0 26px;
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

.hero__bg {
  display: none;
}

.hero__grid {
  position: absolute;
  inset: -2px;
  opacity: 0.45;
  background:
    radial-gradient(120% 85% at 22% 24%, rgba(255, 255, 255, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%);
}

.hero__blob {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.65;
}

.hero__blob--a {
  left: -180px;
  top: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(66, 245, 165, 0.55), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 93, 74, 0.25), transparent 60%);
}

.hero__blob--b {
  right: -220px;
  top: -80px;
  background: radial-gradient(circle at 40% 30%, rgba(106, 208, 255, 0.55), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(66, 245, 165, 0.22), transparent 60%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.18px;
  margin: 0 0 14px;
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(66, 245, 165, 0.14);
}

.hero__title {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(34px, 4.6vw, 50px);
  /* Slightly looser to avoid line overlap when fonts wrap/scale. */
  line-height: 1.1;
  letter-spacing: -0.6px;
  text-wrap: balance;
}

.hero__title-main {
  display: block;
}

.accent {
  display: inline-block;
  color: rgba(6, 18, 31, 0.92);
  background: linear-gradient(135deg, rgba(66, 245, 165, 0.95), rgba(106, 208, 255, 0.9));
  padding: 0.06em 0.22em;
  border-radius: 16px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__title-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1px;
  line-height: 1.35;
}

.hero__lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.hero-value {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(66, 245, 165, 0.34);
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(66, 245, 165, 0.16), transparent 64%),
    radial-gradient(520px 220px at 0% 100%, rgba(106, 208, 255, 0.12), transparent 64%),
    rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.hero-value__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: rgba(6, 18, 31, 0.95);
  background: linear-gradient(135deg, rgba(66, 245, 165, 1), rgba(106, 208, 255, 0.94));
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-value__title {
  margin-top: 9px;
  font-weight: 800;
  letter-spacing: -0.18px;
  line-height: 1.2;
  font-size: 18px;
}

.hero-value__text {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 76ch;
}

.hero-value__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
}

.hero-value__list li {
  margin: 6px 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
  color: rgba(66, 245, 165, 0.95);
}

.hero-card:nth-child(2) .hero-card__icon {
  color: rgba(106, 208, 255, 0.95);
}

.hero-card:nth-child(3) .hero-card__icon {
  color: rgba(255, 93, 74, 0.95);
}

.hero-card__icon svg {
  width: 20px;
  height: 20px;
}

.hero-card__title {
  font-weight: 800;
  letter-spacing: -0.15px;
  line-height: 1.15;
}

.hero-card__desc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
  line-height: 1.35;
}

.proof {
  padding: 12px 12px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.proof__k {
  margin: 0;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.18px;
}

.proof__v {
  margin: 2px 0 0;
  font-weight: 600;
  font-size: 13px;
}

.hero__visual {
  display: grid;
  justify-items: end;
}

.device {
  width: min(450px, 100%);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.device__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.device__dots span:nth-child(1) {
  background: rgba(255, 93, 74, 0.6);
}

.device__dots span:nth-child(2) {
  background: rgba(255, 199, 64, 0.55);
}

.device__dots span:nth-child(3) {
  background: rgba(66, 245, 165, 0.55);
}

.device__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.device__screen {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
  padding: 14px;
  background:
    radial-gradient(400px 300px at 20% 0%, rgba(66, 245, 165, 0.12), transparent 60%),
    radial-gradient(420px 320px at 90% 20%, rgba(106, 208, 255, 0.1), transparent 60%),
    rgba(6, 18, 31, 0.6);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.mock-col {
  display: grid;
  gap: 10px;
}

.mock-card {
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.mock-card.t1 {
  background: linear-gradient(135deg, rgba(66, 245, 165, 0.22), rgba(255, 255, 255, 0.05));
}

.mock-card.t2 {
  background: linear-gradient(135deg, rgba(106, 208, 255, 0.22), rgba(255, 255, 255, 0.05));
}

.mock-card.t3 {
  background: linear-gradient(135deg, rgba(255, 93, 74, 0.18), rgba(255, 255, 255, 0.05));
}

.mock-card.t4 {
  background: linear-gradient(135deg, rgba(255, 199, 64, 0.18), rgba(255, 255, 255, 0.05));
}

.device__side {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.side-title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.side-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 10px 0;
}

.side-pill {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 8px 0;
}

.side-pill:nth-child(3) {
  width: 70%;
}

.side-pill:nth-child(4) {
  width: 86%;
}

.side-pill:nth-child(5) {
  width: 58%;
}

.section {
  padding: 56px 0;
}

.section--compact {
  padding-top: 18px;
}

.section--alt {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.3vw, 34px);
  margin: 0;
  letter-spacing: -0.4px;
}

.h2--tight {
  margin-bottom: 0;
}

.h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.muted {
  color: var(--muted);
  margin: 0;
  max-width: 76ch;
}

.note {
  color: var(--muted-2);
  margin: 14px 0 0;
  font-size: 13px;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.card--tint {
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(255, 93, 74, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.04);
}

.callout {
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(66, 245, 165, 0.28);
  background:
    radial-gradient(900px 320px at 30% 0%, rgba(66, 245, 165, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  padding: 16px 16px 15px;
}

.callout__title {
  font-weight: 900;
  letter-spacing: -0.25px;
}

.callout__desc {
  margin-top: 6px;
  color: var(--muted);
  max-width: 80ch;
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
}

.list li {
  margin: 8px 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mini {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.mini__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(66, 245, 165, 0.1);
  color: rgba(66, 245, 165, 0.95);
  flex: 0 0 auto;
}

.mini:nth-child(2) .mini__icon {
  background: rgba(106, 208, 255, 0.1);
  color: rgba(106, 208, 255, 0.95);
}

.mini:nth-child(3) .mini__icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.mini:nth-child(4) .mini__icon {
  background: rgba(255, 93, 74, 0.1);
  color: rgba(255, 93, 74, 0.95);
}

.mini__icon svg {
  width: 20px;
  height: 20px;
}

.mini__title {
  font-weight: 700;
  letter-spacing: 0.1px;
}

.mini__desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.feature {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  transition: transform 160ms ease, background 160ms ease;
}

.feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(66, 245, 165, 0.95);
}

.feature:nth-child(2) .feature__icon {
  color: rgba(255, 93, 74, 0.92);
}

.feature:nth-child(3) .feature__icon {
  color: rgba(106, 208, 255, 0.92);
}

.feature:nth-child(4) .feature__icon {
  color: rgba(255, 255, 255, 0.92);
}

.feature:nth-child(5) .feature__icon {
  color: rgba(255, 199, 64, 0.95);
}

.feature:nth-child(6) .feature__icon {
  color: rgba(66, 245, 165, 0.95);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature__title {
  margin: 12px 0 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.feature__desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.badge {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.badge__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge__title {
  font-weight: 700;
  letter-spacing: 0.1px;
}

.badge__desc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.price--featured {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(66, 245, 165, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(66, 245, 165, 0.35);
  box-shadow: 0 20px 80px rgba(66, 245, 165, 0.12);
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(6, 18, 31, 0.92);
  background: linear-gradient(135deg, rgba(66, 245, 165, 0.95), rgba(106, 208, 255, 0.9));
  padding: 7px 10px;
  border-radius: 999px;
}

.price__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.price--featured .price__head {
  padding-right: 122px;
}

.price__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.price__tag {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.price__desc {
  margin: 12px 0 0;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15px;
  vertical-align: middle;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.ticks li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 2px;
  background: rgba(66, 245, 165, 0.18);
  border: 1px solid rgba(66, 245, 165, 0.35);
  box-shadow: 0 0 0 5px rgba(66, 245, 165, 0.08);
  flex: 0 0 auto;
}

.price__cta {
  margin-top: auto;
  padding-top: 16px;
}

.shots {
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(1000px 360px at 0% 0%, rgba(66, 245, 165, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.shots__head {
  margin-bottom: 12px;
}

.shots__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shot {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 18, 31, 0.45);
  overflow: hidden;
}

.shot__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.15px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shot__link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-decoration: none;
  background: rgba(6, 18, 31, 0.35);
  cursor: pointer;
}

.shot__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.shot-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(2, 10, 18, 0.72);
  backdrop-filter: blur(3px);
}

.shot-modal[hidden] {
  display: none !important;
}

.shot-modal.is-open {
  display: grid !important;
}

.shot-modal__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 52px));
  max-height: calc(100vh - 60px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(1000px 360px at 20% 0%, rgba(106, 208, 255, 0.1), transparent 62%),
    rgba(6, 18, 31, 0.95);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.5);
  padding: 16px;
  pointer-events: auto;
}

.shot-modal__img {
  width: 100%;
  max-height: calc(100vh - 122px);
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

.shot-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 18, 31, 0.78);
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.shot-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

body.modal-open {
  overflow: hidden;
}

.cta-card {
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 380px at 0% 10%, rgba(66, 245, 165, 0.12), transparent 55%),
    radial-gradient(900px 380px at 100% 10%, rgba(106, 208, 255, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.03);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: center;
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cta-card__actions .btn {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cta-card__aside {
  display: grid;
  gap: 10px;
  justify-content: end;
}

.cta-metric {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 31, 0.35);
  padding: 12px 12px 11px;
  min-width: 220px;
}

.cta-metric__k {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
}

.cta-metric__v {
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-top: 3px;
}

.tiny {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

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

.issue-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.issue-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(66, 245, 165, 0.96);
  display: grid;
  place-items: center;
}

.issue-card:nth-child(2) .issue-card__icon {
  color: rgba(255, 93, 74, 0.95);
}

.issue-card:nth-child(3) .issue-card__icon {
  color: rgba(106, 208, 255, 0.95);
}

.issue-card:nth-child(4) .issue-card__icon {
  color: rgba(255, 199, 64, 0.95);
}

.issue-card__icon svg {
  width: 22px;
  height: 22px;
}

.issue-card .h3 {
  margin-top: 12px;
}

.issue-card .muted {
  margin-top: 7px;
  font-size: 14px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.audience-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 13px 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.audience-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.difference-banner {
  border-radius: 20px;
  border: 1px solid rgba(66, 245, 165, 0.28);
  background:
    radial-gradient(900px 320px at 30% 0%, rgba(66, 245, 165, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.difference-banner__quote {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.35px;
}

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

.difference-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
}

.difference-card .h3 {
  margin-top: 0;
}

.difference-card .muted {
  margin-top: 7px;
  font-size: 14px;
}

.lead-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 380px at 0% 10%, rgba(66, 245, 165, 0.1), transparent 55%),
    radial-gradient(900px 380px at 100% 10%, rgba(106, 208, 255, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.lead-card__head {
  display: grid;
  gap: 8px;
}

.lead-form {
  margin-top: 14px;
}

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

.lead-field {
  display: grid;
  gap: 6px;
}

.lead-field span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.lead-field input,
.lead-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(6, 18, 31, 0.42);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.3;
  padding: 11px 12px;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.lead-field textarea {
  resize: vertical;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: var(--muted-2);
}

.lead-field input:hover,
.lead-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.lead-field input:focus-visible,
.lead-field textarea:focus-visible {
  outline: none;
  border-color: rgba(66, 245, 165, 0.52);
  box-shadow: 0 0 0 3px rgba(66, 245, 165, 0.18);
  background: rgba(6, 18, 31, 0.54);
}

.lead-field--full {
  margin-top: 12px;
}

.lead-form__submit {
  margin-top: 14px;
  min-height: 48px;
  width: 100%;
  font-size: 16px;
}

.lead-form__submit[disabled] {
  opacity: 0.78;
  cursor: wait;
  transform: none !important;
}

.lead-form__status {
  margin: 10px 0 0;
  min-height: 20px;
  font-size: 13px;
  color: var(--muted);
}

.lead-form__status.is-ok {
  color: rgba(66, 245, 165, 0.96);
}

.lead-form__status.is-error {
  color: rgba(255, 93, 74, 0.96);
}

.lead-form__note {
  margin-top: 10px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  padding: 24px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__logo {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(66, 245, 165, 0.14);
}

.footer__name {
  font-weight: 800;
  letter-spacing: 0.1px;
}

.footer__tag {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: -2px;
}

.footer__links {
  display: flex;
  gap: 14px;
  justify-content: end;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  grid-column: 1 / -1;
  color: var(--muted-2);
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.dot {
  opacity: 0.6;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .feature,
  .reveal {
    transition: none !important;
  }
}

@media (max-width: 960px) {
  .promo-tab {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 10px auto 0;
  }
  .promo-tab__impact {
    min-width: 0;
    width: 100%;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__panel {
    position: absolute;
    right: 16px;
    top: var(--topbar-h);
    width: min(320px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 18, 31, 0.86);
    backdrop-filter: blur(14px);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - var(--topbar-h) - 24px);
    overflow: auto;
  }
  .nav__panel.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav__link {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__cta {
    margin-left: 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero__visual {
    justify-items: start;
  }
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .badges {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .shots__grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-card__aside {
    justify-content: start;
  }
  .cta-metric {
    min-width: unset;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .issue-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .difference-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero__title-main {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .hero__proof {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .lead-form__grid {
    grid-template-columns: 1fr;
  }
  .cta-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__links {
    justify-content: start;
  }
  .shot-modal {
    padding: 14px;
  }
  .shot-modal__dialog {
    width: min(1120px, calc(100vw - 20px));
    max-height: calc(100vh - 28px);
    padding: 12px;
  }
  .shot-modal__img {
    max-height: calc(100vh - 90px);
  }
}
