@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

/* =========================================================
   ROOT TOKENS (merged; single :root)
   ========================================================= */
:root{
  /* Alignment tokens */
  --lp-header-max: 1300px;  /* header width */
  --lp-card-max: 980px;     /* app card column */
  --lp-header-pad-x: 2rem;  /* header horizontal padding */
  --lp-card-pad-x: 1rem;    /* card column horizontal padding */
  --lp-brand-nudge: 0px;    /* tiny tweak (+/- 1-3px) */

  /* Brand palette */
  --lp-deep-violet:#420690;
  --lp-violet:#640c96;
  --lp-plum:#9725a5;
  --lp-orchid:#d24bb1;
  --lp-hot-pink:#ff69b4;

  --lp-primary: var(--lp-deep-violet);
  --lp-primary-dark: var(--lp-violet);
  --lp-primary-soft: rgba(66, 6, 144, 0.12);

  --lp-accent: var(--lp-hot-pink);
  --lp-accent-soft: rgba(255, 105, 180, 0.16);

  --lp-bg-body:#f6f3fb;
  --lp-bg-card:#ffffff;
  --lp-bg-card-soft:#fbf9ff;

  --lp-text-main:#1f102b;
  --lp-text-muted:#70657e;

  --lp-border-subtle:#e2d9f0;
  --lp-shadow-soft: 0 8px 18px rgba(38,16,66,0.12);

  --lp-radius-lg:14px;
  --lp-radius-pill:999px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--lp-bg-body);
  color: var(--lp-text-main);
  min-height:100vh;
  font-size:16px;
  line-height:1.5;
}

/* =========================
   Header (match app branding)
   - SINGLE authoritative desktop header block
   - computed alignment to card column
   - logo hangs left without shifting text
   ========================= */
.lp-header{
  background: linear-gradient(90deg, var(--lp-deep-violet), var(--lp-plum));
  color:#fff;
  box-shadow: 0 4px 12px rgba(15, 6, 40, 0.40);
}

.lp-header-inner{
  max-width: var(--lp-header-max);
  margin:0 auto;
  padding: 2rem var(--lp-header-pad-x);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
}

/* Desktop: place the *brand text start* at card-column start */
@media (min-width: 881px){
  .lp-brand{
    position: relative;
    display:flex;
    align-items:center;
    gap: 0.8rem;
    text-decoration:none;
    color:#fff;

    /* ✅ computed alignment (replaces margin-left:70px) */
    margin-left: calc(
      (var(--lp-header-max) - var(--lp-card-max)) / 2
      - (var(--lp-header-pad-x) - var(--lp-card-pad-x))
      + var(--lp-brand-nudge)
    );
  }

  /* text block must not be pushed by logo (logo hangs left) */
  .lp-logo-img{
    position: absolute;
    left: -98px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;

    /* “app-like” logo treatment on desktop */
    border: none;
    box-shadow: none;
    background: transparent;

    border-radius: 999px;
    object-fit: contain;
    display:block;
    flex: 0 0 auto;
  }
}

/* Brand text */
.lp-title{
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.05;
}

.lp-subtitle{
  font-size: 0.82rem;
  opacity: 0.9;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.10rem;
}

/* Nav */
.lp-nav{
  display:flex;
  align-items:center;
  gap:0.6rem;
  flex-wrap:wrap;
  font-size:0.95rem;
}

.lp-nav-desktop{ display:flex; align-items:center; gap:0.6rem; flex-wrap:wrap; }
.lp-nav-mobile{ display:none; width:100%; }

.nav-link{
  padding: 0.45rem 0.95rem;
  border-radius: var(--lp-radius-pill);
  color: rgba(255,255,255,0.92);
  border: 1px solid transparent;
  transition: 0.15s all ease;
  text-decoration:none;
}

.nav-link:hover{ background: rgba(0,0,0,0.14); }

.nav-link.active{
  background:#fff;
  color: var(--lp-plum);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 6px 16px rgba(0,0,0,0.26);
}

