/* ── Wordmark logo badge — white pill behind it since the logo glyph itself
   is solid black and needs contrast against this app's dark theme ── */
.brand-logo-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 3px 8px;
  line-height: 0;
}

.brand-logo-img {
  height: 22px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Larger on the public landing page nav */
.nav-logo .brand-logo-img {
  height: 30px;
  max-width: 220px;
}

/* ── Landing Page Theme Variables ── */
:root, [data-theme="dark"] {
  color-scheme: dark;
  --lp-bg: #0d0d0d;
  --lp-bg-2: #141414;
  --lp-bg-3: #1a1a1a;
  --lp-bg-card: #161616;
  --lp-border: rgba(255,255,255,0.07);
  --lp-border-hover: rgba(255,255,255,0.14);
  --lp-accent: #7c6cfa;
  --lp-accent-dim: rgba(124,108,250,0.12);
  --lp-accent-glow: rgba(124,108,250,0.25);
  --lp-cta: #10B981;
  --lp-cta-hover: #0ea572;
  --lp-text: #f0ede8;
  --lp-text-2: rgba(240,237,232,0.55);
  --lp-text-3: rgba(240,237,232,0.32);
  --lp-heading: 'Space Grotesk', system-ui, sans-serif;
  --lp-sans: 'DM Sans', system-ui, sans-serif;
  --lp-radius: 14px;
  --lp-radius-sm: 8px;
  --lp-glass: rgba(13,13,13,0.82);
  --lp-glass-card: rgba(22,22,22,0.85);
  --lp-shadow: 0 8px 30px rgba(0,0,0,0.3);
  --lp-nav-bg: rgba(13,13,13,0.82);
}
[data-theme="light"] {
  color-scheme: light;
  color-scheme: light;
  --lp-bg: #f8f6f3;
  --lp-bg-2: #f0ede8;
  --lp-bg-3: #e7e4df;
  --lp-bg-card: #ffffff;
  --lp-border: rgba(0,0,0,0.08);
  --lp-border-hover: rgba(0,0,0,0.16);
  --lp-accent: #5b4cdb;
  --lp-accent-dim: rgba(91,76,219,0.10);
  --lp-accent-glow: rgba(91,76,219,0.18);
  --lp-cta: #059669;
  --lp-cta-hover: #047857;
  --lp-text: #1c1917;
  --lp-text-2: rgba(28,25,23,0.60);
  --lp-text-3: rgba(28,25,23,0.35);
  --lp-heading: 'Space Grotesk', system-ui, sans-serif;
  --lp-sans: 'DM Sans', system-ui, sans-serif;
  --lp-radius: 14px;
  --lp-radius-sm: 8px;
  --lp-glass: rgba(255,255,255,0.82);
  --lp-glass-card: rgba(255,255,255,0.88);
  --lp-shadow: 0 8px 30px rgba(0,0,0,0.06);
  --lp-nav-bg: rgba(248,246,243,0.85);
}

/* System preference fallback (if JS hasn't set data-theme) */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --lp-bg: #f8f6f3;
    --lp-bg-2: #f0ede8;
    --lp-bg-3: #e7e4df;
    --lp-bg-card: #ffffff;
    --lp-border: rgba(0,0,0,0.08);
    --lp-border-hover: rgba(0,0,0,0.16);
    --lp-accent: #5b4cdb;
    --lp-accent-dim: rgba(91,76,219,0.10);
    --lp-accent-glow: rgba(91,76,219,0.18);
    --lp-text: #1c1917;
    --lp-text-2: rgba(28,25,23,0.60);
    --lp-text-3: rgba(28,25,23,0.35);
    --lp-glass: rgba(255,255,255,0.82);
    --lp-glass-card: rgba(255,255,255,0.88);
    --lp-shadow: 0 8px 30px rgba(0,0,0,0.06);
    --lp-nav-bg: rgba(248,246,243,0.85);
  }
}
  @media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --lp-bg: #0d0d0d;
    --lp-bg-2: #141414;
    --lp-bg-3: #1a1a1a;
    --lp-bg-card: #161616;
    --lp-border: rgba(255,255,255,0.07);
    --lp-border-hover: rgba(255,255,255,0.14);
    --lp-accent: #7c6cfa;
    --lp-accent-dim: rgba(124,108,250,0.12);
    --lp-accent-glow: rgba(124,108,250,0.25);
    --lp-text: #f0ede8;
    --lp-text-2: rgba(240,237,232,0.55);
    --lp-text-3: rgba(240,237,232,0.32);
    --lp-glass: rgba(13,13,13,0.82);
    --lp-glass-card: rgba(22,22,22,0.85);
    --lp-shadow: 0 8px 30px rgba(0,0,0,0.3);
    --lp-nav-bg: rgba(13,13,13,0.82);
  }
}

