/* per-page polish: landing */

/* ── Hero: left-align override (space-ds.css forces center, but landing
   proto spec is Cursor-style left-aligned max-width:780px hero) ── */
.lp .hero {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.lp .hero .fib,
.lp .hero .sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.lp .hero .ctas {
  justify-content: flex-start !important;
}

/* ── Hero type hierarchy ── */
.lp .hero h1 {
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 1.07;
}
.lp .hero .sub {
  font-size: 16.5px;
  line-height: 1.58;
  color: var(--ink-soft);
  max-width: 48ch;
}
/* inline logo spans in subtitle: tighten vertical rhythm */
.lp .hero .sub .flogo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

/* ── Hero meta line: breathing room ── */
.lp .hero .meta {
  margin-top: 22px;
  color: var(--ink-mute);
}

/* ── fib badge: slightly more presence ── */
.lp .fib {
  margin-bottom: 28px;
}

/* ── Product shot wrapper: more vertical breathing ── */
.lp .shotwrap {
  margin-top: 52px;
}

/* ── Trust section: label more restrained ── */
.lp .trust .tl {
  font-size: 12.5px;
  letter-spacing: .01em;
  color: var(--ink-mute);
}

/* ── Logo grid: tighter cell height, cleaner proportions ── */
.lp .lcell {
  padding: 22px 10px;
  font-size: 13px;
  letter-spacing: -.01em;
}

/* ── Feature rows: better heading scale ── */
.lp .ft-txt h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.18;
  letter-spacing: -.03em;
}
.lp .ft-txt p {
  font-size: 14.5px;
}
.lp .ft-txt .ft-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp .ft-txt .ft-eye::before {
  content: "";
  width: 16px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--accent);
  flex: none;
}

/* ── Feature visuals: consistent glass header ── */
.lp .ftv-bar span {
  font-size: 10.5px;
  color: var(--ink-mute);
}

/* ── CLI block: better line spacing in dark ── */
.lp .ft-cli {
  color: var(--ink-soft);
}
html.dark .lp .ft-cli {
  color: color-mix(in srgb, var(--ink-soft) 90%, var(--accent));
}

/* ── Social proof section: tighter rhythm ── */
.lp .social {
  margin-top: 100px;
  padding: 80px 24px;
}
.lp .social .q {
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.36;
  max-width: 22ch;
}
.lp .social .m {
  margin-top: 20px;
  font-size: 11.5px;
}

/* ── Final CTA: even more air ── */
.lp .fcta {
  padding: 120px 24px 110px;
}
.lp .fcta h2 {
  font-size: clamp(38px, 5.6vw, 70px);
}

/* ── Footer: cleaner brand mark ── */
.lp .lf {
  padding: 44px 30px;
}
.lp .lf .bn {
  font-size: 15px;
  letter-spacing: -.02em;
}

/* ── Dark mode: shot-app sidebar bg to match glass system ── */
html.dark .lp .sa-side {
  background: color-mix(in srgb, var(--bg-2) 80%, transparent) !important;
}

/* ── Share card "no account" notice: softer ── */
.lp .shareC .sh-nf {
  font-size: 10.5px;
  color: var(--ink-mute);
  margin-top: 13px;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .lp .hero h1 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .lp .hero .sub {
    font-size: 15px;
  }
  .lp .feat {
    padding: 72px 0 0;
  }
  .lp .feat-row + .feat-row {
    margin-top: 64px;
  }
  .lp .social {
    margin-top: 72px;
    padding: 60px 20px;
  }
  .lp .fcta {
    padding: 90px 20px 80px;
  }
  .lp .fcta h2 {
    font-size: clamp(34px, 9vw, 52px);
  }
}