.btn-header{
  background: var(--lp-deep-violet);
  color:#fff;
  border-radius: var(--lp-radius-pill);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.40);
  cursor:pointer;
  font-size:0.9rem;
  font-weight:650;
  box-shadow: 0 8px 18px rgba(0,0,0,0.20);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}

.btn-header:hover{
  background: var(--lp-violet);
  color:#fff;
}

/* Mobile: show select menu */
.lp-nav-select{
  width:100%;
  max-width: 360px;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.14);
  color:#fff;
  outline:none;
  appearance:none;
}

/* ✅ Mobile header stays exactly like your current behavior */
@media (max-width: 880px){
  .lp-header-inner{
    flex-direction: column;
    align-items:center;
    text-align:center;
    padding: 0.95rem 1rem 0.85rem;
    max-width: 1360px; /* your original mobile cap */
  }

  .lp-nav{ width:100%; justify-content:center; }
  .lp-nav-desktop{ display:none; }
  .lp-nav-mobile{ display:block; }

  .lp-brand{
    position: static;
    margin-left: 0;
    min-height: 0;
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
  }

  .lp-logo-img{
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    display:block;
    flex: 0 0 auto;
    box-shadow: 0 6px 16px rgba(0,0,0,0.32);
    border: 2px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.12);
  }
}

/* =========================
   Page layout + components
   ========================= */
.lp-shell{
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.7rem 1.5rem 2.5rem;
}

.card{
  background: var(--lp-bg-card);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border-subtle);
  box-shadow: var(--lp-shadow-soft);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.card-soft{ background: var(--lp-bg-card-soft); }

.muted{ color: var(--lp-text-muted); }

a.btn,
button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.35rem;
  background:#fff;
  color: var(--lp-deep-violet);
  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(66, 6, 144, 0.35);
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 650;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(38,16,66,0.10);
  text-decoration:none;
  line-height:1;
  transition: 0.15s all ease;
  white-space:nowrap;
}

a.btn:hover,
button.btn:hover{
  background: var(--lp-deep-violet);
  color:#fff;
  border-color: rgba(66, 6, 144, 0.65);
  box-shadow: 0 10px 22px rgba(38,16,66,0.18);
}

.btn-outline{
  background:#fff;
  color: var(--lp-deep-violet);
  border: 1px solid rgba(66, 6, 144, 0.28);
  box-shadow:none;
}

.btn-outline:hover{
  background: rgba(66, 6, 144, 0.08);
  border-color: rgba(66, 6, 144, 0.45);
  color: var(--lp-deep-violet);
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: 1.25rem;
  align-items:center;
}

.hero h1{
  margin:0 0 0.35rem 0;
  font-size: clamp(2.1rem, 4vw, 3.0rem);
  line-height:1.05;
  letter-spacing: -0.02em;
}

.hero p{ margin: 0.35rem 0; }

.hero-ctas{
  display:flex;
  align-items:center;
  gap:0.6rem;
  flex-wrap:wrap;
  margin-top: 0.9rem;
}

.hero-media{
  display:flex;
  justify-content:center;
}
/* Hero image frame */
.hero-media{
  display:flex;
  justify-content:center;
}

.hero-frame{
  width: 100%;
  max-width: 620px;
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(124,58,237,0.22);
  box-shadow: 0 10px 22px rgba(38,16,66,0.10);
  overflow: hidden;
  background: #fff;
}

.hero-frame img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display:block;
}



.hero .shot img{
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .hero-media{ order: 2; }
}

/* Sections */
.section{ margin-top: 1.25rem; }
.section h2{
  margin: 0 0 0.75rem 0;
  font-size: 1.35rem;
}

.split-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.9rem;
}

@media (max-width: 900px){
  .split-3{ grid-template-columns: 1fr; }
}

.shot{
  background: #fff;
  border: 1px solid var(--lp-border-subtle);
  border-radius: var(--lp-radius-lg);
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(38,16,66,0.08);
}

.shot img{ width:100%; height:auto; display:block; background: rgba(0,0,0,0.03); }

.shot-body{ padding: 0.8rem 0.9rem 0.95rem; }
.shot-title{ margin: 0; font-weight: 750; }
.shot-desc{ margin: 0.25rem 0 0; color: var(--lp-text-muted); }