/* ── Kill tap highlight ── */
* { -webkit-tap-highlight-color: transparent; }
a, button, summary, [role="button"] { touch-action: manipulation; }

/* ── Base ── */
body.landing-page {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}
body.landing-page a { color: inherit; text-decoration: none; }
body.landing-page img { display: block; width: auto; height: 30px; }
body.landing-page,
html { background-color: var(--lp-bg) !important; color: var(--lp-text) !important; }
body.landing-page section { position: relative; }

/* ── Nav (full-width top bar) ── */
.lp-pill-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 8rem;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}
.lp-pill-nav.lp-nav-scrolled {
  background: color-mix(in srgb, var(--lp-bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="light"] .lp-pill-nav.lp-nav-scrolled {
  border-bottom-color: rgba(0,0,0,0.08);
}
.lp-pill-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--lp-heading); font-size: 1rem; letter-spacing: 0.01em;
  color: var(--lp-text); flex-shrink: 0;
}
.lp-pill-brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 8px var(--lp-accent-glow);
}
.lp-pill-brand-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 3px 0;
  line-height: 0;
}
.lp-pill-brand-img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Dark mode logo swap */
html[data-theme="dark"] .brand-logo-badge,
html[data-theme="dark"] .lp-pill-brand-badge {
  background: transparent;
}
html[data-theme="dark"] .brand-logo-img,
html[data-theme="dark"] .lp-pill-brand-img {
  content: url('../../images/new-logo-dark.png');
}

/* Center links */
.lp-pill-links {
  display: flex; align-items: center; gap: 2rem; margin-left: 100px;
}
.lp-pill-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--lp-text-2);
  transition: color 0.2s; white-space: nowrap;
  text-decoration: none;
}
.lp-pill-links a:hover { color: var(--lp-text); }
.lp-pill-links a:active,
.lp-footer-links a:active {
  opacity: 0.6;
}

/* Hiring badge */
.lp-hiring-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.35em 0.55em;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--lp-sans);
  line-height: 1;
  color: #fff;
  background: #22c55e;
  border-radius: 9999px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* Right actions */
.lp-pill-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}

