/* =====================================================================
   Pobo landing page (pobo.app)
   Brand theme = Pobo Panel: periwinkle #586cda, light surfaces, no green.
   Loaded AFTER login.css / navbar.css so brand overrides win.
   The login modal markup/JS still lives in login.blade.php; only its
   colours are re-skinned here.
   ===================================================================== */

:root {
  --lp-primary: var(--color-brand);        /* brand periwinkle            */
  --lp-primary-600: var(--color-brand-hover);    /* hover / active              */
  --lp-primary-300: var(--c-periwinkle-400);    /* lighter periwinkle          */
  --lp-secondary: var(--color-brand-soft);      /* light periwinkle            */
  --lp-tint: var(--color-brand-tint);           /* periwinkle-tinted surface   */
  --lp-ink: var(--c-neutral-700);            /* dark action / headings ink  */
  --lp-gold: var(--warning);
  --lp-red: var(--danger);
  --lp-text: var(--c-neutral-700);
  --lp-muted: var(--c-neutral-500);
  --lp-bg: var(--c-neutral-50);
  --lp-card: var(--c-white);
  --lp-border: var(--c-neutral-200);
  --lp-shadow: 0 18px 50px var(--a-primary-15);
}

/* ---- base (override login.css dark body) ------------------------- */
/* Bootstrap 3 (loaded on this page only) sets html{font-size:10px}, which
   silently rescales every rem-based --fs-* token to 62.5% — the 2026-07-23
   "landing text shrank" regression after the tokens migration (the pre-token
   px values were immune). Bootstrap 3 components are px-based, so pinning the
   root back to the browser default is safe. */
html {
  /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- root rem base restore, not a type-scale value; no token applies */
  font-size: 16px;
}
body {
  background-color: var(--lp-bg) !important;
  color: var(--lp-text) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* ---- navbar reskin ---------------------------------------------- */
/* Shorter bar than navbar.css's default. Set the VARIABLE, not just the height:
   #msgbar pins itself to --navbar-h, so overriding the height alone left the
   message bar hanging 20px below the header with a gap of page behind it. */
:root {
  --navbar-h: 76px;
}

#navbar {
  background-color: var(--a-white-85) !important;
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--lp-border);
  height: var(--navbar-h);
}
.logoContainer { flex: 0 0 auto; justify-content: flex-start; padding-left: var(--space-6); }
.poboLogo { height: 30px; }
.poboLogin { fill: var(--lp-primary); right: 28px; }
.poboLogin:hover { fill: var(--lp-primary-600); }
.userLogout { color: var(--lp-primary); right: 56px; font-weight: var(--fw-semibold); }

/* ---- layout shell ----------------------------------------------- */
.lp {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-28) var(--space-6) var(--space-6);
}

/* =====================================================================
   HERO
   ===================================================================== */
.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-10);
  padding: var(--space-5) 0 var(--space-14);
}
.lp-hero__copy { max-width: 680px; }
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  color: var(--lp-primary-600);
  background: var(--lp-tint);
  border: 1px solid var(--lp-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.lp-eyebrow .dot {
  width: 8px; height: 8px; border-radius: var(--radius-circle);
  background: var(--lp-primary);
  box-shadow: var(--shadow-brand);
}
.lp-hero h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-heavy);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 var(--space-4);
}
.lp-hero h1 .accent { color: var(--lp-primary); }
.lp-hero__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: var(--lh-normal);
  color: var(--lp-muted);
  margin: 0 0 var(--space-8);
}
.lp-hero__lead strong { color: var(--lp-text); font-weight: var(--fw-semibold); }

.lp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--space-4) var(--space-8);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lp-btn--primary {
  background: var(--color-brand);
  color: var(--c-white);
  box-shadow: var(--shadow-brand);
}
.lp-btn--primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.lp-btn svg { width: 16px; height: 16px; fill: currentColor; }
.lp-trust {
  font-size: var(--fs-caption);
  color: var(--lp-muted);
}
.lp-trust b { color: var(--lp-primary-600); font-weight: var(--fw-semibold); }

/* =====================================================================
   STAGE — Pod (wide browser) -> vertical flow -> Panel (wide browser)
   Both apps use the SAME wide browser frame; the frame adapts to the
   video's natural aspect ratio (drop a <video> in and it just fits).
   ===================================================================== */
