/* ---------------------------------------------------------------------------
 * Vanday — Campaign landing page (Google Ads)
 *
 * Self-contained styles for start.html. Relies on tokens.css for the design
 * variables (fonts, colours, radii) and landing.css for shared components
 * (.btn). Everything LP-specific is namespaced `lp-` so it can't collide with
 * the main site's classes.
 * --------------------------------------------------------------------------- */

.lp { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- Header: deliberately minimal — paid traffic converts better with the
       fewest exits, so no full nav. Just the brand + a beta marker. ---------- */
.lp-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; width: 100%;
  padding: 22px 24px;
}
.lp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.lp-tile {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 15px;
}
.lp-word { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.lp-beta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent-hover);
  font-size: 13px; font-weight: 500; text-decoration: none;
}
.lp-beta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---- Hero --------------------------------------------------------------- */
.lp-hero {
  max-width: 760px; margin: 0 auto; width: 100%;
  padding: 40px 24px 24px; text-align: center;
}
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 22px;
}
.lp-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lp-h1 {
  font-size: clamp(34px, 6vw, 56px); line-height: 1.04;
  letter-spacing: -0.025em; font-weight: 600; margin: 0 0 18px;
}
.lp-h1 .accent { color: var(--accent); font-style: italic; }
.lp-sub {
  font-size: clamp(16px, 2.3vw, 19px); line-height: 1.55;
  color: var(--text-muted); max-width: 580px; margin: 0 auto 30px;
}

/* ---- Capture form ------------------------------------------------------- */
.lp-form { max-width: 480px; margin: 0 auto; }
.lp-field {
  display: flex; gap: 8px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 6px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.lp-input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 12px 14px; font-family: var(--font-sans); font-size: 16px; color: var(--text);
}
.lp-input::placeholder { color: var(--text-faint); }
.lp-submit {
  border: 0; cursor: pointer; white-space: nowrap;
  background: var(--accent); color: #fff;
  padding: 0 22px; border-radius: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  transition: background 0.15s;
}
.lp-submit:hover { background: var(--accent-hover); }
.lp-submit .arrow { margin-left: 6px; }
.lp-fine { display: block; margin-top: 14px; color: var(--text-faint); font-size: 13px; }
.lp-error { display: block; margin-top: 12px; color: var(--accent-hover); font-size: 13.5px; }

/* Success state */
.lp-success {
  max-width: 480px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-md);
}
.lp-success .check {
  display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); font-size: 20px;
}
.lp-success h3 { margin: 0 0 6px; font-size: 20px; font-weight: 600; }
.lp-success p { margin: 0 0 18px; color: var(--text-muted); font-size: 15px; line-height: 1.5; }

/* ---- Trust chips under the form ----------------------------------------- */
.lp-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin: 26px auto 0; max-width: 560px;
  font-size: 13.5px; color: var(--text-muted);
}
.lp-trust span { display: inline-flex; align-items: center; gap: 7px; }
.lp-trust .tick { color: var(--accent); font-weight: 700; }

/* ---- Product screenshot ------------------------------------------------- */
.lp-shot { max-width: 1000px; margin: 44px auto 0; padding: 0 24px; }
.lp-shot img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- Benefits ----------------------------------------------------------- */
.lp-features {
  max-width: 1000px; margin: 64px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
}
.lp-card .ic {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px;
  border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover);
}
.lp-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.lp-card p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Pricing preview ---------------------------------------------------- */
.lp-pricing { max-width: 1000px; margin: 72px auto 0; padding: 0 24px; }
.lp-pricing-head { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.lp-pricing-head h2 { margin: 14px 0 10px; font-size: clamp(26px, 4vw, 36px); font-weight: 600; letter-spacing: -0.02em; }
.lp-pricing-head p { margin: 0; color: var(--text-muted); font-size: 16px; line-height: 1.5; }
.lp-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.lp-tier {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.lp-tier--pop { border-color: var(--accent); box-shadow: var(--shadow-md); }
.lp-tier-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; white-space: nowrap;
}
.lp-tier-name { display: block; font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.lp-tier-price { display: block; margin: 8px 0 18px; font-size: 38px; font-weight: 600; letter-spacing: -0.02em; }
.lp-tier-price i { font-style: normal; font-size: 15px; font-weight: 500; color: var(--text-faint); margin-left: 2px; }
.lp-tier ul { list-style: none; margin: 0; padding: 0; }
.lp-tier li {
  position: relative; padding: 8px 0 8px 24px;
  font-size: 14.5px; color: var(--text); border-top: 1px solid var(--border);
}
.lp-tier li:first-child { border-top: 0; }
.lp-tier li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.lp-pricing-fine { text-align: center; margin: 24px 0 0; font-size: 13px; color: var(--text-faint); }

/* ---- Founder / credibility line ----------------------------------------- */
.lp-quote {
  max-width: 720px; margin: 72px auto 0; padding: 0 24px; text-align: center;
}
.lp-portrait {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 18px; display: block;
  border: 2px solid var(--surface); box-shadow: var(--shadow-sm);
}
.lp-quote p { font-size: clamp(18px, 2.6vw, 22px); line-height: 1.5; letter-spacing: -0.01em; margin: 0 0 14px; }
.lp-quote .by { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-faint); }

/* ---- Secondary CTA band ------------------------------------------------- */
.lp-band {
  max-width: 1000px; margin: 64px auto 0; padding: 48px 24px;
  text-align: center;
}
.lp-band-inner {
  background: var(--text); color: var(--bg);
  border-radius: var(--radius-xl); padding: 48px 32px;
}
.lp-band h2 { margin: 0 0 10px; font-size: clamp(24px, 4vw, 34px); font-weight: 600; letter-spacing: -0.02em; }
.lp-band p { margin: 0 0 26px; color: oklch(0.85 0.01 80); font-size: 16px; }

/* ---- Footer ------------------------------------------------------------- */
.lp-footer {
  margin-top: auto; border-top: 1px solid var(--border);
  max-width: 1080px; margin-left: auto; margin-right: auto; width: 100%;
  padding: 28px 24px; display: flex; flex-wrap: wrap; gap: 14px 22px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-faint);
}
.lp-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-footer a { color: var(--text-muted); text-decoration: none; }
.lp-footer a:hover { color: var(--text); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 760px) {
  .lp-features { grid-template-columns: 1fr; gap: 14px; }
  .lp-tiers { grid-template-columns: 1fr; gap: 14px; }
  .lp-field { flex-direction: column; gap: 6px; padding: 8px; }
  .lp-submit { padding: 13px 22px; }
  .lp-header { padding: 18px 20px; }
}

/* ---------- Secondary Library Teardown CTA ----------
   Width wrapper only — the dark band itself (.td-band) is styled in landing.css,
   which start.html also loads, so it matches the homepage exactly. */
.lp-teardown { max-width: 1000px; margin: 72px auto 0; padding: 0 24px; }
.lp-teardown .td-band { margin: 0; }
@media (max-width: 640px) {
  .lp-teardown { margin-top: 56px; }
}
