/* LLM Radar — marketing site
   Tokens and layout mirror design/LLM Radar - Website.dc.html */

:root {
  --tx: #1d1d1f;
  --tx2: #6e6e73;
  --tx3: #86868b;
  --acc: #0071e3;
  --acc-hover: #0058b0;
  --sep: rgba(0, 0, 0, 0.1);
  --sunk: #f5f5f7;
  --ok: #1d8a3f;
  --warn: #b8690a;
  --white: #fff;
  --hero-bg: linear-gradient(180deg, #fbfbfd 0%, #fff 100%);
  --logo-grad: linear-gradient(160deg, #7657f6, #0878c9);
  --max: 1000px;
  --pad-x: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  color: var(--tx);
}

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

a:hover {
  color: var(--acc-hover);
  text-decoration: underline;
}

.tnum {
  font-variant-numeric: tabular-nums;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ── Utilities ── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding: 74px var(--pad-x);
}

.section--tight {
  padding: 64px var(--pad-x);
}

.section--roomy {
  padding: 80px var(--pad-x);
}

.section--sunk {
  background: var(--sunk);
}

.section-head {
  text-align: center;
}

.section-head--narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head--features {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.section h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.h2-lg {
  font-size: 40px;
}

.h2-md {
  font-size: 38px;
  line-height: 1.14;
}

.h2-sm {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.028em;
}

.lede {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--tx2);
}

.lede--tight {
  margin: 10px 0 0;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.lift {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--primary {
  height: 46px;
  padding: 0 24px;
  border-radius: 23px;
  background: var(--acc);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
}

.btn--primary:hover {
  background: var(--acc-hover);
  color: #fff !important;
}

.btn--nav {
  height: 30px;
  padding: 0 14px;
  border-radius: 15px;
  background: var(--acc);
  color: #fff !important;
  font-size: 13px;
  font-weight: 560;
}

.btn--nav:hover {
  background: var(--acc-hover);
  color: #fff !important;
}

.btn--ghost {
  height: 40px;
  border-radius: 20px;
  background: var(--sunk);
  font-size: 14px;
  font-weight: 580;
  color: var(--tx) !important;
}

.btn--ghost:hover {
  color: var(--acc) !important;
}

.btn--pill {
  height: 34px;
  padding: 0 16px;
  border-radius: 17px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 560;
  color: var(--tx) !important;
  box-shadow: 0 0 0 0.5px var(--sep);
}

.btn--pill:hover {
  color: var(--acc) !important;
  text-decoration: none !important;
}

.btn-note {
  font-size: 13px;
  color: var(--tx3);
  margin-top: 11px;
}

/* ── Logo mark ── */

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--logo-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark--lg {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(78, 74, 218, 0.3);
}

/* ── Nav ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 52px;
  padding: 0 var(--pad-x);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--sep);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tx) !important;
  text-decoration: none !important;
}

.nav__brand:hover {
  color: var(--tx) !important;
}

.nav__name {
  font-size: 14.5px;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.nav__spacer {
  flex: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.nav__links a:hover {
  color: var(--acc);
  text-decoration: none;
}

.nav__links .btn--nav {
  display: none;
}

.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav__toggle:hover {
  background: var(--sunk);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--tx);
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--tx);
}

.nav__toggle span::before {
  top: -5px;
}

.nav__toggle span::after {
  top: 5px;
}

/* ── Hero ── */

.hero {
  padding: 52px var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--hero-bg);
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  color: var(--tx2);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30d158;
  animation: pulse 2s ease-in-out infinite;
}

.hero__sep {
  width: 0.5px;
  height: 14px;
  background: var(--sep);
}

.hero .logo-mark--lg {
  margin-top: 30px;
}

.hero h1 {
  max-width: 800px;
  margin: 22px 0 0;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__sub {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--tx2);
  text-wrap: pretty;
}

.hero__sub b {
  color: var(--tx);
  font-weight: 600;
}

.hero .btn--primary {
  margin-top: 26px;
}

/* ── App mock ── */

.app-shot {
  width: min(1000px, 100%);
  margin: 46px 0 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.19), 0 0 0 0.5px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  text-align: left;
}

.app-shot__caption {
  width: min(1000px, 100%);
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--tx3);
  text-align: center;
}

.app-shot__inner {
  display: flex;
  height: 440px;
}

.app-shot__sidebar {
  width: 186px;
  flex: none;
  display: flex;
  flex-direction: column;
  background: #f1f1f3;
  border-right: 0.5px solid rgba(0, 0, 0, 0.11);
}

.app-shot__traffic {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
}

.app-shot__traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.app-shot__traffic .r {
  background: #ff5f57;
}
.app-shot__traffic .y {
  background: #febc2e;
}
.app-shot__traffic .g {
  background: #28c840;
}

.app-shot__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 8px;
}