.lp-stage {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-stage::before { /* soft brand glow behind the frames */
  content: "";
  position: absolute;
  inset: -4% -6%;
  background: radial-gradient(ellipse at center, var(--a-primary-15), transparent 70%);
  z-index: 0;
}
.lp-device { position: relative; z-index: var(--z-raised); margin: 0; width: 100%; }
.lp-device figcaption {
  text-align: center;
  margin-top: var(--space-3);
  font-size: var(--fs-caption);
  line-height: var(--lh-snug);
  color: var(--lp-muted);
}
.lp-device figcaption b {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--lp-ink);
}

/* ---- shared wide browser frame (Pobo Pod & Pobo Panel) ---------- */
.lp-browser {
  width: 100%;
  background: var(--c-neutral-900);
  border-radius: var(--radius-2xl);
  padding: var(--space-2);
  box-shadow: var(--lp-shadow);
}
.lp-browser__bar {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-1) var(--space-2);
}
.lp-browser__bar span {
  width: 11px; height: 11px; border-radius: var(--radius-circle);
  background: var(--c-neutral-700);
}
.lp-browser__bar span:nth-child(1) { background: var(--danger); }
.lp-browser__bar span:nth-child(2) { background: var(--warning); }
.lp-browser__bar span:nth-child(3) { background: var(--c-periwinkle-400); }
.lp-browser__screen {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lp-tint);
}
/* the real video: drop it straight into __screen, it sets its own height */
.lp-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- animation placeholder (drop real Pod/Panel video here) ----- */
/* default to the wide ~2.15:1 desktop-capture shape until the video lands */
.lp-browser__screen .lp-anim { aspect-ratio: 43 / 20; }

/* ---- minimal video player (play/pause · restart · scrub) -------- */
.lp-player { position: relative; width: 100%; line-height: var(--lh-tight); }
.lp-player .lp-video { display: block; width: 100%; height: auto; cursor: pointer; }
.lp-player__controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3) var(--space-3);
  line-height: normal;
  background: linear-gradient(to top, var(--scrim-strong), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
/* reveal on hover, keyboard focus, or while paused */
.lp-player:hover .lp-player__controls,
.lp-player:focus-within .lp-player__controls,
.lp-player.is-paused .lp-player__controls { opacity: 1; }

.lp-player__btn {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  padding: 0;
  border: none;
  border-radius: var(--radius-circle);
  background: var(--a-white-85);
  color: var(--lp-ink);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lp-player__btn:hover { background: var(--c-white); transform: translateY(-1px); }
.lp-player__btn svg { width: 12px; height: 12px; fill: currentColor; display: block; }
/* play/pause icon swap */
.lp-player .icon-play { display: none; }
.lp-player.is-paused .icon-pause { display: none; }
.lp-player.is-paused .icon-play { display: block; }
/* mute/unmute icon swap (default = unmuted shows volume) */
.lp-player .icon-muted { display: none; }
.lp-player.is-muted .icon-volume { display: none; }
.lp-player.is-muted .icon-muted { display: block; }

.lp-player__seek {
  flex: 1 1 auto;
  -webkit-appearance: none; appearance: none;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--a-white-85);
  cursor: pointer;
  outline: none;
}
.lp-player__seek::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 13px; height: 13px;
  border-radius: var(--radius-circle);
  background: var(--lp-primary);
  border: 2px solid var(--c-white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.lp-player__seek::-moz-range-thumb {
  width: 13px; height: 13px;
  border-radius: var(--radius-circle);
  background: var(--lp-primary);
  border: 2px solid var(--c-white);
  cursor: pointer;
}
.lp-player__seek:focus-visible { box-shadow: var(--shadow-brand); }
.lp-player__time {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-caption);
  font-variant-numeric: tabular-nums;
  color: var(--c-white);
  opacity: 0.85;
  white-space: nowrap;
}
.lp-anim {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  text-align: center;
  position: relative;
  background:
    linear-gradient(120deg, var(--a-white-85) 30%, var(--a-white-85) 50%, var(--a-white-85) 70%),
    linear-gradient(160deg, var(--c-neutral-50) 0%, var(--c-periwinkle-200) 100%);
  background-size: 220% 100%, 100% 100%;
  background-repeat: no-repeat;
  animation: lp-shimmer 2.6s ease-in-out infinite;
}
.lp-anim__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  background: var(--c-white);
  box-shadow: var(--shadow-brand);
}
.lp-anim__icon svg { width: 22px; height: 22px; fill: var(--lp-primary); }
.lp-anim__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: var(--lp-ink);
}
.lp-anim__note {
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-secondary);
}
@keyframes lp-shimmer {
  0%   { background-position: 200% 0, 0 0; }
  100% { background-position: -120% 0, 0 0; }
}