/* Nav buttons */
.cr-nav-signin {
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-size: 0.88rem; font-family: var(--lp-sans); font-weight: 500;
  background: transparent; color: var(--lp-text-2);
  border: 1px solid var(--lp-border);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cr-nav-signin:hover { border-color: var(--lp-border-hover); color: var(--lp-text); }
.cr-nav-cta {
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-size: 0.88rem; font-family: var(--lp-sans); font-weight: 500;
  background: var(--lp-accent); color: #fff !important;
  border: none; cursor: pointer;
  transition: opacity 0.2s; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center;
}
.cr-nav-cta:hover { opacity: 0.88; }
.cr-nav-cta:active { transform: scale(0.97); }

.lp-nav-burger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--lp-border); border-radius: 8px; color: var(--lp-text); cursor: pointer; }
.lp-mobile-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.35);
}
.lp-mobile-backdrop.is-open { display: block; }
.lp-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 200; flex-direction: column; padding: calc(3.75rem + env(safe-area-inset-top)) 1rem 1rem; background: color-mix(in srgb, var(--lp-bg) 95%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.lp-mobile-close { position: absolute; top: calc(0.6rem + env(safe-area-inset-top)); right: 1rem; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--lp-border); border-radius: 8px; color: var(--lp-text); cursor: pointer; }
.lp-mobile-close:hover { border-color: var(--lp-border-hover); color: var(--lp-text-2); background: var(--lp-accent-dim); }
[data-theme="light"] .lp-mobile-menu { border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .lp-mobile-backdrop { background: rgba(0,0,0,0.2); }
.lp-mobile-menu a { padding: 0.85rem 0.25rem; font-size: 1rem; color: var(--lp-text-2); border-bottom: 1px solid var(--lp-border); text-decoration: none; }
.lp-mobile-menu a:last-child { border-bottom: none; }
.lp-mobile-menu .cr-nav-signin,
.lp-mobile-menu .cr-nav-cta {
  width: 100%; justify-content: center; margin-top: 0.5rem;
  text-align: center; padding: 0.7rem;
}
.lp-mobile-menu .cr-nav-signin {
  margin-top: 1rem;
}

.lp-pill-desktop { display: flex; align-items: center; gap: 0.75rem; }

@media (max-width: 640px) {
  .lp-nav-burger { display: flex; }
  .lp-mobile-menu:not([hidden]) { display: flex; }
  .lp-pill-desktop { display: none; }
  .lp-pill-nav {
    padding: 0.6rem 1rem;
    padding-top: calc(0.6rem + env(safe-area-inset-top));
  }
  .lp-pill-links { display: none; }
}

/* Hero-zone overrides — about/careers pages only.
   Nav sits over the dark purple cover before scrolling.
   Both themes: hero bg is always dark, so force white text regardless. */
.lp-pill-nav.lp-nav-over-hero .lp-pill-links a {
  color: rgba(255,255,255,0.75);
}
.lp-pill-nav.lp-nav-over-hero .lp-pill-links a:hover {
  color: #fff;
}
.lp-pill-nav.lp-nav-over-hero .cr-nav-signin {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.22);
}
.lp-pill-nav.lp-nav-over-hero .cr-nav-signin:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.lp-pill-nav.lp-nav-over-hero .cr-nav-cta {
  background: var(--lp-accent);
}
.lp-pill-nav.lp-nav-over-hero .lp-theme-btn {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.22);
}
.lp-pill-nav.lp-nav-over-hero .lp-theme-btn:hover {
  color: #fff;
}
.lp-pill-nav.lp-nav-over-hero .lp-nav-burger {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
[data-theme="light"] .lp-pill-nav.lp-nav-over-hero .lp-pill-brand-img {
  content: url('../../images/new-logo-dark.png');
}

/* Theme toggle */
.lp-theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: transparent;
  color: var(--lp-text-2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lp-theme-btn:hover {
  border-color: var(--lp-border-hover);
  color: var(--lp-text);
  background: var(--lp-accent-dim);
}
.lp-theme-btn svg { width: 16px; height: 16px; }
.lp-theme-btn .lp-sun { display: none; }
.lp-theme-btn .lp-moon { display: block; }
[data-theme="light"] .lp-theme-btn .lp-sun { display: block; }
[data-theme="light"] .lp-theme-btn .lp-moon { display: none; }

/* ─── Hero background layer: drifting orb ────── */
.lp-hero-section {
  position: relative;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 130% at 50% -5%,
    rgba(124,108,250,0.40) 0%,
    rgba(124,108,250,0.14) 25%,
    rgba(124,108,250,0.06) 40%,
    transparent 55%);
}
[data-theme="light"] .lp-hero-bg {
  background: radial-gradient(ellipse 100% 130% at 50% -5%,
    rgba(91,76,219,0.20) 0%,
    rgba(91,76,219,0.08) 25%,
    rgba(91,76,219,0.03) 40%,
    transparent 55%);
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .lp-hero-bg {
    background: radial-gradient(ellipse 100% 130% at 50% -5%,
      rgba(91,76,219,0.20) 0%,
      rgba(91,76,219,0.08) 25%,
      rgba(91,76,219,0.03) 40%,
      transparent 55%);
  }
}

.lp-hero-section > .lp-hero {
  position: relative;
  z-index: 1;
}

.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.lp-hero-orb-1 {
  top: -22%;
  left: 50%;
  margin-left: -260px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 108, 250, 0.55) 0%,
                                       rgba(124, 108, 250, 0.18) 45%,
                                       transparent 75%);
  animation: lp-orb-drift-1 24s ease-in-out infinite;
}

@keyframes lp-orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(-40px, 30px) scale(1.05); }
  50%      { transform: translate(20px, 60px) scale(0.96); }
  75%      { transform: translate(50px, 10px) scale(1.02); }
}

@media (max-width: 768px) {
  .lp-hero-orb-1 { width: 340px; height: 340px; top: -12%; margin-left: -170px; }
}