.app-shot__label {
  padding: 3px 8px 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: #8a8a90;
}

.app-shot__label--manage {
  padding-top: 11px;
}

.app-shot__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #2c2c30;
  font-size: 12.5px;
}

.app-shot__item--active {
  background: var(--acc);
  color: #fff;
  font-weight: 580;
}

.app-shot__item .count {
  margin-left: auto;
  font-size: 11.5px;
  color: #8a8a90;
}

.app-shot__item--active .count {
  color: rgba(255, 255, 255, 0.85);
}

.app-shot__badge {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: 9px;
  background: var(--acc);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
}

.app-shot__footer {
  margin-top: auto;
  padding: 11px 13px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}

.app-shot__footer-label {
  font-size: 10.5px;
  color: #8a8a90;
}

.app-shot__footer-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.app-shot__footer-val strong {
  font-size: 18px;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.app-shot__footer-val span {
  font-size: 11.5px;
  color: #6c6c73;
}

.app-shot__bar {
  height: 5px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.09);
  border-radius: 3px;
  overflow: hidden;
}

.app-shot__bar i {
  display: block;
  width: 41%;
  height: 100%;
  background: var(--acc);
  border-radius: 3px;
}

.app-shot__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 13px 16px;
}

.app-shot__title {
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.app-shot__subtitle {
  font-size: 11.5px;
  color: #6c6c73;
  margin-bottom: 11px;
}

.app-shot__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.app-shot__stat {
  padding: 8px 10px;
  background: #f5f5f7;
  border-radius: 8px;
}

.app-shot__stat-label {
  font-size: 10.5px;
  color: #7a7a80;
}

.app-shot__stat-val {
  font-size: 19px;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.app-shot__stat-val.warn {
  color: var(--warn);
}

.app-shot__cols {
  display: grid;
  grid-template-columns: 1fr 74px 48px 48px 68px;
  gap: 8px;
  padding: 0 11px 5px;
  font-size: 10.5px;
  color: #8a8a90;
}

.app-shot__cols span:not(:first-child) {
  text-align: right;
}

.app-shot__table {
  border: 0.5px solid rgba(0, 0, 0, 0.11);
  border-radius: 9px;
  overflow: hidden;
}

.app-shot__row {
  display: grid;
  grid-template-columns: 1fr 74px 48px 48px 68px;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
}

.app-shot__row + .app-shot__row {
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

.app-shot__row--sel {
  background: #e9f2ff;
  border-left: 2.5px solid var(--acc);
}

.app-shot__row--dim {
  opacity: 0.55;
}

.app-shot__app {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.app-shot__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-shot__status.active {
  background: #30d158;
}
.app-shot__status.idle {
  background: #ffb020;
}
.app-shot__status.off {
  border: 1.5px solid #a0a0a6;
  background: transparent;
}

.app-shot__app-name {
  font-size: 12.5px;
  font-weight: 590;
}

.app-shot__app-meta {
  font-size: 10.5px;
  color: #6c6c73;
}

.app-shot__row .mem {
  text-align: right;
  font-size: 12.5px;
  font-weight: 590;
}

.app-shot__row .cpu,
.app-shot__row .gpu,
.app-shot__row .idle {
  text-align: right;
  font-size: 11.5px;
}

.app-shot__row .idle.ok {
  color: var(--ok);
  font-weight: 520;
}

.app-shot__row .idle.warn {
  color: var(--warn);
  font-weight: 520;
}

.app-shot__row .idle.muted,
.app-shot__row .gpu.muted {
  color: #8a8a90;
}

.hero__bottom-space {
  height: 70px;
}

/* ── Reviews ── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.review {
  padding: 22px;
  background: #fff;
  border-radius: 14px;
}

.review p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tx);
}

.review__author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}

.review__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcdce0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 640;
  color: var(--tx2);
}

.review__name {
  font-size: 13px;
  font-weight: 600;
}

.review__meta {
  font-size: 12px;
  color: var(--tx3);
}

.reviews-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--tx3);
  margin-top: 16px;
}

/* ── How it works ── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--acc);
  color: #fff;
  font-size: 15px;
  font-weight: 680;
}

.step__title {
  font-size: 19px;
  font-weight: 660;
  letter-spacing: -0.018em;
  margin-top: 14px;
}

.step p {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tx2);
}

.step p b {
  color: var(--tx);
  font-weight: 600;
}

/* ── Comparison ── */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.compare__card {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
}

.compare__card--hl {
  box-shadow: 0 0 0 2px var(--acc);
}

.compare__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tx3);
}

.compare__card--hl .compare__eyebrow {
  color: var(--acc);
}

.compare__title {
  font-size: 20px;
  font-weight: 660;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.compare__mono {
  margin-top: 16px;
  padding: 13px 15px;
  background: var(--sunk);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--tx2);
}

.compare__mono-row {
  display: flex;
}

.compare__mono-row span:first-child {
  flex: 1;
}

.compare__radar {
  margin-top: 16px;
  padding: 13px 15px;
  background: #e9f2ff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.compare__radar-head {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: -0.01em;
}

.compare__radar-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.compare__radar-app {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.compare__radar-name {
  font-size: 13.5px;
  font-weight: 620;
  color: var(--tx);
  letter-spacing: -0.01em;
}

.compare__radar-meta {
  font-size: 12px;
  color: var(--tx2);
  line-height: 1.35;
}

.compare__radar-mem {
  font-size: 12.5px;
  font-weight: 560;
  color: var(--tx2);
  font-variant-numeric: tabular-nums;
  flex: none;
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--tx2);
}

.compare__list-item {
  display: flex;
  gap: 9px;
}

.compare__list-item svg {
  flex: none;
  margin-top: 3px;
}

/* ── Features ── */

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

.feature {
  padding: 24px;
  background: var(--sunk);
  border-radius: 14px;
}

.feature__stat {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--acc);
}

.feature__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx2);
  margin-top: 6px;
}

