/* ── landing-page.css — served from /public, no hash ── */

.lp-root { background:#fff; }

/* Hero */
.lp-hero { padding-top:72px; background:#fff; border-bottom:1px solid #F0F0F0; }
.lp-hero-inner { max-width:1240px; margin:0 auto; padding:64px 48px 52px; }
.lp-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:22px; }
.lp-tag  { font-size:12px; font-weight:600; padding:5px 14px; border-radius:99px; letter-spacing:0.03em; }
.lp-title { font-size:clamp(36px,5.5vw,64px); color:#111; line-height:1.08; letter-spacing:-0.035em; font-weight:400; margin:0 0 20px; max-width:860px; }
.lp-subtitle { font-size:clamp(17px,2vw,22px); color:#555; line-height:1.6; font-weight:400; margin:0 0 32px; max-width:640px; }
.lp-meta { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.lp-avatar { width:34px; height:34px; border-radius:50%; background:#F5F5F5; display:flex; align-items:center; justify-content:center; overflow:hidden; flex-shrink:0; }
.lp-meta-name { font-size:14px; font-weight:600; color:#111; }
.lp-meta-date { font-size:13px; color:#999; }
.lp-dot { color:#DDD; font-size:16px; }
.lp-cta-pill { margin-left:auto; font-size:13px; font-weight:600; color:#fff; padding:10px 24px; border-radius:99px; text-decoration:none; white-space:nowrap; }

/* Body */
.lp-body { max-width:1240px; margin:0 auto; padding:0 48px; }
.lp-cover { width:100%; margin:52px 0 0; }
.lp-cover img { width:100%; height:auto; display:block; max-height:520px; object-fit:cover; border-radius:4px; }

/* Grid */
.lp-grid { display:grid; gap:80px; align-items:start; padding:60px 0 100px; }
.lp-grid--full    { grid-template-columns:minmax(0,760px); justify-content:center; }
.lp-grid--sidebar { grid-template-columns:1fr 360px; }

/* Prose */
.lp-prose { font-size:18px; line-height:1.88; color:#292929; }
.lp-prose h1,.lp-prose h2,.lp-prose h3 { font-family:'Season Mix',Georgia,serif; font-weight:400; color:#111; letter-spacing:-0.025em; }
.lp-prose h1 { font-size:32px; margin:44px 0 14px; line-height:1.2; }
.lp-prose h2 { font-size:26px; margin:40px 0 12px; line-height:1.25; }
.lp-prose h3 { font-size:21px; margin:32px 0 10px; }
.lp-prose p  { margin:0 0 24px; }
.lp-prose ul,.lp-prose ol { margin:0 0 24px; padding-left:28px; }
.lp-prose li { margin-bottom:8px; }
.lp-prose li p { margin:0; }
.lp-prose strong { font-weight:700; color:#111; }
.lp-prose em { font-style:italic; }
.lp-prose a { color:#F97316; text-decoration:underline; text-underline-offset:3px; }
.lp-prose blockquote { border-left:3px solid #111; margin:36px 0; padding:0 0 0 24px; font-style:italic; color:#555; font-size:22px; line-height:1.65; }
.lp-prose img { max-width:100%; border-radius:8px; margin:28px 0; display:block; }
.lp-prose hr { border:none; height:1px; background:#F0F0F0; margin:44px auto; width:60px; }
.lp-prose code { background:#F5F5F5; padding:2px 6px; border-radius:4px; font-size:0.87em; font-family:'SF Mono',Menlo,monospace; color:#C2571A; }
.lp-prose pre { background:#1A1A1A; color:#E5E5E5; padding:20px 24px; border-radius:10px; margin:28px 0; overflow-x:auto; font-family:'SF Mono',Menlo,monospace; font-size:14px; line-height:1.6; }
.lp-prose pre code { background:none; padding:0; color:inherit; }
.lp-prose table { width:100%; border-collapse:collapse; margin:28px 0; }
.lp-prose th { padding:11px 14px; text-align:left; font-weight:600; color:#111; border-bottom:2px solid #EBEBEB; font-size:14px; }
.lp-prose td { padding:11px 14px; border-bottom:1px solid #F5F5F5; color:#555; font-size:15px; }

/* FAQ */
.lp-faq { margin-top:60px; padding-top:44px; border-top:1px solid #F0F0F0; }
.lp-faq-heading { font-size:28px; font-weight:400; color:#111; letter-spacing:-0.02em; margin:0 0 8px; }
.faq-row { border-bottom:1px solid #F0F0F0; }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; padding:20px 0; gap:16px; background:none; border:none; cursor:pointer; text-align:left; }
.faq-q span:first-child { font-size:16px; font-weight:500; color:#111; line-height:1.45; }
.faq-chevron { color:#AAA; flex-shrink:0; transition:transform 0.25s cubic-bezier(0.2,0,0,1); }
.faq-q[aria-expanded="true"] .faq-chevron { transform:rotate(180deg); color:#111; }
.faq-a { display:grid; grid-template-rows:0fr; transition:grid-template-rows 0.3s cubic-bezier(0.2,0,0,1); }
.faq-a[data-open] { grid-template-rows:1fr; }
.faq-a > p { overflow:hidden; font-size:15px; color:#555; line-height:1.75; margin:0; padding-bottom:20px; }

/* Author footer */
.lp-author-footer { display:flex; align-items:center; gap:16px; padding:36px 0; margin-top:52px; border-top:1px solid #F0F0F0; flex-wrap:wrap; }
.lp-author-avatar { width:48px; height:48px; border-radius:50%; background:#F5F5F5; flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.lp-author-info { flex:1; min-width:160px; }
.lp-author-name { font-size:15px; font-weight:600; color:#111; margin:0 0 3px; }
.lp-author-bio  { font-size:13px; color:#777; margin:0; line-height:1.5; }
.lp-author-cta  { font-size:14px; font-weight:600; border:1.5px solid; padding:9px 22px; border-radius:99px; text-decoration:none; white-space:nowrap; flex-shrink:0; transition:opacity 0.15s; }
.lp-author-cta:hover { opacity:0.75; }

/* Sidebar */
.lp-sidebar { display:flex; flex-direction:column; gap:16px; }

/* Form card */
.lp-form-card { border:1px solid #E8E8E8; border-radius:16px; overflow:hidden; background:#fff; box-shadow:0 1px 4px rgba(0,0,0,0.04),0 8px 32px rgba(0,0,0,0.06); }
.lp-form-bar { height:3px; }
.lp-form-body { padding:28px; }
.lp-form-title { font-size:21px; font-weight:400; color:#111; margin:0 0 4px; letter-spacing:-0.02em; }
.lp-form-sub   { font-size:13px; color:#999; margin:0 0 24px; line-height:1.5; }
.lp-form-fields { display:flex; flex-direction:column; gap:16px; }
.lp-field { display:flex; flex-direction:column; gap:6px; }
.lp-label { font-size:12px; font-weight:600; color:#333; text-transform:uppercase; letter-spacing:0.06em; }
.lp-required { color:#EF4444; margin-left:2px; }
.lp-input { width:100%; padding:11px 14px; border:1.5px solid #E8E8E8; border-radius:10px; font-size:14px; font-family:Matter,sans-serif; color:#111; outline:none; box-sizing:border-box; transition:border-color 0.18s,box-shadow 0.18s; background:#FAFAFA; -webkit-appearance:none; }
.lp-input::placeholder { color:#BBB; }
.lp-input:focus { border-color:var(--accent,#F97316); background:#fff; box-shadow:0 0 0 3px color-mix(in srgb,var(--accent,#F97316) 12%,transparent); }
select.lp-input { background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
textarea.lp-input { resize:vertical; min-height:88px; }
.lp-submit { width:100%; padding:14px; border:none; border-radius:10px; color:#fff; font-size:15px; font-weight:600; cursor:pointer; margin-top:4px; letter-spacing:0.01em; transition:filter 0.18s,transform 0.1s; font-family:Matter,sans-serif; }
.lp-submit:hover  { filter:brightness(1.08); }
.lp-submit:active { transform:scale(0.985); }
.lp-success { flex-direction:column; align-items:center; padding:36px 20px; text-align:center; }
.lp-success-icon { width:52px; height:52px; border-radius:50%; background:#ECFDF5; display:flex; align-items:center; justify-content:center; color:#10B981; margin-bottom:14px; }
.lp-success-title { font-size:17px; font-weight:600; color:#111; margin:0 0 6px; }
.lp-success-sub   { font-size:13px; color:#888; margin:0; line-height:1.5; }
.lp-trust { list-style:none; padding:0; margin:18px 0 0; padding-top:16px; border-top:1px solid #F0F0F0; display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.lp-trust li { font-size:11px; color:#AAA; display:flex; align-items:center; gap:5px; }
.lp-trust li svg { flex-shrink:0; }

/* Widget */
.lp-widget { border:1px solid #EBEBEB; border-radius:12px; padding:18px 20px; background:#fff; }
.lp-widget-heading { font-size:11px; font-weight:600; color:#999; text-transform:uppercase; letter-spacing:0.08em; margin:0 0 14px; }
.lp-widget-row { display:flex; align-items:center; justify-content:space-between; padding:9px 0; border-bottom:1px solid #F8F8F8; }
.lp-widget-row:last-of-type { border-bottom:none; }
.lp-widget-label { font-size:13px; color:#555; }
.lp-widget-stat  { font-size:13px; font-weight:700; }
.lp-widget-link  { display:block; margin-top:12px; font-size:13px; color:#888; text-decoration:none; text-align:center; transition:color 0.15s; }
.lp-widget-link:hover { color:#111; }

/* Responsive */
@media (max-width:1024px) {
  .lp-grid--sidebar { grid-template-columns:minmax(0,1fr); }
  /* sidebar goes BELOW main content on mobile */
  .lp-sidebar { order:2; }
  .lp-main   { order:1; }
  .lp-cta-pill { margin-left:0; }
  .lp-grid { gap:40px; }
}
@media (max-width:768px) {
  .lp-hero { padding-top:60px; }
  .lp-hero-inner { padding:36px 20px 28px; }
  .lp-title { font-size:clamp(28px,8vw,40px); margin-bottom:14px; }
  .lp-subtitle { font-size:16px; margin-bottom:20px; }
  .lp-meta { gap:8px; }
  .lp-cta-pill { width:100%; text-align:center; margin-top:4px; }
  .lp-body { padding:0 16px; }
  .lp-cover img { max-height:220px; }
  .lp-grid { padding:28px 0 56px; gap:32px; }
  .lp-prose { font-size:16px; line-height:1.8; }
  .lp-form-body { padding:20px 16px; }
  .lp-form-title { font-size:18px; }
  .lp-author-footer { gap:12px; }
  .lp-author-cta { width:100%; text-align:center; }
}

/* ── More Pages (Quora infinite scroll style) ── */
.lp-more-pages {
  background: #FAFAFA;
  border-top: 1px solid #F0F0F0;
  padding: 56px 48px 80px;
}
.lp-more-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.lp-more-label {
  font-size: 11px; font-weight: 600; color: #999;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 28px;
}
.lp-more-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid #EBEBEB;
  text-decoration: none;
  transition: opacity 0.15s;
}
.lp-more-card:hover { opacity: 0.8; }
.lp-more-img {
  width: 280px; height: 180px;
  border-radius: 8px; overflow: hidden;
  background: #F0F0F0; flex-shrink: 0;
}
.lp-more-img img { width:100%; height:100%; object-fit:cover; display:block; }
.lp-more-content { display:flex; flex-direction:column; gap:8px; }
.lp-more-tag { font-size:11px; font-weight:600; padding:3px 12px; border-radius:99px; width:fit-content; }
.lp-more-title { font-size:22px; font-weight:400; color:#111; margin:0; line-height:1.25; letter-spacing:-0.02em; }
.lp-more-desc  { font-size:15px; color:#666; margin:0; line-height:1.6; }
.lp-more-cta   { font-size:13px; font-weight:600; margin-top:4px; }

@media (max-width: 768px) {
  .lp-more-pages { padding: 36px 16px 52px; }
  .lp-more-card  { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .lp-more-img   { width:100%; height:180px; }
  .lp-more-title { font-size:18px; }
  .lp-more-desc  { font-size:14px; }
}