/* ── Hero (centered single-column) ── */
.lp-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 8rem 2rem 8rem;
  max-width: 820px;
  margin: 0 auto;
}
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lp-accent); margin-bottom: 1.5rem;
}
.lp-hero-eyebrow span {
  font-size: 0.7rem;
}
.lp-hero-headline {
  font-family: var(--lp-heading);
  font-size: clamp(2.5rem,5vw,4.25rem);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--lp-text); margin-bottom: 1.25rem;
}
.lp-hero-accent {
  font-style: italic;
  color: var(--lp-accent);
}
.lp-hero-sub {
  font-size: 1.05rem; color: var(--lp-text-2);
  line-height: 1.7; max-width: 560px; margin-bottom: 2rem;
}
.lp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-btn-hero {
  padding: 0.75rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-family: var(--lp-sans); font-weight: 500;
  background: var(--lp-accent); color: #fff !important; border: none;
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-btn-hero:hover { opacity: 0.88; transform: translateY(-1px); }
.lp-btn-hero-outline {
  padding: 0.75rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-family: var(--lp-sans);
  color: var(--lp-text-2); background: transparent;
  border: 1px solid var(--lp-border);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.1s ease;
}
.lp-btn-hero-outline:hover { border-color: var(--lp-border-hover); color: var(--lp-text); }
.lp-btn-hero:active,
.lp-btn-hero-outline:active {
  transform: scale(0.97);
}
.lp-hero-fineprint {
  margin-top: 0.75rem;
  font-size: 0.78rem; color: var(--lp-text-3);
  letter-spacing: 0.03em;
}

/* ── Hero visual frame ── */
.lp-hero-visual {
  margin-top: 3rem;
  width: 100%;
  max-width: 700px;
}
.lp-hero-frame {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  transition: box-shadow 0.3s;
}
.lp-hero-frame:hover {
  box-shadow: 0 8px 40px rgba(124,108,250,0.15);
}
.lp-hero-frame-inner {
  display: flex;
  flex-direction: column;
}
.lp-hero-frame-chrome {
  background: var(--lp-bg-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--lp-border);
}
.lp-chrome-dots {
  display: flex;
  gap: 6px;
}
.lp-chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.lp-chrome-dot:nth-child(1) { background: #ef4444; }
.lp-chrome-dot:nth-child(2) { background: #f59e0b; }
.lp-chrome-dot:nth-child(3) { background: #10b981; }
.lp-hero-frame-screen {
  aspect-ratio: 16/10;
  background: var(--lp-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lp-video-playlist {
  width: 100%;
  height: 100%;
  position: relative;
}
.lp-playlist-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lp-playlist-video.lp-playlist-active {
  opacity: 1;
}

@media (max-width: 640px) {
  .lp-hero {
    padding: 6rem 1.25rem 3rem;
  }
  .lp-hero-sub {
    font-size: 0.95rem;
  }
  .lp-hero-frame-screen {
    aspect-ratio: 4/3;
  }
}

/* ── Section layout ── */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.lp-section-pad { padding: 6rem 0; }

/* ── Proof/testimonial ── */
/* ── University logos + testimonial ── */
.lp-university-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1.25rem;
  text-align: center;
}
.lp-university-title {
  font-family: var(--lp-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-text);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}


.lp-logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.lp-logo-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: lpLogoScroll 40s linear infinite;
  will-change: transform;
}
.lp-logo-slide {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-right: 28px;
  flex-shrink: 0;
}
body.landing-page .lp-logo-img {
  height: 10px;
  width: 10px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s;
}
body.landing-page .lp-logo-img:hover {
  opacity: 1;
}
body.landing-page .lp-logo-slide .lp-logo-img:nth-child(3),
body.landing-page .lp-logo-slide .lp-logo-img:nth-child(5),
body.landing-page .lp-logo-slide .lp-logo-img:nth-child(8) {
  width: auto;
}
body.landing-page .lp-logo-slide .lp-logo-img:nth-child(7) {
  width: 64px;
  height: auto;
}

@media (min-width: 961px) {
  body.landing-page .lp-logo-img {
    height: 44px;
    width: 44px;
  }
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(3),
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(5),
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(8) {
    width: auto;
  }
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(7) {
    width: 84px;
    height: auto;
  }
  .lp-logo-slide {
    margin-top: 20px;
    gap: 5rem;
  }
}

.lp-university-testimonial {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--lp-border);
}
.lp-proof-quote {
  font-family: var(--lp-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.45;
  color: var(--lp-text);
  margin-bottom: 1.5rem;
}
.lp-proof-attr {
  font-size: 0.85rem;
  color: var(--lp-text-3);
  letter-spacing: 0.04em;
}
.lp-proof-attr strong {
  color: var(--lp-text-2);
  font-weight: 500;
}

@keyframes lpLogoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section labels ── */
.lp-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; margin-top: 1rem;
  text-transform: uppercase; color: var(--lp-accent); margin-bottom: 1rem;
  transition: color 0.2s;
}
.lp-section-label::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--lp-accent);
  transition: background 0.2s, width 0.2s;
}
.lp-section-pad:hover .lp-section-label {
  color: var(--lp-accent);
  filter: brightness(1.2);
}
.lp-section-pad:hover .lp-section-label::before {
  width: 28px;
}
.lp-section-headline {
  font-family: var(--lp-heading);
  font-size: clamp(2rem,3.5vw,2.75rem);
  line-height: 1.15; color: var(--lp-text); margin-bottom: 1.2rem;
  overflow-wrap: break-word;
}
.lp-section-sub {
  font-size: 1rem; color: var(--lp-text-2);
  max-width: 520px; line-height: 1.7;
}

/* ── How it works (cr-* refactor) ── */
.cr-section-pad {
  border-top: 1px solid var(--lp-border);
  padding: 6rem 2rem 0rem;
}
.cr-section-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cr-headline {
  font-family: var(--lp-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--lp-text);
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
}
.cr-subhead {
  font-size: 1rem;
  color: var(--lp-text-2);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.cr-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lp-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 0.75rem;
}
.cr-section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lp-accent);
  flex-shrink: 0;
}
.cr-panel {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cr-panel--reverse {
  flex-direction: row-reverse;
}
.cr-panel-copy {
  flex: 1;
  min-width: 0;
}
.cr-panel-copy h3 {
  font-family: var(--lp-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.cr-panel-copy > p {
  font-size: 0.95rem;
  color: var(--lp-text-2);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.cr-panel-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.cr-panel-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--lp-text-2);
  line-height: 1.5;
}
.cr-panel-bullet i {
  font-size: 1.2rem;
  color: var(--lp-accent);
  flex-shrink: 0;
}
.cr-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: none;
  background: var(--lp-accent);
  color: #fff;
  font-family: var(--lp-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.cr-panel-cta:hover {
  opacity: 0.88;
}
.cr-panel-cta:active {
  transform: scale(0.97);
}
.cr-panel-visual {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  color: var(--lp-accent);
}
.cr-panel-visual svg {
  width: 56px;
  height: 56px;
}

/* ── How it works ── */
.lp-how {
  padding-top: 0;
}
.lp-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 3.5rem auto 0;
}
.lp-how-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
}
.lp-how-num {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--lp-bg-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-how-step:hover .lp-how-num {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 4px var(--lp-accent-dim);
}
.lp-how-num-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-text);
  opacity: 1;
  transition: opacity 0.25s;
}
.lp-how-num i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--lp-accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.lp-how-step:hover .lp-how-num-text {
  opacity: 0;
}
.lp-how-step:hover .lp-how-num i {
  opacity: 1;
}
.lp-how-title {
  font-family: var(--lp-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.lp-how-desc {
  font-size: 0.9rem;
  color: var(--lp-text-2);
  line-height: 1.6;
  margin: 0;
}
.lp-how-connector {
  width: 64px;
  height: 1px;
  background: var(--lp-border);
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}
.lp-how-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0.35;
}

/* ── Pack grid ── */
.lp-pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 4rem;
  align-items: stretch;
}
.lp-pack-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  opacity: 0; transform: translateY(24px);
  will-change: transform, opacity;
  cursor: pointer;
}
.lp-pack-item:hover {
  border-color: var(--lp-border-hover);
  box-shadow: var(--lp-shadow);
}
.lp-pack-section--visible .lp-pack-item {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1),
              transform 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s, box-shadow 0.25s;
}
.lp-pack-section--visible .lp-pack-item:nth-child(1) { transition-delay: 0ms; }
.lp-pack-section--visible .lp-pack-item:nth-child(2) { transition-delay: 80ms; }
.lp-pack-section--visible .lp-pack-item:nth-child(3) { transition-delay: 160ms; }
.lp-pack-section--visible .lp-pack-item:nth-child(4) { transition-delay: 240ms; }
.lp-pack-section--visible .lp-pack-item:nth-child(5) { transition-delay: 320ms; }
.lp-pack-section--visible .lp-pack-item:nth-child(6) { transition-delay: 400ms; }
.lp-pack-icon {
  width: 40px; height: 40px; border-radius: var(--lp-radius-sm);
  background: var(--lp-accent-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.lp-pack-icon i { font-size: 18px; color: var(--lp-accent); }
.lp-pack-item h3 { font-size: 0.95rem; font-weight: 500; color: var(--lp-text); margin-bottom: 0.5rem; }
.lp-pack-item p { font-size: 0.83rem; color: var(--lp-text-2); line-height: 1.65; overflow-wrap: break-word; }

/* ── AI grid ── */
.lp-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px; background: transparent;
  border-radius: var(--lp-radius); overflow: visible; margin-top: 4rem;
  align-items: stretch;
}
.lp-ai-card {
  background: var(--lp-bg-card); padding: 2.25rem 2rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  min-height: 160px;
  height: 100%;
  cursor: pointer;
}
.lp-ai-card:hover { background: var(--lp-bg-3); border-color: var(--lp-border-hover); box-shadow: var(--lp-shadow); }
.lp-ai-card:hover .lp-ai-icon i { color: var(--lp-accent); filter: brightness(1.2); }
.lp-ai-card-header { display: flex; align-items: center; gap: 12px; }
.lp-ai-icon i { font-size: 16px; color: var(--lp-accent); transition: color 0.2s, filter 0.2s; }
.lp-ai-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--lp-text); }
.lp-ai-card p { font-size: 0.85rem; color: var(--lp-text-2); line-height: 1.7; overflow-wrap: break-word; }