.promise{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

@media (max-width: 900px){
  .promise{ grid-template-columns: 1fr; }
}


.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 0.9rem;
  flex-wrap:wrap;
}

.page-head{ margin-bottom: 1rem; }
.page-head h1{ margin:0; font-size: 2rem; }
.prose p{ margin: 0.75rem 0; }
.legal{ max-width: 920px; }
.legal-meta{ margin-top: 0.35rem; }

/* Roadmap timeline */
.timeline{ display:flex; flex-direction:column; gap: 0.75rem; }
.phase{
  background:#fff;
  border: 1px solid var(--lp-border-subtle);
  border-radius: var(--lp-radius-lg);
  padding: 1rem 1.05rem;
  box-shadow: 0 8px 18px rgba(38,16,66,0.08);
}
.phase-note{ margin-top: 0.35rem; }

/* =========================
   Footer
   ========================= */
.lp-footer{
  margin-top: 1.25rem;
  padding: 1.4rem 0 1.1rem;
  border-top: 1px solid var(--lp-border-subtle);
    background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 45%,
    #ffffff 100%);



}

.lp-footer-inner{ max-width: var(--lp-header-max); }
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 1.2rem;
  flex-wrap:wrap;
}

.lp-footer-brand{
  position: relative;
  display:flex;
  align-items:center;
  gap: 0.75rem;
  min-height: 52px;
}

.lp-footer-logo-img{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  display:block;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  border: 1px solid rgba(66, 6, 144, 0.20);
  background: rgba(255,255,255,0.15);
}

.lp-footer-title{ font-weight: 750; }
.lp-footer-subtitle{ color: var(--lp-text-muted); font-size: 0.9rem; margin-top: 0.1rem; }

.lp-footer-links{
  display:flex;
  align-items:center;
  gap: 0.55rem;
  flex-wrap:wrap;
  font-size: 0.92rem;
}

.lp-footer-links a{
  color: var(--lp-primary);
  text-decoration:none;
}
.lp-footer-links a:hover{ text-decoration:underline; }

.lp-footer-sep{ color: rgba(0,0,0,0.35); }

.lp-footer-fine{
  margin-top: 1rem;
  color: var(--lp-text-muted);
  font-size: 0.88rem;
}
.lp-footer-fineprint{ margin-top: 0.25rem; }

/* =========================================================
   ✅ BRANDED MOBILE HEADER MENU (kept as-is)
   ========================================================= */
.lp-mobile-menu{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.lp-mobile-menu-btn{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  border-radius: var(--lp-radius-pill);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.55rem 0.9rem;

  background: rgba(255,255,255,0.16);
  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;

  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.lp-mobile-menu-btn:hover{
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.70);
}

.lp-mobile-menu-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
}

.lp-mobile-menu-btn .lp-mobile-menu-label{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lp-mobile-menu-btn .lp-mobile-menu-icon{
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  opacity: 0.95;
  transform: translateY(1px);
}

.lp-mobile-menu-panel{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  width: 100%;
  max-width: 520px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  padding: 0.35rem;

  display: none;
  z-index: 50;
  overflow: hidden;
}

.lp-mobile-menu-panel.open{ display: block; }

.lp-mobile-menu-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-mobile-menu-item{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;

  color: var(--lp-text-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  font-family: inherit;
  line-height: 1.2;
}

.lp-mobile-menu-item:hover{
  background: rgba(66, 6, 144, 0.08);
}

.lp-mobile-menu-item:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 6, 144, 0.18);
  background: rgba(66, 6, 144, 0.08);
}

.lp-mobile-menu-item.active{
  background: rgba(66, 6, 144, 0.12);
}

.lp-mobile-menu-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 0.35rem 0.15rem;
}

