/* Public landing page (GET "/"). Loaded AFTER app.css. Every rule is scoped under `.lp` (the landing
   body class) so nothing here bleeds into the authed app shell, which reuses generic class names.
   The visual-refresh palette (warm charcoal + lime + soft violet glow) and the Sentient display face
   are applied as `.lp`-scoped TOKEN OVERRIDES, so the rest of the app is untouched until the global
   foundation pass. Fonts are self-hosted via @font-face in app.css. */

.lp {
  /* warm charcoal base (overrides app.css :root only for the landing) */
  --bg: #100e0b;
  --bg-2: #15120d;
  --surface: #1b1712;
  --surface-2: #231e17;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --tx: #f7f3ec;
  --tx-2: #b3aa99;
  --tx-3: #7c7365;
  /* Sentient serif for display; Inter/JetBrains inherited from :root (self-hosted) */
  --font-display: "Sentient", Georgia, serif;
  /* refresh-only accents */
  --violet: #8b7dff;
  --focus: #a99bff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-line: rgba(255, 255, 255, 0.13);

  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
}
.lp * {
  margin: 0;
  padding: 0;
}
.lp a {
  color: inherit;
  text-decoration: none;
}
.lp button {
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  border: none;
  background: none;
}
.lp ::selection {
  background: var(--lime);
  color: var(--on-lime);
}
.lp svg {
  stroke-width: 1.7;
}
.lp a:focus-visible,
.lp button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- nav ---------- */
.lp .lnav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(16, 14, 11, 0.72);
  border-bottom: 1px solid var(--line);
}
.lp .lnav .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp .logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.lp .logo .m {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--lime);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--on-lime);
  font-size: 18px;
}
.lp .logo .n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.lp .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.lp .nav-links a {
  color: var(--tx-2);
  font-weight: 500;
  font-size: 14px;
  transition: 0.15s;
}
.lp .nav-links a:hover {
  color: var(--tx);
}
.lp .nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp .lgn {
  color: var(--tx-2);
  font-weight: 500;
  font-size: 14px;
  transition: 0.15s;
}
.lp .lgn:hover {
  color: var(--tx);
}
.lp .nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  color: var(--tx);
}
.lp .nav-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 20px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 14, 11, 0.96);
}
.lp .nav-menu.open {
  display: flex;
}
.lp .nav-menu a {
  padding: 12px 6px;
  color: var(--tx-2);
  font-weight: 500;
  font-size: 15px;
}
.lp .nav-menu a.lcta {
  margin-top: 6px;
  color: var(--on-lime);
  text-align: center;
}

/* ---------- buttons (.lcta, landing-scoped so app.css .btn-lime can't leak flex-grow) ---------- */
.lp .lcta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: var(--on-lime);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1px;
  padding: 10px 18px;
  border-radius: 11px;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.16s, transform 0.16s, box-shadow 0.16s;
}
.lp .lcta:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(212, 248, 75, 0.24);
}
.lp .lcta-lg {
  padding: 15px 26px;
  font-size: 16px;
  border-radius: 13px;
}

/* ---------- hero ---------- */
.lp .hero {
  position: relative;
  overflow: hidden;
}
.lp .hero .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 66px 32px 82px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
  position: relative;
}
.lp .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--tx-3);
}
.lp .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
}
.lp h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 3.8vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin-top: 20px;
}
.lp h1 em {
  font-style: italic;
  color: var(--lime);
}
.lp .sub {
  color: var(--tx-2);
  font-size: clamp(16px, 1.05vw, 18.5px);
  max-width: 44ch;
  margin-top: 22px;
  line-height: 1.6;
}
.lp .pills {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.lp .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--tx-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px;
}
.lp .pill svg {
  color: var(--lime);
  flex: none;
}
.lp .hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.lp .hero-cta-center {
  justify-content: center;
}
.lp .offer {
  margin-top: 15px;
  color: var(--tx-3);
  font-size: 13px;
  line-height: 1.5;
}
.lp .offer svg {
  color: var(--lime);
  vertical-align: -2px;
  margin-right: 6px;
}
.lp .offer b {
  color: var(--tx-2);
  font-weight: 600;
}

