.topbar .nav-dropdown {
  position: relative;
  outline: none;
}
.topbar .nav-dropdown:focus {
  outline: none;
}
.topbar .nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.topbar .nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.topbar .nav-dropdown summary:focus {
  outline: none;
}
.topbar .nav-dropdown summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.topbar .nav-dropdown summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 120ms ease;
}
.topbar .nav-dropdown[open] summary,
.topbar .nav-dropdown summary:hover {
  color: var(--fg);
}
.topbar .nav-dropdown[open] summary::after {
  transform: rotate(180deg);
}
.topbar .nav-dropdown > .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 80;
  width: min(360px, calc(100vw - 40px));
  padding: 8px;
  display: grid;
  gap: 2px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}
.topbar .nav-dropdown > .nav-dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--fg-muted);
  font-size: 13.5px;
  line-height: 1.25;
}
.topbar .nav-dropdown > .nav-dropdown-menu a:hover {
  background: var(--bg-sunk);
  color: var(--fg);
}

.lp-hero {
  padding: 82px 0 34px;
  border-bottom: 1px solid var(--border);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.lp-kicker {
  font: 600 12px var(--font-mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-hero h1 {
  margin: 14px 0 16px;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.lp-hero .lede {
  max-width: 58ch;
  margin: 0;
  color: var(--fg-muted);
  font-size: 18px;
}
.lp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
.lp-free-line {
  margin-top: 12px;
  color: var(--fg-subtle);
  font: 500 12px var(--font-mono);
}
.lp-demo {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.lp-demo-head {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-sunk);
}
.lp-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.lp-demo-url {
  margin-left: 6px;
  color: var(--fg-muted);
  font: 500 12px var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.lp-source,
.lp-note {
  padding: 22px;
}
.lp-source {
  border-right: 1px solid var(--border);
  background: var(--bg);
}
.lp-source h3,
.lp-note h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.lp-line {
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--bg-sunk);
}
.lp-line.short {
  width: 58%;
}
.lp-line.mid {
  width: 78%;
}
.lp-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.lp-note strong {
  color: var(--fg);
}
.lp-link {
  color: var(--accent);
  border-bottom: 1px dashed currentColor;
}
.lp-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--border);
}
.lp-section h2 {
  margin: 0 0 14px;
  max-width: 19ch;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.lp-section .section-lede {
  max-width: 62ch;
}
.lp-workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.lp-step {
  padding: 24px 24px 26px;
  border-right: 1px solid var(--border);
}
.lp-step:last-child {
  border-right: 0;
}
.lp-step .num {
  font: 600 12px var(--font-mono);
  color: var(--accent);
}
.lp-step h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}
.lp-step p,
.lp-list li,
.lp-faq p {
  color: var(--fg-muted);
}
.lp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.lp-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.lp-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
}
.lp-list li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 700;
}
.lp-trust {
  background: var(--bg-sunk);
}
.lp-plan {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
}
.lp-plan strong {
  font-size: 18px;
}
.lp-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-top: 34px;
}
.lp-faq h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.lp-faq p {
  margin: 0;
  font-size: 14px;
}
.lp-final {
  text-align: center;
  padding: 82px 0;
}
.lp-final h2 {
  margin-left: auto;
  margin-right: auto;
}
.lp-final .lp-actions {
  justify-content: center;
}
@media (max-width: 860px) {
  .lp-hero-grid,
  .lp-two {
    grid-template-columns: 1fr;
  }
  .lp-hero {
    padding-top: 54px;
  }
  .lp-demo-body,
  .lp-workflow,
  .lp-faq {
    grid-template-columns: 1fr;
  }
  .lp-source {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .lp-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .lp-step:last-child {
    border-bottom: 0;
  }
}