/* Make mobile menu match header gradient (no black in dark mode) */
.lp-mobile-menu-panel{
  background: linear-gradient(180deg, var(--lp-deep-violet), var(--lp-plum));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.lp-mobile-menu-item{
  color: rgba(255,255,255,0.94);
}

.lp-mobile-menu-item:hover{
  background: rgba(255,255,255,0.10);
}

.lp-mobile-menu-item.active{
  background: rgba(255,255,255,0.14);
}

.lp-mobile-menu-divider{
  background: rgba(255,255,255,0.14);
}




/* =========================
   TRUST BRIDGE (Marketing Feature Band)
   ========================= */

.trust-bridge{
  margin-top: 1.75rem;
}




.trust-bridge h2{
  margin-bottom: .35rem;
}

.trust-bridge > p.muted{
  max-width: 920px;
}

/* Feature band container */
.trust-points{
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;

  /* clean “website” band feel */
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(148,163,184,0.20);
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);

  position: relative;
}

/* subtle dynamic accent line (not app-y) */
.trust-points::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height:3px;
  background: linear-gradient(
    90deg,
    rgba(124,58,237,0),
    rgba(124,58,237,.40),
    rgba(236,72,153,.28),
    rgba(124,58,237,0)
  );
  opacity: .9;
  pointer-events: none;
}

/* Each item becomes a simple cell */
.trust-point{
  padding: 1.25rem 1.4rem 1.35rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Vertical dividers on desktop */
.trust-point + .trust-point{
  border-left: 1px solid rgba(148,163,184,0.18);
}

/* Don't start dividers immediately after the release row */
.trust-point--release + .trust-point{
  border-left: 0;
}

/* Title + body typography (marketing style) */
.trust-point strong{
  display:block;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: .35rem;
}

/* Your HTML uses <div class="muted"> inside each point */
.trust-point .muted{
  margin: 0;
  opacity: .86;
  line-height: 1.35;
}

/* Subtle hover (just enough life) */
.trust-point:hover{
  background: rgba(255,255,255,0.34);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .trust-points{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-point + .trust-point{
    border-left: 0;
  }

  /* 2x2 dividers */
  .trust-point:nth-child(odd){
    border-right: 1px solid rgba(148,163,184,0.18);
  }
  .trust-point:nth-child(n+3){
    border-top: 1px solid rgba(148,163,184,0.18);
  }
}

@media (max-width: 560px){
  .trust-points{
    grid-template-columns: 1fr;
  }

  .trust-point{
    border: 0 !important;
  }

  .trust-point + .trust-point{
    border-top: 1px solid rgba(148,163,184,0.18) !important;
  }
}



.trust-point--release{
  grid-column: 1 / -1;
  text-align:center;
  padding: .75rem 1.1rem;
  background: rgba(124,58,237,0.035);
  border-bottom: 1px solid rgba(148,163,184,0.16);
}

.trust-point--release strong{
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-point--release::after{
  content:"";
  display:block;
  width: 64px;
  height: 2px;
  margin: .45rem auto 0;
  border-radius: 999px;
  background: rgba(124,58,237,0.45);
}

/* Hero as "marketing panel" (matches trust band, not app card) */
.hero-panel{
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(148,163,184,0.20);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
  padding: 1.2rem 1.3rem;
}




/* =========================
   Roadmap Page (LunyPaws)
   ========================= */

.roadmap-head .roadmap-intro{
  margin-top:.4rem;
  max-width: 860px;
  opacity:.9;
}

.roadmap-board{
  display:grid;
  gap:1.25rem;
  margin-top:1.1rem;
}

/* lane base */
.roadmap-lane{
  position:relative;
  padding:1.15rem 1.15rem 1rem;
  border-radius:18px;
  border:1px solid rgba(148,163,184,0.18);
  background:rgba(255,255,255,0.78);
  box-shadow:0 10px 30px rgba(15,23,42,0.05);
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.roadmap-lane:hover{
  transform: translateY(-2px);
  box-shadow:0 14px 40px rgba(15,23,42,0.08);
  border-color: rgba(148,163,184,0.28);
}

/* subtle brand accent strip */
.roadmap-lane::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:4px;
  background: rgba(124,58,237,0.35); /* fallback */
}

/* lane header */
.lane-head{ margin-bottom:.6rem; }
.lane-kicker{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.78rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  padding:.18rem .55rem;
  border-radius:999px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.16);
  margin-bottom:.45rem;
}
.lane-head h2{ margin:0; }
.lane-sub{
  margin-top:.35rem;
  opacity:.82;
  max-width: 68ch;
  font-size: 0.95rem;
}

/* list */
.lane-list{
  margin:.85rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.6rem;
}
.lane-list li{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  line-height:1.4;
 padding: .28rem .35rem;
  border-radius:12px;
  transition: background .12s ease;
}
.lane-list li:hover{
  background: rgba(148,163,184,0.08);
}

/* soft dot to add personality without emojis */
.lane-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  margin-top:.42rem;
  background: rgba(124,58,237,0.35);
  flex:0 0 auto;
}

/* tags */
.tag{
  display:inline-flex;
  align-items:center;
  padding:.18rem .55rem;
  border-radius:999px;
  font-size:.78rem;
  border:1px solid rgba(148,163,184,0.25);
  background:rgba(255,255,255,0.9);
  white-space:nowrap;
  flex:0 0 auto;
  margin-top: .08rem;
}
.tag-pri{ font-weight:700; }

/* lane accent colors (subtle + professional) */
.lane-mv1::before{ background: rgba(124,58,237,0.50); }
.lane-next::before{ background: rgba(59,130,246,0.45); }
.lane-later::before{ background: rgba(16,185,129,0.40); }
.lane-moonshots::before{ background: rgba(236,72,153,0.40); }

/* tag accent tints (keep them quiet) */
.tag-core{ background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.18); }
.tag-share{ background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.18); }
.tag-sec{ background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.18); }
.tag-bill{ background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.18); }
.tag-msg{ background: rgba(148,163,184,0.08); border-color: rgba(148,163,184,0.24); }

