/* landing-pages.css — shared styles for intent + free-tool + comparison
   landing pages generated by scripts/_generate_landing_pages.py.
   Palette matches /clipping (chartreuse-lime accent + slate-ink text)
   so the family hangs together. */

:root {
  --lp-bg: #ffffff;
  --lp-ink: #0f172a;
  --lp-ink-2: #334155;
  --lp-ink-3: #64748b;
  --lp-line: #e2e8f0;
  --lp-line-soft: #eef0f3;
  --lp-tint: #f8fafc;

  --lp-violet-50: #f5f3ff;
  --lp-violet-100: #ede9fe;
  --lp-violet-700: #6d28d9;
  --lp-violet-900: #4c1d95;

  --lp-emerald-50: #ecfdf5;
  --lp-emerald-200: #a7f3d0;
  --lp-emerald-500: #10b981;
  --lp-emerald-600: #059669;
  --lp-emerald-700: #047857;

  --lp-amber-50: #fffbeb;
  --lp-amber-700: #b45309;
  --lp-rose-50: #fff1f2;
  --lp-rose-700: #be123c;

  --lp-lime: #c5f44f;
  --lp-lime-dark: #a3d135;

  --lp-radius: 14px;
  --lp-radius-lg: 18px;
  --lp-shadow-soft: 0 18px 48px -28px rgba(15, 23, 42, 0.18);

  --lp-serif: "DM Serif Display", Georgia, serif;
  --lp-sans: -apple-system, BlinkMacSystemFont, "SF Pro", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--lp-bg); color: var(--lp-ink);
  font: 16px/1.65 var(--lp-sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--lp-violet-700); text-decoration: none; }
a:hover { text-decoration: underline; }

