.landing {
  background: #070b14;
}

.landing-nav {
  background: rgb(7 11 20 / 0.8);
  border-bottom-color: rgb(255 255 255 / 0.06);
}

.landing-nav .nav-links a {
  font-size: 0.875rem;
  color: rgb(248 250 252 / 0.65);
}

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

/* Hero */
.lp-hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.lp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lp-glow-a {
  top: -120px;
  left: 50%;
  transform: translateX(-60%);
  width: 600px;
  height: 400px;
  background: rgb(59 130 246 / 0.18);
}

.lp-glow-b {
  top: 200px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgb(6 182 212 / 0.12);
}

.lp-hero-inner {
  position: relative;
  text-align: center;
  max-width: 52rem;
}

.lp-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.lp-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.lp-accent {
  background: linear-gradient(135deg, #38bdf8, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(248 250 252 / 0.7);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.lp-lead strong {
  color: var(--foreground);
  font-weight: 600;
}

.lp-video-wrap {
  margin-bottom: 2rem;
}

.lp-video-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow:
    0 0 0 1px rgb(59 130 246 / 0.1),
    0 24px 80px rgb(0 0 0 / 0.5),
    0 0 60px rgb(6 182 212 / 0.08);
  background: #000;
}

.lp-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  vertical-align: middle;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.btn-ghost {
  background: transparent;
  color: rgb(248 250 252 / 0.85);
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 0.05);
  border-color: rgb(255 255 255 / 0.2);
  box-shadow: none;
}

.lp-cta-note {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Sections */
.lp-section {
  padding: 4.5rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.lp-section-dark {
  background: rgb(15 23 42 / 0.5);
}

.lp-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.lp-section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.lp-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lp-card {
  padding: 1.75rem;
  background: rgb(30 41 59 / 0.4);
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: 1rem;
  transition: border-color 200ms ease, transform 200ms ease;
}

.lp-card:hover {
  border-color: rgb(6 182 212 / 0.25);
  transform: translateY(-2px);
}

.lp-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  background: rgb(6 182 212 / 0.12);
  border-radius: 0.5rem;
}

.lp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lp-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgb(248 250 252 / 0.65);
}

@media (min-width: 768px) {
  .lp-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .lp-cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-card-highlight {
  border-color: rgb(29 155 240 / 0.35);
  background: rgb(29 155 240 / 0.06);
}

.lp-card-highlight .lp-card-num {
  color: #1d9bf0;
  background: rgb(29 155 240 / 0.15);
}

/* Pricing */
.lp-pricing {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-pricing {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.lp-price-card {
  padding: 2rem;
  background: linear-gradient(160deg, rgb(30 41 59 / 0.8), rgb(15 23 42 / 0.9));
  border: 1px solid rgb(6 182 212 / 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.3);
}

.lp-price-top {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.lp-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.lp-price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-price-term {
  font-size: 1rem;
  color: var(--muted);
}

.lp-price-vs {
  font-size: 0.875rem;
  color: var(--muted);
}

.lp-price-vs s {
  color: rgb(248 113 113 / 0.8);
}

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

.lp-price-list li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.8);
}

.lp-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.lp-price-aside h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lp-price-aside p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgb(248 250 252 / 0.65);
  margin-bottom: 1.25rem;
}

.lp-link {
  font-weight: 600;
  color: var(--accent);
  transition: opacity 150ms ease;
}

.lp-link:hover {
  opacity: 0.85;
}

/* FAQ */
.lp-faq {
  display: grid;
  gap: 0.5rem;
}

.lp-faq-item {
  background: rgb(30 41 59 / 0.35);
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 0.75rem;
  overflow: hidden;
}

.lp-faq-item summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgb(248 250 252 / 0.65);
}

.lp-faq-item p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Final CTA */
.lp-final {
  padding: 4rem 0 5rem;
  text-align: center;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.lp-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.landing-footer {
  border-top: 1px solid rgb(255 255 255 / 0.06);
  padding: 2rem 0;
}

.landing-footer .footer-inner {
  text-align: center;
  gap: 0.5rem;
}

.landing-footer .footer-copy,
.landing-footer .footer-credit {
  font-size: 0.8125rem;
  color: var(--muted);
}

.landing-footer .footer-credit a:hover {
  color: var(--foreground);
}