.tag-qol{ background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.18); }
.tag-cal{ background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.18); }
.tag-tasks{ background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.18); }
.tag-growth{ background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.18); }
.tag-species{ background: rgba(236,72,153,0.06); border-color: rgba(236,72,153,0.18); }

.tag-mobile{ background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.18); }
.tag-insights{ background: rgba(148,163,184,0.08); border-color: rgba(148,163,184,0.24); }
.tag-data{ background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.18); }
.tag-pro{ background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.18); }

.tag-ai{ background: rgba(236,72,153,0.06); border-color: rgba(236,72,153,0.18); }
.tag-pri{ background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.18); }






/* =========================
   Legal pages typography
   Scoped to .legal so it doesn't affect the rest of the site
   ========================= */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  color: inherit;
  line-height: 1.6;
  font-size: 0.98rem; /* main legal body size */
}

.legal h1 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.legal .legal-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.15rem;
}

.legal h2 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 1.35rem 0 0.55rem;
}

.legal h3 {
  font-size: 1.0rem;
  line-height: 1.35;
  margin: 1rem 0 0.4rem;
}

.legal p {
  margin: 0.6rem 0;
}

.legal ul,
.legal ol {
  margin: 0.6rem 0 0.9rem;
  padding-left: 1.25rem;
}

.legal li {
  margin: 0.3rem 0;
}

.legal strong {
  font-weight: 650;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 1.25rem 0;
}

/* Optional: tighten giant “all caps” disclaimer blocks */
.legal p:has(> strong) {
  /* leave as-is; you can remove this selector if unsupported by older browsers */
}

/* Mobile */
@media (max-width: 640px) {
  .legal {
    font-size: 0.96rem;
    padding: 1rem 0 1.5rem;
  }
  .legal h1 { font-size: 1.45rem; }
  .legal h2 { font-size: 1.05rem; }
}


/* Roadmap board: 2 columns on desktop, 1 on mobile */
@media (min-width: 980px){
  .roadmap-board{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}


/* =========================
   Footer (site-style, aligned with header)
   ========================= */
.lp-footer{
  margin-top: 2.25rem;
  padding: 1.35rem 0 1.15rem;
  border-top: 1px solid var(--lp-border-subtle);

  /* subtle brand echo (NOT app-like) */
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 45%,
    #ffffff 100%
  );
}