/* ---- flow connector (vertical: Pod above -> Panel below) -------- */
.lp-flow {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  height: 104px;
  margin: var(--space-1) 0;
}
.lp-flow__lane {
  position: relative;
  width: 24px;
  height: 100%;
}
.lp-flow__track {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom, var(--lp-secondary) 0 6px, transparent 6px 12px);
  opacity: 0.75;
}
.lp-flow__packet {
  position: absolute;
  left: 50%;
  width: 14px; height: 14px;
  margin-left: calc(var(--space-2) * -1);
  border-radius: var(--radius-sm);
  background: var(--lp-primary);
  box-shadow: var(--shadow-brand);
}
/* downstream: Pod -> Panel (top to bottom) */
.lp-flow__lane--down .lp-flow__packet {
  animation: lp-move-down 2.4s linear infinite;
}
.lp-flow__lane--down .lp-flow__packet:nth-child(3) { animation-delay: 0.8s; }
.lp-flow__lane--down .lp-flow__packet:nth-child(4) { animation-delay: 1.6s; }
/* upstream: Panel -> Pod (bottom to top) */
.lp-flow__lane--up .lp-flow__track {
  background: repeating-linear-gradient(
    to bottom, var(--lp-primary-300) 0 6px, transparent 6px 12px);
}
.lp-flow__lane--up .lp-flow__packet {
  background: var(--lp-gold);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-sm);
  animation: lp-move-up 2.4s linear infinite;
}
.lp-flow__lane--up .lp-flow__packet:nth-child(3) { animation-delay: 1.2s; }
.lp-flow__label {
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--lp-muted);
}
.lp-flow__label--down { color: var(--lp-primary-600); }
.lp-flow__label--up { color: var(--c-gold-500); }

@keyframes lp-move-down {
  0%   { top: -6%;  opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes lp-move-up {
  0%   { top: 100%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: -6%;  opacity: 0; }
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.lp-how { padding: var(--space-10) 0 var(--space-6); }
.lp-how__head { text-align: center; max-width: 620px; margin: 0 auto var(--space-10); }
.lp-how h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-heavy);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 var(--space-3);
}
.lp-how__head p { color: var(--lp-muted); font-size: var(--fs-subhead); line-height: var(--lh-normal); margin: 0; }

.lp-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
.lp-step {
  position: relative;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.lp-step:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-step__num {
  counter-increment: step;
  font-family: 'Manrope', 'Inter', sans-serif;
  width: 40px; height: 40px;
  border-radius: var(--radius-xl);
  background: var(--lp-tint);
  color: var(--lp-primary-600);
  display: grid; place-items: center;
  font-weight: var(--fw-heavy); font-size: var(--fs-subhead);
  margin-bottom: var(--space-4);
}
.lp-step__num::before { content: counter(step); }
.lp-step h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: var(--fs-subhead);
  font-weight: var(--fw-bold);
  color: var(--lp-ink);
  margin: 0 0 var(--space-2);
}
.lp-step h3 .tag {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  padding: var(--space-0) var(--space-2);
  border-radius: var(--radius-md);
  margin-left: var(--space-1);
  vertical-align: middle;
}
.lp-step h3 .tag--pod { background: var(--lp-tint); color: var(--lp-primary-600); }
.lp-step h3 .tag--panel { background: var(--c-neutral-100); color: var(--c-vermilion-500); }
.lp-step p { color: var(--lp-muted); font-size: var(--fs-body); line-height: var(--lh-normal); margin: 0; }
/* arrow between steps (desktop) */
.lp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px; right: -16px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--lp-secondary);
  border-right: 2px solid var(--lp-secondary);
  transform: rotate(45deg);
  z-index: var(--z-raised);
}

/* =====================================================================
   PRICING  (public twin of the in-app /pricing picker)
   ===================================================================== */