/* ── Live section ── */
.lp-live-section {
  background: var(--lp-bg-2);
  border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border);
}
.lp-live-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 0px 80px; }


.lp-live-grid:hover .lp-live-feature i {
  filter: brightness(1.2);
}

.lp-live-grid:hover .lp-live-copy .lp-section-headline {
  color: var(--lp-text);
}
.lp-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--lp-accent-dim); border: 1px solid var(--lp-accent-glow);
  margin-bottom: 1rem;
}
.lp-live-badge i { font-size: 12px; color: var(--lp-accent); }
.lp-live-headline {
  font-family: var(--lp-heading);
  font-size: clamp(2rem,3.5vw,2.75rem);
  line-height: 1.15; color: var(--lp-text); margin-bottom: 1.2rem;
  overflow-wrap: break-word;
}
.lp-live-headline em { font-style: italic; color: var(--lp-accent); }
.lp-live-sub { font-size: 1rem; color: var(--lp-text-2); line-height: 1.7; margin-bottom: 2rem; }
.lp-live-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.lp-live-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--lp-text); }
.lp-live-feature i { font-size: 15px; color: var(--lp-accent); flex-shrink: 0; transition: color 0.2s, filter 0.2s; }
.lp-live-preview { border-radius: 18px; overflow: hidden; transition: box-shadow 0.4s, transform 0.4s ease; max-width: 520px; margin-inline: auto; }
.lp-live-preview-chrome { background: var(--lp-bg-3); padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.lp-live-preview-body { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
body.landing-page .lp-demo-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ── Ken Burns animation for feature images ── */
@keyframes kenburns-left {
  0%   { transform: scale(1);    transform-origin: 80% 50%; }
  100% { transform: scale(1.08); transform-origin: 20% 50%; }
}
@keyframes kenburns-center {
  0%   { transform: scale(1);    transform-origin: 50% 50%; }
  100% { transform: scale(1.08); transform-origin: 50% 50%; }
}
@keyframes kenburns-right {
  0%   { transform: scale(1);    transform-origin: 20% 50%; }
  100% { transform: scale(1.08); transform-origin: 80% 50%; }
}

/* ── Study Formats Grid ── */
.lp-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.lp-format-wide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.lp-format-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  text-decoration: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.lp-format-card:hover {
  box-shadow: var(--lp-shadow);
  border-color: var(--lp-border-hover);
}
.lp-format-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.lp-format-title {
  display: block;
  font-family: var(--lp-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  transition: color 0.2s;
}
.lp-format-card:hover .lp-format-title { color: var(--lp-accent); }
.lp-format-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--lp-text-2);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .lp-format-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lp-format-grid,
  .lp-format-wide-grid { grid-template-columns: 1fr; }
  .lp-format-card { padding: 1rem; }
}

/* ── FAQ ── */
.cr-faq-list {
  max-width: 48rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cr-faq-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.cr-faq-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  user-select: none;
}
.cr-faq-q {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lp-text);
  padding-right: 1.5rem;
}
.cr-faq-chevron {
  flex-shrink: 0;
  color: var(--lp-text-3);
  transition: transform 0.2s ease;
}
.cr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
}
.cr-faq-answer p {
  font-size: 0.875rem;
  color: var(--lp-text-2);
  line-height: 1.75;
  margin: 0;
}
.cr-faq-open .cr-faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ── CTA section ── */
.lp-cta-section {
  padding: 7rem 4rem;
  text-align: center;
  border-top: 1px solid var(--lp-border);
}
.lp-cta-inner { max-width: 640px; margin: 0 auto; }
.lp-cta-section h2 { font-family: var(--lp-heading); font-size: clamp(2rem,3.5vw,2.75rem); line-height: 1.15; color: var(--lp-text); margin-bottom: 1rem; }
.lp-cta-section p { font-size: 1rem; color: var(--lp-text-2); margin-bottom: 2.25rem; }
.lp-btn-cta { padding: 0.85rem 2.5rem; border-radius: 50px; font-size: 1rem; font-family: var(--lp-sans); font-weight: 500; background: var(--lp-accent); color: #fff; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.lp-btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }
.lp-btn-cta:active { transform: scale(0.97); }
.lp-cta-note { margin-top: 2rem; font-size: 0.78rem; color: var(--lp-text-3); }

/* ── Footer ── */
.lp-footer { border-top: 1px solid var(--lp-border); background: var(--lp-bg-2); }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem 1.5rem; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.lp-footer-brand { font-family: var(--lp-heading); font-size: 1rem; letter-spacing: 0.04em; color: var(--lp-text-1); margin-bottom: 0.5rem; }
.lp-footer-desc { font-size: 0.82rem; color: var(--lp-text-3); line-height: 1.5; max-width: 28ch; }
.lp-footer-heading { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lp-text-3); margin-bottom: 0.75rem; }
.lp-footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.lp-footer-col a { font-size: 0.82rem; color: var(--lp-text-3); text-decoration: none; }
.lp-footer-col a:hover { color: var(--lp-accent); }
.lp-footer-bottom { border-top: 1px solid var(--lp-border); margin-top: 2rem; padding-top: 1.25rem; text-align: center; }
.lp-footer-bottom p { font-size: 0.75rem; color: var(--lp-text-3); }