.feature p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--tx2);
}

.feature__bar {
  display: flex;
  height: 8px;
  margin-top: 12px;
  border-radius: 4px;
  overflow: hidden;
  gap: 1.5px;
}

.feature__bar span:nth-child(1) {
  width: 78%;
  background: var(--acc);
}
.feature__bar span:nth-child(2) {
  width: 17%;
  background: #7fb4f5;
}
.feature__bar span:nth-child(3) {
  width: 5%;
  background: #c9cbd0;
}

.feature__menubar {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 0;
  background: linear-gradient(150deg, #6a8fbf, #c2a894);
  border-radius: 9px;
}

.feature__menubar-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  background: rgba(246, 246, 248, 0.8);
}

.feature__menubar-mem {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1c1c1e;
}

.feature__menubar-time {
  font-size: 11.5px;
  color: #1c1c1e;
  opacity: 0.8;
}

/* ── Apps ── */

.apps-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.apps-head__copy {
  max-width: 600px;
}

.apps-head__spacer {
  flex: 1;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.app-card {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
}

.app-card--dashed {
  border: 1px dashed rgba(0, 0, 0, 0.18);
  background: #fff;
}

.app-card__name {
  font-size: 15px;
  font-weight: 630;
}

.app-card--dashed .app-card__name {
  color: var(--acc);
}

.app-card__meta {
  font-size: 12.5px;
  color: var(--tx2);
  margin-top: 2px;
}

/* ── Pricing ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.price-card {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 0 0.5px var(--sep);
}

.price-card--pro {
  position: relative;
  box-shadow: 0 0 0 2px var(--acc), 0 14px 40px rgba(0, 113, 227, 0.14);
}

.price-card--soon .price-card__soon-label {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--tx2);
}

.btn--disabled,
a.btn--disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

.pricing-lede {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.price-card__badge {
  position: absolute;
  top: -11px;
  left: 28px;
  padding: 3px 11px;
  border-radius: 11px;
  background: var(--acc);
  color: #fff;
  font-size: 11.5px;
  font-weight: 640;
}

.price-card__tier {
  font-size: 19px;
  font-weight: 660;
  letter-spacing: -0.018em;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}

.price-card__amount strong {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.price-card__amount span {
  font-size: 14px;
  color: var(--tx2);
}

.price-card__desc {
  font-size: 13.5px;
  color: var(--tx2);
  margin-top: 2px;
}

.price-card .btn {
  width: 100%;
  margin-top: 20px;
}

.price-card__note {
  text-align: center;
  font-size: 12px;
  color: var(--tx3);
  margin-top: 8px;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
  font-size: 14px;
}

.price-card__feat {
  display: flex;
  gap: 9px;
}

.price-card__feat svg {
  flex: none;
  margin-top: 2px;
}

.price-card__feat--plus {
  font-weight: 560;
}

.price-card__feat--muted {
  color: var(--tx3);
}

.price-card__feat--muted .dot {
  flex: none;
  width: 15px;
  text-align: center;
  margin-top: 1px;
}

/* ── FAQ ── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq {
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
}

.faq__q {
  font-size: 16px;
  font-weight: 640;
  letter-spacing: -0.014em;
}

.faq__a {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tx2);
}

.faq__a b {
  color: var(--tx);
  font-weight: 600;
}

/* ── Changelog ── */

.changelog {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}

.changelog__entry {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  border-top: 0.5px solid var(--sep);
}

.changelog__entry:last-child {
  border-bottom: 0.5px solid var(--sep);
}

.changelog__ver {
  width: 150px;
  flex: none;
}

.changelog__ver-num {
  font-size: 16px;
  font-weight: 660;
  letter-spacing: -0.015em;
}

.changelog__ver-date {
  font-size: 13px;
  color: var(--tx3);
}

.changelog__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.changelog__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--tx2);
}

