.landing {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 60px;
  box-sizing: border-box;
}

/* Nav */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.landing-logo {
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(90deg, #6366f1, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-nav-link {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.landing-nav-link:hover {
  color: #6366f1;
}

/* Hero */
.landing-hero {
  text-align: center;
  padding: 48px 0 24px;
}

.landing-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
}

.landing-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  max-width: 620px;
  margin: 0 auto 32px;
}

.landing-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #6366f1, #60a5fa);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.32);
}

.landing-note {
  font-size: 14px;
  color: #a0a0a0;
  margin: 12px 0 0;
}

/* Screenshot */
.landing-shot {
  margin-top: 48px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-shot-img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-shot-placeholder {
  color: #c4c4c4;
  font-size: 15px;
}

/* Sections */
.landing-section {
  padding: 56px 0 0;
  text-align: center;
}

.landing-h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
}

.landing-text {
  font-size: 17px;
  line-height: 1.65;
  color: #44403c;
  max-width: 680px;
  margin: 0 auto;
}

/* Spacing only between consecutive paragraphs, not after a single one */
.landing-text + .landing-text {
  margin-top: 16px;
}

/* Feature cards */
.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

.landing-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
}

.landing-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}

.landing-card-text {
  font-size: 15px;
  line-height: 1.55;
  color: #6B7280;
  margin: 0;
}

/* Steps */
.landing-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-step-num {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.landing-step-text {
  font-size: 16px;
  color: #44403c;
}

/* Final CTA */
.landing-final {
  margin-top: 64px;
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
}

.landing-final .landing-text {
  margin: 0 auto 28px;
}

/* Footer */
.landing-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.landing-footer-link {
  color: #6B7280;
}

.landing-footer-link:hover {
  color: #6366f1;
}

.landing-footer-copy {
  color: #a0a0a0;
}

/* Mobile */
@media (max-width: 640px) {
  /* The phone shot is tall and narrow, so the desktop card framing around it
     looks wrong; the screenshot stands on its own and carries the frame. */
  .landing-shot {
    background: none;
    border: none;
    box-shadow: none;
    min-height: 0;
    margin-top: 32px;
  }

  .landing-shot-img {
    max-width: 260px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .landing-title {
    font-size: 32px;
  }

  .landing-lead {
    font-size: 16px;
  }

  .landing-h2 {
    font-size: 24px;
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-top: 32px;
  }

  .landing-section {
    padding-top: 40px;
  }

  .landing-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .landing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.landing-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