main.lp-main {
  max-width: 1180px; margin: 0 auto;
  padding: 26px 22px 80px;
}
@media (min-width: 768px) { main.lp-main { padding: 44px 32px 96px; } }
@media (min-width: 1080px) { main.lp-main { padding: 56px 40px 112px; } }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.lp-crumbs {
  font-size: 13px; color: var(--lp-ink-3);
  margin: 0 0 18px; display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.lp-crumbs a { color: var(--lp-ink-3); }
.lp-crumbs a:hover { color: var(--lp-violet-700); text-decoration: none; }
.lp-crumbs .sep { color: var(--lp-line); }
.lp-crumbs .current { color: var(--lp-ink); font-weight: 600; }

/* ── Hero ────────────────────────────────────────────────────── */
.lp-hero { margin: 0 0 36px; max-width: 880px; }
.lp-hero .pill {
  display: inline-block;
  padding: 6px 12px; font-size: 12.5px; font-weight: 600;
  background: #f1f5f9; color: var(--lp-ink-2);
  border-radius: 999px; letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.lp-hero .pill.live { background: var(--lp-emerald-50); color: var(--lp-emerald-700); }
.lp-hero h1 {
  font-size: clamp(28px, 5vw, 46px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 14px;
}
.lp-hero h1 .accent {
  font-family: var(--lp-serif); font-style: italic; font-weight: 400;
  color: var(--lp-violet-700);
}
.lp-hero .lede {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: var(--lp-ink-2); margin: 0 0 22px;
  max-width: 720px;
}
.lp-hero .trust-row {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 13.5px; color: var(--lp-ink-3);
  margin-top: 14px;
}
.lp-hero .trust-row span { display: inline-flex; align-items: center; }
.lp-hero .trust-row .sep { color: var(--lp-line); }
.lp-hero .trust-row .ok { color: var(--lp-emerald-600); margin-right: 4px; font-weight: 700; }

/* ── Input box ───────────────────────────────────────────────── */
.lp-input-box {
  margin: 22px 0 0;
  background: var(--lp-bg); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 18px 18px 16px;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.12);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-input-box:focus-within {
  border-color: var(--lp-violet-700);
  box-shadow: 0 6px 22px -12px rgba(109, 40, 217, 0.25);
}
.lp-input-box .lp-tabs {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.lp-input-box .lp-tab {
  padding: 5px 10px; font-size: 12.5px; font-weight: 600;
  color: var(--lp-ink-3); background: var(--lp-tint);
  border: 1px solid var(--lp-line); border-radius: 999px;
  cursor: pointer;
}
.lp-input-box .lp-tab[aria-selected="true"] {
  background: var(--lp-violet-700); color: #fff; border-color: var(--lp-violet-700);
}
.lp-input-box form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.lp-input-box input[type="url"] {
  flex: 1 1 320px; min-width: 0;
  padding: 12px 14px; font: 15px/1.4 var(--lp-sans);
  border: 1px solid var(--lp-line); border-radius: 10px;
  color: var(--lp-ink); background: var(--lp-bg);
  outline: none;
}
.lp-input-box input[type="url"]:focus { border-color: var(--lp-violet-700); }
.lp-input-box .lp-or {
  font-size: 12px; color: var(--lp-ink-3); padding: 0 4px;
}
.lp-input-box label.lp-file {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 14px; font-size: 14px; font-weight: 600;
  background: var(--lp-tint); color: var(--lp-ink-2);
  border: 1px solid var(--lp-line); border-radius: 10px;
  cursor: pointer;
}
.lp-input-box label.lp-file:hover { border-color: var(--lp-violet-700); color: var(--lp-violet-700); }
.lp-input-box label.lp-file input { display: none; }
.lp-input-box button.lp-go {
  padding: 12px 20px; font: 600 15px/1.2 var(--lp-sans);
  background: var(--lp-ink); color: #fff;
  border: 1px solid var(--lp-ink); border-radius: 10px;
  cursor: pointer;
}
.lp-input-box button.lp-go:hover {
  background: var(--lp-violet-700); border-color: var(--lp-violet-700);
}
.lp-input-box .lp-input-foot {
  margin-top: 12px; font-size: 12.5px; color: var(--lp-ink-3);
  display: flex; flex-wrap: wrap; gap: 4px 12px;
}
@media (max-width: 640px) {
  .lp-input-box { padding: 16px 14px; }
  .lp-input-box form { flex-direction: column; align-items: stretch; gap: 8px; }
  .lp-input-box .lp-or { display: none; }
  .lp-input-box input[type="url"],
  .lp-input-box label.lp-file,
  .lp-input-box button.lp-go {
    width: 100%; flex: 1 1 100%; justify-content: center; text-align: center;
  }
  .lp-input-box label.lp-file { padding: 12px 14px; }
}

/* ── Section shells ─────────────────────────────────────────── */
.lp-section {
  margin: 56px 0 0; padding-top: 12px;
  border-top: 1px solid var(--lp-line-soft);
}
.lp-section.first { border-top: 0; padding-top: 0; }
.lp-section h2 {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 700;
  letter-spacing: -0.018em; margin: 0 0 8px;
}
.lp-section h2 .accent {
  font-family: var(--lp-serif); font-style: italic; font-weight: 400;
  color: var(--lp-violet-700);
}
.lp-section .sub {
  font-size: 15.5px; color: var(--lp-ink-2); max-width: 760px; margin: 0 0 24px;
  line-height: 1.55;
}
.lp-eyebrow {
  font-size: 11.5px; font-weight: 700; color: var(--lp-violet-700);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 6px;
}

/* ── Promise cards (4-card grid) ────────────────────────────── */
.lp-promise-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 720px) { .lp-promise-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1040px) { .lp-promise-grid { grid-template-columns: repeat(4, 1fr); } }
.lp-promise-card {
  background: var(--lp-bg); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius); padding: 20px;
  transition: border-color 0.15s, transform 0.12s;
}
.lp-promise-card:hover {
  border-color: var(--lp-violet-700); transform: translateY(-2px);
}
.lp-promise-card .ico {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--lp-violet-50); color: var(--lp-violet-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.lp-promise-card .ico svg { width: 22px; height: 22px; }
.lp-promise-card h3 {
  margin: 0 0 6px; font-size: 16px; font-weight: 700; color: var(--lp-ink);
}
.lp-promise-card p {
  margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--lp-ink-3);
}

/* ── Before/After visual ────────────────────────────────────── */
.lp-ba {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 12px;
}
@media (min-width: 760px) { .lp-ba { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.lp-ba-card {
  border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  padding: 18px; background: var(--lp-bg);
}
.lp-ba-card.bad { background: var(--lp-rose-50); border-color: #fecdd3; }
.lp-ba-card.good { background: var(--lp-emerald-50); border-color: var(--lp-emerald-200); }
.lp-ba-card h4 {
  font-size: 13px; font-weight: 700; margin: 0 0 8px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.lp-ba-card.bad h4 { color: var(--lp-rose-700); }
.lp-ba-card.good h4 { color: var(--lp-emerald-700); }
.lp-ba-card p { margin: 0 0 8px; font-size: 14.5px; line-height: 1.55; color: var(--lp-ink-2); }
.lp-ba-card ul { margin: 0; padding-left: 20px; }
.lp-ba-card li { font-size: 14px; line-height: 1.5; color: var(--lp-ink-2); margin-bottom: 4px; }

/* ── Sample transcript ──────────────────────────────────────── */
.lp-sample {
  background: var(--lp-bg); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  overflow: hidden; box-shadow: var(--lp-shadow-soft);
}
.lp-sample-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--lp-tint);
  border-bottom: 1px solid var(--lp-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px; color: var(--lp-ink-3);
}
.lp-sample-head .dot {
  width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1;
}
.lp-sample-head .dot.r { background: #ef4444; }
.lp-sample-head .dot.y { background: #f59e0b; }
.lp-sample-head .dot.g { background: var(--lp-emerald-500); }
.lp-sample-head .label {
  flex: 1; text-align: center;
}
.lp-sample-body {
  padding: 22px 24px; font-size: 14.5px; line-height: 1.7;
  color: var(--lp-ink-2);
}
.lp-sample-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.lp-sample-spk {
  flex-shrink: 0;
  display: inline-block; padding: 2px 8px; border-radius: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  background: var(--lp-violet-100); color: var(--lp-violet-700);
}
.lp-sample-spk.b { background: var(--lp-emerald-50); color: var(--lp-emerald-700); }
.lp-sample-ts {
  flex-shrink: 0; color: var(--lp-ink-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; padding-top: 2px;
}
.lp-sample-text { color: var(--lp-ink); }

/* ── Sample-clips section removed 2026-04-30 (dark placeholder
   rectangles read as low quality, not as a feature demo). When
   we have real per-aspect-ratio thumbnails from a recording,
   bring back .lp-clips / .lp-clip / .lp-clip-frame / .lp-clip-label
   / .lp-clip-platform with <img> instead of gradient blocks. */

/* ── Export formats ─────────────────────────────────────────── */
.lp-exports {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 12px;
}
@media (min-width: 720px) { .lp-exports { grid-template-columns: repeat(5, 1fr); } }
.lp-export-card {
  background: var(--lp-bg); border: 1px solid var(--lp-line);
  border-radius: 10px; padding: 14px; text-align: center;
}
.lp-export-ext {
  display: inline-block; padding: 3px 10px;
  background: var(--lp-violet-100); color: var(--lp-violet-700);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; font-weight: 700;
  margin-bottom: 8px;
}
.lp-export-card h4 { margin: 0 0 4px; font-size: 13.5px; font-weight: 700; color: var(--lp-ink); }
.lp-export-card p { margin: 0; font-size: 12px; color: var(--lp-ink-3); line-height: 1.45; }

/* ── Pricing strip ──────────────────────────────────────────── */
.lp-pricing {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-top: 12px;
}
@media (min-width: 720px) { .lp-pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .lp-pricing { grid-template-columns: repeat(4, 1fr); } }
.lp-tier {
  background: var(--lp-bg); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius); padding: 18px;
  display: flex; flex-direction: column;
}
.lp-tier.pop { background: var(--lp-violet-50); border-color: var(--lp-violet-700); }
.lp-tier .name {
  font-size: 13px; font-weight: 700; color: var(--lp-violet-700);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 6px;
}
.lp-tier .price {
  font-size: 26px; font-weight: 800; color: var(--lp-ink);
  letter-spacing: -0.02em; margin: 0 0 4px;
}
.lp-tier .price small { font-size: 13px; font-weight: 500; color: var(--lp-ink-3); margin-left: 2px; }
.lp-tier .blurb {
  font-size: 13px; color: var(--lp-ink-3); margin: 0 0 12px;
  line-height: 1.45; min-height: 36px;
}
.lp-tier ul { list-style: none; padding: 0; margin: 0 0 14px; flex: 1; }
.lp-tier li {
  font-size: 13px; line-height: 1.5; color: var(--lp-ink-2);
  padding-left: 18px; position: relative; margin-bottom: 4px;
}
.lp-tier li:before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--lp-emerald-500);
}
.lp-tier .cta {
  display: inline-block; padding: 8px 14px; font-size: 13px; font-weight: 700;
  background: var(--lp-ink); color: #fff;
  border-radius: 8px; text-align: center;
}
.lp-tier .cta:hover { background: var(--lp-violet-700); text-decoration: none; }
.lp-tier.pop .cta { background: var(--lp-violet-700); }

/* ── Comparison matrix (used by vs-* + comparison pages) ────── */
.lp-matrix-wrap { overflow-x: auto; margin-top: 16px; }
.lp-matrix {
  width: 100%; border-collapse: collapse; min-width: 640px;
  font-size: 13.5px;
}
.lp-matrix thead th {
  position: sticky; top: 0;
  text-align: left; font-weight: 700; padding: 12px 14px;
  background: var(--lp-tint); border-bottom: 2px solid var(--lp-ink);
  color: var(--lp-ink); white-space: nowrap;
}
.lp-matrix thead th.us {
  background: var(--lp-lime); color: var(--lp-ink);
}
.lp-matrix tbody td {
  padding: 10px 14px; border-bottom: 1px solid var(--lp-line-soft);
  color: var(--lp-ink-2);
}
.lp-matrix tbody td:first-child {
  font-weight: 600; color: var(--lp-ink); white-space: nowrap;
}
.lp-matrix tbody td.us { background: rgba(197, 244, 79, 0.18); font-weight: 600; color: var(--lp-ink); }
.lp-matrix tbody tr:hover td { background: var(--lp-tint); }
.lp-matrix tbody tr:hover td.us { background: rgba(197, 244, 79, 0.28); }

/* ── Competitor detail cards ────────────────────────────────── */
.lp-compete {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 16px;
}
@media (min-width: 760px) { .lp-compete { grid-template-columns: repeat(2, 1fr); } }
.lp-compete-card {
  border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  padding: 18px; background: var(--lp-bg);
}
.lp-compete-card h3 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--lp-ink); }
.lp-compete-card .price-pill {
  display: inline-block; padding: 2px 8px; border-radius: 5px;
  background: var(--lp-tint); color: var(--lp-ink-2);
  font-size: 12px; font-weight: 600; margin-left: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.lp-compete-card .label {
  font-size: 12px; font-weight: 700; color: var(--lp-emerald-700);
  letter-spacing: 0.02em; text-transform: uppercase;
  margin: 12px 0 4px;
}
.lp-compete-card .label.beats { color: var(--lp-violet-700); }
.lp-compete-card p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--lp-ink-2); }
.lp-compete-card .visit {
  display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600;
  color: var(--lp-violet-700);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.lp-faq details {
  border: 1px solid var(--lp-line); border-radius: 10px;
  padding: 14px 18px; margin-bottom: 8px;
  background: var(--lp-bg);
}
.lp-faq summary {
  font-weight: 700; cursor: pointer; color: var(--lp-ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary:after {
  content: "+"; color: var(--lp-violet-700); font-weight: 400; font-size: 22px;
  transition: transform 0.15s; line-height: 1;
}
.lp-faq details[open] summary:after { content: "−"; }
.lp-faq p {
  margin: 10px 0 0; color: var(--lp-ink-2); line-height: 1.6;
  font-size: 14.5px;
}

/* ── Related tools (cross-links) ────────────────────────────── */
.lp-related-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-top: 12px;
}
@media (min-width: 720px) { .lp-related-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-related-card {
  display: block; padding: 16px 18px;
  border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  background: var(--lp-bg); color: var(--lp-ink);
  transition: border-color 0.15s, transform 0.12s;
}
.lp-related-card:hover {
  border-color: var(--lp-violet-700); text-decoration: none; transform: translateY(-2px);
}
.lp-related-card h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.lp-related-card p { margin: 0; font-size: 13px; color: var(--lp-ink-3); line-height: 1.45; }
.lp-related-card .arrow {
  margin-left: 6px; color: var(--lp-violet-700);
}

/* ── Final CTA ─────────────────────────────────────────────── */
.lp-cta {
  margin-top: 64px; padding: 32px 28px;
  background: var(--lp-ink); color: #fff;
  border-radius: var(--lp-radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.lp-cta h2 { margin: 0; font-size: clamp(20px, 2.4vw, 28px); color: #fff; line-height: 1.2; }
.lp-cta h2 .accent {
  font-family: var(--lp-serif); font-style: italic; font-weight: 400;
  color: var(--lp-lime);
}
.lp-cta a.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; font-size: 15px; font-weight: 700;
  background: var(--lp-lime); color: var(--lp-ink);
  border-radius: 12px; text-decoration: none;
}
.lp-cta a.btn:hover { background: var(--lp-lime-dark); text-decoration: none; }

/* ── Footer note ───────────────────────────────────────────── */
.lp-foot {
  margin-top: 28px; font-size: 12.5px; color: var(--lp-ink-3);
  text-align: center; line-height: 1.55;
}
.lp-foot a { color: var(--lp-ink-3); border-bottom: 1px dotted var(--lp-line); }
