@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   Qlarify — Landing Page Styles (landing.css)
   Self-contained CSS for the public marketing pages.
   No build step, no Tailwind — pure CSS.
   ============================================================ */

:root {
  --q-accent: #069668;
  --q-accent-hover: #05805a;
  --q-accent-deep: #046b4b;
  --q-accent-soft: #e8f5ef;
  --q-accent-soft-2: #d4ecdf;
  --q-ink: #0f1714;
  --q-ink-2: #3a4540;
  --q-muted: #5c6b64;
  --q-muted-2: #8a958f;
  --q-muted-3: #aab4ae;
  --q-line: #e7eae8;
  --q-line-2: #eef1ef;
  --q-bg: #f7f9f8;
  --q-surface: #ffffff;
  --q-surface-2: #fbfcfb;
  --q-surface-3: #f2f5f3;
  --q-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.lp {
  font-family: var(--q-font);
  color: var(--q-ink);
  background: var(--q-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── NAV ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.8); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--q-line);
}
.lp-nav-inner {
  max-width: 1152px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.lp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-logo-mark {
  width: 32px; height: 32px; background: var(--q-accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.lp-logo-mark svg { width: 20px; height: 20px; color: #fff; }
.lp-logo-name { font-size: 20px; font-weight: 700; color: var(--q-ink); }
.lp-nav-links { display: flex; align-items: center; gap: 32px; }
.lp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--q-muted);
  text-decoration: none; transition: color .15s;
}
.lp-nav-links a:hover { color: var(--q-ink); }
.lp-nav-right { display: flex; align-items: center; gap: 12px; }
.lp-nav-signin {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--q-ink);
  text-decoration: none; transition: all .15s;
  padding: 8px 18px; border-radius: 8px;
  border: 1px solid var(--q-line);
  background: var(--q-surface);
}
.lp-nav-signin:hover { border-color: var(--q-accent); color: var(--q-accent); }

/* ── BUTTONS ── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--q-font); font-weight: 600; text-decoration: none;
  border-radius: 12px; transition: all .15s; border: none; cursor: pointer;
}
.lp-btn-primary {
  background: var(--q-accent); color: #fff; padding: 12px 24px; font-size: 14px;
}
.lp-btn-primary:hover { background: var(--q-accent-hover); box-shadow: 0 8px 24px rgba(6,150,104,.2); }
.lp-btn-lg { padding: 16px 32px; font-size: 18px; }
.lp-btn-outline {
  background: var(--q-surface); color: var(--q-ink); padding: 16px 32px; font-size: 18px;
  border: 1px solid var(--q-line);
}
.lp-btn-outline:hover { border-color: var(--q-muted-3); }
.lp-btn-soft {
  background: var(--q-accent-soft); color: var(--q-accent-deep); padding: 12px 24px; font-size: 14px;
}
.lp-btn-soft:hover { background: var(--q-accent-soft-2); }

/* ── HERO ── */
.lp-hero { padding: 112px 24px 64px; }
.lp-hero-inner { max-width: 1024px; margin: 0 auto; text-align: center; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--q-accent-soft); color: var(--q-accent-deep);
  font-size: 12px; font-weight: 600; padding: 6px 16px;
  border-radius: 999px; margin-bottom: 32px;
  text-transform: uppercase; letter-spacing: .05em;
}
.lp-badge-dot {
  width: 6px; height: 6px; background: var(--q-accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.lp-hero h1 {
  font-size: clamp(36px, 6vw, 72px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.02em; color: var(--q-ink);
}
.lp-hero h1 .accent { color: var(--q-accent); }
.lp-hero-sub {
  margin-top: 24px; font-size: clamp(16px, 2vw, 20px);
  color: var(--q-muted); max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.lp-hero-ctas {
  margin-top: 40px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 16px;
}
.lp-hero-note { margin-top: 20px; font-size: 14px; color: var(--q-muted-2); }

/* ── MOCKUP ── */
.lp-mockup-wrap { max-width: 1024px; margin: 64px auto 0; position: relative; }
.lp-mockup {
  background: var(--q-surface); border-radius: 16px;
  border: 1px solid var(--q-line); box-shadow: 0 24px 48px rgba(15,23,20,.06);
  overflow: hidden;
}
.lp-mockup-chrome {
  background: var(--q-surface-3); border-bottom: 1px solid var(--q-line);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.lp-mockup-dots { display: flex; gap: 6px; }
.lp-mockup-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--q-line); }
.lp-mockup-url {
  flex: 1; max-width: 280px; margin: 0 auto;
  background: var(--q-bg); border-radius: 8px; padding: 6px 16px;
  font-size: 12px; color: var(--q-muted-2); text-align: center;
}
.lp-mockup-body { padding: 24px 32px; background: var(--q-bg); display: flex; gap: 24px; position: relative; }
.lp-mockup-sidebar { width: 180px; flex-shrink: 0; }
.lp-mockup-sidebar-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.lp-mockup-sidebar-logo {
  width: 28px; height: 28px; background: var(--q-accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.lp-mockup-sidebar-logo svg { width: 16px; height: 16px; color: #fff; }
.lp-mockup-sidebar-name { font-size: 14px; font-weight: 700; color: var(--q-ink); }
.lp-mockup-nav-item {
  font-size: 12px; padding: 8px 12px; border-radius: 8px; color: var(--q-muted); margin-bottom: 2px;
}
.lp-mockup-nav-item.active {
  background: var(--q-accent-soft); color: var(--q-accent-deep); font-weight: 600;
}
.lp-mockup-main { flex: 1; min-width: 0; }
.lp-mockup-greeting { font-size: 22px; font-weight: 700; color: var(--q-ink); margin-bottom: 4px; }
.lp-mockup-sub { font-size: 13px; color: var(--q-muted-2); margin-bottom: 24px; }
.lp-mockup-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lp-mockup-card {
  background: var(--q-surface); border-radius: 12px; border: 1px solid var(--q-line); padding: 16px;
}
.lp-mockup-card-icon {
  width: 32px; height: 32px; background: var(--q-accent-soft); border-radius: 8px; margin-bottom: 8px;
}
.lp-mockup-card-name { font-size: 12px; font-weight: 600; color: var(--q-ink); }
.lp-mockup-card-desc { font-size: 10px; color: var(--q-muted-2); margin-top: 2px; }
.lp-mockup-glow {
  position: absolute; inset: -16px; background: rgba(6,150,104,.04);
  border-radius: 24px; z-index: -1; filter: blur(32px);
}

/* ── ANIMATED MOCKUP SCREENS ── */
.lp-screen {
  position: absolute; inset: 0; padding: 24px 32px;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.lp-screen.active { opacity: 1; pointer-events: auto; }
.lp-screen[data-screen="0"] { position: relative; }
.lp-mockup-animated .lp-mockup-main { min-height: 260px; }

/* cursor */
.lp-cursor {
  position: absolute; width: 18px; height: 18px;
  pointer-events: none; z-index: 10;
  transition: top .6s cubic-bezier(.4,0,.2,1), left .6s cubic-bezier(.4,0,.2,1);
  top: 60px; left: -130px;
}
.lp-cursor::before {
  content: ""; display: block; width: 0; height: 0;
  border-left: 7px solid var(--q-ink); border-right: 7px solid transparent;
  border-top: 10px solid var(--q-ink); border-bottom: 10px solid transparent;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}

/* chat bubbles */
.lp-mock-chat { display: flex; flex-direction: column; gap: 12px; }
.lp-mock-bubble {
  padding: 12px 16px; border-radius: 12px; font-size: 12px; line-height: 1.6;
  max-width: 85%; animation: lp-fadeUp .4s ease both;
}
.lp-mock-bubble-user {
  background: var(--q-accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
}
.lp-mock-bubble-ai {
  background: var(--q-surface); color: var(--q-ink); border: 1px solid var(--q-line);
  align-self: flex-start; border-bottom-left-radius: 4px;
}

/* tables */
.lp-mock-table { display: flex; flex-direction: column; gap: 0; }
.lp-mock-table-head, .lp-mock-table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px;
  padding: 10px 14px; font-size: 12px;
}
.lp-mock-table-head {
  font-weight: 600; color: var(--q-muted-2); border-bottom: 1px solid var(--q-line);
  text-transform: uppercase; letter-spacing: .04em; font-size: 10px;
}
.lp-mock-table-row {
  color: var(--q-ink); border-bottom: 1px solid var(--q-line);
}
.lp-mock-table-row:last-child { border-bottom: none; }
.lp-mock-status {
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 6px; text-align: center;
}
.lp-mock-status.active { background: var(--q-accent-soft); color: var(--q-accent-deep); }
.lp-mock-status.pending { background: #fef3e2; color: #b45309; }
.lp-mock-status.sold { background: #eef0ff; color: #4338ca; }

/* stats */
.lp-mock-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.lp-mock-stat {
  background: var(--q-surface); border: 1px solid var(--q-line); border-radius: 10px;
  padding: 12px; text-align: center;
}
.lp-mock-stat-val { font-size: 18px; font-weight: 800; color: var(--q-accent-deep); }
.lp-mock-stat-label { font-size: 10px; color: var(--q-muted-2); margin-top: 2px; }

/* bar chart */
.lp-mock-bar-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 80px;
  padding: 0 8px;
}
.lp-mock-bar {
  flex: 1; background: var(--q-accent); border-radius: 4px 4px 0 0;
  position: relative; min-height: 8px; opacity: .75;
}
.lp-mock-bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: var(--q-muted-2);
}

/* photo studio demo */
.lp-mock-photo-demo { display: flex; align-items: center; gap: 12px; }
.lp-mock-photo-card { flex: 1; }
.lp-mock-photo-img {
  height: 120px; border-radius: 10px; position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start; padding: 8px;
}
.lp-mock-photo-label {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,.85); color: var(--q-muted);
}
.lp-mock-photo-label-ai { background: var(--q-accent); color: #fff; }
.lp-mock-photo-caption { font-size: 11px; color: var(--q-muted-2); margin-top: 6px; text-align: center; }
.lp-mock-photo-arrow { font-size: 20px; color: var(--q-accent); font-weight: 700; flex-shrink: 0; }

/* website preview */
.lp-mock-website-preview {
  background: var(--q-surface); border: 1px solid var(--q-line); border-radius: 10px; overflow: hidden;
  max-width: 420px;
}
.lp-mock-website-hero { height: 100px; }
.lp-mock-website-body { padding: 16px; }
.lp-mock-website-price { font-size: 22px; font-weight: 800; color: var(--q-ink); }
.lp-mock-website-address { font-size: 13px; color: var(--q-muted); margin-top: 2px; }
.lp-mock-website-details {
  display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: var(--q-muted-2); font-weight: 500;
}
.lp-mock-website-btn {
  margin-top: 12px; background: var(--q-accent); color: #fff; text-align: center;
  padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 600;
}

/* nav click flash */
.lp-mockup-nav-item.lp-nav-click {
  background: var(--q-accent-soft); transition: background .15s;
}

@keyframes lp-fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PLATFORM SECTION ── */
.lp-section { padding: 80px 24px; }
.lp-section-alt { background: var(--q-surface); }
.lp-section-inner { max-width: 1152px; margin: 0 auto; }
.lp-section-header { text-align: center; margin-bottom: 64px; }
.lp-section-label {
  font-size: 13px; font-weight: 600; color: var(--q-accent);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--q-ink); line-height: 1.15;
}
.lp-section-desc {
  margin-top: 16px; font-size: 18px; color: var(--q-muted);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.lp-grid { display: grid; gap: 20px; }
.lp-grid-4 { grid-template-columns: repeat(4, 1fr); }
.lp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.lp-card {
  background: var(--q-surface); border-radius: 16px; padding: 24px;
  border: 1px solid var(--q-line); transition: all .2s;
}
.lp-card:hover { border-color: rgba(6,150,104,.3); box-shadow: 0 12px 32px rgba(6,150,104,.06); }
.lp-card-icon {
  width: 44px; height: 44px; background: var(--q-accent-soft);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all .2s;
}
.lp-card:hover .lp-card-icon { background: var(--q-accent); }
.lp-card-icon svg { width: 20px; height: 20px; color: var(--q-accent); transition: color .2s; }
.lp-card:hover .lp-card-icon svg { color: #fff; }
.lp-card-tag {
  font-size: 11px; font-weight: 600; color: var(--q-accent);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px;
}
.lp-card-title { font-size: 18px; font-weight: 700; color: var(--q-ink); margin-bottom: 8px; }
.lp-card-desc { font-size: 14px; color: var(--q-muted); line-height: 1.6; }
.lp-card-link { display: block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--q-accent); text-decoration: none; }
.lp-card-link:hover { text-decoration: underline; }

/* ── STACK REPLACE ── */
.lp-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.lp-stack-3 { grid-template-columns: 1fr 1fr 1fr; }
.lp-stack-pro { border-color: var(--q-accent-soft-2); }
.lp-stack-old {
  background: var(--q-bg); border-radius: 16px; padding: 24px; border: 1px solid var(--q-line);
}
.lp-stack-new {
  background: var(--q-accent-soft); border-radius: 16px; padding: 24px;
  border: 2px solid var(--q-accent); position: relative;
}
.lp-stack-save {
  position: absolute; top: -14px; left: 24px;
  background: var(--q-accent); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.lp-stack-label {
  font-size: 12px; font-weight: 600; color: var(--q-muted-2);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px;
}
.lp-stack-new .lp-stack-label { color: var(--q-accent-deep); }
.lp-stack-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; background: var(--q-surface); border-radius: 8px;
  border: 1px solid var(--q-line); margin-bottom: 8px;
}
.lp-stack-item-left { display: flex; align-items: center; gap: 12px; }
.lp-stack-item-emoji { font-size: 18px; }
.lp-stack-item-name { font-size: 14px; font-weight: 500; color: var(--q-ink); text-decoration: line-through; text-decoration-color: var(--q-muted-3); }
.lp-stack-item-cost { font-size: 14px; color: var(--q-muted-2); }
.lp-stack-new .lp-stack-item { background: rgba(255,255,255,.6); border: none; }
.lp-stack-new .lp-stack-item-name { text-decoration: none; }
.lp-stack-check { display: flex; align-items: center; gap: 12px; padding: 8px 12px; }
.lp-stack-check svg { width: 20px; height: 20px; color: var(--q-accent); flex-shrink: 0; }
.lp-stack-check span { font-size: 14px; font-weight: 500; color: var(--q-ink); }
.lp-stack-total {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--q-line);
  display: flex; justify-content: space-between; align-items: center;
}
.lp-stack-total-label { font-size: 14px; font-weight: 600; color: var(--q-muted); }
.lp-stack-total-price { font-size: 20px; font-weight: 700; color: var(--q-ink); }
.lp-stack-new .lp-stack-total { border-top-color: var(--q-accent-soft-2); }
.lp-stack-new .lp-stack-total-label { color: var(--q-accent-deep); }
.lp-stack-new .lp-stack-total-price { color: var(--q-accent-deep); }

/* ── CTA BANNER ── */
.lp-cta-banner {
  background: var(--q-accent-soft); border-radius: 24px; padding: 64px;
  border: 1px solid var(--q-accent-soft-2); text-align: center;
  max-width: 768px; margin: 0 auto;
}
.lp-cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--q-ink); }
.lp-cta-banner p { margin-top: 16px; font-size: 18px; color: var(--q-muted); max-width: 540px; margin-left: auto; margin-right: auto; }
.lp-cta-banner .lp-btn { margin-top: 32px; }
.lp-cta-note { margin-top: 20px; font-size: 14px; color: var(--q-muted-2); }

/* ── PRICING ── */
.lp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1024px; margin: 0 auto; }
.lp-price-card {
  background: var(--q-surface); border-radius: 16px; padding: 32px;
  border: 2px solid var(--q-line); display: flex; flex-direction: column; position: relative;
}
.lp-price-card.popular { border-color: var(--q-accent); box-shadow: 0 12px 32px rgba(6,150,104,.1); }
.lp-price-popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--q-accent); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 999px;
}
.lp-price-name { font-size: 20px; font-weight: 700; color: var(--q-ink); }
.lp-price-amount { margin-top: 12px; }
.lp-price-amount strong { font-size: 40px; font-weight: 800; color: var(--q-ink); }
.lp-price-amount span { font-size: 16px; color: var(--q-muted); }
.lp-price-desc { margin-top: 12px; font-size: 14px; color: var(--q-muted); line-height: 1.6; }
.lp-price-features { list-style: none; margin-top: 24px; flex: 1; }
.lp-price-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--q-ink-2); margin-bottom: 12px;
}
.lp-price-features svg { width: 16px; height: 16px; color: var(--q-accent); flex-shrink: 0; margin-top: 2px; }
.lp-price-card .lp-btn { margin-top: 24px; text-align: center; }
.lp-price-features-old li { text-decoration: line-through; text-decoration-color: var(--q-muted-3); color: var(--q-muted-2); }
.lp-price-features-old .lp-stack-item-emoji { font-size: 16px; text-decoration: none; display: inline-block; }