/* ── Keyboard focus styles ── */
.lp-pack-item:focus-visible,
.lp-ai-card:focus-visible {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px var(--lp-accent-dim), var(--lp-shadow);
}

/* ── Hero entrance animation initial state ── */
.lp-hero .lp-hero-headline,
.lp-hero .lp-hero-sub,
.lp-hero .lp-hero-cta-row,
.lp-hero .lp-hero-fineprint,
.lp-hero .lp-hero-visual {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* ── Typewriter hero text ── */
.lp-typewriter { white-space: pre; }
.lp-typewriter-cursor { display: inline; color: var(--lp-accent); animation: cursor-blink 0.7s step-end infinite; font-weight: 300; font-style: normal; margin-left: 1px; }
@keyframes cursor-blink { 50% { opacity: 0; } }

/* ── Responsive ── */
@media (max-width: 960px) {
  .lp-hero { padding: 6.5rem 1.5rem 3rem; }
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-university-title { font-size: 1.2rem; }
  .lp-hero-visual { max-width: 500px; margin: 0 auto; }
  /* ── Mobile: panel section ─────────────────── */
  .cr-panel {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .cr-panel--reverse {
    flex-direction: column;
  }
  .cr-panel-bullets {
    align-items: center;
  }
  .cr-panel-bullet {
    text-align: left;
  }
  .cr-panel-visual {
    width: 120px;
    height: 120px;
    order: -1;
  }

  .lp-pack-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .lp-ai-grid { grid-template-columns: 1fr; }
  .lp-live-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0px; }
  .lp-container { padding: 1rem 2rem; }
  .lp-university-inner { padding: 2rem 1.5rem 1.5rem; }
  .lp-cta-section { padding: 5rem 2rem; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .lp-footer-desc { max-width: none; }
  .lp-footer-inner { padding: 2rem 1.5rem 1rem; }
  .lp-footer-bottom { margin-top: 1.5rem; }
  .lp-live-visual { order: 1; }
  .lp-live-copy { order: 2; }
  .lp-how-steps {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .lp-how-connector { display: none; }
  .lp-how-step { max-width: 320px; }
  body.landing-page .lp-demo-img { margin-top: 3rem; }

}
@media (max-width: 600px) {
  .lp-pack-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  body.landing-page .lp-logo-img { height: 56px; width: 56px; }
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(3),
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(5),
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(8) { width: auto; }
  body.landing-page .lp-logo-slide .lp-logo-img:nth-child(7) { width: 56px; height: auto; }
  .lp-logo-slide { gap: 2rem; }
  .lp-logo-track { animation-duration: 40s; }
}

/* ── Scroll-triggered reveal system ── */
.lp-reveal-ready .lp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
@media (min-width: 769px) {
  .lp-reveal-ready .lp-reveal--left  { transform: translateX(-36px); }
  .lp-reveal-ready .lp-reveal--right { transform: translateX(36px); }
  .lp-live-preview:hover {
    transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
  }
}
.lp-reveal-ready .lp-reveal.is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.lp-reveal-ready .lp-reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.lp-reveal-ready .lp-reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.lp-reveal-ready .lp-reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.lp-reveal-ready .lp-reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }
.lp-reveal-ready .lp-reveal[data-reveal-delay="5"] { transition-delay: 0.5s; }
body { overflow-x: clip; }

/* ── Pricing section ────────────────────────────────────────────── */
.lp-pricing-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--lp-text-2);
}
.lp-pricing-footnote a {
  color: var(--lp-text-2);
  text-decoration: none;
}
.lp-pricing-footnote a:hover {
  color: var(--lp-text);
}
.cr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.cr-pricing-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease;
}
.cr-pricing-card:hover {
  border-color: var(--lp-accent-dim);
}
.cr-pricing-pop {
  border: 2px solid var(--lp-accent);
  padding: calc(2rem - 1px) calc(1.5rem - 1px) calc(1.5rem - 1px);
}
.cr-pricing-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.cr-pricing-name {
  font-family: var(--lp-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.cr-pricing-desc {
  font-size: 0.85rem;
  color: var(--lp-text-2);
  margin-bottom: 18px;
}
.cr-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--lp-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cr-pricing-amount .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text-2);
}
.cr-pricing-amount .period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-text-2);
}
.cr-pricing-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cr-pricing-feats li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--lp-text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.cr-pricing-feats li .ti {
  color: var(--lp-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.cr-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  margin-top: 1rem;
}
.cr-pricing-btn:active {
  transform: scale(0.97);
}
.cr-pricing-btn--outline {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border-hover);
}
.cr-pricing-btn--outline:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
}
.cr-pricing-btn--primary {
  background: var(--lp-accent);
  color: #fff;
  border: none;
}
.cr-pricing-btn--primary:hover {
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .cr-pricing-grid {
    grid-template-columns: 1fr;
  }
  .cr-pricing-pop {
    order: -1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   LANDING ENHANCEMENTS — particles · stats counters · demo · back-to-top · ripple
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero particles canvas */
.lp-hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Stats counter strip */
.lp-stats-section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg-2);
}
.lp-stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.lp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.lp-stat-num {
  font-family: var(--lp-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--lp-accent);
  line-height: 1;
  text-align: center;
  min-width: 3.5rem;
  display: block;
}
.lp-stat-lbl {
  font-family: var(--lp-sans);
  font-size: .8rem;
  color: var(--lp-text-2);
  text-align: center;
  max-width: 110px;
  line-height: 1.4;
}

