/* Marketing landing page for Customax (/).
 *
 * Loaded ONLY by landing.html, and everything is scoped under `body.lp-body`
 * so the generic class names style.css owns (.btn, .brand, .hero, .topbar)
 * keep their dark look everywhere else. Same containment rule auth-light.css
 * follows.
 *
 * Tokens are the ADR-181 family, tuned to the brief: #4b5fe8 blue,
 * #f14e3d coral CTA, #292c4d navy text, #e9eefb line, #f3f7ff tint.
 * The @font-face blocks are repeated here for the same reason they are
 * repeated in auth-light.css: neither manage-light.css nor auth-light.css is
 * loaded on this page.
 */

@font-face {
  font-family: "Discovery Fs";
  src: url("/static/fonts/Discovery_Fs-Light.woff2") format("woff2"),
       url("/static/fonts/Discovery_Fs-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Discovery Fs";
  src: url("/static/fonts/Discovery_Fs-Bold.woff2") format("woff2"),
       url("/static/fonts/Discovery_Fs-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* ═══════════════════════════ Tokens & base ═══════════════════════════ */

.lp-body {
  --lp-blue: #4b5fe8;
  --lp-blue-dark: #3a4ccd;
  --lp-blue-soft: #eef1ff;
  --lp-coral: #f14e3d;
  --lp-coral-dark: #d93c2c;
  --lp-navy: #292c4d;
  --lp-muted: #6b7192;
  --lp-line: #e9eefb;
  --lp-tint: #f3f7ff;
  --lp-white: #ffffff;
  --lp-font: "Discovery Fs", "Segoe UI", "Arial Hebrew", Arial, sans-serif;

  --lp-shadow-sm: 0 2px 8px rgba(41, 44, 77, .05);
  --lp-shadow: 0 10px 30px rgba(41, 44, 77, .07);
  --lp-shadow-lg: 0 24px 60px rgba(41, 44, 77, .12);
  --lp-radius: 20px;

  /* style.css paints <body> dark and declares `color-scheme: dark`, which
     alone is enough to render native controls in dark chrome (ADR-183). */
  background: var(--lp-white);
  color-scheme: light;
  color: var(--lp-navy);
  font-family: var(--lp-font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.lp-body a { color: inherit; text-decoration: none; }
.lp-body img { max-width: 100%; }
.lp-body ::selection { background: rgba(75, 95, 232, .18); }

.lp-wrap { width: min(1160px, 100% - 3rem); margin-inline: auto; }

.lp-section { padding: 6.5rem 0; position: relative; }
.lp-section--tint { background: var(--lp-tint); }

/* ─────────────── Shared bits ─────────────── */

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  border: 1px solid #dbe2ff;
  padding: .4rem 1rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.lp-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lp-coral);
  animation: lp-blink 2.4s ease-in-out infinite;
}

.lp-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.lp-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom: .9rem; }
.lp-head p { color: var(--lp-muted); font-size: 1.08rem; }

.lp-mark { color: var(--lp-blue); position: relative; white-space: nowrap; }
.lp-mark::after {
  content: ""; position: absolute; inset-inline: -4px; bottom: .01em; height: .24em;
  background: rgba(241, 78, 61, .2); border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: right;
  animation: lp-underline .9s cubic-bezier(.2, .8, .3, 1) .7s forwards;
}

/* ─────────────── Buttons ─────────────── */

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  padding: .8rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s cubic-bezier(.2, .8, .3, 1), box-shadow .25s ease,
              background-color .2s ease, color .2s ease, border-color .2s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn:focus-visible { outline: 3px solid rgba(75, 95, 232, .45); outline-offset: 3px; }

.lp-btn--cta {
  background: var(--lp-coral); color: #fff;
  box-shadow: 0 10px 24px rgba(241, 78, 61, .32);
}
.lp-btn--cta:hover { background: var(--lp-coral-dark); box-shadow: 0 16px 34px rgba(241, 78, 61, .4); }

.lp-btn--blue {
  background: var(--lp-blue); color: #fff;
  box-shadow: 0 10px 24px rgba(75, 95, 232, .3);
}
.lp-btn--blue:hover { background: var(--lp-blue-dark); box-shadow: 0 16px 34px rgba(75, 95, 232, .38); }

.lp-btn--ghost { background: #fff; color: var(--lp-navy); border-color: #dbe2fb; }
.lp-btn--ghost:hover { background: var(--lp-tint); border-color: #b9c6f6; }

.lp-btn--lg { padding: 1.05rem 2.3rem; font-size: 1.1rem; }

/* The CTA's halo — a slow breathing ring, never a jitter. */
.lp-btn--pulse { position: relative; }
.lp-btn--pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(241, 78, 61, .45);
  animation: lp-pulse 2.8s ease-out infinite;
}

/* ═══════════════════════════ Header ═══════════════════════════ */

.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.lp-header.is-stuck { border-bottom-color: var(--lp-line); box-shadow: 0 6px 24px rgba(41, 44, 77, .06); }

.lp-header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .85rem 0;
}
.lp-brand { display: flex; align-items: center; gap: .8rem; margin-inline-end: auto; }
.lp-logo { display: flex; align-items: center; gap: .6rem; }
/* Brand line beside the logo. Hidden until there is room for it next to the
   nav — see the min-width rule at the end of the responsive block. */
.lp-tagline {
  display: none; font-size: .84rem; color: var(--lp-muted); white-space: nowrap;
  padding-inline-start: .8rem; border-inline-start: 1px solid var(--lp-line);
}
.lp-logo img { height: 30px; width: auto; display: block; }
.lp-logo-text { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }

.lp-nav { display: flex; align-items: center; gap: 1.9rem; }
.lp-nav a {
  font-size: .97rem; color: var(--lp-muted); position: relative; padding-block: .25rem;
  transition: color .2s ease;
}
.lp-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--lp-blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform .28s cubic-bezier(.2, .8, .3, 1);
}
.lp-nav a:hover { color: var(--lp-navy); }
.lp-nav a:hover::after { transform: scaleX(1); }

.lp-header-actions { display: flex; align-items: center; gap: .6rem; }
.lp-header-actions .lp-btn { padding: .6rem 1.3rem; font-size: .95rem; }

/* ═══════════════════════════ Hero ═══════════════════════════ */

.lp-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 7rem;
  background: linear-gradient(180deg, var(--lp-tint) 0%, #e9eefb 55%, var(--lp-white) 100%);
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 3.5rem; align-items: center;
  position: relative; z-index: 2;
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  margin-bottom: 1.2rem;
}
.lp-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--lp-muted); max-width: 34em; margin-bottom: 2.2rem;
}
.lp-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.lp-micro { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; color: var(--lp-muted); font-size: .93rem; }
.lp-micro svg { color: #2fb37a; flex: none; }

.lp-hero-stats {
  display: flex; gap: 2.4rem; flex-wrap: wrap;
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(75, 95, 232, .14);
}
.lp-stat b { display: block; font-size: 1.75rem; font-weight: 700; color: var(--lp-blue); line-height: 1.1; }
.lp-stat span { font-size: .9rem; color: var(--lp-muted); }

/* Soft blobs behind the hero — slow, large, never distracting. */
.lp-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 1; pointer-events: none; }
.lp-blob--1 { width: 460px; height: 460px; background: #b9c4ff; top: -140px; inset-inline-end: -80px; animation: lp-drift-a 18s ease-in-out infinite; }
.lp-blob--2 { width: 380px; height: 380px; background: #ffd0c8; bottom: -160px; inset-inline-start: -60px; animation: lp-drift-b 22s ease-in-out infinite; }
.lp-blob--3 { width: 300px; height: 300px; background: #cfe0ff; top: 40%; inset-inline-start: 38%; opacity: .35; animation: lp-drift-a 26s ease-in-out infinite reverse; }

/* ─────────────── Hero mockup ─────────────── */

.lp-mock-stage { position: relative; }
.lp-mock {
  background: #fff; border-radius: 24px; border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow-lg); overflow: hidden;
  width: 90%; margin-inline: auto;
  transform: perspective(1400px) rotateY(4deg) rotateX(2deg);
  transition: transform .5s cubic-bezier(.2, .8, .3, 1);
  will-change: transform;
}
.lp-mock-stage:hover .lp-mock { transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px); }

.lp-mock-bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .75rem 1rem; border-bottom: 1px solid var(--lp-line); background: #fbfcff;
}
.lp-dot { width: 10px; height: 10px; border-radius: 50%; background: #e3e8f6; }
.lp-dot:nth-child(1) { background: #ffd0c8; }
.lp-dot:nth-child(2) { background: #ffe8b8; }
.lp-dot:nth-child(3) { background: #c8ecd8; }
.lp-mock-url {
  margin-inline-start: auto; font-size: .78rem; color: var(--lp-muted);
  background: var(--lp-tint); border-radius: 999px; padding: .2rem .8rem;
  border: 1px solid var(--lp-line);
}

.lp-mock-body { padding: 1.2rem; }
.lp-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.lp-mock-title { font-weight: 700; font-size: 1.02rem; }
.lp-mock-chip {
  font-size: .74rem; font-weight: 700; color: var(--lp-blue);
  background: var(--lp-blue-soft); border-radius: 999px; padding: .22rem .7rem;
}

.lp-week { display: grid; grid-template-columns: repeat(6, 1fr); gap: .45rem; margin-bottom: 1rem; }
.lp-day {
  text-align: center; border-radius: 14px; padding: .55rem .2rem;
  background: var(--lp-tint); border: 1px solid var(--lp-line);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.lp-day span { display: block; font-size: .68rem; color: var(--lp-muted); }
.lp-day b { font-size: 1rem; font-weight: 700; }
.lp-day.is-on { background: var(--lp-blue); border-color: var(--lp-blue); color: #fff; transform: translateY(-3px); }
.lp-day.is-on span { color: rgba(255, 255, 255, .8); }

.lp-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.lp-slot {
  font-size: .85rem; font-weight: 700; text-align: center;
  padding: .5rem .2rem; border-radius: 12px;
  background: #fff; border: 1px solid var(--lp-line); color: var(--lp-navy);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.lp-slot.is-taken { background: #f4f6fc; color: #b6bcd2; text-decoration: line-through; border-color: #f0f2f9; }
.lp-slot.is-picked {
  background: var(--lp-coral); border-color: var(--lp-coral); color: #fff;
  transform: scale(1.06); box-shadow: 0 8px 20px rgba(241, 78, 61, .3);
}

.lp-mock-foot {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1rem; padding-top: .9rem; border-top: 1px dashed var(--lp-line);
  font-size: .88rem; color: var(--lp-muted);
}
.lp-mock-foot b { color: var(--lp-navy); font-weight: 700; }
.lp-mock-cta {
  font-size: .82rem; font-weight: 700; color: #fff;
  background: var(--lp-blue); border-radius: 999px; padding: .35rem 1rem;
}

/* Floating cards around the mockup */
.lp-float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .65rem;
  background: #fff; border: 1px solid var(--lp-line); border-radius: 16px;
  padding: .7rem .9rem; box-shadow: var(--lp-shadow);
  font-size: .84rem; line-height: 1.35; white-space: nowrap;
}
.lp-float b { display: block; font-weight: 700; font-size: .89rem; }
.lp-float small { color: var(--lp-muted); font-size: .78rem; }
.lp-float-ico {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.lp-float--call { top: -3%; inset-inline-start: -5%; animation: lp-float-a 6.5s ease-in-out infinite; }
.lp-float--call .lp-float-ico { background: linear-gradient(135deg, #4b5fe8, #6f80ff); }
.lp-float--paid { bottom: 4%; inset-inline-end: -10%; animation: lp-float-b 7.5s ease-in-out infinite; }
.lp-float--paid .lp-float-ico { background: linear-gradient(135deg, #2fb37a, #4fd39b); }
.lp-float--remind { bottom: -12%; inset-inline-start: 12%; animation: lp-float-a 8.5s ease-in-out infinite 1s; }
.lp-float--remind .lp-float-ico { background: linear-gradient(135deg, #f14e3d, #ff8168); }

/* ═══════════════════════════ Trust strip ═══════════════════════════ */

.lp-strip { border-block: 1px solid var(--lp-line); background: #fff; padding: 1.6rem 0; overflow: hidden; }
.lp-strip-track {
  display: flex; align-items: center; gap: 3.2rem; width: max-content;
  animation: lp-marquee 32s linear infinite;
}
.lp-strip:hover .lp-strip-track { animation-play-state: paused; }
.lp-strip-item {
  display: flex; align-items: center; gap: .6rem;
  color: var(--lp-muted); font-size: .96rem; white-space: nowrap;
}
.lp-strip-item svg { color: var(--lp-blue); flex: none; }

/* ═══════════════════════════ Peace of mind ═══════════════════════════ */

.lp-peace { display: grid; grid-template-columns: .95fr 1.05fr; gap: 4rem; align-items: center; }
.lp-peace h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.2rem; }
.lp-peace p { color: var(--lp-muted); font-size: 1.08rem; margin-bottom: 1.8rem; }
.lp-peace-points { list-style: none; display: grid; gap: .85rem; }
.lp-peace-points li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; }
.lp-peace-points svg { flex: none; margin-top: .3rem; color: #2fb37a; }

.lp-peace-art { position: relative; }
.lp-chat {
  background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow); padding: 1.4rem; display: grid; gap: .8rem;
}
.lp-chat-head { display: flex; align-items: center; gap: .7rem; padding-bottom: .9rem; border-bottom: 1px solid var(--lp-line); }
.lp-chat-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #4b5fe8, #8b98ff); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
}
.lp-chat-head b { display: block; font-size: .95rem; }
.lp-chat-head small { color: #2fb37a; font-size: .8rem; }
.lp-chat-live { margin-inline-start: auto; display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--lp-muted); }
.lp-chat-live i { width: 7px; height: 7px; border-radius: 50%; background: #2fb37a; animation: lp-blink 1.8s ease-in-out infinite; }

.lp-bubble {
  max-width: 82%; padding: .7rem 1rem; border-radius: 16px; font-size: .93rem; line-height: 1.55;
  opacity: 0; transform: translateY(10px);
  animation: lp-bubble-in .5s cubic-bezier(.2, .8, .3, 1) forwards;
}
.lp-bubble--them { background: var(--lp-tint); border: 1px solid var(--lp-line); border-start-end-radius: 6px; }
.lp-bubble--us { background: var(--lp-blue); color: #fff; margin-inline-start: auto; border-start-start-radius: 6px; }
.lp-bubble:nth-of-type(1) { animation-delay: .1s; }
.lp-bubble:nth-of-type(2) { animation-delay: .9s; }
.lp-bubble:nth-of-type(3) { animation-delay: 1.7s; }
.lp-bubble:nth-of-type(4) { animation-delay: 2.5s; }
.lp-bubble small { display: block; margin-top: .25rem; font-size: .72rem; opacity: .65; }

.lp-peace-badge {
  position: absolute; inset-inline-start: -14px; top: -20px;
  background: #fff; border: 1px solid var(--lp-line); border-radius: 14px;
  box-shadow: var(--lp-shadow); padding: .6rem .9rem; font-size: .82rem;
  display: flex; align-items: center; gap: .5rem;
  animation: lp-float-b 7s ease-in-out infinite;
}
.lp-peace-badge b { font-weight: 700; }

/* ═══════════════════════════ How it works ═══════════════════════════ */

.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.lp-steps::before {
  content: ""; position: absolute; top: 42px; inset-inline: 12%; height: 2px;
  background: repeating-linear-gradient(to left, #bfcbf2 0 9px, transparent 9px 17px);
  z-index: 0;
}
.lp-step {
  position: relative; z-index: 1; text-align: center;
  background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  padding: 2.2rem 1.6rem 1.9rem; box-shadow: var(--lp-shadow-sm);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}
.lp-step:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow); border-color: #d8e0fb; }
.lp-step-num {
  width: 52px; height: 52px; border-radius: 18px; margin: 0 auto 1.1rem;
  display: grid; place-items: center; font-size: 1.25rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--lp-blue), #7386ff);
  box-shadow: 0 10px 22px rgba(75, 95, 232, .28);
}
.lp-step:nth-child(3) .lp-step-num { background: linear-gradient(135deg, var(--lp-coral), #ff8168); box-shadow: 0 10px 22px rgba(241, 78, 61, .28); }
.lp-step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.lp-step p { color: var(--lp-muted); font-size: .97rem; }

/* ═══════════════════════════ Features ═══════════════════════════ */

.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.lp-feature {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
  padding: 1.9rem 1.6rem; box-shadow: var(--lp-shadow-sm);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}
.lp-feature::after {
  content: ""; position: absolute; inset-inline-end: -60px; top: -60px;
  width: 150px; height: 150px; border-radius: 50%; background: var(--lp-tint);
  transform: scale(.4); opacity: 0; transition: transform .45s cubic-bezier(.2, .8, .3, 1), opacity .35s ease;
  z-index: 0;
}
.lp-feature:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow); border-color: #d8e0fb; }
.lp-feature:hover::after { transform: scale(1); opacity: 1; }
.lp-feature > * { position: relative; z-index: 1; }
.lp-feature-ico {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 1.1rem;
  display: grid; place-items: center; color: var(--lp-blue);
  background: var(--lp-blue-soft); border: 1px solid #dde3ff;
  transition: transform .35s cubic-bezier(.2, .8, .3, 1), background-color .3s ease, color .3s ease;
}
.lp-feature:hover .lp-feature-ico { transform: translateY(-3px) rotate(-6deg); background: var(--lp-blue); color: #fff; }
.lp-feature h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.lp-feature p { color: var(--lp-muted); font-size: .96rem; }
.lp-feature-tag {
  display: inline-block; margin-top: .8rem; font-size: .76rem; font-weight: 700;
  color: var(--lp-coral); background: #ffeeeb; border-radius: 999px; padding: .2rem .7rem;
}

/* ═══════════════════════════ Pricing ═══════════════════════════ */

.lp-trial-note {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid var(--lp-line); border-radius: 999px;
  padding: .55rem 1.2rem; font-size: .95rem; box-shadow: var(--lp-shadow-sm);
}
.lp-trial-note svg { color: #2fb37a; flex: none; }

/* The plans hold very different numbers of features, so stretching them to a
   common height would open a void under the shorter two. Each card sizes to
   its own content instead; `start` keeps them top-aligned. */
.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.lp-plan {
  position: relative; background: #fff;
  border: 1px solid var(--lp-line); border-radius: 24px;
  padding: 2.1rem 1.8rem; box-shadow: var(--lp-shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}
.lp-plan:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow); border-color: #d8e0fb; }
.lp-plan--hot {
  border-color: var(--lp-blue); box-shadow: 0 24px 55px rgba(75, 95, 232, .2);
  transform: scale(1.035);
}
.lp-plan--hot:hover { transform: scale(1.035) translateY(-6px); }
.lp-plan-flag {
  position: absolute; top: -14px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--lp-coral); color: #fff; font-size: .78rem; font-weight: 700;
  border-radius: 999px; padding: .3rem 1.1rem; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(241, 78, 61, .32);
}
.lp-plan-name { font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.lp-plan-for { color: var(--lp-muted); font-size: .9rem; min-height: 3.4em; }
.lp-plan-price { display: flex; align-items: baseline; gap: .35rem; margin: 1rem 0 1.4rem; }
.lp-plan-price b {
  font-size: 2.7rem; font-weight: 700; line-height: 1; letter-spacing: -.02em;
  direction: ltr; unicode-bidi: isolate;
}
.lp-plan-price span { color: var(--lp-muted); font-size: .95rem; }
.lp-plan--hot .lp-plan-price b { color: var(--lp-blue); }

.lp-plan-list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.8rem; }
.lp-plan-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.lp-plan-list svg { flex: none; margin-top: .32rem; color: var(--lp-blue); }
.lp-plan-list li.is-inherit { color: var(--lp-muted); font-weight: 700; }
.lp-plan-list li.is-inherit svg { color: var(--lp-muted); }
.lp-plan .lp-btn { margin-top: auto; width: 100%; }
.lp-plan-fine { text-align: center; font-size: .8rem; color: var(--lp-muted); margin-top: .8rem; }

/* ═══════════════════════════ FAQ ═══════════════════════════ */

.lp-faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.lp-q {
  background: #fff; border: 1px solid var(--lp-line); border-radius: 16px;
  overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.lp-q.is-open { border-color: #cfd8f9; box-shadow: var(--lp-shadow); }
.lp-q-btn {
  width: 100%; display: flex; align-items: center; gap: 1rem; text-align: start;
  font-family: inherit; font-size: 1.03rem; font-weight: 700; color: var(--lp-navy);
  background: none; border: 0; cursor: pointer; padding: 1.15rem 1.4rem;
}
.lp-q-btn:focus-visible { outline: 3px solid rgba(75, 95, 232, .35); outline-offset: -3px; }
.lp-q-sign {
  margin-inline-start: auto; flex: none;
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lp-blue-soft); color: var(--lp-blue);
  transition: transform .35s cubic-bezier(.2, .8, .3, 1), background-color .25s ease, color .25s ease;
}
.lp-q.is-open .lp-q-sign { transform: rotate(180deg); background: var(--lp-blue); color: #fff; }
.lp-q-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2, .8, .3, 1);
}
.lp-q.is-open .lp-q-panel { grid-template-rows: 1fr; }
.lp-q-panel > div { overflow: hidden; }
.lp-q-panel p { padding: 0 1.4rem 1.3rem; color: var(--lp-muted); font-size: .98rem; }

/* ═══════════════════════════ Bottom CTA ═══════════════════════════ */

.lp-cta-card {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 30px; padding: 4.2rem 2rem;
  background: linear-gradient(135deg, #4b5fe8 0%, #6172f0 45%, #8b62e8 100%);
  color: #fff; box-shadow: 0 30px 70px rgba(75, 95, 232, .32);
}
.lp-cta-card::before,
.lp-cta-card::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .1);
  pointer-events: none;
}
.lp-cta-card::before { width: 320px; height: 320px; top: -140px; inset-inline-start: -80px; animation: lp-drift-a 20s ease-in-out infinite; }
.lp-cta-card::after { width: 260px; height: 260px; bottom: -130px; inset-inline-end: -60px; animation: lp-drift-b 24s ease-in-out infinite; }
.lp-cta-card > * { position: relative; z-index: 1; }
.lp-cta-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .9rem; }
.lp-cta-card h2 em { font-style: normal; position: relative; white-space: nowrap; }
.lp-cta-card h2 em::after {
  content: ""; position: absolute; inset-inline: -6px; bottom: .04em; height: .24em;
  background: rgba(255, 255, 255, .28); border-radius: 5px; z-index: -1;
  /* Drawn in when the card scrolls into view, like the hero's .lp-mark. */
  transform: scaleX(0); transform-origin: right;
  transition: transform .7s cubic-bezier(.2, .8, .3, 1) .35s;
}
.lp-cta-card.is-in h2 em::after { transform: scaleX(1); }
.lp-cta-card p { color: rgba(255, 255, 255, .88); font-size: 1.08rem; max-width: 40em; margin: 0 auto 2rem; }
.lp-cta-card .lp-micro { justify-content: center; color: rgba(255, 255, 255, .82); margin-top: 1.1rem; }
.lp-cta-card .lp-micro svg { color: #b9f5d8; }

/* ═══════════════════════════ Footer ═══════════════════════════ */

.lp-footer { background: #fff; border-top: 1px solid var(--lp-line); padding: 3.5rem 0 2rem; }
.lp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.lp-footer-about p { color: var(--lp-muted); font-size: .93rem; margin-top: .9rem; max-width: 30em; }
.lp-footer h4 { font-size: .95rem; margin-bottom: .9rem; }
.lp-footer ul { list-style: none; display: grid; gap: .55rem; }
.lp-footer li a, .lp-footer li span { color: var(--lp-muted); font-size: .92rem; transition: color .2s ease; }
.lp-footer li a:hover { color: var(--lp-blue); }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid var(--lp-line);
  color: var(--lp-muted); font-size: .87rem;
}

/* ═══════════════════════════ Scroll reveal ═══════════════════════════ */

.lp-reveal { opacity: 0; transform: translateY(26px); }
.lp-reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2, .8, .3, 1), transform .7s cubic-bezier(.2, .8, .3, 1);
  transition-delay: var(--lp-delay, 0s);
}

/* Hero copy animates on load rather than on scroll — it is already in view. */
.lp-rise { opacity: 0; animation: lp-rise .8s cubic-bezier(.2, .8, .3, 1) forwards; }
.lp-rise--1 { animation-delay: .05s; }
.lp-rise--2 { animation-delay: .18s; }
.lp-rise--3 { animation-delay: .31s; }
.lp-rise--4 { animation-delay: .44s; }
.lp-rise--5 { animation-delay: .57s; }

/* ═══════════════════════════ Keyframes ═══════════════════════════ */

@keyframes lp-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes lp-bubble-in { to { opacity: 1; transform: none; } }
@keyframes lp-underline { to { transform: scaleX(1); } }
@keyframes lp-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 78, 61, .45); }
  70% { box-shadow: 0 0 0 18px rgba(241, 78, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 78, 61, 0); }
}
@keyframes lp-float-a {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes lp-float-b {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-11px) rotate(-1.5deg); }
}
@keyframes lp-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-32px, 26px) scale(1.08); }
}
@keyframes lp-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, -30px) scale(1.1); }
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════ Responsive ═══════════════════════════ */

@media (max-width: 1080px) {
  .lp-hero-grid, .lp-peace { grid-template-columns: 1fr; gap: 3rem; }
  .lp-hero { padding-bottom: 5rem; }
  .lp-mock { transform: none; width: 92%; }
  .lp-float--call { inset-inline-start: -1%; }
  .lp-float--paid { inset-inline-end: -1%; }
  .lp-features, .lp-plans, .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-steps::before { display: none; }
  .lp-plan--hot { transform: none; }
  .lp-plan--hot:hover { transform: translateY(-6px); }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1180px) {
  .lp-tagline { display: inline-block; }
}

@media (max-width: 860px) {
  .lp-nav { display: none; }
}

@media (max-width: 700px) {
  .lp-body { font-size: 16px; }
  .lp-wrap { width: min(1160px, 100% - 2rem); }
  .lp-section { padding: 4.5rem 0; }
  .lp-features, .lp-plans, .lp-steps, .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-hero-actions .lp-btn { width: 100%; }
  .lp-hero-stats { gap: 1.4rem 2rem; }
  .lp-float { font-size: .78rem; padding: .55rem .7rem; }
  .lp-float--remind { display: none; }
  .lp-mock { width: 100%; }
  .lp-float--call { inset-inline-start: -4px; top: -2%; }
  .lp-float--paid { inset-inline-end: -4px; bottom: 2%; }
  .lp-peace-badge { inset-inline-end: 4px; top: -16px; }
  .lp-cta-card { padding: 3rem 1.3rem; border-radius: 22px; }
  .lp-header-actions { gap: .4rem; }
  .lp-header-actions .lp-btn { padding: .5rem 1rem; font-size: .88rem; }
  .lp-logo img { height: 26px; }
}

/* Motion is decoration here: strip it entirely when the visitor asks. */
@media (prefers-reduced-motion: reduce) {
  .lp-body *, .lp-body *::before, .lp-body *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .lp-reveal, .lp-rise, .lp-bubble { opacity: 1 !important; transform: none !important; }
  .lp-mark::after { transform: scaleX(1); }
}