.lp-footer-inner{
  max-width: var(--lp-header-max); /* ✅ match header width */
  margin: 0 auto;
  padding: 0 var(--lp-header-pad-x);
}

.lp-footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 1.25rem;
  flex-wrap:wrap;
}

/* ✅ align footer brand start to same column as header brand start */
@media (min-width: 881px){
  .lp-footer-brand{
    margin-left: calc(
      (var(--lp-header-max) - var(--lp-card-max)) / 2
      - (var(--lp-header-pad-x) - var(--lp-card-pad-x))
      + var(--lp-brand-nudge)
    );
  }
}

/* brand: keep it “site”, not app */
.lp-footer-brand{
  display:flex;
  align-items:center;
  gap: 0.75rem;
  text-decoration:none;
  color: inherit;
  min-width: 260px;
}

/* logo visibility on light background (white halo issue) */
.lp-footer-logo-img{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: var(--lp-deep-violet);
  padding: 4px;
  object-fit: contain;

  box-shadow: 0 2px 10px rgba(38,16,66,0.10);
  border: 1px solid rgba(66, 6, 144, 0.18);
}

/* footer text: don’t use all-caps header subtitle styling */
.lp-footer-title{
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.1;
}

.lp-footer-subtitle{
  margin-top: 0.15rem;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  color: var(--lp-text-muted);
  max-width: 560px;
}

/* links: classic site links */
.lp-footer-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 0.85rem;
  flex-wrap:wrap;
  font-size: 0.92rem;
}

.lp-footer-links a{
  color: var(--lp-primary);
  text-decoration:none;
}

.lp-footer-links a:hover{
  text-decoration:underline;
  text-underline-offset: 3px;
}

.lp-footer-sep{
  color: rgba(15,23,42,0.35);
  user-select:none;
}

/* fine print row */
.lp-footer-fine{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226,217,240,0.75);

  color: var(--lp-text-muted);
  font-size: 0.88rem;

  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 0.75rem;
  flex-wrap:wrap;
}

.lp-footer-fineprint{ margin-top: 0; white-space: nowrap; }

@media (max-width: 720px){
  .lp-footer-inner{ padding: 0 1.5rem; }
  .lp-footer-links{ justify-content:flex-start; }
  .lp-footer-fineprint{ white-space: normal; }
}

/* Footer: centered variant (no logo) */
.lp-footer-links--center{
  justify-content: center;
  text-align: center;
  width: 100%;
}

.lp-footer-fine--center{
  justify-content: center;
  text-align: center;
}

.lp-footer-tagline{
  width: 100%;
}


@media (max-width: 880px){
  .lp-header-inner{
    flex-direction: column;
    align-items: stretch;      /* match base */
    text-align: center;
    max-width: 1360px;
    padding: .9rem 1rem 0.65rem;
    gap: 0.35rem;
  }

  .lp-brand{
    position: static;
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;       /* ✅ THIS is the big missing piece */
    justify-content: center;
    gap: 0.12rem;
  }

  .lp-logo-img{
    position: static;
    transform: none;
    width: 90px;               /* match base */
    height: 90px;
    border: none;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
  }

  /* optional: match the base “nudge up” */
  .lp-brand > div{
    transform: translateY(-6px);
  }

  .lp-nav{ width: 100%; display:flex; justify-content:center; }
  .lp-nav-desktop{ display:none; }
  .lp-nav-mobile{ display:block; }
}


/* Ensure header brand link matches base.html styling */
.lp-header .lp-brand,
.lp-header .lp-brand:visited,
.lp-header .lp-brand:hover,
.lp-header .lp-brand:active{
  color:#fff;
  text-decoration:none;
}

/* Match base.html title/subtitle sizing + weight exactly */
.lp-header .lp-title{
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.05;
  color:#fff;
}

.lp-header .lp-subtitle{
  font-size: 0.8rem;
  opacity: 0.9;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.10rem;
  color: rgba(255,255,255,0.92);
}


.lp-mobile-menu-panel { display: none; }
.lp-mobile-menu-panel.open { display: block; }


