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

:root {
  --bg-deep: #f4f6f8;
  --bg-panel: #ffffff;
  --line: #d5dde6;
  --text: #15202b;
  --muted: #5b6b7c;
  --accent: #1f6feb;
  --accent-strong: #1858c7;
  --accent-soft: rgba(31, 111, 235, 0.1);
  --font-ui: "Figtree", "Segoe UI", sans-serif;
  --font-display: "Figtree", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg-deep);
}

a {
  color: inherit;
}

.lp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  position: sticky;
  top: 0;
  z-index: 20;
}

.lp-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

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

.lp-nav-cta {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text) !important;
  background: var(--bg-panel);
}

.lp-nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.lp-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.75rem 1.35rem 2rem;
}

.lp-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-logo {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
}

.lp-tagline {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.4;
  color: var(--muted);
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.lp-cta-center {
  margin-top: 1.25rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp-btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.lp-btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.lp-btn-ghost {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--text);
}

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

.lp-fine {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.lp-section {
  width: min(820px, calc(100% - 2.25rem));
  margin: 0 auto;
  padding: 1.75rem 0 0.35rem;
}

.lp-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lp-section-lede {
  margin: 0.4rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.lp-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.lp-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  column-gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
}

.lp-steps li::before {
  content: counter(step) ".";
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.lp-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
  color: var(--text);
  grid-column: 2;
}

.lp-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  grid-column: 2;
}

.lp-demo {
  padding-bottom: 0.5rem;
}

.lp-video {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1419;
  box-shadow: 0 4px 16px rgba(21, 32, 43, 0.08);
}

.lp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lp-video-link {
  margin: 0.7rem 0 0;
  text-align: right;
  font-size: 0.78rem;
}

.lp-video-link a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 111, 235, 0.3);
}

.lp-video-link a:hover {
  border-bottom-color: var(--accent);
}

.lp-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.lp-price {
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.lp-price-pro {
  border-color: rgba(31, 111, 235, 0.45);
  background: #f7faff;
}

.lp-price h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}

.lp-price-amt {
  margin: 0.45rem 0 0.85rem;
  font-size: 1.85rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lp-price-amt span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.lp-price-pro .lp-price-amt {
  color: var(--accent);
}

.lp-price ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.lp-price li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lp-price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.lp-foot {
  margin-top: 2.25rem;
  padding: 1rem 1.35rem 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--muted);
  background: var(--bg-panel);
}

.lp-foot a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.lp-foot a:hover {
  color: var(--accent);
  border-bottom-color: rgba(31, 111, 235, 0.35);
}

.lp-sep {
  opacity: 0.45;
}

@media (max-width: 700px) {
  .lp-nav a:not(.lp-nav-cta) {
    display: none;
  }

  .lp-price-row {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding-top: 2.1rem;
    padding-bottom: 1.6rem;
  }
}

/* Legal pages */
.lp-legal {
  width: min(720px, calc(100% - 2.25rem));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
}

.lp-legal h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lp-legal .lp-updated {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.lp-legal h2 {
  margin: 1.5rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--text);
}

.lp-legal p,
.lp-legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lp-legal p {
  margin: 0 0 0.75rem;
}

.lp-legal ul {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
}

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