/* Postix marketing — Spectrum Dark (vibrant violet / magenta / electric blue) */

.lp {
  /* Brand accents (marketing-specific) */
  --lp-violet: #7C3AED;
  --lp-indigo: #4F46E5;
  --lp-blue: #2563EB;
  --lp-magenta: var(--hot, #DB2777);
  --lp-pink: #E11D48;
  --lp-pink2: #BE185D;
  --lp-cyan: var(--cyan, #818CF8);
  --lp-cyan-dim: rgba(124, 58, 237, 0.14);
  --lp-accent: var(--accent, #A78BFA);
  --lp-amber: var(--accent, #A78BFA); /* legacy alias */
  --lp-amber-dim: var(--accent-soft, rgba(124, 58, 237, 0.16));
  --lp-ink: #000000;
  --lp-grad: var(--gradient, linear-gradient(125deg, #7C3AED 0%, #4F46E5 42%, #DB2777 100%));
  --lp-grad-btn: var(--gradient-btn, linear-gradient(105deg, #7C3AED 0%, #DB2777 100%));
  /* Surfaces/text aliased to shell tokens */
  --lp-bg: var(--bg, #000000);
  --lp-bg2: var(--bg2, #07070C);
  --lp-panel: var(--panel, #0E0E16);
  --lp-elevated: var(--panel2, #161622);
  --lp-text: var(--fg, #FFFFFF);
  --lp-muted: var(--muted, rgba(255, 255, 255, 0.86));
  --lp-muted2: var(--muted2, rgba(255, 255, 255, 0.78));
  --lp-line: var(--line, rgba(255, 255, 255, 0.1));
  --lp-line-strong: var(--line-strong, rgba(255, 255, 255, 0.18));
  --lp-nav-bg: rgba(0, 0, 0, 0.88);
  --lp-dd-bg: var(--card, #12121C);
  --lp-dd-hover: var(--accent-soft, rgba(124, 58, 237, 0.14));
  --lp-card: var(--card, #12121C);
  --lp-faq: var(--panel2, #161622);
  --lp-tile: var(--elevated, #1A1A28);
  --lp-display: var(--display, "Plus Jakarta Sans", "Manrope", ui-sans-serif, system-ui, sans-serif);
  --lp-body: var(--font, "Manrope", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif);
  --lp-purple: #7C3AED;
  --lp-lime: var(--accent, #A78BFA); /* legacy alias */
  --lp-mesh: var(--mesh,
    radial-gradient(920px 520px at 8% -12%, rgba(124, 58, 237, 0.28), transparent 58%),
    radial-gradient(780px 460px at 96% 0%, rgba(219, 39, 119, 0.2), transparent 52%),
    radial-gradient(700px 420px at 50% 110%, rgba(37, 99, 235, 0.16), transparent 55%));
  background: var(--lp-mesh), var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-body);
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background .2s ease, color .2s ease;
}

[data-theme="light"] .lp {
  /* Surfaces inherit shell light tokens via aliases; keep brand accents */
  --lp-violet: #6D28D9;
  --lp-indigo: #4338CA;
  --lp-blue: #1D4ED8;
  --lp-magenta: var(--hot);
  --lp-pink: #E11D48;
  --lp-pink2: #9D174D;
  --lp-cyan: var(--cyan);
  --lp-cyan-dim: rgba(109, 40, 217, 0.1);
  --lp-accent: var(--accent);
  --lp-amber: var(--accent);
  --lp-amber-dim: var(--accent-soft);
  --lp-ink: #000000;
  --lp-grad: var(--gradient);
  --lp-grad-btn: var(--gradient-btn);
  --lp-nav-bg: rgba(246, 245, 255, 0.94);
  --lp-purple: #6D28D9;
  --lp-lime: var(--accent);
}

.lp a { color: inherit; text-decoration: none; }
.lp a:hover { text-decoration: none; }

.lp-announce {
  background: #000000;
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(0.78rem, 1.15vw, 0.88rem);
  font-weight: 500;
  padding: 0.42rem 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
[data-theme="light"] .lp-announce {
  background: #000000;
  color: #FFFFFF;
}
.lp-announce a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: #FFFFFF !important;
  font-weight: 500;
}
.lp-announce a:hover {
  color: #FFFFFF !important;
  opacity: .88;
}
[data-theme="light"] .lp-announce a { color: #FFFFFF !important; }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem clamp(1rem, 3vw, 2rem);
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--lp-nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-line);
}
.lp-nav .brand-mark {
  font-size: 1.1rem;
  font-family: var(--lp-display);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lp-nav-links {
  display: flex; align-items: center; gap: .85rem;
  margin-left: 1rem; flex: 1; flex-wrap: nowrap;
}
.lp-nav-links > a {
  color: #FFFFFF; font-size: 1rem; font-weight: 700;
  padding: .4rem .2rem;
  border-radius: 8px;
  transition: color .15s ease, opacity .15s ease;
}
.lp-nav-links > a:hover { color: #FFFFFF; opacity: .9; background: transparent; }
.lp-nav-links > a.hot { color: #FFFFFF; }
.lp-nav-actions { display: flex; gap: .75rem; align-items: center; margin-left: auto; }
.lp-btn-login {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: .95rem;
  padding: .4rem .55rem !important;
}
.lp-btn-login:hover {
  opacity: .88;
  transform: none;
  filter: none;
}
[data-theme="light"] .lp-btn-login {
  color: #111827 !important;
}

.lp-theme-btn {
  width: var(--touch, 44px); height: var(--touch, 44px);
  min-width: var(--touch, 44px); min-height: var(--touch, 44px);
  border-radius: var(--radius-sm, 12px); padding: 0 !important;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent !important;
  border: 1px solid var(--lp-line-strong) !important;
  color: var(--lp-text) !important;
  font-size: 0; cursor: pointer;
  box-shadow: none !important;
  box-sizing: border-box;
  flex-shrink: 0;
  line-height: 1;
}
.lp-theme-btn:hover { background: var(--lp-elevated) !important; filter: none; }
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; font-size: .84rem;
  padding: .55rem 1.15rem; border: 1px solid transparent; cursor: pointer;
  font-family: inherit; transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: none !important;
  filter: none;
  text-decoration: none !important;
  appearance: none;
  -webkit-appearance: none;
}
.lp-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.lp-btn:disabled,
.lp-btn[disabled] {
  opacity: .55; cursor: not-allowed; transform: none; filter: none;
}
.lp-btn-ghost {
  background: transparent !important;
  color: var(--lp-text) !important;
  border: 1px solid var(--lp-line-strong) !important;
  box-shadow: none !important;
}
.lp-btn-ghost:hover {
  background: var(--lp-cyan-dim) !important;
  border-color: color-mix(in srgb, var(--lp-cyan) 45%, var(--lp-line-strong)) !important;
}
[data-theme="light"] .lp-btn-ghost {
  background: #fff !important;
  color: #000000 !important;
  border-color: #D1D5DB !important;
}
.lp-btn-white {
  background: #000000 !important;
  color: #F3F6FA !important;
  border-color: transparent !important;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.28) !important;
}
.lp-btn-white:hover { filter: brightness(1.12); }
[data-theme="light"] .lp-btn-white {
  background: #000000 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.18) !important;
}
.lp-btn-amber {
  background: var(--lp-grad-btn) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.38) !important;
}
.lp-btn-amber:hover { filter: brightness(1.08); }
.lp-price-card.popular .lp-btn-ghost {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.45) !important;
}
.lp-price-card.popular .lp-btn-white {
  background: #fff !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.lp-btn-demo {
  background: transparent !important;
  color: var(--lp-text) !important;
  border: 1px solid var(--lp-line-strong) !important;
  box-shadow: none !important;
}
[data-theme="light"] .lp-btn-demo {
  background: #fff !important;
  color: #000000 !important;
}
.lp-btn-lg { padding: .72rem 1.35rem; font-size: .92rem; }

.lp-hero {
  position: relative;
  text-align: left;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1100px;
  margin: 0 auto;
}
.lp-doodle { display: none !important; }

.lp-hero-badges {
  display: flex;
  justify-content: flex-start;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.55rem;
  position: relative;
  z-index: 1;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.45);
  background:
    linear-gradient(145deg, rgba(124,58,237,.18), rgba(255,255,255,.04));
  color: var(--lp-text);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.lp-hero-badge .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 900;
  color: #0A0A0A;
  background: linear-gradient(135deg, #7C3AED, #DB2777);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124,58,237,.4);
}
@media (max-width: 680px) {
  .lp-hero-badge { width: 100%; justify-content: flex-start; }
}

.lp-hero h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.5rem, 6vw, 4.375rem);
  line-height: 1.1; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 .85rem; position: relative; z-index: 1;
}
.lp-hero h1 .mark-word {
  position: relative; display: inline-block;
}
.lp-hero h1 .mark-word img {
  position: absolute; left: -4%; right: -4%; bottom: -0.12em;
  width: 108%; height: .45em; object-fit: fill; pointer-events: none;
}
.lp-hero .sub {
  color: var(--lp-muted); font-size: clamp(.92rem, 1.4vw, 1.02rem);
  line-height: 1.55; max-width: 640px; margin: 0 auto 1.1rem;
  position: relative; z-index: 1;
}
.lp-comet-spotlight {
  display: block;
  max-width: 780px;
  margin: 0 auto 1.15rem;
  padding: 1rem 1.15rem 1.05rem;
  text-align: left;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, #38bdf8 35%, var(--lp-line-strong));
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.14), transparent 42%),
    linear-gradient(320deg, rgba(99, 102, 241, 0.12), transparent 48%),
    color-mix(in srgb, var(--lp-elevated) 88%, transparent);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.lp-comet-spotlight:hover {
  border-color: color-mix(in srgb, #38bdf8 55%, var(--lp-line-strong));
  transform: translateY(-2px);
}
.lp-comet-spotlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .55rem;
}
.lp-comet-spotlight-pill {
  display: inline-flex;
  align-items: center;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.18);
  color: #7dd3fc;
}
[data-theme="light"] .lp-comet-spotlight-pill {
  background: #e0f2fe;
  color: #0369a1;
}
.lp-comet-spotlight-link {
  font-size: .78rem;
  font-weight: 800;
  color: #7dd3fc;
  white-space: nowrap;
}
[data-theme="light"] .lp-comet-spotlight-link { color: #0284c7; }
.lp-comet-spotlight-title {
  display: block;
  font-family: var(--lp-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--lp-text);
  margin: 0 0 .35rem;
}
.lp-comet-spotlight-lead {
  margin: 0 0 .7rem;
  color: var(--lp-muted);
  font-size: .88rem;
  line-height: 1.45;
  max-width: 62ch;
}
.lp-comet-spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.lp-comet-spotlight-chips span {
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: color-mix(in srgb, var(--lp-panel) 70%, transparent);
  color: var(--lp-text);
}
@media (max-width: 640px) {
  .lp-comet-spotlight { padding: .9rem; }
  .lp-comet-spotlight-top { flex-wrap: wrap; }
}
.lp-hero .agents {
  color: var(--lp-muted2); font-size: .82rem; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}

.lp-platforms {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
}
.lp-platforms img {
  width: 100%; aspect-ratio: 1; border-radius: 10px;
  background: var(--lp-elevated); object-fit: contain; padding: 4px;
  border: 1px solid var(--lp-line);
}
@media (max-width: 760px) {
  .lp-platforms { grid-template-columns: repeat(10, 1fr); }
  .lp-nav-links { display: none; }
  .lp-doodle { display: none; }
}

.lp-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap;
  color: var(--lp-muted); font-size: .9rem; font-weight: 600;
  position: relative; z-index: 1;
}
.lp-toggle-row .on { color: var(--lp-text); }
.lp-switch {
  width: 48px; height: 26px; border-radius: 999px;
  background: var(--lp-pink); border: 0; position: relative; cursor: pointer; padding: 0;
}
.lp-switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: left .15s ease;
}
.lp-switch.alt::after { left: 25px; }
.lp-switch.alt { background: #404040; }

.lp-section {
  padding: 3.5rem clamp(1rem, 3vw, 2rem);
  max-width: 1320px; margin: 0 auto;
}
.lp-section h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.025em;
  text-align: center; margin: 0 0 1.35rem; line-height: 1.15;
}
.lp-section .lead {
  text-align: center; color: var(--lp-muted); max-width: 720px;
  margin: -0.35rem auto 2.25rem; line-height: 1.55; font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.lp-section .mark-word,
.lp-faq-title .mark-word {
  position: relative; display: inline-block;
}
.lp-section .lp-under,
.lp-faq-title .mark-word img {
  position: absolute; left: -2%; right: -2%; bottom: -0.2em;
  width: 104%; height: .4em; object-fit: fill; pointer-events: none;
}

.lp-growth {
  margin: 1.5rem 0 0;
  border-radius: 0;
  background: transparent;
  padding: 2.25rem 0 1.25rem;
  overflow: hidden;
}
.lp-growth h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 .25rem;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}
.lp-growth .eyebrow { display: none; }

.lp-marquee-stack {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.75rem;
}
.lp-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.lp-marquee-track {
  display: flex;
  gap: .85rem;
  width: max-content;
  animation: lp-scroll 38s linear infinite;
  will-change: transform;
}
.lp-marquee-track.reverse {
  animation-name: lp-scroll-rev;
  animation-duration: 44s;
}
.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}
@keyframes lp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lp-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.lp-stat-card {
  background: linear-gradient(115deg, #7C3AED 0%, #4F46E5 100%);
  border: 0;
  border-radius: 28px;
  padding: 1rem 1.05rem 1.05rem;
  min-width: 236px;
  max-width: 260px;
  color: #fff;
  flex: 0 0 auto;
  box-shadow: 0 14px 36px rgba(76, 29, 149, 0.35);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.lp-stat-card.tone-1 { background: linear-gradient(115deg, #7C3AED 0%, #2563EB 100%); }
.lp-stat-card.tone-2 { background: linear-gradient(115deg, #DB2777 0%, #7C3AED 100%); }
.lp-stat-card.tone-3 { background: linear-gradient(115deg, #06B6D4 0%, #2563EB 100%); }
.lp-stat-card.tone-4 { background: linear-gradient(115deg, #E11D48 0%, #DB2777 100%); }
.lp-stat-card.tone-5 { background: linear-gradient(115deg, #4F46E5 0%, #9333EA 100%); }
.lp-stat-card.tone-6 { background: linear-gradient(115deg, #BE185D 0%, #F472B6 100%); }
.lp-stat-card.tone-7 { background: linear-gradient(115deg, #1E3A8A 0%, #38BDF8 100%); }
.lp-stat-card .stat-island {
  background: #000000;
  border-radius: 18px;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.lp-stat-card .lp-stat-metric {
  font-family: var(--lp-display);
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FFFFFF;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transform: none;
}
.lp-stat-card .label {
  color: rgba(255,255,255,.94);
  font-size: .9rem;
  line-height: 1.3;
  font-weight: 600;
  padding: 0 .15rem;
}
.lp-stat-card .who {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  margin-top: .15rem;
  font-weight: 600;
  padding: 0 .15rem;
}
.lp-stat-card .who img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255,255,255,.12);
  padding: 1px;
}
@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track,
  .lp-marquee-track.reverse {
    animation: none !important;
    transform: none !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 1rem;
  }
}

.lp-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto 1.4rem;
  padding: 1rem clamp(1rem, 3vw, 2rem) 0;
}
@media (max-width: 1180px) { .lp-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .lp-showcase { grid-template-columns: 1fr; } }
.lp-show-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column;
  color: #fff;
}
.lp-show-card.tone-a { background: linear-gradient(160deg, #b611b0, #4a0047); }
.lp-show-card.tone-b { background: linear-gradient(160deg, #9033ed, #3c0078); }
.lp-show-card.tone-c { background: linear-gradient(160deg, #164cd9, #002584); }
.lp-show-card.tone-d {
  background:
    radial-gradient(420px 180px at 85% 10%, rgba(56, 189, 248, 0.35), transparent 55%),
    linear-gradient(160deg, #0ea5e9, #1d4ed8 48%, #312e81);
}
.lp-show-comet .pill {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  letter-spacing: .08em;
}
.lp-show-comet-cta {
  display: inline-flex;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 1px;
}
.lp-show-comet-cta:hover { border-bottom-color: #fff; }
.lp-show-card .copy { padding: 1.35rem 1.4rem .5rem; }
.lp-show-card h3 { font-family: var(--lp-display); font-size: 1.35rem; margin: .4rem 0 .35rem; font-weight: 700; }
.lp-show-card p { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.45; }
.lp-show-card img { width: 100%; margin-top: auto; object-fit: cover; max-height: 160px; opacity: .95; }

.lp-audience {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 860px) { .lp-audience { grid-template-columns: 1fr; } }
.lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 20px; padding: 1.25rem 1.2rem;
  transition: transform .15s ease, border-color .15s ease;
  height: 100%;
  color: var(--lp-text);
}
.lp-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-cyan);
}
.lp-card h3 { margin: 0 0 .4rem; font-size: 1.1rem; font-family: var(--lp-display); font-weight: 800; }
.lp-card p { margin: 0; color: var(--lp-muted); line-height: 1.5; font-size: .95rem; }
.lp-card .tag {
  display: inline-block; font-size: .7rem; font-weight: 800;
  color: var(--lp-cyan); letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: .45rem;
}

.pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .04em;
  color: #fff;
}

.ai-circled {
  position: relative;
  display: inline-block;
  color: var(--lp-text);
  padding: 0 .08em;
}
.ai-circled::after {
  content: "";
  position: absolute; inset: -18% -28%;
  border: 2.5px solid color-mix(in srgb, var(--lp-pink2) 82%, transparent);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.lp-power {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
@media (max-width: 800px) { .lp-power { grid-template-columns: 1fr; } }
.lp-bento {
  border-radius: 32px;
  padding: 2rem 2.1rem;
  min-height: 280px;
  color: #fff;
  display: flex; flex-direction: column; gap: .65rem;
}
.lp-bento h3 {
  font-family: var(--lp-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700; margin: 0;
}
.lp-bento p { margin: 0; color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.5; max-width: 34ch; }
.box-one { background: linear-gradient(135deg, #7C3AED, #2563EB); }
.box-two { background: linear-gradient(199deg, #DB2777, #7C3AED); }
.box-three { background: linear-gradient(160deg, #06B6D4, #1E3A8A); }
.box-four { background: linear-gradient(200deg, #E11D48, #DB2777); }

.lp-tools {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.15rem;
}
@media (max-width: 900px) { .lp-tools { grid-template-columns: 1fr; } }
.lp-tool {
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  color: #fff;
  min-height: 360px;
  border: 0;
  background: #111;
}
.lp-tool.span-full { grid-column: 1 / -1; grid-template-columns: 1fr 1.1fr; grid-template-rows: 1fr; align-items: stretch; }
@media (max-width: 900px) {
  .lp-tool.span-full { grid-template-columns: 1fr; }
}
.lp-tool .body { padding: 1.75rem 1.85rem 1rem; }
.lp-tool h3 {
  font-family: var(--lp-display);
  font-size: clamp(1.375rem, 2.4vw, 2.375rem);
  font-weight: 600; margin: .55rem 0 .5rem; line-height: 1.15;
}
.lp-tool p {
  margin: 0; color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.45; max-width: 40ch;
}
.lp-tool img {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover; object-position: top; background: rgba(0,0,0,.2);
}
.lp-tool.tone-plan { background: linear-gradient(135deg, #2563EB 0%, #4F46E5 55%, #7C3AED 100%) !important; }
.lp-tool.tone-ai { background: linear-gradient(135deg, #DB2777 0%, #E11D48 50%, #BE185D 100%) !important; }
.lp-tool.tone-design { background: linear-gradient(135deg, #06B6D4 0%, #2563EB 55%, #4F46E5 100%) !important; }
.lp-tool.tone-org { background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #DB2777 100%) !important; }
.lp-tool.tone-plugs { background: linear-gradient(135deg, #1E3A8A 0%, #6366F1 55%, #A78BFA 100%) !important; }
.lp-tool.tone-analytics { background: linear-gradient(135deg, #E11D48 0%, #DB2777 45%, #7C3AED 100%) !important; }

.lp-channels-wrap { text-align: center; }
.lp-channel-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem;
  max-width: 980px; margin: 0 auto;
  perspective: 900px;
}
.lp-channel-tile {
  width: clamp(52px, 8vw, 100px);
  height: clamp(52px, 8vw, 100px);
  border-radius: 18px;
  background: var(--lp-tile);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: transform .18s ease, border-color .18s ease;
}
.lp-channel-tile:hover {
  transform: translateY(-4px) rotateX(6deg);
  border-color: rgba(124, 58, 237, 0.45);
}
.lp-channel-tile img { width: 48%; height: 48%; object-fit: contain; }
.lp-channel-chip { display: none; }

.lp-faq-split {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1.35fr;
  gap: 2rem 2.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .lp-faq-split { grid-template-columns: 1fr; }
  .lp-faq-title h2 { text-align: center; }
}
.lp-faq-title h2 {
  text-align: left;
  font-family: var(--lp-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}
.lp-faq details {
  background: color-mix(in srgb, var(--lp-faq) 92%, transparent);
  border: 1px solid var(--lp-line);
  border-radius: 18px; padding: 1.35rem 1.5rem; margin-bottom: .75rem;
}
.lp-faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  font-family: var(--lp-display);
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "▾"; color: var(--lp-pink2); font-size: 1rem; font-weight: 400; }
.lp-faq details[open] summary::after { content: "▴"; }
.lp-faq details p {
  color: var(--lp-muted); line-height: 1.55; margin: .85rem 0 0; font-size: 1rem;
}
[data-theme="light"] .lp-faq details {
  background: #fff;
  border-color: rgba(18, 8, 31, 0.12);
}
[data-theme="light"] .lp-faq summary {
  color: #12081f;
}
[data-theme="light"] .lp-faq details p {
  color: #5b5470;
}

.lp-cta-band {
  position: relative;
  margin: 1.5rem clamp(1rem, 3vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  padding: 2.5rem clamp(1.25rem, 3vw, 2.75rem);
  background: var(--lp-panel);
  border: 1px solid var(--lp-line);
}
.lp-cta-band.is-mid {
  background: linear-gradient(125deg, #7C3AED 0%, #4F46E5 48%, #DB2777 100%);
  border-color: transparent;
}
.lp-cta-band.is-final {
  min-height: clamp(320px, 50vw, 520px);
  display: flex; flex-direction: column; justify-content: center;
  margin-bottom: 0;
  background: linear-gradient(145deg, #1E1B4B 0%, #4C1D95 45%, #9D174D 100%);
  border-color: transparent;
  border-radius: 32px 32px 0 0;
  padding-bottom: clamp(7rem, 18vw, 14rem);
}
.lp-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.lp-cta-copy { max-width: 560px; text-align: left; }
.lp-cta-band h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 700; margin: 0 0 .55rem; text-align: left; line-height: 1.15;
}
.lp-cta-band.is-final h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
.lp-cta-band p {
  color: var(--lp-muted); margin: 0; max-width: 520px;
  font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.5;
}
[data-theme="light"] .lp-cta-band.is-mid p,
[data-theme="light"] .lp-cta-band.is-mid h2 {
  color: #fff;
}
.lp-cta-action {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.lp-cta-doodle {
  width: min(140px, 28vw); height: auto; pointer-events: none;
}
.lp-cta-visual {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  width: min(920px, 94%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  mask-image: linear-gradient(to top, rgba(0,0,0,.95) 35%, rgba(0,0,0,.4) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.95) 35%, rgba(0,0,0,.4) 78%, transparent 100%);
}
.lp-wordmark {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  border-radius: 12px;
}
[data-theme="dark"] .lp-cta-visual {
  opacity: 0.42;
  mix-blend-mode: screen;
}
[data-theme="light"] .lp-cta-visual {
  opacity: 0.82;
}
.lp-heart {
  width: 1.1em; height: 1.1em; vertical-align: -0.12em; margin-left: .15rem;
}
.lp-love {
  columns: 3 260px;
  gap: 1rem;
}
.lp-love-card {
  break-inside: avoid;
  background: color-mix(in srgb, var(--lp-panel) 92%, transparent);
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  margin: 0 0 1rem;
}
.lp-love-card p { margin: 0 0 .9rem; color: var(--lp-muted); line-height: 1.5; font-size: .95rem; }
.lp-love-card footer {
  display: flex; align-items: center; gap: .55rem;
  color: var(--lp-text); font-weight: 700; font-size: .88rem;
}
.lp-love-card .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #DB2777);
  color: #fff;
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
[data-theme="light"] .lp-love-card {
  background: #fff;
  border-color: rgba(18, 8, 31, 0.12);
  box-shadow: 0 8px 20px rgba(18,8,31,.06);
}
[data-theme="light"] .lp-love-card p { color: #5b5470; }

.lp-social-row {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem;
  max-width: 260px;
}
.lp-social-btn {
  width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%;
  background: #3e3e3e; display: grid; place-items: center;
  transition: background .15s ease;
  text-decoration: none;
}
.lp-social-btn:hover { background: var(--lp-pink); }
.lp-social-btn img {
  width: 15px; height: 15px; display: block; object-fit: contain;
  filter: brightness(0) invert(1);
}

.lp-footer {
  border-top: 1px solid var(--lp-line);
  padding: 2.25rem clamp(1rem, 3vw, 2rem) 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1120px; margin: 0 auto;
}
@media (max-width: 800px) {
  .lp-footer { grid-template-columns: 1fr 1fr; }
}
.lp-footer h4 {
  margin: 0 0 .85rem; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--lp-muted2);
}
.lp-footer a {
  display: block; color: var(--lp-muted); font-size: .9rem; font-weight: 600;
  margin-bottom: .45rem;
}
.lp-footer a:hover { color: var(--lp-text); }
.lp-footer .lp-social-btn {
  display: grid; place-items: center;
  margin-bottom: 0; width: 32px; height: 32px;
  color: inherit; font-size: inherit; font-weight: inherit;
}
.lp-footer .lp-social-btn:hover { color: inherit; }
.lp-footer .blurb { color: var(--lp-muted2); font-size: .9rem; line-height: 1.45; margin-top: .75rem; }
.lp-copy {
  text-align: center; color: var(--lp-muted2); font-size: .8rem;
  padding: 0 1rem 2.5rem;
}

.auth-back {
  display: inline-block; margin: .35rem 0 1rem;
  color: var(--muted) !important; font-size: .85rem; font-weight: 600;
}
.auth-back:hover { color: var(--text) !important; }

/* Nav dropdown + mobile — clean Postiz-style mega menu */
.lp-nav,
.lp-nav-links {
  overflow: visible;
}
.lp-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lp-dd-btn {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #FFFFFF;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  padding: .4rem .5rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border-radius: 8px;
  filter: none !important;
  transform: none !important;
}
.lp-dd-btn:hover,
.lp-dd-btn:focus-visible {
  color: #FFFFFF;
  opacity: .9;
  background: transparent !important;
  filter: none !important;
}
.lp-dd-btn.hot,
.lp-dd:hover .lp-dd-btn,
.lp-dd:focus-within .lp-dd-btn,
.lp-dd.open .lp-dd-btn {
  color: #FFFFFF;
  background: transparent !important;
}
.lp-dd-btn .chev {
  font-size: .72rem;
  opacity: 1;
  color: #FFFFFF;
  display: inline-block;
  transition: transform .15s ease;
  line-height: 1;
}
.lp-dd:hover .lp-dd-btn .chev,
.lp-dd:focus-within .lp-dd-btn .chev,
.lp-dd.open .lp-dd-btn .chev { transform: rotate(180deg); }

.lp-dd-panel {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  width: min(520px, calc(100vw - 2rem));
  max-height: min(340px, 58vh);
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--lp-dd-bg);
  border: 1px solid var(--lp-line-strong);
  border-radius: 12px;
  padding: .45rem;
  z-index: 80;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 .35rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lp-muted2) transparent;
}
[data-theme="light"] .lp-dd-panel {
  box-shadow: 0 12px 32px rgba(18, 8, 31, 0.1);
}
.lp-dd:hover .lp-dd-panel,
.lp-dd:focus-within .lp-dd-panel,
.lp-dd.open .lp-dd-panel { display: grid; }
/* Invisible bridge so mouse can move from label → panel without closing */
.lp-dd:hover::after,
.lp-dd:focus-within::after,
.lp-dd.open::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: .5rem;
  z-index: 79;
}

.lp-dd-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: .5rem;
  padding: .38rem .45rem;
  border-radius: 8px;
  color: var(--lp-text) !important;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
  filter: none !important;
  transform: none !important;
  transition: background .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.lp-dd-item:hover,
.lp-dd-item:focus,
.lp-dd-item:focus-visible {
  background: var(--lp-dd-hover) !important;
  color: var(--lp-text) !important;
  text-decoration: none !important;
  filter: none !important;
  outline: none;
  box-shadow: none !important;
}
.lp-dd-item:active { background: var(--lp-elevated) !important; }
.lp-dd-item img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}
.lp-dd-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}
@media (max-width: 720px) {
  .lp-dd-panel {
    width: min(320px, calc(100vw - 1.5rem));
    grid-template-columns: 1fr;
    max-height: min(340px, 55vh);
  }
  .lp-dd-panel.lp-dd-comet {
    width: min(360px, calc(100vw - 1.5rem));
  }
}

/* Comet mega dropdown */
.lp-dd-panel.lp-dd-comet {
  display: none;
  width: min(560px, calc(100vw - 2rem));
  max-height: min(480px, 70vh);
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.lp-dd:hover .lp-dd-panel.lp-dd-comet,
.lp-dd:focus-within .lp-dd-panel.lp-dd-comet,
.lp-dd.open .lp-dd-panel.lp-dd-comet {
  display: flex;
  flex-direction: column;
}
.lp-comet-dd-intro {
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid var(--lp-line);
  background: linear-gradient(135deg, rgba(45,212,191,0.12), rgba(15,118,110,0.08));
}
.lp-comet-dd-intro strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.lp-comet-dd-intro p {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--lp-muted);
}
.lp-comet-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
  padding: 0.45rem;
  overflow-y: auto;
  max-height: min(340px, 50vh);
}
@media (max-width: 720px) {
  .lp-comet-dd-grid { grid-template-columns: 1fr; }
}
.lp-comet-cap {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  text-decoration: none !important;
  color: var(--lp-text) !important;
}
.lp-comet-cap:hover {
  background: var(--lp-dd-hover);
}
.lp-comet-cap .ico {
  width: 28px; height: 28px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  font-size: 0.85rem;
}
.lp-comet-cap .txt {
  display: flex; flex-direction: column; gap: 0.15rem; min-width: 0;
}
.lp-comet-cap strong {
  font-size: 0.8rem; font-weight: 800; letter-spacing: -0.01em;
}
.lp-comet-cap small {
  font-size: 0.7rem; line-height: 1.35; color: var(--lp-muted);
}

/* Home + page Comet feature band */
.lp-comet-sec {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
.lp-comet-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.9rem;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, #38bdf8 28%, var(--lp-line-strong));
  background:
    radial-gradient(600px 280px at 0% 0%, rgba(14,165,233,0.28), transparent 55%),
    radial-gradient(500px 260px at 100% 100%, rgba(37,99,235,0.22), transparent 50%),
    var(--lp-panel);
  position: relative;
  overflow: hidden;
}
.lp-comet-band::before {
  content: "COMET";
  position: absolute;
  right: -0.2rem;
  top: 0.4rem;
  font-family: var(--lp-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: color-mix(in srgb, var(--lp-text) 6%, transparent);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .lp-comet-band { grid-template-columns: 1fr; padding: 1.25rem; }
}
.lp-comet-copy .pill,
.lp-comet-hero .pill {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.18);
  color: #93c5fd;
  margin-bottom: 0.85rem;
}
[data-theme="light"] .lp-comet-copy .pill,
[data-theme="light"] .lp-comet-hero .pill {
  background: #dbeafe; color: #1d4ed8;
}
.lp-comet-copy h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.lp-comet-copy .lead { margin: 0; max-width: 40ch; }
.lp-comet-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-pink2);
  font-weight: 700;
}
.lp-comet-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lp-comet-feat {
  background: color-mix(in srgb, var(--lp-elevated) 80%, transparent);
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}
a.lp-comet-feat {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
a.lp-comet-feat:hover {
  border-color: color-mix(in srgb, #0D9488 45%, var(--lp-line));
  transform: translateY(-1px);
}
.lp-comet-feat .ico {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(37,99,235,0.15); margin-bottom: 0.55rem;
}
.lp-comet-feat h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.lp-comet-feat p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--lp-muted);
}
.lp-comet-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}
@media (max-width: 800px) {
  .lp-comet-highlights { grid-template-columns: 1fr 1fr; }
  .lp-comet-feats { grid-template-columns: 1fr; }
}
.lp-comet-highlights > div {
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: var(--lp-card);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lp-comet-highlights strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-comet-highlights span {
  font-size: 0.75rem;
  color: var(--lp-muted);
  line-height: 1.35;
}
.lp-comet-cap-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}
@media (max-width: 800px) {
  .lp-comet-cap-page { grid-template-columns: 1fr; }
}
.lp-comet-hero .pill { margin-bottom: 1rem; }
.lp-comet-cta-row .lp-btn { min-width: 172px; }

.lp-menu-btn {
  min-width: var(--touch, 44px); min-height: var(--touch, 44px);
  display: none; margin-left: auto; background: transparent; border: 1px solid var(--lp-line-strong);
  color: var(--lp-text); border-radius: 8px; padding: .35rem .55rem; font-size: 1.1rem; cursor: pointer;
}
.lp-mobile-nav {
  display: none; flex-direction: column; gap: .65rem; padding: .75rem 1rem 1.25rem;
  border-bottom: 1px solid var(--lp-line); background: var(--lp-bg2);
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a { color: var(--lp-text); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 760px) {
  .lp-nav-links { display: none; }
  .lp-menu-btn { display: inline-flex; }
}

/* Collapse marketing nav earlier so Start free / hero CTAs never clip */
@media (max-width: 1100px) {
  .lp-nav-links { display: none; }
  .lp-menu-btn { display: inline-flex; }
  .lp-nav-actions { flex-wrap: wrap; justify-content: flex-end; gap: .5rem; max-width: min(100%, 22rem); }
  .lp-nav-actions .lp-lang-btn,
  .lp-nav-actions .lp-theme-btn {
    display: none;
  }
  .lp-btn-pill {
    padding: .7rem 1.15rem !important;
    font-size: .92rem !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .lp-btn-login {
    white-space: nowrap;
  }
  .lp-hero.is-rich .lp-hero-line,
  .lp-hero.is-rich h1 {
    font-size: clamp(1.65rem, 4.2vw, 2.75rem) !important;
    max-width: 16ch;
    overflow-wrap: anywhere;
  }
  .lp-hero.is-rich .lp-hero-ctas,
  .lp-hero-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    max-width: 100%;
  }
  .lp-hero.is-rich .lp-hero-ctas .lp-btn,
  .lp-hero-ctas .lp-btn {
    flex: 0 1 auto;
  }
}

.lp-page-hero {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.lp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 -10% auto;
  height: 260px;
  background: radial-gradient(480px 180px at 50% 0%, rgba(124,58,237,.12), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.lp-page-hero > * { position: relative; z-index: 1; }
.lp-page-hero h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 .85rem;
  line-height: 1.1;
}
.lp-page-hero p {
  color: var(--lp-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 38rem;
}
.lp-page-hero .note { margin-top: .75rem; color: var(--lp-amber); font-weight: 700; font-size: .9rem; }
.lp-page-hero .circled {
  position: relative; display: inline-block;
}
.lp-page-hero .circled::after {
  content: ""; position: absolute; inset: -8% -6%;
  border: 2px solid var(--lp-amber); border-radius: 50%; transform: rotate(-6deg);
  pointer-events: none;
}
.lp-page-hero .lp-hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin-top: 1.35rem;
}
.lp-page-hero .pill,
.lp-page-hero .lp-pill {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--lp-amber-dim);
  color: var(--lp-amber);
  margin-bottom: .85rem;
}

.lp-billing {
  display: inline-flex; margin: 1.5rem auto 0; background: var(--lp-elevated);
  border: 1px solid var(--lp-line); border-radius: 999px; padding: .25rem; gap: .15rem;
}
.lp-price-controls {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .65rem;
  margin-top: 1.25rem;
}
.lp-price-controls .lp-billing { margin-top: 0; }
.lp-comet-deal {
  display: flex; flex-wrap: wrap; gap: .55rem 1rem; align-items: baseline;
  margin: 1rem 0 1.25rem; padding: .9rem 1.1rem; border-radius: 16px;
  background: color-mix(in srgb, #22c55e 12%, var(--lp-elevated));
  border: 1px solid color-mix(in srgb, #22c55e 35%, var(--lp-line));
}
.lp-comet-deal strong {
  font-size: .92rem; font-weight: 800; color: #16a34a;
}
.lp-comet-deal span { color: var(--lp-muted); font-size: .9rem; line-height: 1.45; }
.lp-comet-deal-card { border-color: color-mix(in srgb, #22c55e 40%, var(--lp-line-strong)); }
.lp-card-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin: 0 0 .75rem;
  min-height: 1.5rem;
}
.lp-deal-badge {
  position: static;
  display: inline-flex;
  font-size: .68rem; font-weight: 800; padding: .22rem .55rem; border-radius: 999px;
  background: rgba(34,197,94,.16); color: #16a34a; border: 1px solid rgba(34,197,94,.3);
  white-space: nowrap;
}
.lp-comet-deal-card.popular .lp-deal-badge {
  background: rgba(255,255,255,.18); color: #bbf7d0; border-color: rgba(255,255,255,.28);
}
.lp-comet-deal-card .badge,
.lp-price-card.lp-comet-deal-card .badge {
  position: static;
  background: rgba(255,255,255,.2); color: #fff;
}
.lp-price-was {
  font-size: .95rem; font-weight: 700; color: var(--lp-muted);
  text-decoration: line-through; margin: .35rem 0 0;
}
.lp-billing button {
  border: 0; background: transparent; color: var(--lp-muted); font-weight: 800;
  padding: .45rem 1.1rem; border-radius: 999px; cursor: pointer; font-family: inherit;
  filter: none !important;
}
.lp-billing button.on { background: #fff !important; color: #12081f !important; }
[data-theme="light"] .lp-billing button.on { background: #12081f !important; color: #fff !important; }

.lp-price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1100px) { .lp-price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lp-price-grid { grid-template-columns: 1fr; } }
.lp-ent-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.lp-comet-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}
@media (max-width: 1200px) {
  .lp-comet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .lp-comet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-comet-grid { grid-template-columns: 1fr; }
}

.lp-price-card {
  background: var(--lp-card); border: 1px solid var(--lp-line-strong); border-radius: 20px;
  padding: 1.35rem 1.2rem; display: flex; flex-direction: column; position: relative;
  min-height: 100%; color: var(--lp-text);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.lp-price-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, #0D9488 55%, var(--lp-line-strong));
  box-shadow: 0 14px 34px rgba(97, 47, 251, 0.18);
}
.lp-price-card.popular:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(97, 47, 251, 0.35);
}
.lp-price-card.popular {
  background: linear-gradient(125deg, #7C3AED 0%, #4F46E5 50%, #DB2777 100%); border-color: transparent; color: #fff;
}
.lp-price-card .badge {
  position: absolute; top: .85rem; right: .85rem;
  background: rgba(255,255,255,.2); color: #fff; font-size: .7rem; font-weight: 800;
  padding: .2rem .55rem; border-radius: 999px;
}
.lp-price-card:not(.lp-comet-deal-card).popular { padding-top: 2.1rem; }
.lp-price-card h3 { margin: 0 0 .35rem; font-size: 1.15rem; padding-right: 0; }
.lp-price-card .price { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; }
.lp-price-card .price span { font-size: .95rem; font-weight: 600; color: var(--lp-muted); }
.lp-price-card.popular .price span { color: rgba(255,255,255,.75); }
.lp-price-card .tag { color: var(--lp-muted); font-size: .85rem; margin: .35rem 0 .35rem; }
.lp-price-card.popular .tag { color: rgba(255,255,255,.8); }
.lp-plan-team {
  margin: 0 0 .85rem; font-size: .8rem; font-weight: 700; color: var(--lp-pink2);
}
.lp-price-card.popular .lp-plan-team { color: #FBCFE8; }
.lp-save-pill {
  display: inline-block; margin-left: .35rem; font-size: .65rem; font-weight: 800;
  background: #22c55e; color: #052e16; padding: .12rem .4rem; border-radius: 999px; vertical-align: middle;
}
.lp-billing button.on .lp-save-pill { background: rgba(34,197,94,.25); color: inherit; }
.lp-save-note {
  margin: .65rem 0 0; font-size: .85rem; font-weight: 700; color: var(--lp-pink2); min-height: 1.2em;
}
.lp-save-note.muted { opacity: 0; }
.lp-pricing-hero { max-width: 820px; }
.lp-pricing-cards { padding-top: .5rem; }
.lp-compare-section { max-width: 1100px; margin: 0 auto; }
.lp-compare-head { text-align: center; margin-bottom: 1.25rem; }
.lp-compare-head h2 { margin: 0 0 .45rem; font-size: clamp(1.15rem, 2vw, 1.45rem); max-width: 36ch; margin-left: auto; margin-right: auto; }
.lp-compare-sub { color: var(--lp-muted); max-width: 620px; margin: 0 auto 1rem; font-size: .9rem; line-height: 1.45; }
.lp-billing-inline {
  display: inline-flex; align-items: center; gap: .35rem; margin: 0 auto;
}
.lp-plans-label { font-weight: 800; font-size: .85rem; margin-right: .35rem; color: var(--lp-text); }
.lp-compare-full thead th { vertical-align: top; min-width: 140px; }
.lp-compare-full th.hot-col,
.lp-compare-full td.hot-col {
  background: rgba(97, 47, 251, 0.12);
}
.lp-compare-table tbody tr:hover td {
  background: color-mix(in srgb, #0D9488 10%, transparent);
  color: var(--lp-text);
}
.lp-compare-table thead th:hover {
  background: color-mix(in srgb, #0D9488 16%, var(--lp-elevated));
}
.lp-compare-comet-row td {
  border-top: 1px solid color-mix(in srgb, #22c55e 35%, var(--lp-line));
}
.lp-compare-comet-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .28rem;
  font-weight: 700;
  color: var(--lp-text);
}
.lp-compare-comet-label em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  padding: .18rem .45rem;
  border-radius: 999px;
  background: rgba(34,197,94,.16);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,.3);
}
.lp-compare-off {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  padding: .18rem .45rem;
  border-radius: 999px;
  background: rgba(34,197,94,.16);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,.3);
}
.lp-mini-badge {
  display: inline-block; font-size: .65rem; font-weight: 800; padding: .15rem .4rem;
  border-radius: 999px; background: var(--lp-purple, #0D9488); color: #fff; margin-bottom: .35rem;
}
.lp-compare-cta {
  margin-top: .65rem !important; width: 100%; padding: .45rem .6rem !important; font-size: .8rem !important;
}
.lp-price-card ul { max-height: none; }

.lp-price-card ul {
  list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1;
}
.lp-price-card li {
  font-size: .85rem; color: var(--lp-muted); padding: .3rem 0 .3rem 1.1rem; position: relative;
}
.lp-price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--lp-pink2); font-weight: 800;
}
.lp-price-card.popular li { color: rgba(255,255,255,.9); }
.lp-price-card.popular li::before { color: #fff; }

.lp-compare-table-wrap { overflow: auto; border-radius: 16px; border: 1px solid var(--lp-line); }
.lp-compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.lp-compare-table th, .lp-compare-table td {
  padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--lp-line);
  color: var(--lp-text);
}
.lp-compare-table th { background: var(--lp-elevated); font-weight: 800; }
.lp-compare-table td { color: var(--lp-muted); }
.lp-compare-table .sm { font-weight: 600; color: var(--lp-muted2); font-size: .75rem; margin-top: .2rem; }
.lp-compare-table code { font-size: .8rem; color: var(--lp-purple); }

.lp-video { max-width: 860px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--lp-line); aspect-ratio: 16/9; background: var(--lp-elevated); }
.lp-video iframe { width: 100%; height: 100%; border: 0; }

.lp-code {
  background: var(--lp-elevated); border: 1px solid var(--lp-line); border-radius: 14px;
  padding: 1.15rem 1.25rem; overflow: auto; font-size: .85rem; line-height: 1.5;
  color: var(--lp-text); max-width: 720px; margin: 0 auto;
}

.lp-channel-pages { display: flex; flex-direction: column; gap: .55rem; max-width: 800px; margin: 0 auto; }
.lp-channel-page {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--lp-card); border: 1px solid var(--lp-line); border-radius: 14px;
  padding: .9rem 1rem; color: inherit !important;
}
.lp-channel-page:hover { background: var(--lp-elevated); }
.lp-channel-page img { width: 36px; height: 36px; border-radius: 10px; }
.lp-soon {
  display: inline-block; margin-left: .35rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #05040a;
  background: linear-gradient(90deg, #22d3ee, #a3e635);
  padding: .15rem .4rem; border-radius: 6px; vertical-align: middle;
}
.lp-prose {
  color: var(--lp-muted); line-height: 1.65; font-size: 1.02rem;
  max-width: 760px; margin: 0 auto;
}
.lp-prose p { margin: 0 0 1rem; }
.lp-prose h3 { color: var(--lp-text); margin: 1.5rem 0 .6rem; font-family: var(--display, inherit); }
.lp-prose a { color: var(--lp-pink2); font-weight: 700; }
.lp-prose code { background: var(--lp-elevated); padding: .1rem .35rem; border-radius: 6px; font-size: .9em; color: var(--lp-text); }
.lp-channel-page strong { display: flex; align-items: center; flex-wrap: wrap; gap: .25rem; }
.lp-channel-page span { color: var(--lp-muted); font-size: .88rem; line-height: 1.4; }

/* Channels page — Social vs Ads catalog cards */
.lp-integ-catalog,
.lp-integ-featured {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
#lpBrowseIntegrations {
  scroll-margin-top: 5.5rem;
}
.lp-integ-browse-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  gap: 1rem 1.5rem;
  align-items: end;
  margin: 0 0 1rem;
}
.lp-integ-browse-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
}
.lp-integ-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: var(--lp-card, var(--lp-panel));
  color: var(--lp-muted);
  font-size: 0.9rem;
}
.lp-integ-search span { font-size: 1rem; line-height: 1; opacity: 0.7; }
.lp-integ-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--lp-text);
  font: inherit;
  font-size: 0.9rem;
}
[data-theme="light"] .lp-integ-search { background: #fff; }
.lp-integ-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}
.lp-integ-pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: var(--lp-card, var(--lp-panel));
  color: inherit;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.lp-integ-pill:hover { border-color: rgba(15, 23, 42, 0.28); }
.lp-integ-pill em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  color: var(--lp-muted);
}
.lp-integ-pill.on {
  background: #111;
  border-color: #111;
  color: #fff;
}
.lp-integ-pill.on em {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
[data-theme="dark"] .lp-integ-pill.on {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #111;
}
[data-theme="dark"] .lp-integ-pill.on em {
  background: rgba(0, 0, 0, 0.12);
  color: #111;
}
.lp-integ-count,
.lp-integ-empty {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
}
.lp-integ-kicker {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-integ-kicker-ads { color: #d97706; }
.lp-integ-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}
.lp-integ-tile {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
  text-align: left;
  background: var(--lp-card, var(--lp-panel));
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.1rem;
  color: inherit !important;
  text-decoration: none !important;
  font: inherit;
  cursor: pointer;
  width: 100%;
  min-height: 0;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.lp-integ-tile:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.lp-integ-tile[data-kind="ads"]:hover {
  border-color: rgba(217, 119, 6, 0.45);
}
[data-theme="light"] .lp-integ-tile {
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .lp-integ-tile:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.lp-integ-tile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.lp-integ-tile-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--lp-line);
  overflow: hidden;
  flex-shrink: 0;
}
[data-theme="dark"] .lp-integ-tile-logo {
  background: #f8fafc;
}
.lp-integ-tile-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.lp-integ-tile-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.12);
  white-space: nowrap;
}
.lp-integ-tile[data-kind="social"] .lp-integ-tile-badge {
  color: #0e7490;
  background: rgba(34, 211, 238, 0.12);
}
.lp-integ-tile[data-kind="ads"] .lp-integ-tile-badge {
  color: #b45309;
  background: rgba(251, 191, 36, 0.18);
}
.lp-integ-tile[data-kind="crm"] .lp-integ-tile-badge {
  color: #c2410c;
  background: rgba(251, 146, 60, 0.16);
}
.lp-integ-tile[data-kind="payments"] .lp-integ-tile-badge {
  color: #15803d;
  background: rgba(34, 197, 94, 0.14);
}
.lp-integ-tile[data-kind="ecommerce"] .lp-integ-tile-badge {
  color: #be185d;
  background: rgba(244, 114, 182, 0.14);
}
.lp-integ-tile[data-kind="automation"] .lp-integ-tile-badge {
  color: #6d28d9;
  background: rgba(167, 139, 250, 0.16);
}
.lp-integ-tile strong {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.lp-integ-tile-desc {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 720px) {
  .lp-integ-browse-head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .lp-integ-cards { grid-template-columns: 1fr; }
}

/* Integration tutorial modal (pre-login catalog) */
.lp-integ-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lp-integ-modal {
  position: relative;
  justify-self: center;
  align-self: center;
  width: min(640px, calc(100vw - 2rem));
  max-width: 640px;
  max-height: min(88vh, 900px);
  overflow: auto;
  background: #16161f;
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.3rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}
[data-theme="light"] .lp-integ-modal {
  background: #ffffff;
  color: #0b0b14;
  border-color: #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
.lp-integ-modal-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.85rem;
  padding-right: 2.75rem;
}
.lp-integ-tile-logo.lg {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
}
.lp-integ-tile-logo.lg img { width: 30px; height: 30px; }
.lp-integ-modal-titles .lp-integ-tile-badge { margin-bottom: 0.35rem; }
.lp-integ-modal-titles h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}
[data-theme="light"] .lp-integ-modal-titles h3 { color: #0b0b14; }
.lp-integ-modal-titles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}
[data-theme="light"] .lp-integ-modal-titles p { color: #4b4b63; }
.lp-integ-modal-x {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  box-sizing: border-box;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.lp-integ-modal-x:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}
[data-theme="light"] .lp-integ-modal-x {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #334155;
}
[data-theme="light"] .lp-integ-modal-x:hover {
  background: #e2e8f0;
}
.lp-integ-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.lp-integ-chip {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .lp-integ-chip {
  border-color: #e5e7eb;
  color: #64748b;
  background: #f8fafc;
}
.lp-integ-chip.on {
  background: rgba(52, 211, 153, 0.18);
  border-color: transparent;
  color: #6ee7b7;
}
[data-theme="light"] .lp-integ-chip.on {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}
.lp-integ-modal-h {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}
[data-theme="light"] .lp-integ-modal-h { color: #0b0b14; }
.lp-integ-outcomes {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}
[data-theme="light"] .lp-integ-outcomes { color: #4b4b63; }
.lp-integ-outcomes li { margin: 0 0 0.35rem; }
.lp-integ-events {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.lp-integ-event {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}
[data-theme="light"] .lp-integ-event {
  background: #f8fafc;
  border-color: #eef0f4;
}
.lp-integ-event strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.15rem;
  color: #ffffff;
}
[data-theme="light"] .lp-integ-event strong { color: #0b0b14; }
.lp-integ-event span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
[data-theme="light"] .lp-integ-event span { color: #64748b; }
.lp-integ-steps {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-integ-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
[data-theme="light"] .lp-integ-steps li { color: #4b4b63; }
.lp-integ-steps .n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: #f5f5f5;
  color: #111;
}
[data-theme="light"] .lp-integ-steps .n {
  background: #111;
  color: #fff;
}
.lp-integ-steps-page { max-width: 40rem; margin-top: 1rem; }
.lp-integ-tip {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}
[data-theme="light"] .lp-integ-tip { color: #6b6b84; }
.lp-integ-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-top: 0.25rem;
}
.lp-integ-modal-actions .lp-btn-ghost {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: transparent !important;
}
[data-theme="light"] .lp-integ-modal-actions .lp-btn-ghost {
  color: #0b0b14 !important;
  border-color: #e5e7eb !important;
}
.lp-channel-howto .lead {
  max-width: 40rem;
  color: var(--lp-muted);
}
.lp-integ-copy > p {
  color: rgba(255, 255, 255, 0.78);
}
[data-theme="light"] .lp-integ-copy > p {
  color: var(--lp-muted);
}

.lp-channel-hero .lp-ch-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: .75rem; }
.lp-channel-hero .kicker { color: var(--lp-pink2); font-weight: 800; letter-spacing: .08em; font-size: .75rem; margin-bottom: .5rem; }

.lp-blog-list { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; margin: 0 auto; }
.lp-blog-item {
  background: var(--lp-card); border: 1px solid var(--lp-line); border-radius: 16px; padding: 1.25rem;
}
.lp-blog-item .d { color: var(--lp-muted2); font-size: .8rem; font-weight: 700; margin-bottom: .35rem; }
.lp-blog-item h3 { margin: 0 0 .4rem; }
.lp-blog-item p { color: var(--lp-muted); margin: 0 0 .75rem; }
.lp-blog-item a { color: var(--lp-pink2) !important; font-weight: 800; }

.lp-social-row { opacity: .92; }
[data-theme="light"] .lp-social-btn { background: #d4d4d8; }
[data-theme="light"] .lp-social-btn img { filter: brightness(0); }
[data-theme="light"] .lp-social-btn:hover { background: var(--lp-pink); }
[data-theme="light"] .lp-social-btn:hover img { filter: brightness(0) invert(1); }

.lp-announce a {
  color: #FFFFFF !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.lp-section .lead { color: var(--lp-muted); }
.lp-card {
  background: var(--lp-card);
  border-color: var(--lp-line);
  color: var(--lp-text);
}
.lp-price-card.popular {
  background: linear-gradient(125deg, #7C3AED 0%, #4F46E5 50%, #DB2777 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.lp-toggle-row { color: var(--lp-muted); }
.lp-toggle-row .on { color: var(--lp-text); }
[data-theme="light"] .lp-platforms img {
  background: #fff;
  border: 1px solid var(--lp-line);
}
[data-theme="light"] .discord-fab,
.discord-fab {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.lp .discord-fab::before {
  background-color: #000;
  background-image: none;
  -webkit-mask: url("/landing/icons/icon-discord.svg") center / contain no-repeat;
  mask: url("/landing/icons/icon-discord.svg") center / contain no-repeat;
}

/* Change Language modal */
.lang-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.55);
  display: grid; place-items: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.lang-modal {
  width: min(640px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 1.25rem 1.35rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lang-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.lang-modal-head h2 {
  margin: 0; font-size: 1.35rem; font-weight: 800;
  font-family: var(--display, inherit); color: #111;
}
.lang-modal-close {
  border: 0; background: transparent; font-size: 1.15rem;
  cursor: pointer; color: #444; width: 36px; height: 36px;
  border-radius: 8px;
}
.lang-modal-close:hover { background: #f3f4f6; }
.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}
@media (max-width: 560px) {
  .lang-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.lang-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .45rem;
  min-height: 88px;
  padding: .75rem .5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #f3f4f6;
  cursor: pointer;
  font: inherit;
  color: #111;
  transition: border-color .12s ease, background .12s ease;
}
.lang-card:hover { background: #ebecef; }
.lang-card.on {
  border-color: #111;
  background: #f3f4f6;
  font-weight: 700;
}
.lang-flag {
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.lang-flag-img {
  display: block;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.lp-lang-btn .lang-flag-img { border-radius: 2px; }
.lang-native {
  font-size: .92rem; font-weight: 600; text-align: center; line-height: 1.2;
}
.lang-card.on .lang-native { font-weight: 800; }
.lp-lang-btn {
  width: var(--touch, 44px); height: var(--touch, 44px); border-radius: var(--radius-sm, 12px); padding: 0 !important;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent !important;
  border: 1px solid var(--lp-line-strong) !important;
  color: var(--lp-text) !important;
  font-size: .85rem; cursor: pointer;
  box-shadow: none !important;
  box-sizing: border-box;
  flex-shrink: 0;
}
.lp-lang-btn:hover { background: var(--lp-elevated) !important; }
html[dir="rtl"] .lp-nav-links { margin-left: 0; margin-right: 1rem; }
html[dir="rtl"] .lp-nav-actions { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .lp-cta-copy { text-align: right; }
html[dir="rtl"] .lp-faq-title h2 { text-align: right; }
html[dir="rtl"] .lang-modal-head { flex-direction: row-reverse; }


/* ——— Spectrum Dark homepage composition ——— */
.lp-hero.is-home {
  min-height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  animation: lpHeroIn .55s ease both;
}
@keyframes lpHeroIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.lp-brand-hero {
  font-family: var(--lp-display);
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0 0 .85rem;
  color: var(--lp-text);
  background: linear-gradient(115deg, var(--lp-text) 55%, color-mix(in srgb, var(--lp-text) 70%, var(--lp-amber)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lp-hero.is-home h1.lp-hero-line {
  font-family: var(--lp-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 .75rem;
  max-width: 22ch;
  color: var(--lp-text);
}
.lp-hero.is-home .sub {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--lp-muted);
}
.lp-hero.is-home .lp-hero-ctas {
  justify-content: flex-start;
  margin: 0;
}
.lp-hero .mark-word img,
.lp-faq-title .mark-word img,
.lp-under { display: none !important; }

.lp-spine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.lp-spine-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--lp-line-strong);
  background: var(--lp-panel);
  text-decoration: none !important;
  color: inherit;
  transition: border-color .18s ease, transform .18s ease;
}
.lp-spine-card:hover {
  border-color: color-mix(in srgb, var(--lp-cyan) 50%, var(--lp-line-strong));
  transform: translateY(-2px);
}
.lp-spine-card.is-comet {
  border-color: color-mix(in srgb, var(--lp-amber) 35%, var(--lp-line-strong));
  background:
    linear-gradient(145deg, var(--lp-amber-dim), transparent 55%),
    var(--lp-panel);
}
.lp-spine-card .kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-cyan);
}
.lp-spine-card.is-comet .kicker { color: var(--lp-amber); }
.lp-spine-card h2 {
  font-family: var(--lp-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.lp-spine-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.5;
  flex: 1;
}
.lp-spine-card .go {
  font-weight: 700;
  font-size: .88rem;
  color: var(--lp-cyan);
  margin-top: .35rem;
}
.lp-spine-card.is-comet .go { color: var(--lp-amber); }

.lp-strip {
  max-width: 1100px;
  margin: 0 auto 2.75rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.lp-strip-head {
  margin-bottom: 1.15rem;
}
.lp-strip-head .step {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-cyan);
  margin-bottom: .45rem;
}
.lp-strip-head h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 .4rem;
}
.lp-strip-head p {
  margin: 0;
  color: var(--lp-muted);
  max-width: 36rem;
  line-height: 1.5;
}
.lp-strip-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}
.lp-strip-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--lp-line);
  background: var(--lp-elevated);
  display: block;
}
.lp-strip-note {
  padding: 1.25rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--lp-line);
  background: var(--lp-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.lp-strip-note strong {
  font-family: var(--lp-display);
  font-size: 1.05rem;
}
.lp-strip-note p { margin: 0; color: var(--lp-muted); font-size: .92rem; line-height: 1.5; }

.lp-act-band {
  max-width: 1100px;
  margin: 0 auto 2.75rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 2rem);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--lp-amber) 40%, var(--lp-line));
  background:
    linear-gradient(110deg, var(--lp-amber-dim), transparent 50%),
    var(--lp-panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.lp-act-band h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 .35rem;
  letter-spacing: -0.02em;
}
.lp-act-band p { margin: 0; color: var(--lp-muted); max-width: 34rem; line-height: 1.5; }

.lp-channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-top: 1rem;
}
.lp-channel-row a.lp-ch {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--lp-line);
  background: var(--lp-elevated);
  display: grid; place-items: center;
  transition: border-color .15s ease;
}
.lp-channel-row a.lp-ch:hover {
  border-color: var(--lp-cyan);
}
.lp-channel-row a.lp-ch img { width: 22px; height: 22px; object-fit: contain; }
.lp-channel-row .more {
  font-weight: 700;
  font-size: .9rem;
  color: var(--lp-cyan);
  margin-left: .35rem;
}

.lp-agent-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1rem;
}
.lp-agent-cell {
  padding: 1.1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--lp-line);
  background: var(--lp-panel);
}
.lp-agent-cell h3 {
  font-family: var(--lp-display);
  font-size: .98rem;
  margin: 0 0 .35rem;
}
.lp-agent-cell p { margin: 0; color: var(--lp-muted); font-size: .88rem; line-height: 1.45; }

/* Agent page — How Agent works */
#lpHowAgent { scroll-margin-top: 5.5rem; }
.lp-how-agent {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.lp-how-kicker {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-how-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 18ch;
}
.lp-how-lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.lp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.lp-how-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--lp-line);
  background: var(--lp-card, var(--lp-panel));
  min-height: 100%;
}
[data-theme="light"] .lp-how-card {
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.lp-how-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: var(--lp-display);
}
.lp-how-card > p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  flex: 1;
}
.lp-how-viz {
  margin-top: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--lp-line);
  background: rgba(148, 163, 184, 0.08);
  padding: 0.75rem;
}
[data-theme="light"] .lp-how-viz { background: #f8fafc; border-color: #eef0f4; }

.lp-how-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
}
.lp-how-row:last-child { margin-bottom: 0; }
.lp-how-row span { color: var(--lp-muted); }
.lp-how-row b { font-weight: 800; font-size: 0.74rem; }
.lp-how-row i {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.18);
  position: relative;
  overflow: hidden;
}
.lp-how-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: #22d3ee;
}
.lp-how-row i.ads::after { background: #f59e0b; }
.lp-how-row i.rev::after { background: #34d399; }

.lp-how-viz-cli { background: #0c0c0c; border-color: rgba(255,255,255,0.1); color: #e5e7eb; }
[data-theme="light"] .lp-how-viz-cli { background: #111827; border-color: #111827; }
.lp-how-cli-line {
  font-size: 0.72rem;
  line-height: 1.4;
  margin-bottom: 0.55rem;
  color: #d1d5db;
}
.lp-how-cli-line em {
  font-style: normal;
  font-weight: 800;
  color: #22d3ee;
  margin-right: 0.35rem;
}
.lp-how-cli-out {
  display: grid;
  gap: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.lp-how-cli-out code {
  display: block;
  font-size: 0.68rem;
  color: #a7f3d0;
  background: transparent;
  padding: 0;
}

.lp-how-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--lp-muted);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.lp-how-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  align-items: end;
  height: 88px;
}
.lp-how-bars span {
  display: block;
  width: 100%;
  height: var(--h, 50%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.85), rgba(34, 211, 238, 0.25));
  position: relative;
  min-height: 18px;
  align-self: end;
}
.lp-how-bars small {
  position: absolute;
  bottom: -1.15rem;
  font-size: 0.62rem;
  color: var(--lp-muted);
  font-weight: 700;
}
.lp-how-viz-chart { padding-bottom: 1.55rem; }

.lp-how-step {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.74rem;
  margin-bottom: 0.45rem;
  color: var(--lp-muted);
}
.lp-how-step:last-child { margin-bottom: 0; }
.lp-how-step b {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
}
[data-theme="dark"] .lp-how-step b { background: #f5f5f5; color: #111; }
.lp-how-step span { line-height: 1.35; color: inherit; }

.lp-how-viz-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.lp-how-metric {
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lp-line);
}
[data-theme="light"] .lp-how-metric { background: #fff; }
.lp-how-metric.wide { grid-column: 1 / -1; }
.lp-how-metric span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 0.2rem;
}
.lp-how-metric strong {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-how-save-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.lp-how-save-row em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  color: var(--lp-muted);
}
.lp-how-save-row em.on {
  background: rgba(52, 211, 153, 0.18);
  color: #059669;
}
.lp-how-save-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.lp-how-save-stats span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--lp-line);
  color: var(--lp-muted);
  background: rgba(255,255,255,0.03);
}

@media (max-width: 960px) {
  .lp-how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-how-title { max-width: none; }
}
@media (max-width: 620px) {
  .lp-how-grid { grid-template-columns: 1fr; }
}

.lp-cta-band.is-mid {
  background: linear-gradient(145deg, #000000, #1A1A1A) !important;
  border-color: transparent !important;
}
.lp-cta-band.is-final {
  background: var(--lp-panel);
  border: 1px solid var(--lp-line-strong);
  border-radius: 16px;
  margin: 1.5rem clamp(1rem, 3vw, 2rem) 0;
  padding-bottom: 2.5rem;
  min-height: auto;
}
.lp-cta-band.is-final .lp-cta-visual { display: none; }
.lp-cta-doodle { display: none !important; }
.lp-faq-title h2 .mark-word { color: var(--lp-cyan); }

.lp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.lp-reveal.on {
  opacity: 1;
  transform: none;
}

.lp-comet-band {
  border-color: color-mix(in srgb, var(--lp-cyan) 30%, var(--lp-line)) !important;
}
.lp-comet-sec .pill,
.pill {
  background: var(--lp-cyan-dim) !important;
  color: var(--lp-cyan) !important;
  border-radius: 8px !important;
}
@keyframes lpCometShimmer {
  0%, 100% { border-color: color-mix(in srgb, var(--lp-cyan) 25%, var(--lp-line)); }
  50% { border-color: color-mix(in srgb, var(--lp-amber) 40%, var(--lp-line)); }
}
.lp-comet-band {
  animation: lpCometShimmer 5s ease-in-out infinite;
}

@media (max-width: 860px) {
  .lp-spine { grid-template-columns: 1fr; }
  .lp-strip-visual { grid-template-columns: 1fr; }
  .lp-agent-strip { grid-template-columns: 1fr; }
  .lp-hero.is-home { text-align: left; min-height: auto; }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-showcase { grid-template-columns: 1fr; }
  .lp-product-mocks { grid-template-columns: 1fr; }
  .lp-comet-ads-grid { grid-template-columns: 1fr 1fr; }
}

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

/* Landing brand mark: single Sunset tile (glyph is frameless) */
.lp .brand-mark .mark {
  background: #12060A !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  overflow: hidden;
}
.lp .brand-mark .mark img {
  width: 100%; height: 100%; display: block; object-fit: contain; padding: 1px;
}

[data-theme="light"] .lp-nav .brand-mark,
[data-theme="light"] .lp-nav-links > a,
[data-theme="light"] .lp-nav-links > a:hover,
[data-theme="light"] .lp-nav-links > a.hot,
[data-theme="light"] .lp-dd-btn,
[data-theme="light"] .lp-dd-btn:hover,
[data-theme="light"] .lp-dd-btn:focus-visible,
[data-theme="light"] .lp-dd-btn.hot,
[data-theme="light"] .lp-dd:hover .lp-dd-btn,
[data-theme="light"] .lp-dd:focus-within .lp-dd-btn,
[data-theme="light"] .lp-dd.open .lp-dd-btn,
[data-theme="light"] .lp-dd-btn .chev {
  color: #0B0B14;
  opacity: 1;
}

/* ——— Feature + product sample cards ——— */
.lp-section-tight {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.lp-section-tight > .lp-strip-head { margin-bottom: 1rem; }

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.lp-feat-card {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--lp-line);
  background: var(--lp-panel);
  text-decoration: none !important;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
  min-height: 132px;
}
.lp-feat-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--lp-ink) 25%, var(--lp-line-strong));
}
.lp-feat-card .tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-muted2);
}
.lp-feat-card.is-comet .tag { color: var(--lp-amber); }
.lp-feat-card h3 {
  font-family: var(--lp-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.lp-feat-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .88rem;
  line-height: 1.45;
  flex: 1;
}
.lp-feat-card .go {
  font-size: .82rem;
  font-weight: 700;
  color: var(--lp-ink);
  margin-top: .25rem;
}
[data-theme="dark"] .lp-feat-card .go { color: var(--lp-amber); }
.lp-feat-card.is-comet {
  border-color: color-mix(in srgb, var(--lp-amber) 28%, var(--lp-line));
}
.lp-feat-card.is-comet:hover {
  border-color: color-mix(in srgb, var(--lp-amber) 55%, var(--lp-line));
}

.lp-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}
.lp-product-mocks {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}
.lp-mock {
  border-radius: 16px;
  border: 1px solid var(--lp-line-strong);
  background: var(--lp-panel);
  overflow: hidden;
  padding: 1rem 1.05rem 1.1rem;
}
.lp-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.lp-mock-head strong {
  font-family: var(--lp-display);
  font-size: .92rem;
  letter-spacing: -0.02em;
}
.lp-mock-head span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--lp-muted2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lp-mock-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
}
.lp-mock-cal .d {
  border-radius: 8px;
  background: var(--lp-elevated);
  border: 1px solid var(--lp-line);
  min-height: 58px;
  padding: .3rem .35rem;
  font-size: .65rem;
  color: var(--lp-muted2);
}
.lp-mock-cal .pill {
  display: block;
  margin-top: .25rem;
  border-radius: 7px !important;
  padding: .28rem .32rem !important;
  font-size: .62rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #FFFFFF !important;
  border: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.lp-mock-cal .pill.ig { background: linear-gradient(135deg, #DB2777, #E11D48) !important; }
.lp-mock-cal .pill.li { background: linear-gradient(135deg, #2563EB, #4F46E5) !important; }
.lp-mock-cal .pill.yt { background: linear-gradient(135deg, #EF4444, #F97316) !important; }
.lp-mock-cal .pill.x { background: linear-gradient(135deg, #6366F1, #7C3AED) !important; }

.lp-mock-compose {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.lp-mock-compose .line {
  height: 10px;
  border-radius: 99px;
  background: var(--lp-elevated);
}
.lp-mock-compose .line.w60 { width: 60%; }
.lp-mock-compose .line.w80 { width: 80%; }
.lp-mock-compose .line.w40 { width: 40%; }
.lp-mock-compose .preview {
  flex: 1;
  border-radius: 12px;
  border: 1px dashed var(--lp-line-strong);
  background:
    linear-gradient(160deg, var(--lp-amber-dim), transparent 50%),
    var(--lp-elevated);
  min-height: 120px;
  padding: .85rem;
  font-size: .82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}
.lp-mock-compose .bar {
  display: flex;
  gap: .45rem;
  margin-top: auto;
}
.lp-mock-compose .bar i {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  background: var(--lp-elevated);
  border: 1px solid var(--lp-line);
}
.lp-mock-compose .bar i.primary {
  background: #000000;
  border-color: transparent;
}

/* Comet Ads band */
.lp-comet-ads-band {
  max-width: 1100px;
  margin: 0 auto 2.75rem;
  padding: 1.35rem clamp(1.15rem, 3vw, 1.75rem) 1.5rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--lp-amber) 35%, var(--lp-line));
  background:
    linear-gradient(125deg, var(--lp-amber-dim), transparent 42%),
    var(--lp-panel);
}
.lp-comet-ads-band .lp-strip-head .step { color: var(--lp-amber); }
.lp-roas-mock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin: 1rem 0 1.15rem;
}
@media (max-width: 720px) {
  .lp-roas-mock { grid-template-columns: 1fr 1fr; }
}
.lp-roas-kpi {
  padding: .85rem .9rem;
  border-radius: 12px;
  border: 1px solid var(--lp-line);
  background: color-mix(in srgb, var(--lp-bg2) 70%, var(--lp-panel));
}
.lp-roas-kpi .l {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lp-muted2);
  margin-bottom: .25rem;
}
.lp-roas-kpi .v {
  font-family: var(--lp-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.lp-roas-kpi .d {
  font-size: .75rem;
  color: var(--lp-muted);
  margin-top: .15rem;
}
.lp-roas-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  margin-bottom: 1.1rem;
}
.lp-roas-table th,
.lp-roas-table td {
  text-align: left;
  padding: .55rem .5rem;
  border-bottom: 1px solid var(--lp-line);
}
.lp-roas-table th {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--lp-muted2);
  font-weight: 800;
}
.lp-roas-table td strong { font-weight: 700; }
.lp-roas-table .roas { color: var(--lp-amber); font-weight: 800; }
.lp-comet-ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.lp-comet-ads-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.1rem;
}

.lp-spine { margin-bottom: 1.75rem; }
.lp-strip { margin-bottom: 2.15rem; }
.lp-act-band { margin-bottom: 2.15rem; }

.lp-comet-sec .pill {
  background: var(--lp-amber-dim) !important;
  color: var(--lp-amber) !important;
}
.lp-comet-band {
  border-color: color-mix(in srgb, var(--lp-amber) 30%, var(--lp-line)) !important;
  animation: none;
}
.lp-faq-title h2 .mark-word { color: var(--lp-amber); }


/* ——— Spectrum richness (black + vibrant accents) ——— */
.lp-btn-pill {
  background: #fff !important;
  color: #000 !important;
  border-radius: 999px !important;
  border: 0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.35) !important;
  padding: .85rem 1.6rem !important;
  font-weight: 800 !important;
}
.lp-btn-pill:hover { filter: brightness(0.96); transform: translateY(-1px); }
.lp-btn-xl {
  padding: 1.05rem 2rem !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.01em;
}
.lp-hero.is-rich {
  text-align: center;
  max-width: 980px;
  padding-bottom: 2.5rem;
}
.lp-hero.is-rich .lp-brand-hero,
.lp-hero.is-rich .lp-hero-line,
.lp-hero.is-rich .sub,
.lp-hero.is-rich .agents,
.lp-hero.is-rich .lp-hero-ctas,
.lp-hero.is-rich .lp-toggle-row {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-content: center;
}
.lp-hero.is-rich .lp-hero-line { max-width: 18ch; }
.lp-hero.is-rich .sub { max-width: 42rem; }
.lp-hero.is-rich .agents {
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-hero.is-rich .lp-hero-badges { justify-content: center; }
.lp-hero.is-rich .mark-word {
  position: relative;
  display: inline-block;
}
.lp-hero.is-rich .mark-word .lp-under,
.lp-hero.is-rich .lp-under {
  display: block !important;
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -0.18em;
  width: 108%;
  height: .42em;
  object-fit: fill;
  pointer-events: none;
  filter: sepia(1) saturate(5) hue-rotate(230deg) brightness(1.05);
}
.lp-hero.is-rich .lp-doodle {
  display: block !important;
  position: absolute;
  width: min(160px, 18vw);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
  animation: lpDoodleFloat 6s ease-in-out infinite;
}
.lp-hero.is-rich .lp-doodle.left { left: -2%; top: 12%; }
.lp-hero.is-rich .lp-doodle.right { right: -2%; top: 28%; animation-delay: -2s; }
@keyframes lpDoodleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lp-platforms-home {
  margin: 1.75rem auto .65rem;
  max-width: 780px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
}
/* Postiz-matched hero icon grid: ~42px squircles, dense 2-row layout */
.lp-platforms-hero {
  display: grid;
  grid-template-columns: repeat(15, 42px);
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin: 1.15rem auto 1.35rem;
  padding: 0 .5rem;
  position: relative;
  z-index: 1;
}
.lp-platforms-hero .lp-plat {
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 5px;
  border-radius: 12px;
  background: #121212;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  transition: transform .2s ease, border-color .2s ease;
}
.lp-platforms-hero .lp-plat:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(124,58,237,.45);
}
.lp-platforms-hero .float-0 { animation: lpIconBob 3.6s ease-in-out infinite; }
.lp-platforms-hero .float-1 { animation: lpIconBob 4.1s ease-in-out infinite .3s; }
.lp-platforms-hero .float-2 { animation: lpIconBob 3.4s ease-in-out infinite .6s; }
.lp-platforms-hero .float-3 { animation: lpIconBob 4.4s ease-in-out infinite .15s; }
.lp-platforms-hero .float-4 { animation: lpIconBob 3.8s ease-in-out infinite .45s; }
.lp-platforms-hero .float-5 { animation: lpIconBob 4.2s ease-in-out infinite .75s; }
@media (max-width: 900px) {
  .lp-platforms-hero {
    grid-template-columns: repeat(10, 38px);
    gap: 7px;
  }
  .lp-platforms-hero .lp-plat { width: 38px; height: 38px; border-radius: 10px; padding: 4px; }
}
@media (max-width: 560px) {
  .lp-platforms-hero {
    grid-template-columns: repeat(6, 36px);
    gap: 6px;
    margin: .9rem auto 1.1rem;
  }
  .lp-platforms-hero .lp-plat { width: 36px; height: 36px; border-radius: 10px; padding: 4px; }
}
[data-theme="light"] .lp-platforms-hero .lp-plat {
  background: #fff;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
@media (prefers-reduced-motion: reduce) {
  .lp-platforms-hero .lp-plat { animation: none !important; }
}
.lp-platforms-link {
  text-align: center;
  margin: 0 auto 0.5rem;
}
.lp-platforms-link a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--lp-muted) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
}
.lp-platforms-link a:hover {
  color: var(--lp-amber) !important;
  border-bottom-color: rgba(124,58,237,.45);
}
.lp-platforms-home .lp-plat {
  border-radius: 14px;
  padding: 6px;
  background: #121212;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, border-color .2s ease;
}
.lp-platforms-home .lp-plat:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(124,58,237,.45);
}
.lp-platforms-home .float-0 { animation: lpIconBob 3.6s ease-in-out infinite; }
.lp-platforms-home .float-1 { animation: lpIconBob 4.1s ease-in-out infinite .3s; }
.lp-platforms-home .float-2 { animation: lpIconBob 3.4s ease-in-out infinite .6s; }
.lp-platforms-home .float-3 { animation: lpIconBob 4.4s ease-in-out infinite .15s; }
.lp-platforms-home .float-4 { animation: lpIconBob 3.8s ease-in-out infinite .45s; }
.lp-platforms-home .float-5 { animation: lpIconBob 4.2s ease-in-out infinite .75s; }
@keyframes lpIconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (max-width: 760px) {
  .lp-platforms-home { grid-template-columns: repeat(6, 1fr); }
  .lp-hero.is-rich .lp-doodle { display: none !important; }
  .lp-hero.is-rich { text-align: left; }
  .lp-hero.is-rich .lp-brand-hero,
  .lp-hero.is-rich .lp-hero-line,
  .lp-hero.is-rich .sub,
  .lp-hero.is-rich .agents,
  .lp-hero.is-rich .lp-hero-ctas,
  .lp-hero.is-rich .lp-toggle-row { text-align: left; justify-content: flex-start; margin-left: 0; }
  .lp-hero.is-rich .lp-hero-badges { justify-content: flex-start; }
  .lp-platforms-home { margin-left: 0; margin-right: auto; }
  .lp-platforms-hero {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.lp-hero-stage {
  margin: 2rem auto 0;
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.lp-stage-card {
  border-radius: 36px;
  padding: 1.5rem 1.5rem 1.65rem;
  background:
    linear-gradient(145deg, rgba(219,39,119,.22), transparent 42%),
    linear-gradient(320deg, rgba(28,28,28,.95), #0A0A0A 60%);
  border: 1px solid rgba(124,58,237,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  text-align: left;
}
.lp-stage-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C4B5FD;
  margin-bottom: .5rem;
}
.lp-stage-card h3 {
  font-family: var(--lp-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-weight: 800;
}
.lp-stage-window {
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,.1);
}
.lp-stage-chrome {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem .9rem;
  background: #121212;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  font-weight: 700;
  color: var(--lp-muted);
}
.lp-stage-chrome i {
  width: 9px; height: 9px; border-radius: 50%;
  background: #333;
}
.lp-stage-chrome i:nth-child(1) { background: #F87171; }
.lp-stage-chrome i:nth-child(2) { background: #C4B5FD; }
.lp-stage-chrome i:nth-child(3) { background: #34D399; }
.lp-stage-chrome span { margin-left: .4rem; }
.lp-stage-chat { padding: 1rem; display: grid; gap: .65rem; }
.lp-stage-chat .bubble {
  max-width: 88%;
  padding: .7rem .85rem;
  border-radius: 16px;
  font-size: .88rem;
  line-height: 1.45;
}
.lp-stage-chat .you {
  justify-self: end;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.32);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.lp-stage-chat .ai {
  justify-self: start;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--lp-muted);
  border-bottom-left-radius: 6px;
}
.lp-stage-input {
  margin: 0 .85rem .85rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--lp-muted2);
  font-size: .85rem;
}

.lp-stat-card .who {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.lp-stat-card .av {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .65rem; font-weight: 800;
  background: rgba(255,255,255,.18);
}
.lp-stat-card {
  min-width: 200px;
  min-height: 140px;
  padding: 1.15rem 1.2rem;
  border-radius: 28px;
}

.lp-action-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
@media (max-width: 900px) { .lp-action-band { grid-template-columns: 1fr; } }
.lp-action-copy h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 .6rem;
  letter-spacing: -0.03em;
}
.lp-action-copy p { color: var(--lp-muted); margin: 0; max-width: 36ch; line-height: 1.5; }
.lp-theater-screen {
  position: relative;
  border-radius: 28px;
  min-height: 260px;
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(124, 58, 237, .18), transparent 50%),
    linear-gradient(340deg, #1A1A1A, #0A0A0A);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  overflow: hidden;
}
.lp-theater-screen.is-video {
  padding: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #0A0A0A;
}
.lp-in-action-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0A0A0A;
}
[data-theme="light"] .lp-theater-screen.is-video,
[data-theme="light"] .lp-in-action-video {
  background: #111;
}
.lp-theater-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  z-index: 2;
}
.lp-theater-play::after {
  content: "";
  position: absolute;
  left: 26px; top: 22px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #000;
}
.lp-mock-cal.mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
  margin-top: 2.5rem;
  opacity: .85;
}
.lp-mock-cal.mini .d {
  background: rgba(0,0,0,.45);
  border-radius: 12px;
  padding: .55rem;
  font-size: .7rem;
  min-height: 72px;
}
.lp-mock-cal.mini .pill {
  display: block;
  height: 10px;
  border-radius: 999px;
  margin-top: .55rem;
  opacity: .9;
}
.lp-mock-cal.mini .pill.li { background: linear-gradient(135deg, #2563EB, #4F46E5); color: #fff; }
.lp-mock-cal.mini .pill.ig { background: linear-gradient(90deg, #DB2777, #E11D48, #7C3AED); color: #fff; }
.lp-mock-cal.mini .pill.yt { background: linear-gradient(135deg, #EF4444, #F97316); color: #fff; }
.lp-mock-cal.mini .pill.x { background: linear-gradient(135deg, #6366F1, #7C3AED); color: #fff; }

.lp-power {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 900px) { .lp-power { grid-template-columns: 1fr; } }
.lp-power-card {
  border-radius: 28px;
  padding: 1.4rem 1.3rem;
  text-decoration: none !important;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease;
}
.lp-power-card:hover { transform: translateY(-4px); }
.lp-power-card .tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}
.lp-power-card h3 {
  font-family: var(--lp-display);
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: -0.02em;
}
.lp-power-card p { margin: 0; opacity: .88; line-height: 1.45; font-size: .92rem; }
.lp-power-card.tone-1 { background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%); }
.lp-power-card.tone-2 { background: linear-gradient(135deg, #DB2777 0%, #E11D48 100%); }
.lp-power-card.tone-3 { background: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%); }

.lp-tools-title,
.lp-channels-title,
.lp-love-title {
  position: relative;
  display: inline-block;
}
.lp-title-under {
  display: block;
  width: min(220px, 55%);
  margin-top: .15rem;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}
.lp-love-heart {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  margin-left: .25rem;
}

.lp-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: border-color .18s ease, transform .18s ease;
}
.lp-card-link:hover {
  border-color: color-mix(in srgb, var(--lp-amber) 40%, var(--lp-line));
  transform: translateY(-3px);
}
.lp-tool {
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  position: relative;
}
.lp-tool:hover { transform: translateY(-4px); }
.lp-tool .pill {
  align-self: flex-start;
  background: rgba(255,255,255,.16) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
}
.lp-tool .art {
  min-height: 160px;
  margin: 0 .9rem .9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 28px),
    rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.lp-tool.span-full .art { min-height: 220px; margin: .9rem; }
.lp-tool .art::before,
.lp-tool .art::after {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
}
.lp-tool .art-cal::before {
  inset: 14% 10% auto 10%;
  height: 18%;
}
.lp-tool .art-cal::after {
  inset: auto 10% 14% 10%;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(124, 58, 237, .55), transparent 40%),
    rgba(255,255,255,.08);
}
.lp-tool .art-chat::before {
  right: 12%; top: 18%; width: 55%; height: 22%;
  border-bottom-right-radius: 4px;
}
.lp-tool .art-chat::after {
  left: 12%; bottom: 18%; width: 62%; height: 26%;
  background: rgba(124,58,237,.3);
  border-bottom-left-radius: 4px;
}
.lp-tool .art-canvas::before {
  inset: 16% 14%;
  background: linear-gradient(135deg, rgba(56,189,248,.35), rgba(124, 58, 237, .25));
}
.lp-tool .art-team::before {
  left: 18%; top: 28%; width: 28%; height: 40%;
}
.lp-tool .art-team::after {
  right: 18%; top: 22%; width: 28%; height: 48%;
  background: rgba(219,39,119,.22);
}
.lp-tool .art-plugs::before {
  left: 20%; top: 30%; width: 18%; height: 18%; border-radius: 50%;
}
.lp-tool .art-plugs::after {
  right: 22%; bottom: 28%; width: 34%; height: 12%;
}
.lp-tool .art-chart::before {
  left: 14%; bottom: 18%; width: 12%; height: 40%;
  background: rgba(255,255,255,.18);
}
.lp-tool .art-chart::after {
  left: 34%; bottom: 18%; width: 48%; height: 58%;
  background: linear-gradient(180deg, rgba(124, 58, 237, .55), rgba(255,255,255,.1));
}

.lp-channel-grid.is-named {
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: .85rem;
}
.lp-channel-grid.is-named .lp-channel-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: .85rem .5rem;
  border-radius: 18px;
  text-decoration: none !important;
  color: var(--lp-muted);
  font-size: .72rem;
  font-weight: 700;
  background: var(--lp-panel);
  border: 1px solid var(--lp-line);
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.lp-channel-grid.is-named .lp-channel-tile img {
  width: 42px; height: 42px; border-radius: 12px;
}
.lp-channel-grid.is-named .lp-channel-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,.4);
  color: var(--lp-text);
}

.lp-feat-card,
.lp-spine-card,
.lp-agent-cell,
.lp-mock,
.lp-comet-ads-band {
  border-radius: 22px;
}
.lp-audience .lp-card { border-radius: 24px; padding: 1.5rem 1.35rem; }
.lp-growth { margin-top: .5rem; }
.lp-growth h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.lp-cta-band.is-mid {
  border-radius: 32px;
  margin: 1rem clamp(1rem, 3vw, 2rem) 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  background:
    linear-gradient(120deg, rgba(124, 58, 237, .12), transparent 45%),
    var(--lp-elevated);
  border: 1px solid rgba(219,39,119,.22);
}
[data-theme="light"] .lp-stat-card { color: #fff; }
[data-theme="light"] .lp-stat-card .label,
[data-theme="light"] .lp-stat-card .who {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}
[data-theme="light"] .lp-stat-card .lp-stat-metric {
  color: #FFFFFF;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
[data-theme="light"] .lp-stage-card {
  background:
    linear-gradient(145deg, rgba(219,39,119,.12), transparent 42%),
    #FFFFFF;
  border-color: rgba(15, 15, 35, 0.1);
  box-shadow: 0 24px 60px rgba(15, 15, 35, 0.12);
}
[data-theme="light"] .lp-stage-kicker { color: #6D28D9; }
[data-theme="light"] .lp-stage-card h3 { color: #0B0B14; }
[data-theme="light"] .lp-stage-window,
[data-theme="light"] .lp-product-ui {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.1);
  box-shadow: 0 20px 50px rgba(15, 15, 35, 0.1);
}
[data-theme="light"] .lp-stage-chrome {
  background: #F0EEF8;
  border-bottom-color: rgba(15, 15, 35, 0.08);
  color: #4B4B63;
}
[data-theme="light"] .lp-stage-chrome span { color: #0B0B14; }
[data-theme="light"] .lp-product-rail {
  background: #F4F2FA;
  border-right-color: rgba(15, 15, 35, 0.08);
}
[data-theme="light"] .lp-product-rail .rail-item { color: #4B4B63; }
[data-theme="light"] .lp-product-rail .rail-item.on {
  color: #FFFFFF;
  background: #0B0B14;
}
[data-theme="light"] .lp-stage-chat .you {
  color: #0B0B14;
  background: rgba(109, 40, 217, 0.12);
  border: 1px solid rgba(109, 40, 217, 0.22);
}
[data-theme="light"] .lp-stage-chat .ai {
  background: #E8E4F4;
  border-color: rgba(15, 15, 35, 0.1);
  color: #0B0B14;
}
[data-theme="light"] .lp-stage-chat .ai.soft { color: #2A2A3D; opacity: 1; }
[data-theme="light"] .lp-stage-input {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.16);
  color: #3F3F56;
}
[data-theme="light"] .lp-stage-cal.is-rich .cell {
  background: #F7F6FC;
  border-color: rgba(15, 15, 35, 0.1);
}
[data-theme="light"] .lp-stage-cal.is-rich .d { color: #0B0B14; }
[data-theme="light"] .lp-platforms-home .lp-plat { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .lp-platforms-home .lp-plat,
  .lp-hero.is-rich .lp-doodle { animation: none !important; }
}

/* ——— All marketing pages: match homepage richness ——— */
.lp-section h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}
.lp-section .lead {
  font-size: 1.05rem;
  max-width: 42rem;
}
.lp-card,
.lp-price-card,
.lp-comet-feat,
.lp-agent-cell,
.lp-feat-card {
  border-radius: 24px !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.lp-card:hover,
.lp-price-card:hover,
.lp-comet-feat:hover,
.lp-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.lp-btn-white,
.lp-btn.lp-btn-white {
  border-radius: 999px !important;
  font-weight: 800 !important;
}
.lp-btn-demo,
.lp-btn-ghost {
  border-radius: 999px !important;
}
.lp-page-hero .lp-btn-white,
.lp-page-hero .lp-btn-pill,
.lp-comet-hero .lp-btn-white,
.lp-pricing-hero .lp-btn-white {
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.lp-faq details {
  border-radius: 18px;
  background: var(--lp-faq);
  border: 1px solid var(--lp-line);
  margin-bottom: .55rem;
  overflow: hidden;
}
.lp-faq summary {
  font-weight: 700;
  padding: 1rem 1.15rem;
  cursor: pointer;
}
.lp-faq details[open] summary {
  border-bottom: 1px solid var(--lp-line);
}
.lp-faq details p {
  padding: 0 1.15rem 1rem;
  color: var(--lp-muted);
  line-height: 1.55;
}
.lp-nav .lp-btn-pill {
  padding: .5rem 1rem !important;
  font-size: .85rem !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.25) !important;
}
.lp-price-card {
  padding: 1.35rem 1.25rem !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.lp-legal,
.lp-blog-body,
.feat-page {
  max-width: 880px;
}
.lp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.lp-reveal.on {
  opacity: 1;
  transform: none;
}

/* ——— Homepage UX cleanup: hero focus, toggle, proof grid ——— */
.lp-hero.is-rich .lp-hero-ctas {
  margin: 0 0 1.15rem;
  gap: .75rem;
}
.lp-mode-hint {
  margin: .35rem auto 1.25rem;
  max-width: 36rem;
  color: var(--lp-muted);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  min-height: 2.6em;
  transition: opacity .2s ease;
}
.lp-hero.is-rich[data-mode="normal"] .lp-mode-hint {
  color: var(--lp-amber);
}
.lp-toggle-row {
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line-strong);
  background: var(--lp-panel);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: .85rem;
}
.lp-toggle-row .on {
  color: var(--lp-text);
  font-weight: 800;
}
.lp-plat-more {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 .95rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line-strong);
  background: var(--lp-elevated);
  color: var(--lp-text) !important;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none !important;
}
.lp-plat-more:hover {
  border-color: rgba(124,58,237,.45);
  color: var(--lp-amber) !important;
}
.lp-hero-trust {
  margin: 0 auto 0.25rem;
  text-align: center;
  color: var(--lp-muted2);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.lp-stage-cal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .45rem;
  padding: 1rem;
}
.lp-stage-cal .cell {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .55rem;
  min-height: 72px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--lp-muted);
}
[data-theme="light"] .lp-stage-cal .cell {
  background: #F4F2FA;
  border-color: rgba(15, 15, 35, 0.1);
  color: #4B4B63;
}
.lp-stage-cal .pill {
  display: block;
  border-radius: 999px;
  margin-top: .55rem;
  min-height: 10px;
}
.lp-stage-cal .pill.li { background: linear-gradient(90deg, #2563EB, #4F46E5); }
.lp-stage-cal .pill.ig { background: linear-gradient(90deg, #DB2777, #E11D48); }
.lp-stage-cal .pill.yt { background: linear-gradient(90deg, #EF4444, #F97316); }
.lp-stage-cal .pill.x { background: linear-gradient(90deg, #6366F1, #A78BFA); }
.lp-stage-card[hidden] { display: none !important; }
.lp-hero.is-rich[data-mode="normal"] .lp-stage-card.is-normal {
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent 42%),
    linear-gradient(320deg, rgba(28,28,28,.95), #0A0A0A 60%);
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-card.is-normal {
  border-color: rgba(15, 15, 35, 0.1);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.1), transparent 42%),
    #FFFFFF;
  box-shadow: 0 24px 60px rgba(15, 15, 35, 0.12);
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-card.is-normal .lp-stage-kicker {
  color: #6D28D9;
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-card.is-normal h3 {
  color: #0B0B14;
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-card.is-normal .lp-stage-input {
  background: #F7F6FC;
  border-color: rgba(15, 15, 35, 0.12);
  color: #3F3F56;
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-cal.is-rich {
  background: #FFFFFF;
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-cal.is-rich .cell {
  background: #F4F2FA;
  border-color: rgba(15, 15, 35, 0.1);
}
[data-theme="light"] .lp-hero.is-rich[data-mode="normal"] .lp-stage-cal.is-rich .d {
  color: #0B0B14;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
@media (max-width: 900px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-stats-grid { grid-template-columns: 1fr; }
}
.lp-stats-grid .lp-stat-card {
  min-width: 0;
  width: 100%;
}

.lp-section-who h2,
.lp-action-band h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.75rem) !important;
  letter-spacing: -0.035em;
}
.lp-section#power h2,
.lp-section#tools h2,
.lp-channels-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem) !important;
}
.lp-growth h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
  font-weight: 700;
  color: var(--lp-muted);
  letter-spacing: -0.01em;
}
.lp-strip-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}
@media (max-width: 760px) {
  .lp-mode-hint,
  .lp-hero-trust,
  .lp-platforms-home { text-align: left; justify-content: flex-start; margin-left: 0; }
  .lp-toggle-row { margin-left: 0; }
  .lp-seg { margin-left: 0; }
}

/* —— UX audit: announce dismiss, Product nav, segmented mode, hierarchy —— */
.lp-announce {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding-right: 2.75rem;
}
.lp-announce.is-hidden { display: none; }
.lp-announce-x {
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.lp-announce-x:hover { background: rgba(255,255,255,.22); }

.lp-dd-panel.lp-dd-product {
  display: none;
  grid-template-columns: minmax(220px, 260px) minmax(320px, 480px);
  gap: 0;
  width: min(740px, calc(100vw - 2rem));
  padding: 0;
  left: 0;
  right: auto;
}
.lp-dd:hover .lp-dd-panel.lp-dd-product,
.lp-dd:focus-within .lp-dd-panel.lp-dd-product,
.lp-dd.open .lp-dd-panel.lp-dd-product {
  display: grid;
}
.lp-product-col {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--lp-line);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.lp-product-channels {
  padding: 1rem 1.1rem;
  max-height: min(70vh, 420px);
  overflow: auto;
}
.lp-dd-label {
  margin: 0 0 .55rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-product-link {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .65rem .7rem;
  border-radius: 12px;
  color: var(--lp-text) !important;
}
.lp-product-link strong { font-size: .92rem; }
.lp-product-link span {
  font-size: .75rem;
  color: var(--lp-muted);
  line-height: 1.35;
}
.lp-product-link:hover,
.lp-product-link:focus-visible {
  background: var(--lp-dd-hover);
}
.lp-product-link.is-ads {
  margin-top: .25rem;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.06);
}
.lp-product-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .15rem;
}
.lp-dd-panel.lp-dd-simple {
  min-width: 180px;
  padding: .55rem;
  display: none;
  grid-template-columns: 1fr;
}
.lp-dd:hover .lp-dd-panel.lp-dd-simple,
.lp-dd:focus-within .lp-dd-panel.lp-dd-simple,
.lp-dd.open .lp-dd-panel.lp-dd-simple {
  display: grid;
}
.lp-simple-link {
  display: block;
  padding: .55rem .7rem;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--lp-text) !important;
}
.lp-simple-link:hover { background: var(--lp-dd-hover); }
.lp-mob-label {
  margin: .75rem 0 .25rem;
  padding: 0 .25rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
@media (max-width: 900px) {
  .lp-dd-panel.lp-dd-product {
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 2rem));
  }
  .lp-product-col { border-right: 0; border-bottom: 1px solid var(--lp-line); }
  .lp-product-channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin: 0 auto .85rem;
  max-width: 36rem;
}
.lp-hero-badges span {
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: transparent;
}
.lp-hero.is-rich .lp-hero-badges { margin-left: auto; margin-right: auto; }
@media (max-width: 760px) {
  .lp-hero-badges { justify-content: flex-start; margin-left: 0; }
}

.lp-seg {
  display: inline-flex;
  align-items: stretch;
  gap: .2rem;
  margin: 1.15rem auto 0;
  padding: .22rem;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  background: rgba(255,255,255,.03);
  max-width: 100%;
}
[data-theme="light"] .lp-seg {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.14);
  box-shadow: 0 4px 16px rgba(15, 15, 35, 0.06);
}
.lp-seg-btn {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--lp-muted);
  font: inherit;
  font-size: clamp(.78rem, 1.5vw, .88rem);
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.lp-seg-btn:hover { color: var(--lp-text); }
.lp-seg-btn.on {
  color: #0A0A0A;
  background: var(--lp-amber, #A78BFA);
  border-color: var(--lp-amber, #A78BFA);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28);
  transform: translateY(-1px);
}
[data-theme="light"] .lp-seg-btn { color: #1F1F33; font-weight: 700; }
[data-theme="light"] .lp-seg-btn:hover { color: #0B0B14; background: rgba(15, 15, 35, 0.06); }
[data-theme="light"] .lp-seg-btn.on {
  color: #fff;
  background: #0A0A0A;
  border-color: #0A0A0A;
  box-shadow: none;
}
#lpHero[data-mode="normal"] .lp-mode-hint {
  color: var(--lp-amber, #A78BFA);
}
#lpHero[data-mode="normal"] .lp-hero-stage {
  animation: lp-mode-swap .35s ease;
}
@keyframes lp-mode-swap {
  from { opacity: .35; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .lp-seg {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .lp-seg-btn { white-space: normal; text-align: center; line-height: 1.25; padding: .6rem .55rem; }
}

.lp-eyebrow {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-amber, #A78BFA);
}
.lp-section,
.lp-section-tight,
.lp-growth,
.lp-action-band,
.lp-spine,
.lp-strip,
.lp-channels-wrap,
.lp-comet-ads-band {
  padding-top: clamp(3.25rem, 7vw, 5.25rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.25rem);
}
.lp-band-tint {
  background: rgba(255,255,255,.025);
  border-block: 1px solid var(--lp-line);
}
[data-theme="light"] .lp-band-tint {
  background: rgba(0,0,0,.025);
}
.lp-band-dark {
  background: linear-gradient(180deg, rgba(0,0,0,.35), transparent);
}
.lp-love-section {
  background:
    linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 40%, transparent);
}
.lp-love-section .lp-love-card {
  background: var(--lp-elevated, #141414);
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

/* Type scale: H1 hero > H2 section > H3 card */
.lp-hero h1,
.lp-hero-line {
  font-size: clamp(2.6rem, 6.5vw, 4.35rem) !important;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.lp-section > h2,
.lp-section-who h2,
.lp-action-band h2,
.lp-channels-title,
.lp-tools-title,
.lp-love-title,
.lp-strip-head h2,
.lp-growth h2,
.lp-faq-title h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem) !important;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--lp-text) !important;
}
.lp-growth h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem) !important;
}
.lp-card h3,
.lp-feat-card h3,
.lp-tool h3,
.lp-power-card h3,
.lp-agent-cell h3,
.lp-stage-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* —— Round 2 UX: sticky CTA, product UI, trust, pricing home, motion, a11y —— */
.lp-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: .65rem clamp(1rem, 3vw, 1.5rem);
  /* Always black — matches dark landing chrome (hero is dark in both themes). */
  background: #000000;
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(110%);
  transition: transform .28s ease, opacity .28s ease;
  opacity: 0;
  pointer-events: none;
}
.lp-sticky-cta.is-on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
[data-theme="dark"] .lp-sticky-cta,
[data-theme="light"] .lp-sticky-cta {
  background: #000000;
}
.lp-sticky-cta[hidden] { display: none !important; }
.lp-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.lp-sticky-copy {
  font-weight: 700;
  font-size: .95rem;
  color: #ffffff;
}
.lp-sticky-cta .lp-link-demo {
  color: rgba(255, 255, 255, 0.82) !important;
}
.lp-sticky-cta .lp-link-demo:hover {
  color: #ffffff !important;
}
.lp-sticky-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .lp-sticky-copy { width: 100%; font-size: .88rem; }
  .lp-sticky-actions { width: 100%; }
  .lp-sticky-actions .lp-btn { flex: 1; }
}

.lp-platforms-band {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.lp-platforms-band .lp-platforms-home { margin-top: 0; }

.lp-dd-panel.lp-dd-product-simple {
  display: none;
  grid-template-columns: 1fr;
  width: min(320px, calc(100vw - 2rem));
  padding: .65rem;
  gap: .2rem;
}
.lp-dd:hover .lp-dd-panel.lp-dd-product-simple,
.lp-dd:focus-within .lp-dd-panel.lp-dd-product-simple,
.lp-dd.open .lp-dd-panel.lp-dd-product-simple {
  display: grid;
}

/* Platform mega-menu (Cometly-style Unify / Analyze / Sync / Scale) */
.lp-dd-panel.lp-dd-platform {
  display: none;
  width: min(960px, calc(100vw - 2rem));
  max-height: min(560px, 78vh);
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  left: 0;
  right: auto;
  border-radius: 14px;
}
.lp-dd:hover .lp-dd-panel.lp-dd-platform,
.lp-dd:focus-within .lp-dd-panel.lp-dd-platform,
.lp-dd.open .lp-dd-panel.lp-dd-platform {
  display: flex;
  flex-direction: column;
}
.lp-plat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 1.15rem 1.15rem 0.85rem;
  overflow-y: auto;
}
.lp-plat-col {
  padding: 0.35rem 0.85rem 0.75rem;
  min-width: 0;
  border-right: 1px solid var(--lp-line);
}
.lp-plat-col:last-child { border-right: 0; }
.lp-plat-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none !important;
  color: var(--lp-text) !important;
  margin-bottom: 0.55rem;
}
.lp-plat-head:hover .lp-plat-titles strong { color: var(--lp-accent, #2dd4bf); }
.lp-plat-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.14);
  color: var(--lp-text);
  font-size: 0.95rem;
  border: 1px solid var(--lp-line);
}
[data-theme="light"] .lp-plat-ico {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #111827;
}
.lp-plat-titles {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.lp-plat-titles strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.lp-plat-titles em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lp-muted);
  line-height: 1.3;
}
.lp-plat-desc {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--lp-muted);
}
.lp-plat-includes {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted2, var(--lp-muted));
}
.lp-plat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lp-plat-list a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text) !important;
  text-decoration: none !important;
  border-radius: 6px;
}
.lp-plat-list a:hover {
  color: var(--lp-accent, #2dd4bf) !important;
}
.lp-plat-foot {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--lp-line);
  background: rgba(148, 163, 184, 0.06);
}
[data-theme="light"] .lp-plat-foot {
  background: #f9fafb;
}
.lp-plat-foot-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.lp-plat-foot-copy strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.lp-plat-foot-copy span {
  font-size: 0.72rem;
  color: var(--lp-muted);
  line-height: 1.35;
}
.lp-plat-foot-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  justify-content: flex-start;
}
.lp-plat-foot-logos img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
  opacity: 0.92;
}
.lp-plat-foot-link {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-text) !important;
  text-decoration: none !important;
}
.lp-plat-foot-link:hover {
  color: var(--lp-accent, #2dd4bf) !important;
}
@media (max-width: 980px) {
  .lp-dd-panel.lp-dd-platform {
    width: min(520px, calc(100vw - 1.5rem));
    max-height: min(520px, 72vh);
  }
  .lp-plat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-plat-col:nth-child(2n) { border-right: 0; }
  .lp-plat-col:nth-child(-n+2) {
    border-bottom: 1px solid var(--lp-line);
    margin-bottom: 0.35rem;
  }
  .lp-plat-foot {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}
@media (max-width: 720px) {
  .lp-dd-panel.lp-dd-platform {
    width: min(360px, calc(100vw - 1.5rem));
  }
  .lp-plat-grid { grid-template-columns: 1fr; }
  .lp-plat-col {
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
  }
  .lp-plat-col:last-child { border-bottom: 0; }
  .lp-plat-col:nth-child(-n+2) {
    border-bottom: 1px solid var(--lp-line);
    margin-bottom: 0;
  }
}

/* Shared Cometly-style mega (Resources / Solutions) */
.lp-dd-panel.lp-dd-mega {
  display: none;
  width: min(760px, calc(100vw - 2rem));
  max-height: min(480px, 72vh);
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  left: 0;
  right: auto;
  border-radius: 14px;
}
.lp-dd:hover .lp-dd-panel.lp-dd-mega,
.lp-dd:focus-within .lp-dd-panel.lp-dd-mega,
.lp-dd.open .lp-dd-panel.lp-dd-mega {
  display: flex;
  flex-direction: column;
}
[data-theme="light"] .lp-dd-panel.lp-dd-mega,
[data-theme="light"] .lp-dd-panel.lp-dd-platform {
  background: #ffffff;
  border-color: #e8e8ee;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}
.lp-mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 1.15rem 0.85rem 1.25rem;
  overflow-y: auto;
}
.lp-mega-col {
  padding: 0.25rem 0.85rem;
  min-width: 0;
  border-right: 1px solid var(--lp-line);
}
.lp-mega-col:last-child { border-right: 0; }
.lp-mega-col-label {
  margin: 0 0 0.65rem;
  padding: 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-mega-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.55rem;
  border-radius: 10px;
  text-decoration: none !important;
  color: var(--lp-text) !important;
  margin-bottom: 0.15rem;
}
.lp-mega-link:hover,
.lp-mega-link:focus-visible {
  background: var(--lp-dd-hover);
}
.lp-mega-link strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.lp-mega-link span {
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--lp-muted);
}
@media (max-width: 820px) {
  .lp-dd-panel.lp-dd-mega {
    width: min(420px, calc(100vw - 1.5rem));
  }
  .lp-mega-cols { grid-template-columns: 1fr; }
  .lp-mega-col {
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
    padding-bottom: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .lp-mega-col:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
}

/* Channels / integrations-style hero */
.lp-integ-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
}
.lp-integ-copy h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
}
.lp-integ-copy > p {
  color: var(--lp-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  margin: 0 0 1.35rem;
  max-width: 34rem;
}
.lp-integ-card {
  background: var(--lp-card, var(--lp-panel));
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
[data-theme="light"] .lp-integ-card {
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.lp-integ-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.95rem;
}
.lp-integ-logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid var(--lp-line);
}
[data-theme="light"] .lp-integ-logo {
  background: #f8fafc;
  border-color: #eef0f4;
}
.lp-integ-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.lp-integ-card > p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--lp-muted);
}
.lp-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem 2rem;
  align-items: end;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}
.lp-section-split h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
}
.lp-section-split p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .lp-integ-hero {
    grid-template-columns: 1fr;
  }
  .lp-integ-copy .lp-hero-ctas { justify-content: flex-start !important; }
  .lp-section-split { grid-template-columns: 1fr; gap: 0.5rem; }
}

.lp-product-ui {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #0c0c0c;
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}
.lp-product-ui.mini { box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.lp-stage-chrome {
  display: flex; align-items: center; gap: .35rem;
  padding: .55rem .75rem;
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: var(--lp-muted);
}
.lp-stage-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a3a3a;
}
.lp-stage-chrome i:nth-child(1) { background: #ff5f57; }
.lp-stage-chrome i:nth-child(2) { background: #febc2e; }
.lp-stage-chrome i:nth-child(3) { background: #28c840; }
.lp-stage-chrome span { margin-left: .35rem; font-weight: 800; color: #FFFFFF; font-family: var(--lp-display); }
.lp-stage-chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(105deg, #7C3AED, #DB2777);
  padding: .2rem .55rem;
  border-radius: 999px;
}
.lp-product-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 220px;
}
@media (max-width: 640px) {
  .lp-product-layout { grid-template-columns: 1fr; }
  .lp-product-rail { display: none; }
}
.lp-product-rail {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .75rem .55rem;
  border-right: 1px solid rgba(255,255,255,.08);
  background: #101010;
}
.lp-product-rail .rail-item {
  padding: .45rem .55rem;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 650;
  color: var(--lp-muted);
}
.lp-product-rail .rail-item.on {
  color: #0A0A0A;
  background: var(--lp-amber);
}
.lp-stage-chat { padding: .85rem; display: flex; flex-direction: column; gap: .55rem; }
.lp-stage-chat .bubble {
  max-width: 92%;
  padding: .65rem .8rem;
  border-radius: 14px;
  font-size: .86rem;
  line-height: 1.4;
}
.lp-stage-chat .you {
  align-self: flex-end;
  background: rgba(124, 58, 237, .18);
  color: var(--lp-text);
}
.lp-stage-chat .ai {
  align-self: flex-start;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
}
.lp-stage-chat .ai.soft { opacity: .85; font-size: .8rem; }
.lp-stage-cal.is-rich {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .55rem;
  padding: .95rem;
}
.lp-stage-cal.is-rich .cell {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .55rem .5rem;
  min-height: 88px;
}
.lp-stage-cal.is-rich .d {
  display: block;
  font-family: var(--lp-display);
  font-size: .78rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: .45rem;
}
.lp-stage-cal.is-rich .pill {
  display: block;
  font-family: var(--lp-display);
  font-size: .78rem !important;
  font-weight: 800 !important;
  line-height: 1.25;
  padding: .5rem .55rem !important;
  border-radius: 10px !important;
  border: 0 !important;
  color: #FFFFFF !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  white-space: normal;
  overflow: hidden;
  min-height: auto;
  height: auto;
  margin-top: 0;
}
.lp-stage-cal.is-rich .pill.li {
  background: linear-gradient(135deg, #2563EB, #4F46E5) !important;
}
.lp-stage-cal.is-rich .pill.ig {
  background: linear-gradient(135deg, #DB2777, #E11D48) !important;
}
.lp-stage-cal.is-rich .pill.yt {
  background: linear-gradient(135deg, #EF4444, #F97316) !important;
}
.lp-stage-cal.is-rich .pill.x {
  background: linear-gradient(135deg, #6366F1, #7C3AED) !important;
  color: #FFFFFF !important;
}
.lp-stage-cal.is-rich .pill.cs {
  background: linear-gradient(135deg, #06B6D4, #2563EB) !important;
  color: #FFFFFF !important;
}
.lp-stage-input {
  margin: 0 .75rem .75rem;
  padding: .65rem .8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: #121212;
  color: var(--lp-muted);
  font-size: .82rem;
}

.lp-roas-shell {
  max-width: 960px;
  margin: 0 auto 1.5rem;
  padding-bottom: .5rem;
}
.lp-roas-shell .lp-roas-mock { margin: .75rem; }
.lp-roas-shell .lp-roas-table { margin: 0 .75rem .75rem; width: calc(100% - 1.5rem); }

.lp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.25rem;
  margin: 1rem auto 1.5rem;
  max-width: 900px;
  padding: 0 1rem;
}
.lp-trust-mark {
  font-family: var(--lp-display);
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--lp-muted);
  opacity: .85;
}
.lp-stats-note {
  text-align: center;
  max-width: 720px;
  margin: 1rem auto 0;
  padding: 0 1rem;
  font-size: .78rem;
  color: var(--lp-muted);
  line-height: 1.45;
}
.lp-case-card {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--lp-line);
  background: var(--lp-elevated, #141414);
}
.lp-case-quote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--lp-text);
}
.lp-case-card footer {
  margin-top: .85rem;
  font-size: .85rem;
  color: var(--lp-muted);
}

.lp-price-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 1.5rem auto 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
@media (max-width: 900px) {
  .lp-price-grid-home { grid-template-columns: 1fr; max-width: 420px; }
}
.lp-pricing-home .tagline {
  color: var(--lp-muted);
  font-size: .85rem;
  margin: .25rem 0 .75rem;
}
.lp-pricing-home-more {
  text-align: center;
  margin-top: 1.25rem;
}
.lp-pricing-home-more a {
  font-weight: 750;
  color: var(--lp-amber) !important;
  text-decoration: none !important;
}

.lp-agent-strip-inline {
  margin-top: 1.5rem;
}

.lp-under-draw {
  transform-origin: left center;
  animation: lpUnderlineDraw .7s ease .15s both;
}
@keyframes lpUnderlineDraw {
  from { opacity: 0; transform: scaleX(.2); }
  to { opacity: 1; transform: scaleX(1); }
}
.lp-hero-stage.is-swapping .lp-stage-card:not([hidden]) {
  animation: lpStageSwap .38s ease;
}
@keyframes lpStageSwap {
  from { opacity: .25; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp a:focus-visible,
.lp button:focus-visible,
.lp .lp-dd-btn:focus-visible,
.lp .lp-seg-btn:focus-visible,
.lp summary:focus-visible {
  outline: 2px solid var(--lp-amber);
  outline-offset: 3px;
}
.lp-muted-boost,
.lp .sub,
.lp .lead,
.lp-mode-hint {
  color: color-mix(in srgb, var(--lp-muted) 82%, var(--lp-text));
}

@media (prefers-reduced-motion: reduce) {
  .lp-under-draw,
  .lp-hero-stage.is-swapping .lp-stage-card,
  .lp-sticky-cta,
  .lp-platforms-home .lp-plat,
  .lp-hero.is-rich .lp-doodle {
    animation: none !important;
    transition: none !important;
  }
}
.lp[data-page="home"] { padding-bottom: 4.5rem; }
.lp-sticky-cta.is-on ~ .discord-fab,
.lp:has(.lp-sticky-cta.is-on) .discord-fab { bottom: 5.25rem; }

/* ——— Light theme contrast pass (mocks, cards, ads shell) ——— */
[data-theme="light"] .lp-card,
[data-theme="light"] .lp-feat-card,
[data-theme="light"] .lp-comet-feat,
[data-theme="light"] .lp-agent-cell {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.12);
  box-shadow: 0 10px 28px rgba(15, 15, 35, 0.06);
}
[data-theme="light"] .lp-card:hover,
[data-theme="light"] .lp-feat-card:hover,
[data-theme="light"] .lp-comet-feat:hover {
  box-shadow: 0 16px 36px rgba(15, 15, 35, 0.1);
  border-color: rgba(109, 40, 217, 0.28);
}
[data-theme="light"] .lp-card p,
[data-theme="light"] .lp-feat-card p,
[data-theme="light"] .lp-comet-feat p {
  color: #3F3F56;
}
[data-theme="light"] .lp-feat-card .tag,
[data-theme="light"] .lp-card .tag {
  color: #6D28D9;
}
[data-theme="light"] .lp-theater-screen {
  background:
    linear-gradient(160deg, rgba(124, 58, 237, .1), transparent 50%),
    linear-gradient(340deg, #F4F2FA, #FFFFFF);
  border-color: rgba(15, 15, 35, 0.1);
  box-shadow: 0 20px 48px rgba(15, 15, 35, 0.1);
}
[data-theme="light"] .lp-product-ui.mini {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.1);
  box-shadow: 0 18px 44px rgba(15, 15, 35, 0.1);
}
[data-theme="light"] .lp-roas-shell,
[data-theme="light"] .lp-product-ui .lp-roas-shell {
  color: #0B0B14;
}
[data-theme="light"] .lp-roas-kpi {
  background: #FFFFFF;
  border-color: rgba(15, 15, 35, 0.12);
  box-shadow: 0 4px 14px rgba(15, 15, 35, 0.05);
}
[data-theme="light"] .lp-roas-kpi .l { color: #6B6B84; }
[data-theme="light"] .lp-roas-kpi .v { color: #0B0B14; }
[data-theme="light"] .lp-roas-kpi .d { color: #4B4B63; }
[data-theme="light"] .lp-roas-table th { color: #6B6B84; }
[data-theme="light"] .lp-roas-table td { color: #1A1A2E; }
[data-theme="light"] .lp-roas-table th,
[data-theme="light"] .lp-roas-table td {
  border-bottom-color: rgba(15, 15, 35, 0.08);
}
[data-theme="light"] .lp-roas-table .roas { color: #6D28D9; }
[data-theme="light"] .lp-comet-ads-band {
  background: #FFFFFF;
  border-color: rgba(109, 40, 217, 0.18);
  box-shadow: 0 12px 32px rgba(15, 15, 35, 0.05);
}
[data-theme="light"] .lp-cta-band.is-mid {
  box-shadow: 0 12px 32px rgba(15, 15, 35, 0.06);
}


/* ——— Homepage diet (audit) ——— */
.lp-btn-solid {
  background: #7C3AED !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  min-height: 48px;
  padding: .85rem 1.5rem !important;
}
.lp-btn-solid:hover { filter: brightness(1.06); background: #6D28D9 !important; }
.lp-link-demo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--lp-muted) !important;
  font-weight: 600 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: .5rem .25rem !important;
  min-height: 44px;
}
.lp-link-demo:hover { color: var(--lp-text) !important; filter: none !important; transform: none !important; }
.lp-hero-diet .lp-brand-hero {
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--lp-text);
}
.lp-hero-diet h1.lp-hero-line {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  max-width: 18ch;
}
.lp-hero-diet .sub {
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
  max-width: 34rem;
}
.lp-hero-diet .lp-hero-stage { margin-top: 2.5rem; }
.lp-proof-quiet {
  text-align: center;
  padding: 2.5rem 1rem;
  max-width: 40rem;
  margin: 0 auto;
}
.lp-proof-quote {
  margin: 0;
  font-family: var(--lp-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--lp-text);
}
.lp-proof-meta {
  margin: .75rem 0 0;
  color: var(--lp-muted);
  font-size: .9rem;
}
.lp-channel-launch {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
}
.lp-channel-more {
  display: grid !important;
  place-items: center;
  font-weight: 700;
  color: var(--lp-muted);
  text-decoration: none;
  border: 1px dashed var(--lp-line-strong);
  border-radius: 12px;
  min-height: 88px;
}
@media (max-width: 720px) {
  .lp-hero-diet .lp-hero-stage { display: none; }
}


/* ——— Visual polish v2 landing ——— */
.lp-announce.is-hidden { display: none !important; }
.lp-stage-chrome-flat {
  display: flex !important;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem !important;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-elevated) !important;
}
.lp-stage-chrome-flat i,
.lp-stage-chrome-flat em { display: none !important; }
.lp-stage-chrome-flat span {
  margin: 0 !important;
  font-size: .8rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.lp-hero-diet .lp-hero-stage,
.lp-hero.is-rich .lp-hero-stage .lp-stage-card {
  box-shadow: none !important;
  filter: none !important;
}
.lp-hero-diet .mark-word {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: #7C3AED;
}
.lp-hero-diet .mark-word img,
.lp-under { display: none !important; }
.lp-stage-kicker { display: none !important; }
.lp-comet-accordion {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  background: var(--lp-panel);
}
.lp-comet-accordion > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.35rem;
}
.lp-comet-accordion > summary::-webkit-details-marker { display: none; }
.lp-comet-accordion > summary h2 { margin: 0 0 .35rem; font-size: 1.25rem; }
.lp-comet-accordion > summary .lead { margin: 0; }
.lp-comet-accordion[open] > summary { border-bottom: 1px solid var(--lp-line); }
.lp-comet-accordion .lp-comet-deal,
.lp-comet-accordion .lp-price-grid { padding: 1rem 1.35rem 1.5rem; }
.lp-nav-actions .lp-btn-pill {
  background: #7C3AED !important;
  color: #fff !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}


/* === UI UX PRO MAX LANDING === */
.lp-btn, .lp-btn-login, .lp-link-demo, .lp-channel-tile, .lp-spine-card,
.lp-price-card, .lp-dd-btn, a.lp-card {
  cursor: pointer;
  transition: background-color 180ms cubic-bezier(0.16,1,0.3,1),
    color 180ms cubic-bezier(0.16,1,0.3,1),
    border-color 180ms cubic-bezier(0.16,1,0.3,1),
    filter 180ms cubic-bezier(0.16,1,0.3,1);
}

.lp-btn:focus-visible, .lp-btn-login:focus-visible, .lp-dd-btn:focus-visible {
  outline: 2px solid var(--lp-violet, #7C3AED);
  outline-offset: 2px;
}
[data-theme="light"] .lp-wrap,
[data-theme="light"] .lp-hero .sub,
[data-theme="light"] .lead {
  color: #0F172A;
}
[data-theme="light"] .lp-muted,
[data-theme="light"] .lp-proof-meta,
[data-theme="light"] .sub {
  color: #475569 !important;
}
@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track, .lp-under-draw, .lp-reveal {
    animation: none !important;
  }
}

.lp-main {
  display: block;
  outline: none;
  /* transparent wrapper — children keep original .lp > section spacing */
}
.lp > .lp-main > * { /* pass-through */ }



/* === NAV ALIGN FIX === */
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lp-nav-actions .lp-theme-btn,
.lp-nav-actions .lp-lang-btn,
.lp-nav-actions .lp-menu-btn {
  width: var(--touch, 44px) !important;
  height: var(--touch, 44px) !important;
  min-width: var(--touch, 44px) !important;
  min-height: var(--touch, 44px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: var(--radius-sm, 12px) !important;
  box-sizing: border-box;
}
.lp-nav-actions .lp-btn-login,
.lp-nav-actions .lp-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch, 44px);
  height: var(--touch, 44px);
  box-sizing: border-box;
}

/* ——— Home hero: concave revolving wall + spotlight (img.ly-style) ——— */
.lp[data-page="home"] {
  background: transparent;
}
.lp[data-page="home"] .lp-nav {
  background: color-mix(in srgb, var(--lp-bg) 30%, transparent);
  border-bottom-color: transparent;
  backdrop-filter: blur(16px) saturate(1.2);
}
.lp[data-page="home"] .lp-main {
  position: relative;
  z-index: 1;
}
.lp-hero.has-collage {
  isolation: isolate;
  position: relative;
  /* Pull hero under sticky nav so the wall fills the first viewport like img.ly */
  margin-top: calc(-1 * var(--lp-nav-h, 4.25rem));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Announcement pinned near the nav, copy centred in whatever is left. */
  justify-content: flex-start;
  padding-top: calc(var(--lp-nav-h, 4.25rem) + clamp(.5rem, 1.5vh, 1rem));
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
  max-width: none;
  width: 100%;
  background: transparent;
}
.lp-hero.has-collage > *:not(.lp-hero-collage) {
  position: relative;
  z-index: 2;
}
.lp-hero-copy {
  position: relative;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-hero.has-collage .lp-hero-copy {
  margin: auto;
}
.lp-hero.has-collage .lp-brand-hero,
.lp-hero.has-collage .lp-hero-line,
.lp-hero.has-collage .sub,
.lp-hero.has-collage .lp-hero-ctas {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-content: center;
}
.lp-hero.has-collage .lp-brand-hero {
  font-size: clamp(3rem, 9vw, 5.25rem);
  margin: 0 0 .35rem;
}
.lp-hero.has-collage .lp-hero-line {
  max-width: 16ch;
  font-size: clamp(1.65rem, 3.6vw, 2.6rem) !important;
}
.lp-hero.has-collage .sub {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}
.lp-hero-copy::before {
  content: "";
  position: absolute;
  inset: -10% -22%;
  z-index: -1;
  background:
    radial-gradient(ellipse 58% 50% at 50% 50%, color-mix(in srgb, var(--lp-bg) 62%, transparent) 0%, color-mix(in srgb, var(--lp-bg) 34%, transparent) 50%, transparent 78%);
  pointer-events: none;
}
/* Per-block scrims: a solid rounded plate blurred at the edges so each line of
   type keeps full contrast while the wall stays visible between the blocks. */
.lp-hero.has-collage .lp-brand-hero,
.lp-hero.has-collage .lp-hero-line,
.lp-hero.has-collage .sub,
.lp-hero.has-collage .lp-hero-ctas {
  position: relative;
}
.lp-hero.has-collage .lp-brand-hero::before,
.lp-hero.has-collage .lp-hero-line::before,
.lp-hero.has-collage .sub::before,
.lp-hero.has-collage .lp-hero-ctas::before {
  content: "";
  position: absolute;
  inset: -1.3rem -4.5rem;
  z-index: -1;
  border-radius: 28px;
  background: var(--lp-scrim, var(--lp-bg));
  filter: blur(26px);
  pointer-events: none;
}
.lp-hero.has-collage .lp-brand-hero::before {
  inset: -.9rem -5rem -1.8rem;
}
.lp-hero.has-collage .lp-hero-ctas::before {
  inset: -1.5rem -4rem;
}
.lp-hero-stage-wrap {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
  background: var(--lp-bg);
}
.lp-hero-stage-wrap .lp-hero-stage {
  margin: 0 auto;
  max-width: 860px;
}

/* Spotlight / what's-new strip (img.ly announcement card) */
.lp-spotlight {
  /* The tabs sit directly on the hero wall, so they need a theme-aware ink.
     The card below keeps --lp-ink because its surface stays light in both themes. */
  --lp-spot-chrome: #000;
  position: relative;
  z-index: 3;
  width: min(25rem, calc(100vw - 2rem));
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  pointer-events: auto;
}
[data-theme="dark"] .lp-spotlight {
  --lp-spot-chrome: #fff;
}
.lp-spot-tabs {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.lp-spot-ico {
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--lp-spot-chrome) 62%, transparent);
  margin-right: .1rem;
}
.lp-spot-tab {
  appearance: none;
  border: 0;
  padding: 0;
  width: 1.65rem;
  height: .28rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-spot-chrome) 24%, transparent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.lp-spot-tab.is-on {
  background: color-mix(in srgb, var(--lp-spot-chrome) 30%, transparent);
}
.lp-spot-tab.is-on::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: color-mix(in srgb, var(--lp-spot-chrome) 80%, transparent);
  border-radius: inherit;
  animation: lp-spot-progress 5.2s linear;
}
@keyframes lp-spot-progress {
  from { width: 0%; }
  to { width: 100%; }
}
.lp-spot-stage {
  width: 100%;
}
.lp-spot-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  width: 100%;
  min-height: 4rem;
  padding: .85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--lp-line-strong) 80%, transparent);
  background: #f3f3f4;
  box-shadow: 0 12px 32px rgba(15, 15, 30, .14);
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-spot-card[hidden] {
  display: none !important;
}
.lp-spot-card:hover {
  border-color: color-mix(in srgb, var(--lp-ink) 28%, transparent);
  box-shadow: 0 12px 32px rgba(15, 15, 30, .16);
}
.lp-spot-card strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--lp-ink);
  letter-spacing: -0.01em;
}
.lp-spot-card span {
  font-size: .8rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--lp-ink) 58%, transparent);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Concave revolving wall — img.ly globe-band warp (natural tile sizes) */
.lp-hero-collage {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity .28s ease;
  mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
}
.lp-hero-collage.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.lp-hero-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 36% 30% at 50% 46%, color-mix(in srgb, var(--lp-bg) 58%, transparent) 0%, transparent 70%),
    linear-gradient(transparent 0%, transparent 88%, var(--lp-bg) 100%);
  pointer-events: none;
}
/* The band overshoots the hero vertically so warped rows never reveal an edge;
   the collage clips it. Tiles are positioned entirely by the matrix3d the warp
   engine writes, so they must anchor at the layer origin. */
.lp-globe-band {
  position: absolute;
  left: 0;
  right: 0;
  top: -10rem;
  bottom: -10rem;
  overflow: visible;
}
.lp-wlayer {
  position: absolute;
  inset: 0;
  transform-style: flat;
}
.lp-wtile {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  backface-visibility: hidden;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--lp-line-strong) 42%, transparent);
  background: color-mix(in srgb, var(--lp-panel) 92%, #c8c8d0);
  overflow: hidden;
  will-change: transform;
  transform: translate3d(-99999px, 0, 0);
}
.lp-wtile.is-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
/* Composed post card — header, media block, caption. Reads as real content at
   thumbnail size instead of an empty placeholder. */
.lp-wtile.is-post {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 9px;
  background: var(--lp-panel);
}
.lp-wtile.is-post .head {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
}
.lp-wtile.is-post .net {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}
.lp-wtile.is-post .net img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.lp-wtile.is-post .who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.lp-wtile.is-post .who i {
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: .22;
}
.lp-wtile.is-post .who i:nth-child(1) { width: 52%; }
.lp-wtile.is-post .who i:nth-child(2) { width: 32%; opacity: .13; }
.lp-wtile.is-post .media {
  flex: 1;
  min-height: 0;
  border-radius: 5px;
  background:
    radial-gradient(120% 100% at 18% 12%, color-mix(in srgb, var(--net, #7c3aed) 82%, transparent), transparent 68%),
    linear-gradient(140deg, color-mix(in srgb, var(--net, #7c3aed) 58%, transparent), color-mix(in srgb, var(--net, #7c3aed) 12%, transparent));
}
.lp-wtile.is-post .bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: none;
}
.lp-wtile.is-post .bars i {
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .18;
}
.lp-wtile.is-post .bars i:nth-child(1) { width: 88%; }
.lp-wtile.is-post .bars i:nth-child(2) { width: 56%; }

.net-instagram { --net: #dd2a7b; }
.net-x { --net: #4b4b55; }
.net-linkedin { --net: #0a66c2; }
.net-youtube { --net: #ff0000; }
.net-tiktok { --net: #25f4ee; }
.net-facebook { --net: #1877f2; }
.net-pinterest { --net: #e60023; }
.net-threads { --net: #6b6b78; }
.net-bluesky { --net: #0285ff; }
.net-discord { --net: #5865f2; }
.net-reddit { --net: #ff4500; }
.net-telegram { --net: #26a5e4; }
.net-mastodon { --net: #6364ff; }
.net-whatsapp { --net: #25d366; }
.net-twitch { --net: #9146ff; }
.net-slack { --net: #e01e5a; }
.net-medium { --net: #78788a; }
.net-dribbble { --net: #ea4c89; }

[data-theme="light"] .lp-wtile {
  border-color: rgba(15, 15, 35, .12);
  background: #eceaea;
}
[data-theme="light"] .lp-wtile.is-post .bars i { opacity: .14; }
[data-theme="light"] .lp[data-page="home"] .lp-nav {
  background: color-mix(in srgb, #fff 32%, transparent);
}
[data-theme="light"] .lp-hero-copy::before {
  background:
    radial-gradient(ellipse 60% 52% at 50% 48%, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .45) 55%, transparent 80%);
}
/* Light tiles are far brighter than the dark set, so the wall needs a much wider
   wash in this theme before black type reads cleanly over it. */
[data-theme="light"] .lp-hero-collage::after {
  background:
    radial-gradient(ellipse 58% 44% at 50% 50%, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 40%, rgba(255, 255, 255, .3) 72%, transparent 100%),
    linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, .5) 38%, rgba(255, 255, 255, .5) 64%, transparent 84%),
    linear-gradient(transparent 0%, transparent 90%, #fff 100%);
}
[data-theme="light"] .lp-wlayer {
  filter: saturate(.9) contrast(.94) brightness(1.04);
}
[data-theme="light"] .lp-hero.has-collage {
  --lp-scrim: #fff;
}
/* True black over the wall — the default slate tokens lose too much contrast
   against the light tiles showing through the scrims. */
/* !important is required: broad light-theme rules for `.sub` and `.lp-link-demo`
   already use it. */
[data-theme="light"] .lp-hero.has-collage .lp-brand-hero,
[data-theme="light"] .lp-hero.has-collage .lp-hero-line,
[data-theme="light"] .lp-hero.has-collage .lp-hero-line .mark-word,
[data-theme="light"] .lp-hero.has-collage .sub,
[data-theme="light"] .lp-hero.has-collage .lp-link-demo {
  color: #000 !important;
  -webkit-text-fill-color: #000;
}
[data-theme="light"] .lp-hero.has-collage .lp-brand-hero {
  background: none;
}
[data-theme="light"] .lp-spot-card {
  background: #f4f4f5;
  border-color: rgba(0, 0, 0, .08);
}

@media (max-width: 760px) {
  .lp-hero.has-collage {
    min-height: 100svh;
    padding-top: calc(var(--lp-nav-h, 4.25rem) + 1rem);
  }
  .lp-globe-band {
    top: -4rem;
    bottom: -4rem;
  }
  .lp-spotlight { margin-bottom: 1.25rem; }
  .lp-hero-stage-wrap { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-spot-tab.is-on::after { animation: none; width: 100%; }
}

/* ——— README product shot (from /readme-preview.html) ——— */
.lp-readme-shot-wrap {
  --rs-ink: #0B1220;
  --rs-muted: #475569;
  --rs-teal: #0D9488;
  --rs-teal-deep: #0F766E;
  --rs-mint: #5EEAD4;
  --rs-sun: #F59E0B;
  --rs-coral: #F43F5E;
  --rs-sky: #0EA5E9;
  --rs-violet: #7C3AED;
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 3.25rem;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(900px 500px at 8% -10%, rgba(94, 234, 212, 0.35), transparent 55%),
    radial-gradient(800px 480px at 92% 0%, rgba(14, 165, 233, 0.22), transparent 50%),
    radial-gradient(700px 420px at 70% 100%, rgba(244, 63, 94, 0.12), transparent 55%),
    linear-gradient(165deg, #ECFEFF 0%, #F8FAFC 42%, #EEF2FF 100%);
}
[data-theme="dark"] .lp-readme-shot-wrap {
  --rs-ink: #F8FAFC;
  --rs-muted: #A1A1AA;
  --rs-teal: #2DD4BF;
  --rs-teal-deep: #5EEAD4;
  --rs-mint: #5EEAD4;
  --rs-sun: #FBBF24;
  --rs-coral: #FB7185;
  --rs-sky: #38BDF8;
  --rs-violet: #A78BFA;
  /* True black band — no navy/slate wash in dark theme */
  background:
    radial-gradient(900px 500px at 8% -10%, rgba(94, 234, 212, 0.1), transparent 55%),
    radial-gradient(800px 480px at 92% 0%, rgba(167, 139, 250, 0.08), transparent 50%),
    radial-gradient(700px 420px at 70% 100%, rgba(244, 63, 94, 0.08), transparent 55%),
    radial-gradient(600px 400px at 10% 90%, rgba(245, 158, 11, 0.06), transparent 50%),
    #000000;
}
[data-theme="dark"] .lp-readme-shot {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 80px rgba(0, 0, 0, 0.55);
  color: var(--rs-ink);
}
[data-theme="dark"] .lp-rs-logo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 28px rgba(45, 212, 191, 0.2);
}
[data-theme="dark"] .lp-rs-brand h2 {
  background: linear-gradient(120deg, #5EEAD4, #38BDF8 55%, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="dark"] .lp-rs-badge.is-oss {
  background: #111111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] .lp-rs-lead { color: #E4E4E7; }
[data-theme="dark"] .lp-rs-lead strong { color: #5EEAD4; }
[data-theme="dark"] .lp-rs-step {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .lp-rs-card,
[data-theme="dark"] .lp-rs-stack > div,
[data-theme="dark"] .lp-rs-prices span {
  background: #0A0A0A;
  border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .lp-rs-card h3 { color: #A1A1AA; }
[data-theme="dark"] .lp-rs-feat-row strong,
[data-theme="dark"] .lp-rs-stack strong,
[data-theme="dark"] .lp-rs-prices span { color: #F8FAFC; }
[data-theme="dark"] .lp-rs-feat-row p,
[data-theme="dark"] .lp-rs-stack span { color: #A1A1AA; }
[data-theme="dark"] .lp-rs-prices b,
[data-theme="dark"] .lp-rs-cta { color: #5EEAD4; }
[data-theme="dark"] .lp-rs-channels span[style*="background:#000"],
[data-theme="dark"] .lp-rs-channels span[style*="background:#111"] {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.lp-readme-shot {
  width: min(1100px, 100%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 80px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  color: var(--rs-ink);
  font-family: Outfit, var(--lp-body);
}
.lp-readme-shot::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--rs-mint), var(--rs-teal), var(--rs-sky), var(--rs-violet), var(--rs-coral), var(--rs-sun));
}
.lp-rs-top {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}
.lp-rs-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.28);
  background: #12060A;
}
.lp-rs-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.lp-rs-brand h2 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  background: linear-gradient(120deg, var(--rs-teal-deep), var(--rs-sky) 55%, var(--rs-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-rs-brand p {
  margin: 0.4rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rs-muted);
}
.lp-rs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.1rem 0 1.5rem;
}
.lp-rs-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.lp-rs-badge.is-go { background: #00ADD8; }
.lp-rs-badge.is-pg { background: #4169E1; }
.lp-rs-badge.is-redis { background: #DC382D; }
.lp-rs-badge.is-ai { background: linear-gradient(120deg, var(--rs-teal), var(--rs-sky)); }
.lp-rs-badge.is-oss { background: #0F172A; }
.lp-rs-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
  font-weight: 500;
  color: #1E293B;
  max-width: 46rem;
  margin: 0 0 1.6rem;
}
.lp-rs-lead strong { color: var(--rs-teal-deep); font-weight: 800; }
.lp-rs-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 1.6rem;
}
.lp-rs-step {
  border-radius: 16px;
  padding: 14px 12px;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.lp-rs-step span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.92;
}
.lp-rs-step.is-1 { background: linear-gradient(145deg, #14B8A6, #0D9488); }
.lp-rs-step.is-2 { background: linear-gradient(145deg, #38BDF8, #0284C7); }
.lp-rs-step.is-3 { background: linear-gradient(145deg, #A78BFA, #7C3AED); }
.lp-rs-step.is-4 { background: linear-gradient(145deg, #FB7185, #E11D48); }
.lp-rs-step.is-5 { background: linear-gradient(145deg, #FBBF24, #D97706); }
.lp-rs-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-bottom: 1.4rem;
}
.lp-rs-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.lp-rs-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rs-muted);
  margin: 0 0 12px;
}
.lp-rs-feat { display: grid; gap: 10px; }
.lp-rs-feat-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}
.lp-rs-dot { width: 10px; height: 10px; border-radius: 99px; margin-top: 5px; display: block; }
.lp-rs-feat-row strong { display: block; font-size: 0.95rem; color: var(--rs-ink); }
.lp-rs-feat-row p { font-size: 0.82rem; color: var(--rs-muted); margin: 2px 0 0; line-height: 1.35; }
.lp-rs-channels { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-rs-channels span {
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.lp-rs-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 1.25rem;
}
.lp-rs-stack > div {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 12px;
  text-align: center;
}
.lp-rs-stack strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--rs-ink); }
.lp-rs-stack span { font-size: 0.72rem; color: var(--rs-muted); font-weight: 600; }
.lp-rs-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.lp-rs-prices { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-rs-prices span {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rs-ink);
}
.lp-rs-prices b { color: var(--rs-teal-deep); }
.lp-rs-cta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rs-teal-deep);
}
@media (max-width: 900px) {
  .lp-rs-flow,
  .lp-rs-stack,
  .lp-rs-grid { grid-template-columns: 1fr 1fr; }
  .lp-rs-flow .lp-rs-step:last-child { grid-column: span 2; }
}
@media (max-width: 560px) {
  .lp-rs-flow { grid-template-columns: 1fr; }
  .lp-rs-flow .lp-rs-step:last-child { grid-column: auto; }
  .lp-rs-stack { grid-template-columns: 1fr 1fr; }
  .lp-rs-logo { width: 56px; height: 56px; border-radius: 14px; }
}