.lp-pricing { padding: var(--space-12) 0 var(--space-2); scroll-margin-top: 96px; /* clear the fixed navbar on #pricing jump */ }
.lp-pricing__head { text-align: center; max-width: 660px; margin: 0 auto var(--space-10); }
.lp-pricing__head .lp-eyebrow { margin-bottom: var(--space-3); }
.lp-pricing__head h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-heavy);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 var(--space-3);
}
.lp-pricing__head p { color: var(--lp-muted); font-size: var(--fs-subhead); line-height: var(--lh-normal); margin: 0; }

.lp-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-5) var(--space-6);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-plan--featured {
  border-color: var(--lp-primary);
  box-shadow: var(--shadow-brand);
}
.lp-plan__badge {
  position: absolute;
  top: -11px; left: 22px;
  background: var(--lp-primary);
  color: var(--c-white);
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
}
.lp-plan__name {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  color: var(--lp-primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
.lp-plan__price {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: var(--fs-display);
  font-weight: var(--fw-heavy);
  color: var(--lp-ink);
  line-height: var(--lh-tight);
}
.lp-plan__price small { font-size: var(--fs-body); font-weight: var(--fw-semibold); color: var(--lp-muted); margin-left: var(--space-0); }
.lp-plan__sub { color: var(--lp-muted); font-size: var(--fs-body); line-height: var(--lh-normal); margin: var(--space-2) 0 var(--space-4); }
.lp-plan__features {
  list-style: none;
  margin: 0 0 var(--space-5); padding: 0;
  display: grid; gap: var(--space-2);
  flex: 1;
}
.lp-plan__features li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--lp-text);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
}
.lp-plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 16px; height: 16px;
  border-radius: var(--radius-circle);
  background-color: var(--lp-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23586cda'%3E%3Cpath d='M8.5 13.3 5.2 10l-1.2 1.2 4.5 4.5 9-9L16.3 5.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.lp-plan__cta {
  display: block;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-3);
  font-family: 'Inter', sans-serif;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  text-decoration: none;
  border: 1.5px solid var(--lp-primary);
  color: var(--lp-primary-600);
  background: var(--c-white);
  transition: background 0.15s ease, color 0.15s ease;
}
.lp-plan__cta:hover { background: var(--lp-tint); color: var(--lp-primary-600); text-decoration: none; }
.lp-plan__cta--primary { background: var(--lp-primary); color: var(--c-white); }
.lp-plan__cta--primary:hover { background: var(--lp-primary-600); color: var(--c-white); }

.lp-pricing__addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 880px;
  margin: var(--space-8) auto 0;
}
.lp-addon {
  background: var(--lp-tint);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-4);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--lp-text);
}
.lp-addon b { color: var(--lp-ink); }
.lp-addon__tag {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-0) var(--space-2);
  border-radius: var(--radius-md);
  margin-right: var(--space-2);
  vertical-align: middle;
  background: var(--c-white);
  color: var(--lp-primary-600);
}
.lp-addon__price { display: block; margin-top: var(--space-1); color: var(--lp-primary-600); font-weight: var(--fw-semibold); font-size: var(--fs-caption); }

.lp-pricing__note {
  text-align: center;
  color: var(--lp-muted);
  font-size: var(--fs-caption);
  line-height: var(--lh-normal);
  max-width: 660px;
  margin: var(--space-6) auto 0;
}
.lp-pricing__note a { color: var(--lp-primary); font-weight: var(--fw-semibold); }

/* ---- pass-through usage breakdown ------------------------------- */
.lp-usage {
  max-width: 880px;
  margin: var(--space-8) auto 0;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lp-usage__head {
  padding: var(--space-4) var(--space-5);
  background: var(--lp-tint);
  border-bottom: 1px solid var(--lp-border);
}
.lp-usage__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-subhead);
  color: var(--lp-ink);
}
.lp-usage__sub { font-size: var(--fs-body); color: var(--lp-muted); line-height: var(--lh-normal); margin-top: var(--space-1); }
.lp-usage__sub strong { color: var(--lp-ink); font-weight: var(--fw-semibold); }
.lp-usage__row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--lp-border);
}
.lp-usage__row:first-child { border-top: 0; }
.lp-usage__icon { font-size: var(--fs-title); line-height: var(--lh-snug); flex-shrink: 0; }
.lp-usage__name { font-weight: var(--fw-semibold); font-size: var(--fs-body); color: var(--lp-ink); }
.lp-usage__desc { font-size: var(--fs-body); color: var(--lp-muted); line-height: var(--lh-normal); margin-top: var(--space-0); }
.lp-usage__desc strong { color: var(--lp-ink); font-weight: var(--fw-semibold); }