/* ── Closing CTA ── */

.cta {
  padding: 80px var(--pad-x);
  background: var(--sunk);
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.032em;
  font-weight: 700;
  text-wrap: balance;
}

.cta p {
  max-width: 480px;
  margin: 14px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--tx2);
}

.cta .btn--primary {
  margin-top: 24px;
}

/* ── Footer ── */

.footer {
  padding: 46px var(--pad-x) 34px;
  border-top: 0.5px solid var(--sep);
}

.footer__top {
  display: flex;
  gap: 60px;
}

.footer__brand {
  width: 230px;
  flex: none;
}

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

.footer__brand-name {
  font-size: 14px;
  font-weight: 640;
}

.footer__tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--tx2);
  margin-top: 10px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 640;
  margin-bottom: 10px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}

.footer__col-links a {
  color: var(--tx2);
}

.footer__col-links a:hover {
  color: var(--acc);
}

.footer__bottom {
  display: flex;
  align-items: center;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 0.5px solid var(--sep);
  font-size: 12.5px;
  color: var(--tx3);
}

.footer__bottom-spacer {
  flex: 1;
}

/* ── Responsive ── */

@media (max-width: 1080px) {
  :root {
    --pad-x: 28px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .app-shot__inner {
    height: auto;
    min-height: 400px;
  }

  .app-shot__cols,
  .app-shot__row {
    grid-template-columns: 1fr 64px 42px 42px 58px;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--sep);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav__links.is-open a {
    padding: 12px var(--pad-x);
  }

  .nav__links.is-open .btn--nav {
    display: flex;
    margin: 8px var(--pad-x) 0;
    justify-content: center;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta-desktop {
    display: none;
  }

  .reviews-grid,
  .steps,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .compare,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__top {
    flex-direction: column;
    gap: 36px;
  }

  .footer__brand {
    width: auto;
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .h2-lg,
  .h2-md,
  .cta h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .app-shot__sidebar {
    display: none;
  }

  .app-shot__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-shot__cols {
    display: none;
  }

  .app-shot__row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .app-shot__row .cpu,
  .app-shot__row .gpu,
  .app-shot__row .idle {
    display: none;
  }

  .changelog__entry {
    flex-direction: column;
    gap: 8px;
  }

  .changelog__ver {
    width: auto;
  }
}

@media (max-width: 520px) {
  :root {
    --pad-x: 20px;
  }

  .hero__badges {
    gap: 10px 16px;
  }

  .hero__sep {
    display: none;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-card__amount strong {
    font-size: 36px;
  }
}
