:root {
  /* Palette inspired by your screenshot (blue/purple + clean light surfaces) */
  --bg: #f6f8ff;
  --bg2: #ffffff;
  --panel: rgba(18, 24, 52, 0.04);
  --panel2: rgba(18, 24, 52, 0.06);
  --border: rgba(18, 24, 52, 0.12);
  --text: rgba(18, 24, 52, 0.92);
  --muted: rgba(18, 24, 52, 0.72);
  --muted2: rgba(18, 24, 52, 0.58);
  --shadow: rgba(18, 24, 52, 0.14);

  /* brand accents */
  --brandA: #5b2fbf; /* purple */
  --brandB: #3b5bdc; /* blue */
  --brandC: #7dc0ea; /* light blue */
  --warn: #f59e0b;
  --danger: #ef4444;

  --radius: 16px;
  --radiusSm: 12px;
  --container: 1120px;
}

[data-theme="dark"] {
  /* Dark mode (blue/purple, no heavy gradients) */
  --bg: #0b1024;
  --bg2: #0f1633;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.58);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  /* Clean background (no heavy gradients) */
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus {
  left: 12px;
  z-index: 10;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg2) 88%, transparent);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand__logo {
  display: block;
}

.nav__links {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 550;
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__links a:hover {
  background: var(--panel);
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 8%);
  color: var(--text);
  font-weight: 650;
  box-shadow: 0 10px 30px var(--shadow);
}

.btn:hover {
  background: var(--panel2);
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  border-color: color-mix(in oklab, var(--brandB), var(--border) 55%);
  background: var(--brandA);
  color: #fff;
}
.btn--primary:hover {
  background: color-mix(in oklab, var(--brandA) 92%, black);
}

.btn--secondary {
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.04) 12%);
}

.btn--ghost {
  background: transparent;
  box-shadow: none;
}

.btn--lg {
  padding: 12px 16px;
}

.btn__icon {
  font-size: 16px;
  opacity: 0.9;
}

.hero {
  padding: 54px 0 26px;
}

.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 10%);
  color: var(--muted);
  font-weight: 650;
}

.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brandA), var(--brandB));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--panel), transparent 50%);
}

.h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

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

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

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

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

.stat {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel), transparent 10%);
  border-radius: var(--radiusSm);
  padding: 10px 12px;
}

.stat__k {
  font-weight: 750;
  letter-spacing: -0.01em;
}

.stat__v {
  color: var(--muted2);
  font-size: 13px;
}

.hero__panel {
  position: sticky;
  top: 86px;
}

.panel {
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow);
}

.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 8%);
  border-bottom: 1px solid var(--border);
}

.panel__lights {
  display: inline-flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.9;
}
.dot--r {
  background: var(--danger);
}
.dot--y {
  background: var(--warn);
}
.dot--g {
  background: var(--brandC);
}

.panel__title {
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.panel__pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.panel__body {
  padding: 14px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 10%);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.chip--on {
  color: #fff;
  border-color: color-mix(in oklab, var(--brandB), var(--border) 55%);
  background: var(--brandB);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.swatch {
  height: 44px;
  border-radius: 14px;
  background: var(--c);
  border: 1px solid color-mix(in oklab, var(--c), rgba(255, 255, 255, 0.1) 40%);
  box-shadow: 0 16px 40px var(--shadow);
}

.mini {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.mini__row {
  display: grid;
  grid-template-columns: 72px 1fr 64px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 10%);
}
.mini__row:first-child {
  border-top: none;
}

.mini__k {
  color: var(--muted2);
  font-weight: 750;
  font-size: 12px;
}
.mini__v {
  font-weight: 650;
  letter-spacing: 0.01em;
}
.mini__btn {
  justify-self: end;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg2), rgba(18, 24, 52, 0.03) 8%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero__note {
  margin: 10px 6px 0;
  color: var(--muted2);
  font-size: 12px;
}

.section {
  padding: 54px 0;
}

.section--alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg2);
}

.card--tight {
  padding: 14px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.exportGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
  font-weight: 650;
}

.callout {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklab, var(--brandB), var(--border) 70%);
  background: color-mix(in oklab, var(--bg2), rgba(91, 47, 191, 0.08) 12%);
  padding: 16px;
}

.callout__title {
  font-weight: 800;
  margin-bottom: 6px;
}

.callout__body {
  color: var(--muted);
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  padding: 12px 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal {
  margin-top: 14px;
}
.legal h2 {
  margin-top: 18px;
}
.legal p {
  margin: 0;
}

.fineprint {
  margin: 16px 0 0;
  color: var(--muted2);
  font-size: 13px;
}

.section--cta {
  padding: 42px 0 64px;
}

.cta {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 22px 0;
}

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

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

.footer__name {
  font-weight: 850;
  letter-spacing: -0.01em;
}

.footer__tag {
  color: var(--muted2);
  font-size: 13px;
}

.footer__links {
  display: inline-flex;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.footer__copy {
  color: var(--muted2);
  font-size: 13px;
  justify-self: end;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.priceCard {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: color-mix(in oklab, var(--panel), transparent 10%);
  padding: 16px;
  box-shadow: 0 26px 70px var(--shadow);
}

.priceCard__top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.priceCard__name {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.priceCard__price {
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 34px;
  margin-top: 4px;
}

.priceCard__mo {
  font-size: 14px;
  color: var(--muted);
  font-weight: 800;
  margin-left: 4px;
}

.priceCard__sub {
  margin-top: 6px;
  color: var(--muted);
}

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

.priceCard__list li {
  margin: 10px 0;
}

.priceCard__cta {
  margin-top: 14px;
  display: flex;
}

.priceCard--featured {
  border-color: color-mix(in oklab, var(--brandB), var(--border) 65%);
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(900px 400px at 85% 35%, rgba(6, 182, 212, 0.18), transparent 60%),
    color-mix(in oklab, var(--panel), transparent 6%);
}

.priceCard__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--brandA), var(--border) 60%);
  background: color-mix(in oklab, var(--brandA) 22%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    position: static;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__copy {
    justify-self: start;
  }
  .nav__links {
    display: none;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
}