/* =====================================================================
   LEGAL PAGES  (privacy · refund · terms)
   ===================================================================== */
.lp-legal { max-width: 860px; }
.lp-legal__doc {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) clamp(var(--space-5), 5vw, var(--space-14)) var(--space-12);
  box-shadow: var(--shadow-md);
}
.lp-legal__head { margin-bottom: var(--space-6); }
.lp-legal__head .lp-eyebrow { margin-bottom: var(--space-3); }
.lp-legal__head h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-heavy);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0;
  line-height: var(--lh-tight);
}
.lp-legal__updated { color: var(--lp-muted); font-size: var(--fs-body); margin: var(--space-3) 0 0; }

.lp-legal__doc h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-title);
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  margin: var(--space-8) 0 var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--lp-border);
}
.lp-legal__doc h2:first-of-type { border-top: 0; padding-top: 0; margin-top: var(--space-2); }
.lp-legal__doc h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-subhead);
  color: var(--lp-primary-600);
  margin: var(--space-5) 0 var(--space-2);
}
.lp-legal__doc p,
.lp-legal__doc li {
  color: var(--lp-text);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}
.lp-legal__doc p { margin: 0 0 var(--space-3); }
.lp-legal__doc ul { margin: 0 0 var(--space-4); padding-left: 0; list-style: none; }
.lp-legal__doc ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
}
.lp-legal__doc ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 7px; height: 7px;
  border-radius: var(--radius-circle);
  background: var(--lp-secondary);
}
.lp-legal__doc a { color: var(--lp-primary); font-weight: var(--fw-medium); text-decoration: none; }
.lp-legal__doc a:hover { text-decoration: underline; }
.lp-legal__doc strong { color: var(--lp-ink); font-weight: var(--fw-semibold); }
.lp-legal__doc code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: var(--fs-caption);
  background: var(--lp-tint);
  color: var(--lp-primary-600);
  padding: var(--space-0) var(--space-1);
  border-radius: var(--radius-sm);
}
.lp-legal__contact {
  margin-top: var(--space-8);
  background: var(--lp-tint);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5);
}
.lp-legal__contact h2 { border-top: 0; padding-top: 0; margin-top: 0; }
.lp-legal__contact p:last-child { margin-bottom: 0; }

/* =====================================================================
   FAQ  (public twin of the in-app /faq)
   ===================================================================== */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq__head { text-align: center; margin-bottom: var(--space-6); }
.lp-faq__head .lp-eyebrow { margin-bottom: var(--space-3); }
.lp-faq__head h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-heavy);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 var(--space-3);
}
.lp-faq__head > p { color: var(--lp-muted); font-size: var(--fs-subhead); line-height: var(--lh-normal); margin: 0 0 var(--space-5); }

.lp-faq__search {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.lp-faq__search svg {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--lp-muted);
  pointer-events: none;
}
.lp-faq__search input {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-xl);
  background: var(--lp-card);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-10);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-body);
  color: var(--lp-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lp-faq__search input:focus {
  outline: none;
  border-color: var(--lp-primary);
  box-shadow: var(--shadow-brand);
}

.lp-faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-5);
}
.lp-faq__tab {
  text-align: left;
  border: 1px solid var(--lp-border);
  background: var(--lp-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lp-faq__tab:hover { border-color: var(--lp-secondary); }
.lp-faq__tab.is-active { background: var(--lp-primary); border-color: var(--lp-primary); }
.lp-faq__tab-label {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: var(--lp-ink);
}
.lp-faq__tab-sub { display: block; font-size: var(--fs-caption); color: var(--lp-muted); margin-top: var(--space-0); }
.lp-faq__tab.is-active .lp-faq__tab-label { color: var(--c-white); }
.lp-faq__tab.is-active .lp-faq__tab-sub { color: var(--c-periwinkle-200); }

.lp-faq__panel {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lp-faq__item { border-top: 1px solid var(--lp-border); }
.lp-faq__item:first-child { border-top: 0; }
.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--lp-ink);
  transition: background 0.12s ease;
}
.lp-faq__q:hover { background: var(--lp-tint); }
.lp-faq__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--lp-primary);
  transition: transform 0.2s ease;
}
.lp-faq__item.is-open .lp-faq__chevron { transform: rotate(180deg); }
.lp-faq__a { padding: 0 var(--space-5) var(--space-5); }
.lp-faq__a p {
  margin: 0;
  background: var(--lp-tint);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-4);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--lp-text);
}