/* ── WAITLIST FORM ── */
.lp-form-wrap { max-width: 560px; margin: 0 auto; }
.lp-form-header { text-align: center; margin-bottom: 40px; }
.lp-form-icon {
  width: 56px; height: 56px; background: var(--q-accent); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.lp-form-icon svg { width: 28px; height: 28px; color: #fff; }
.lp-form {
  background: var(--q-surface); border-radius: 16px; border: 1px solid var(--q-line); padding: 32px;
}
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.lp-form-group { margin-bottom: 20px; }
.lp-form-group:last-of-type { margin-bottom: 0; }
.lp-form label {
  display: block; font-size: 14px; font-weight: 500; color: var(--q-ink); margin-bottom: 6px;
}
.lp-form label .req { color: var(--q-accent); }
.lp-form input, .lp-form select {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--q-line); background: var(--q-bg);
  font-family: var(--q-font); font-size: 14px; color: var(--q-ink);
  transition: all .15s; appearance: none;
}
.lp-form input:focus, .lp-form select:focus {
  outline: none; border-color: var(--q-accent);
  box-shadow: 0 0 0 3px rgba(6,150,104,.15);
}
.lp-form .lp-btn { width: 100%; margin-top: 24px; }
.lp-form-fine { margin-top: 16px; font-size: 12px; color: var(--q-muted-2); text-align: center; }
.lp-form-success, .lp-form-error {
  background: var(--q-surface); border-radius: 16px; padding: 48px; text-align: center;
}
.lp-form-success { border: 1px solid var(--q-accent); }
.lp-form-error { border: 1px solid #c4452f; }
.lp-form-success-icon, .lp-form-error-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.lp-form-success-icon { background: var(--q-accent-soft); }
.lp-form-success-icon svg { width: 28px; height: 28px; color: var(--q-accent); }

/* ── BLOG PLACEHOLDER ── */
.lp-blog-empty {
  background: var(--q-surface); border-radius: 16px; border: 1px solid var(--q-line);
  padding: 64px; text-align: center; max-width: 768px; margin: 0 auto;
}
.lp-blog-icon {
  width: 56px; height: 56px; background: var(--q-accent-soft); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.lp-blog-icon svg { width: 28px; height: 28px; color: var(--q-accent); }

/* ── FOOTER ── */
.lp-footer {
  border-top: 1px solid var(--q-line); background: var(--q-surface); padding: 48px 24px;
}
.lp-footer-inner {
  max-width: 1152px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a { font-size: 14px; color: var(--q-muted); text-decoration: none; transition: color .15s; }
.lp-footer-links a:hover { color: var(--q-ink); }
.lp-footer-copy { font-size: 14px; color: var(--q-muted-2); }

.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  /* Keep the header on one tidy row on phones: nothing wraps mid-button, and the logo + buttons shrink to fit a narrow viewport (iPhone 12 etc.). */
  .lp-nav-inner { padding: 0 16px; }
  .lp-logo-name { font-size: 17px; white-space: nowrap; }
  .lp-nav-right { gap: 8px; }
  .lp-nav-signin, .lp-nav-right .lp-btn { padding: 7px 13px; font-size: 13px; white-space: nowrap; }
  .lp-mockup-sidebar { display: none; }
  .lp-cursor { display: none; }
  .lp-mockup-cards { grid-template-columns: repeat(2, 1fr); }
  .lp-mockup-body { padding: 16px; }
  .lp-screen { padding: 16px; }
  .lp-mock-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-mock-table-head, .lp-mock-table-row { grid-template-columns: 2fr 1fr 1fr; font-size: 11px; padding: 8px 10px; }
  .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-2, .lp-stack, .lp-stack-3 { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .lp-hero { padding: 96px 24px 48px; }
  .lp-hero-ctas { flex-direction: column; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-section { padding: 64px 24px; }
  .lp-cta-banner { padding: 40px 24px; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .lp-grid-4 { grid-template-columns: 1fr; }
  .lp-mockup-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  /* Smallest phones: shrink the header a touch more so the logo and both buttons still fit one row. */
  .lp-logo { gap: 7px; }
  .lp-logo-name { font-size: 15px; }
  .lp-nav-right { gap: 6px; }
  .lp-nav-signin, .lp-nav-right .lp-btn { padding: 6px 10px; font-size: 12px; }
}

/* ── Platform Explainer ── */
.lp-explainer-hero { text-align: center; margin-bottom: 56px; }
.lp-explainer-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--q-accent-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.lp-explainer-icon svg { width: 32px; height: 32px; color: var(--q-accent); }
.lp-explainer-content { max-width: 680px; margin: 0 auto; }
.lp-explainer-content h2 { font-size: 22px; font-weight: 700; color: var(--q-ink); margin: 40px 0 12px; }
.lp-explainer-content p { font-size: 16px; line-height: 1.7; color: var(--q-muted); margin-bottom: 12px; }
.lp-explainer-features { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.lp-explainer-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.6; color: var(--q-ink); }
.lp-explainer-features li svg { width: 20px; height: 20px; color: var(--q-accent); flex-shrink: 0; margin-top: 3px; }
.lp-explainer-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--q-line); }
.lp-explainer-nav a { font-size: 14px; font-weight: 600; color: var(--q-accent); text-decoration: none; }
.lp-explainer-nav a:hover { text-decoration: underline; }

/* ── About ── */
.lp-about-content { max-width: 960px; margin: 0 auto; }
.lp-about-block { margin-bottom: 48px; }
.lp-about-block h2 { font-size: 22px; font-weight: 700; color: var(--q-ink); margin-bottom: 12px; }
.lp-about-block p { font-size: 16px; line-height: 1.7; color: var(--q-muted); margin-bottom: 12px; }
.lp-about-values { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.lp-about-values li { font-size: 16px; line-height: 1.7; color: var(--q-muted); padding-left: 24px; position: relative; }
.lp-about-values li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--q-accent); }
.lp-about-values li strong { color: var(--q-ink); }

.lp-founders { margin-top: 16px; display: flex; flex-direction: column; gap: 56px; }
.lp-founder { display: flex; gap: 40px; align-items: flex-start; }
.lp-founder-photo { flex-shrink: 0; width: 300px; height: 360px; border-radius: 16px; overflow: hidden; background: var(--q-bg-2); }
.lp-founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.lp-founder-info { flex: 1; min-width: 0; padding-top: 8px; }
.lp-founder-name { font-size: 24px; font-weight: 700; color: var(--q-ink); margin-bottom: 4px; }
.lp-founder-role { font-size: 14px; font-weight: 600; color: var(--q-accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.lp-founder-bio { font-size: 16px; line-height: 1.7; color: var(--q-muted); }
.lp-founder-bio p { margin-bottom: 12px; }
.lp-founder-bio p:last-child { margin-bottom: 0; }
@media (max-width: 680px) {
  .lp-founder { flex-direction: column; align-items: center; text-align: center; }
  .lp-founder-photo { width: 240px; height: 290px; }
}