/* ---------- hero visual: floating glass ad cluster + generated-copy chip ---------- */
.lp .stage {
  position: relative;
  height: 470px;
}
.lp .glow {
  position: absolute;
  inset: -60px -30px;
  pointer-events: none;
  background:
    radial-gradient(48% 48% at 58% 38%, rgba(139, 125, 255, 0.32), transparent 70%),
    radial-gradient(42% 42% at 40% 70%, rgba(212, 248, 75, 0.14), transparent 72%);
  filter: blur(8px);
}
.lp .gtag {
  position: absolute;
  right: 0;
  top: 2px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--tx-2);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 12px;
}
.lp .gtag .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.lp .adcard {
  position: absolute;
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}
.lp .adcard .art {
  position: absolute;
  inset: 0;
}
/* decorative product bottle - illustration gradients are intentional literals */
.lp .adcard .art-prod {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  width: 36%;
  aspect-ratio: 0.5;
  border-radius: 7px 7px 12px 12px;
  background: linear-gradient(#fdfdf7, #e6e6df);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.lp .adcard .art-prod:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  width: 32%;
  height: 13%;
  border-radius: 3px;
  background: #cfcfc6;
}
.lp .adcard .art-prod:after {
  content: "";
  position: absolute;
  inset: 22% 16% auto;
  height: 32%;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, #cdd9b0 0 3px, transparent 3px 7px), #eef3df;
}
.lp .adcard .brand {
  position: absolute;
  top: 11px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #fff;
  opacity: 0.92;
}
.lp .adcard .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 3px 7px;
  border-radius: 6px;
  color: #fff;
}
.lp .adcard .foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 13px 12px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
}
.lp .adcard .hl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.14;
  color: #fff;
}
.lp .adcard .mini {
  margin-top: 8px;
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
}
.lp .art-a {
  background: radial-gradient(120% 90% at 50% 12%, #f0c3a6, #bd6350 55%, #4f2420);
}
.lp .art-b {
  background: radial-gradient(120% 90% at 50% 16%, #e2edc4, #93ad5f 55%, #3a4a20);
}
.lp .c1 {
  width: 174px;
  aspect-ratio: 9/16;
  left: 12px;
  top: 24px;
  z-index: 3;
}
.lp .c2 {
  width: 206px;
  aspect-ratio: 4/5;
  right: 0;
  top: 78px;
  z-index: 2;
}
.lp .copychip {
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: 6;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(12px);
  border-radius: 13px;
  padding: 13px 15px;
  width: 262px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
}
.lp .copychip .cl {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--tx-3);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.lp .copychip .cl .ok {
  color: var(--lime);
}
.lp .copychip .ct {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--tx);
  margin-top: 6px;
  line-height: 1.3;
}
.lp .copychip .cd {
  font-size: 12px;
  color: var(--tx-2);
  margin-top: 6px;
  line-height: 1.45;
}

/* ---------- sections ---------- */
.lp section .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 32px;
}
.lp .sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}
.lp .sec-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tx-3);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.lp .sec-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 2.2vw, 40px);
  margin-top: 12px;
  letter-spacing: -0.4px;
}
.lp .sec-head p {
  color: var(--tx-2);
  font-size: 16px;
  margin-top: 12px;
}
.lp .divide {
  border-top: 1px solid var(--line);
}

.lp .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp .lstep {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.15s;
}
.lp .lstep:hover {
  border-color: var(--line-2);
}
.lp .lstep .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
  font-weight: 600;
}
.lp .lstep h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-top: 14px;
}
.lp .lstep p {
  color: var(--tx-2);
  font-size: 14.5px;
  margin-top: 9px;
  line-height: 1.55;
}

.lp .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp .feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.15s;
}
.lp .feat:hover {
  border-color: var(--line-2);
}
.lp .feat .fic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
}
.lp .feat h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
}
.lp .feat p {
  color: var(--tx-2);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.55;
}

.lp .ptiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp .ptier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.lp .ptier.hot {
  border-color: var(--lime-dim);
  box-shadow: 0 0 0 1px rgba(212, 248, 75, 0.2);
}
.lp .ptier .tn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.lp .ptier .tp {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
}
.lp .ptier .tp s {
  font-size: 13px;
  color: var(--tx-3);
  font-weight: 500;
}
.lp .ptier .tc {
  font-size: 13px;
  color: var(--tx-2);
  margin-top: 4px;
}
.lp .ptier .tpc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--tx-3);
  margin-top: 8px;
}
.lp .pricing-foot {
  text-align: center;
  margin-top: 28px;
  color: var(--tx-3);
  font-size: 13.5px;
}
.lp .pricing-foot a {
  color: var(--lime);
  font-weight: 500;
}

.lp .ctaband {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.lp .ctaband:before {
  content: "";
  position: absolute;
  bottom: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 640px;
  background:
    radial-gradient(closest-side, rgba(139, 125, 255, 0.16), transparent),
    radial-gradient(closest-side, rgba(212, 248, 75, 0.1), transparent);
  pointer-events: none;
}
.lp .ctaband .inner {
  text-align: center;
  position: relative;
}
.lp .ctaband h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 2.4vw, 44px);
  letter-spacing: -0.3px;
}
.lp .ctaband p {
  color: var(--tx-2);
  font-size: 16px;
  margin-top: 14px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.lp .ctaband .hero-cta {
  margin-top: 28px;
}

.lp footer {
  border-top: 1px solid var(--line);
}
.lp footer .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp .foot-l {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--tx-3);
  font-size: 13px;
}
.lp .foot-l .logo .m {
  width: 24px;
  height: 24px;
  font-size: 14px;
  border-radius: 6px;
}
.lp .foot-l .logo .n {
  font-size: 15px;
}
.lp .foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.lp .foot-links a {
  color: var(--tx-3);
  font-size: 13px;
  transition: 0.15s;
}
.lp .foot-links a:hover {
  color: var(--tx-2);
}

/* ---------- responsive ---------- */
/* Tablet + down: hamburger menu, hero stacks, decorative cluster hides, grids collapse. */
@media (max-width: 900px) {
  .lp .nav-links,
  .lp .nav-cta {
    display: none;
  }
  .lp .nav-burger {
    display: inline-flex;
  }
  .lp .hero .inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 52px 24px 60px;
  }
  .lp .stage {
    display: none;
  }
  .lp .steps,
  .lp .features {
    grid-template-columns: 1fr;
  }
  .lp .ptiers {
    grid-template-columns: 1fr 1fr;
  }
  .lp section .inner {
    padding: 56px 24px;
  }
}
/* Mobile: single-column pricing, stacked footer. */
@media (max-width: 560px) {
  .lp .ptiers {
    grid-template-columns: 1fr;
  }
  .lp footer .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
