:root {
  --bg: #0e0e10;
  --bg2: #141417;
  --bg3: #1c1c20;
  --line: #2a2a2e;
  --text: #e7e7ea;
  --muted: #9a9aa2;
  --green: #53fc18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  margin-right: auto;
}

.brand img {
  width: 28px;
  height: 28px;
}

.brand .lab {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

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

.nav-ctas {
  display: flex;
  gap: 10px;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #0b0b0c;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--green);
}

.btn-sm {
  padding: 7px 12px;
  font-size: 13px;
}

/* ---- Hero ---- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: radial-gradient(ellipse 900px 500px at 50% -10%, rgb(83 252 24 / 0.14), transparent 70%);
}

.hero .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgb(83 252 24 / 0.35);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.hero h1 .green {
  color: var(--green);
}

.hero p.sub {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 12.5px;
  color: var(--muted);
}

.hero-shot {
  margin-top: 56px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ---- Sections ---- */
section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 0 0 12px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

/* ---- Feature grid ---- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg2);
}

.feature .icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 15.5px;
  font-weight: 700;
}

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

.feature .pro-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgb(83 252 24 / 0.16);
  color: var(--green);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* ---- Screenshots ---- */
.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 720px) {
  .shots {
    grid-template-columns: 1fr;
  }
}

.shot {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg2);
}

.shot img {
  width: 100%;
}

.shot-cap {
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ---- Pricing ---- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg2);
}

.plan.best {
  border-color: var(--green);
  background: linear-gradient(180deg, rgb(83 252 24 / 0.08), var(--bg2) 60%);
}

.plan .plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #0b0b0c;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.plan .plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.plan .plan-price {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 2px;
}

.plan .plan-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.plan .plan-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 18px;
  min-height: 32px;
}

.plan .btn {
  margin-top: auto;
  justify-content: center;
}

.plans-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 24px;
}

/* ---- Free vs Pro comparison ---- */
.compare {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg2);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}

.compare-table th,
.compare-table td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.compare-table td.compare-feature,
.compare-table th.compare-feature {
  text-align: left;
  color: var(--text);
  white-space: normal;
}

.compare-table thead th {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th:not(.compare-feature) {
  color: var(--green);
}

.compare-table tbody td {
  color: var(--muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td.yes {
  color: var(--green);
  font-weight: 700;
}

.compare-table td.no {
  color: #555;
}

/* ---- FAQ ---- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 15.5px;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Final CTA ---- */
.cta-final {
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 14px;
  font-weight: 800;
}

.cta-final p {
  color: var(--muted);
  margin: 0 0 30px;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.foot-links {
  display: flex;
  gap: 20px;
}

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

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

/* ---- Privacy page ---- */
.legal {
  padding: 60px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 19px;
  margin: 36px 0 12px;
}

.legal p,
.legal li {
  color: #cfcfd4;
  font-size: 14.5px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
}

.legal code {
  background: var(--bg3);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.legal a {
  color: var(--green);
}
