/* Owner: [panel]. Landing page only. Scoped under .lp so the panel styles stay untouched. */
.lp {
  --ink: #0d1220;
  --mut: #5b6678;
  --line: #e5e9f0;
  --card: #ffffff;
  --soft: #f5f7fc;
  --ac: #2f5fe0;
  --ac2: #8a3ff0;
  --ok: #0e7a3d;
  --r: 20px;
  color: var(--ink);
  position: relative;
}

@media (prefers-color-scheme: dark) {
  .lp {
    --ink: #edf0f6;
    --mut: #9aa5b8;
    --line: #262e3d;
    --card: #161b24;
    --soft: #10151d;
    --ac: #7da2ff;
    --ac2: #c08cff;
  }
}

.lp * { box-sizing: border-box; }
.lp p { color: var(--mut); }
.lp section { position: relative; margin: 0 0 96px; }
.lp h2 { font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.028em; line-height: 1.15; margin: 0 0 10px; }
.lp h3 { font-size: 17px; letter-spacing: -0.01em; }

.lp-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac);
}

/* soft light behind the hero ------------------------------------------- */
.lp-glow {
  position: absolute;
  inset: -120px -40px auto;
  height: 560px;
  pointer-events: none;
  background:
    radial-gradient(420px 260px at 18% 22%, rgba(47, 95, 224, 0.18), transparent 70%),
    radial-gradient(460px 280px at 78% 8%, rgba(138, 63, 240, 0.16), transparent 72%);
  filter: blur(6px);
  z-index: 0;
}

/* hero ------------------------------------------------------------------ */
.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 44px 0 12px;
  z-index: 1;
}

.lp-hero h1 {
  font-size: clamp(36px, 6.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--ac), var(--ac2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-sub { font-size: 19.5px; line-height: 1.6; margin: 0 0 28px; max-width: 46ch; }

.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: inherit;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.lp-btn:hover { transform: translateY(-1px); }
.lp-btn:focus-visible { outline: 2px solid var(--ac); outline-offset: 3px; }

.lp-btn-main {
  border-color: transparent;
  background: linear-gradient(100deg, var(--ac), var(--ac2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 95, 224, 0.3);
}

.lp-btn-main:hover { box-shadow: 0 14px 32px rgba(47, 95, 224, 0.36); }

.lp-note { margin: 16px 0 0; font-size: 14.5px; }

/* hero visual ----------------------------------------------------------- */
.lp-mock {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(165deg, rgba(47, 95, 224, 0.14), rgba(138, 63, 240, 0.1));
  border: 1px solid var(--line);
}

.lp-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: 0 24px 50px rgba(13, 18, 32, 0.12);
}

.lp-form-title { font-weight: 650; margin: 0 0 16px; color: var(--ink); font-size: 15px; }
.lp-field { height: 40px; border-radius: 11px; background: var(--soft); border: 1px solid var(--line); margin-bottom: 10px; }
.lp-field-lg { height: 72px; }

.lp-widget {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--card);
  margin: 16px 0;
}

.lp-tick {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid var(--ok);
  position: relative;
  flex: 0 0 auto;
}

.lp-tick::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: 2px solid var(--ok);
  border-top: 0;
  border-left: 0;
  transform: rotate(42deg);
  animation: lp-pop 2.6s ease-in-out infinite;
}

@keyframes lp-pop {
  0%, 70%, 100% { opacity: 1; transform: rotate(42deg) scale(1); }
  76% { opacity: 0.35; transform: rotate(42deg) scale(0.7); }
  84% { opacity: 1; transform: rotate(42deg) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-tick::after { animation: none; }
}

.lp-widget b { font-weight: 600; font-size: 14px; display: block; }
.lp-widget small { font-size: 11.5px; color: var(--mut); }
.lp-send {
  padding: 11px 20px;
  border-radius: 11px;
  background: linear-gradient(100deg, var(--ac), var(--ac2));
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-block;
}

/* cards ----------------------------------------------------------------- */
.lp-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.lp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13, 18, 32, 0.09); }
.lp-card h3 { margin: 14px 0 6px; }
.lp-card p { margin: 0; font-size: 15px; line-height: 1.55; }

.lp-ico {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--ac), var(--ac2));
  box-shadow: 0 8px 18px rgba(47, 95, 224, 0.28);
}

/* steps ------------------------------------------------------------------ */
.lp-steps { counter-reset: step; }
.lp-step { position: relative; padding-top: 30px; }
.lp-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--ac), var(--ac2));
}
.lp-step h3 { margin-top: 26px; }

.lp-free {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px dashed var(--ac);
  background: linear-gradient(120deg, rgba(47, 95, 224, 0.08), rgba(138, 63, 240, 0.08));
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}
.lp-free b { font-size: 18px; letter-spacing: -0.02em; }
.lp-free span { color: var(--mut); font-size: 15px; }

/* uses ------------------------------------------------------------------- */
.lp-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.lp-strip div { padding: 20px 22px; background: var(--card); }
.lp-strip b { display: block; font-size: 16px; margin-bottom: 4px; }
.lp-strip span { font-size: 14.5px; color: var(--mut); }

/* faq -------------------------------------------------------------------- */
.lp-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.lp-faq details[open] { box-shadow: 0 10px 26px rgba(13, 18, 32, 0.07); }
.lp-faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--ac); font-weight: 700; }
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; }

/* closing ---------------------------------------------------------------- */
.lp-final {
  text-align: center;
  padding: 56px 28px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(120deg, var(--ac), var(--ac2));
  box-shadow: 0 24px 50px rgba(47, 95, 224, 0.28);
}
.lp-final h2 { color: #fff; }
.lp-final p { color: rgba(255, 255, 255, 0.88); max-width: 52ch; margin: 0 auto 24px; font-size: 16.5px; }
.lp-final .lp-btn { background: #fff; color: #17203a; border-color: transparent; }
.lp-final .lp-btn-ghost { background: rgba(255, 255, 255, 0.16); color: #fff; border-color: rgba(255, 255, 255, 0.4); }

@media (max-width: 860px) {
  .lp-hero { grid-template-columns: 1fr; gap: 30px; padding-top: 18px; }
  .lp section { margin-bottom: 64px; }
  .lp-mock { padding: 20px; }
}
