/* ==========================================================================
   Landing-page styles (SEO location cluster)
   Reuses global tokens from styles.css: --purple, --ink, --muted, --border, --ease
   Scoped under .lp-* so it never collides with the main site.
   ========================================================================== */

.lp-eyebrow{
  display:inline-block;
  font-weight:900;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--purple);
  background:rgba(122,92,255,.10);
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:18px;
}

/* ---- Hero ---- */
.lp-hero-grid{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap:48px;
  align-items:center;
}
.lp-hero-copy h1{
  font-size:clamp(30px,4.4vw,48px);
  line-height:1.08;
  letter-spacing:-0.02em;
  margin:0 0 18px;
}
.lp-lead{
  font-size:clamp(16px,1.6vw,19px);
  line-height:1.6;
  max-width:56ch;
  margin:0 0 26px;
}
.lp-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}
.lp-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.lp-chip{
  font-weight:800;
  font-size:13px;
  color:var(--ink);
  background:#fff;
  border:1px solid var(--border);
  padding:8px 14px;
  border-radius:999px;
  box-shadow:0 6px 16px rgba(15,18,34,.05);
}

/* Hero visual: stylized map pin card */
.lp-hero-visual{
  display:flex;
  justify-content:center;
}
.lp-hero-img{
  width:100%;
  max-width:540px;
  height:auto;
  border-radius:28px;
  border:1px solid var(--border);
  box-shadow:0 30px 70px -28px rgba(61,36,148,.45);
  display:block;
}
.lp-map-card{
  width:100%;
  max-width:360px;
  aspect-ratio:4/3;
  border-radius:28px;
  position:relative;
  border:1px solid var(--border);
  background:
    radial-gradient(120px 120px at 70% 30%, rgba(122,92,255,.16), transparent 70%),
    linear-gradient(135deg,#f3f0ff,#e9f2ff);
  box-shadow:0 30px 70px -28px rgba(61,36,148,.35);
  overflow:hidden;
}
.lp-map-card::before{
  /* faint street grid */
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(15,18,34,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,18,34,.06) 1px, transparent 1px);
  background-size:38px 38px;
}
.lp-map-pin{
  position:absolute;
  top:34%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:40px;
  filter:drop-shadow(0 8px 10px rgba(61,36,148,.35));
  animation:lp-bob 2.6s var(--ease) infinite;
}
@keyframes lp-bob{ 0%,100%{ transform:translate(-50%,-56%);} 50%{ transform:translate(-50%,-44%);} }
.lp-map-label{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:0 14px 30px rgba(15,18,34,.10);
}
.lp-map-title{ font-weight:900; font-size:15px; color:var(--ink); }
.lp-map-sub{ font-weight:700; font-size:13px; color:var(--purple); margin-top:2px; }

/* ---- Feature grid ---- */
.lp-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.lp-feature{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px 24px;
  box-shadow:0 12px 30px rgba(15,18,34,.04);
}
.lp-feature-ico{
  font-size:28px;
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:rgba(122,92,255,.10);
  margin-bottom:16px;
}
.lp-feature h3{ margin:0 0 8px; font-size:19px; letter-spacing:-0.01em; }
.lp-feature p{ margin:0; line-height:1.55; }

/* ---- Comparison table ---- */
.table-wrap{
  overflow-x:auto;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(15,18,34,.05);
  -webkit-overflow-scrolling:touch;
}
.lp-table{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
  background:#fff;
}
.lp-table th,
.lp-table td{
  text-align:left;
  padding:15px 18px;
  border-bottom:1px solid var(--border);
  font-size:15px;
}
.lp-table thead th{
  font-weight:900;
  color:var(--ink);
  background:#faf9ff;
  white-space:nowrap;
}
.lp-table tbody td:first-child{ font-weight:800; color:var(--ink); }
.lp-table td{ color:var(--muted); }
.lp-table .lp-col-kubo{
  background:rgba(122,92,255,.06);
  color:var(--ink);
  font-weight:800;
}
.lp-table thead .lp-col-kubo{ background:rgba(122,92,255,.14); color:var(--purple); }
.lp-table tr:last-child td{ border-bottom:none; }
.lp-fineprint{ font-size:13px; margin-top:14px; }

/* ---- Steps ---- */
.lp-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.lp-step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px 24px;
  position:relative;
}
.lp-step-num{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:var(--purple);
  color:#fff;
  font-weight:900;
  font-size:17px;
  margin-bottom:16px;
}
.lp-step h3{ margin:0 0 8px; font-size:18px; }
.lp-step p{ margin:0; line-height:1.55; }
.lp-inline-cta{ text-align:center; margin-top:34px; }

/* ---- Prose / buyer guide ---- */
.lp-prose{ max-width:760px; }
.lp-prose h3{ margin:26px 0 8px; font-size:20px; letter-spacing:-0.01em; }
.lp-prose p{ line-height:1.65; margin:0 0 6px; }
.lp-prose-link{ margin-top:18px; }
.lp-prose-link a,
.lp-prose a{ color:var(--purple); font-weight:800; text-decoration:none; }
.lp-prose a:hover{ text-decoration:underline; }

/* ---- Responsive ---- */
@media (max-width: 900px){
  .lp-hero-grid{ grid-template-columns:1fr; gap:34px; }
  .lp-hero-visual{ order:-1; }
  .lp-feature-grid{ grid-template-columns:repeat(2,1fr); }
  .lp-steps{ grid-template-columns:1fr; }
}
@media (max-width: 560px){
  .lp-feature-grid{ grid-template-columns:1fr; }
}