/* Back to top */
.lp-back-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(124,108,250,.35);
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.lp-back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lp-back-top:hover { filter: brightness(1.1); }
.lp-back-top:active { transform: scale(.93); }

/* Button ripple effect */
.lp-btn-hero,
.lp-btn-hero-outline,
.lp-btn-cta,
.cr-panel-cta,
.cr-pricing-btn {
  position: relative;
  overflow: hidden;
}
.lp-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: lp-ripple-anim .55s ease-out forwards;
  pointer-events: none;
}
@keyframes lp-ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* Interactive demo section */
.lp-demo-section {
  padding: 4rem 0 5rem;
}
.lp-demo-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.lp-demo-input-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--lp-bg-card);
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: .55rem .55rem .55rem 1.1rem;
  transition: border-color .2s;
}
.lp-demo-input-row:focus-within { border-color: var(--lp-accent); }
.lp-demo-input-icon { color: var(--lp-text-3); flex-shrink: 0; font-size: 1rem; }
.lp-demo-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--lp-sans);
  font-size: 1rem;
  color: var(--lp-text);
  min-width: 0;
}
.lp-demo-input::placeholder { color: var(--lp-text-3); }
.lp-demo-btn {
  background: var(--lp-accent);
  color: #fff;
  border: none;
  border-radius: calc(var(--lp-radius) - 4px);
  padding: .6rem 1.1rem;
  font-family: var(--lp-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: filter .15s;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.lp-demo-btn:hover { filter: brightness(1.1); }
.lp-demo-btn:active { filter: brightness(.95); }
.lp-demo-chips {
  display: flex;
  gap: .45rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.lp-demo-chip {
  border: 1px solid var(--lp-border);
  border-radius: 99px;
  padding: .3rem .85rem;
  font-size: .8rem;
  color: var(--lp-text-2);
  cursor: pointer;
  background: transparent;
  transition: border-color .15s, color .15s, background .15s;
  font-family: var(--lp-sans);
}
.lp-demo-chip:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  background: var(--lp-accent-dim);
}
.lp-demo-output { margin-top: 2rem; display: none; }
.lp-demo-output.is-visible { display: block; }
.lp-demo-topic-label {
  font-family: var(--lp-sans);
  font-size: .85rem;
  color: var(--lp-text-2);
  margin-bottom: .9rem;
}
.lp-demo-topic-name {
  font-weight: 600;
  color: var(--lp-accent);
}
.lp-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.lp-demo-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.1rem 1rem 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, border-color .25s;
}
.lp-demo-card.is-in { opacity: 1; transform: translateY(0); }
.lp-demo-card.is-done { border-color: rgba(124,108,250,.28); }
.lp-demo-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--lp-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  font-size: .95rem;
  margin-bottom: .6rem;
}
.lp-demo-card-title {
  font-family: var(--lp-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: .25rem;
}
.lp-demo-card-status {
  font-family: var(--lp-sans);
  font-size: .76rem;
  color: var(--lp-text-3);
  transition: color .2s;
}
.lp-demo-card-status.ready { color: #10b981; font-weight: 500; }
.lp-demo-skel {
  height: 5px;
  border-radius: 99px;
  background: var(--lp-border);
  margin-top: .55rem;
  overflow: hidden;
  position: relative;
}
.lp-demo-skel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--lp-accent-dim) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: lp-skel-shine 1.3s ease-in-out infinite;
}
.lp-demo-card.is-done .lp-demo-skel::after { animation: none; }
.lp-demo-card.is-done .lp-demo-skel { background: rgba(16,185,129,.18); }
@keyframes lp-skel-shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.lp-demo-cta-wrap {
  margin-top: 1.75rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.lp-demo-cta-wrap.is-visible { opacity: 1; transform: translateY(0); }
.lp-demo-cta-note {
  font-size: .85rem;
  color: var(--lp-text-2);
  margin-bottom: .85rem;
}

@media (max-width: 600px) {
  .lp-demo-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats-row { gap: 2rem; }
  .lp-demo-input-row { flex-wrap: wrap;}
  .lp-demo-btn { width: 100%; justify-content: center; }
  .lp-back-top { bottom: 1.25rem; right: 1.25rem; }
  .lp-btn-hero-outline  { padding: 0.65rem 5.5rem; }
}
@media (max-width: 360px) {
  .lp-demo-grid { grid-template-columns: 1fr 1fr; }
}
