.lp-main {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.lp-main a.btn,
.topbar-actions a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.lp-hero {
  padding: 72px 0 86px;
  text-align: center;
}

.lp-hero-copy {
  max-width: 880px;
  margin: 0 auto;
}

.lp-hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--ink);
}

.lp-hero p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.lp-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.lp-showcase {
  margin: 46px auto 0;
}

.lp-showcase img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lp-section {
  margin-top: 80px;
}

.lp-section > h2 {
  margin: 0 0 24px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.9px;
  color: var(--accent);
}

.lp-gallery-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

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

.lp-gallery-wide figure,
.lp-gallery-grid figure {
  margin: 0;
}

.lp-gallery-wide img,
.lp-gallery-grid img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--panel);
}

.lp-gallery-wide img {
  aspect-ratio: 2048 / 1000;
  object-fit: cover;
}

.lp-gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lp-gallery-wide figcaption,
.lp-gallery-grid figcaption {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lp-features article {
  padding-top: 18px;
  border-top: 1.5px solid var(--ink);
}

.lp-features h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}

.lp-features p,
.lp-pricing p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.9;
}

.lp-pricing {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-closing {
  margin-top: 86px;
  padding: 44px 0 8px;
  text-align: center;
  border-top: 1.5px solid var(--ink);
}

.lp-closing h2 {
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink);
}

@media (max-width: 900px) {
  .lp-gallery-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .lp-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .lp-main {
    padding-inline: 18px;
  }

  .lp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .lp-hero {
    padding: 52px 0 64px;
  }

  .lp-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-cta .btn {
    width: 100%;
  }

  .lp-section {
    margin-top: 66px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