.lp-faq__noresults,
.lp-faq__empty {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  color: var(--lp-text);
  font-size: var(--fs-body);
}
.lp-faq__noresults { margin-top: var(--space-4); }
.lp-faq__muted { color: var(--lp-muted); font-size: var(--fs-caption); margin: var(--space-1) 0 0; }
.lp-faq__empty a, .lp-faq__muted a { color: var(--lp-primary); font-weight: var(--fw-semibold); }
.is-hidden { display: none !important; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  margin-top: var(--space-14);
  padding: var(--space-10) var(--space-6) var(--space-12);
  text-align: center;
}
.lp-footer__links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}
.lp-footer__links a {
  color: var(--lp-text);
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
}
.lp-footer__links a:hover { color: var(--lp-primary); }
.lp-footer__info {
  color: var(--lp-muted);
  font-size: var(--fs-caption);
  line-height: var(--lh-normal);
  max-width: 520px;
  margin: 0 auto var(--space-3);
}
.lp-footer__copy {
  color: var(--lp-secondary);
  font-size: var(--fs-caption);
  letter-spacing: 0.03em;
}

/* =====================================================================
   LOGIN MODAL re-skin (markup/JS unchanged in login.blade.php)
   ===================================================================== */
.p_login_container {
  background: var(--c-white) !important;
  box-shadow: var(--lp-shadow) !important;
  border: 1px solid var(--lp-border);
}
.p_login { color: var(--lp-text); }
.p_cancel { fill: var(--lp-secondary); }
.p_login .p_label { background-color: var(--c-periwinkle-250); }
.p_icon { fill: var(--lp-primary); }
.p_login input[type="text"],
.p_login input[type="tel"],
.p_login input[type="password"] { background-color: var(--color-brand-tint); color: var(--lp-text); }
.p_login input[type="text"]:hover,
.p_login input[type="text"]:focus,
.p_login input[type="tel"]:hover,
.p_login input[type="tel"]:focus,
.p_login input[type="password"]:hover,
.p_login input[type="password"]:focus { background-color: var(--c-neutral-200); }
.credsSubmitBtn, .otpSubmitBtn, .otpResendBtn {
  background-color: var(--color-brand) !important;
  color: var(--c-white) !important;
}
.credsSubmitBtn:hover, .otpSubmitBtn:hover, .otpResendBtn:hover,
.credsSubmitBtn:focus, .otpSubmitBtn:focus, .otpResendBtn:focus {
  background-color: var(--color-brand-hover) !important;
}
.otp_text { color: var(--lp-primary-600); }
.otp-input { border: 1px solid var(--lp-border) !important; color: var(--lp-text); }
.overlay { background: var(--scrim-strong); }

/* =====================================================================
   RESPONSIVE  (layout is single-column / vertical at every width, so
   these only tune spacing and sizes)
   ===================================================================== */
@media (max-width: 960px) {
  .lp-plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .lp { padding-top: var(--space-24); }
  .lp-flow { height: 84px; gap: var(--space-3); }
  .lp-steps { grid-template-columns: 1fr; gap: var(--space-4); }
  .lp-step:not(:last-child)::after {
    top: auto; bottom: -15px; right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
  .lp-pricing__addons { grid-template-columns: 1fr; }
}

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

@media (max-width: 480px) {
  .lp { padding-left: var(--space-4); padding-right: var(--space-4); }
  .lp-eyebrow { font-size: var(--fs-caption); }
  .lp-flow { gap: var(--space-2); }
  .lp-flow__label { display: none; } /* tight screens: keep just the moving dots */
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .lp-anim,
  .lp-flow__packet { animation: none !important; }
  .lp-flow__packet { display: none; }
}
