/* ============================================================
   AstroLabs — Meeting → Task platform landing page
   Built on the AstroLabs marketing brand tokens (al-*).
   Original design; modern SaaS structure with parallax + scroll reveal.
   ============================================================ */

.lp { background: var(--al-ice); overflow-x: hidden; }
.lp-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.lp section { position: relative; }

/* fluid type helpers */
.lp h1, .lp h2, .lp h3 { margin: 0; }
.lp p { margin: 0; }

/* ---------- Buttons ---------- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-md); cursor: pointer; border: 1.5px solid transparent;
  transition: background .18s var(--ease-out), color .18s, border-color .18s, transform .12s, box-shadow .18s; text-decoration: none; }
.lp-btn i { font-size: 18px; }
.lp-btn-primary { background: var(--al-blue); color: #fff; }
.lp-btn-primary:hover { background: var(--al-blue-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.lp-btn-primary:active { transform: scale(.98); }
.lp-btn-ghost { background: transparent; color: var(--al-navy); border-color: var(--al-line-2); }
.lp-btn-ghost:hover { background: var(--al-white); border-color: var(--al-blue); color: var(--al-blue); }
.lp-btn-white { background: #fff; color: var(--al-navy); }
.lp-btn-white:hover { background: var(--al-ice); transform: translateY(-1px); }
.lp-btn-lg { padding: 16px 28px; font-size: 16px; }
.lp-arrow { transition: transform .18s var(--ease-out); }
.lp-btn:hover .lp-arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.lp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 76px;
  display: flex; align-items: center; transition: background .25s var(--ease-out), box-shadow .25s, height .25s; }
.lp-nav.scrolled { background: rgba(255,255,255,.86); -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--al-line), var(--shadow-sm); height: 66px; }
.lp-nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; gap: 28px; }
.lp-logo { display: flex; align-items: center; flex: none; }
.lindy-lock { display: inline-flex; align-items: center; gap: 8px; line-height: 1; font-size: 23px; }
.lindy-lock img { height: 1.18em; width: auto; display: block; }
.lindy-lock b { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; color: var(--al-navy); }
.lp-foot-brand .lindy-lock { font-size: 24px; }
.lp-logo img { height: 30px; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.lp-nav-link { position: relative; display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--al-navy); padding: 9px 14px; border-radius: var(--radius-sm); cursor: pointer;
  background: none; border: none; transition: color .15s, background .15s; }
.lp-nav-link:hover { color: var(--al-blue); background: rgba(51,92,255,.06); }
.lp-nav-link i { font-size: 17px; transition: transform .2s var(--ease-out); }
.lp-nav-spacer { flex: 1; }
.lp-nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.lp-nav-login { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--al-navy); padding: 10px 8px; background: none; border: none; cursor: pointer; }
.lp-nav-login:hover { color: var(--al-blue); }

/* dropdown */
.lp-dd { position: relative; }
.lp-dd-panel { position: absolute; top: calc(100% + 10px); left: -12px; width: 460px; background: #fff;
  border: var(--card-border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; transform: translateY(8px) scale(.98); transform-origin: top left; pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.lp-dd.open .lp-dd-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lp-dd.open .lp-nav-link i { transform: rotate(180deg); }
.lp-dd-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--radius-lg); cursor: pointer; text-decoration: none; transition: background .15s; }
.lp-dd-item:hover { background: var(--al-blue-50); }
.lp-dd-ic { width: 44px; height: 44px; flex: none; border-radius: var(--radius-md); background: var(--al-blue-50); color: var(--al-blue);
  display: flex; align-items: center; justify-content: center; font-size: 22px; transition: background .15s, color .15s; }
.lp-dd-item:hover .lp-dd-ic { background: var(--al-blue); color: #fff; }
.lp-dd-t { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--al-navy); display: flex; align-items: center; gap: 6px; }
.lp-dd-d { font-size: 13.5px; color: var(--al-text-2); line-height: 1.5; margin-top: 3px; }

/* mobile nav */
.lp-burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; color: var(--al-navy); font-size: 26px; }
.lp-mobile { position: fixed; inset: 0 0 0 0; z-index: 99; background: rgba(20,23,87,.4); opacity: 0; pointer-events: none; transition: opacity .25s; overflow: hidden; }
.lp-mobile.open { opacity: 1; pointer-events: auto; }
.lp-mobile-sheet { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: #fff; padding: 84px 22px 28px;
  transform: translateX(100%); transition: transform .3s var(--ease-out); display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.lp-mobile.open .lp-mobile-sheet { transform: translateX(0); }
.lp-mobile-link { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--al-navy); padding: 13px 12px; border-radius: var(--radius-md); text-decoration: none; }
.lp-mobile-link:hover { background: var(--al-blue-50); color: var(--al-blue); }
.lp-mobile-sub { font-size: 14px; font-weight: 600; color: var(--al-text-2); padding: 10px 12px 4px 24px; }
.lp-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero { padding: 168px 0 96px; position: relative; }
.lp-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lp-ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--al-blue-200); opacity: .5; }
.lp-ring.r1 { width: 720px; height: 720px; top: -260px; right: -180px; }
.lp-ring.r2 { width: 520px; height: 520px; top: -160px; right: -80px; border-color: var(--al-blue-100); }
.lp-ring.r3 { width: 320px; height: 320px; top: -60px; right: 20px; border-color: var(--al-blue-300); opacity: .35; }
.lp-blob { position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(51,92,255,.18), rgba(51,92,255,0) 70%); filter: blur(8px); }
.lp-blob.b1 { top: -120px; left: -120px; }
.lp-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lp-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--al-white); border: var(--card-border);
  border-radius: var(--radius-pill); padding: 7px 14px 7px 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--al-navy); box-shadow: var(--shadow-xs); }
.lp-hero-eyebrow .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--al-blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.lp-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 72px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--al-navy); margin: 22px 0 0; }
.lp-hero h1 .al-hl { color: var(--al-blue); }
.lp-hero-sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--al-text-2); margin: 22px 0 0; max-width: 540px; }
.lp-hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.lp-hero-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13.5px; color: var(--al-text-3); }
.lp-hero-note i { color: var(--al-success); font-size: 17px; }

/* hero visual / parallax stack */
.lp-hero-visual { position: relative; height: 480px; }
.lp-hv-card { position: absolute; background: #fff; border: var(--card-border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); will-change: transform; }
.lp-hv-main { inset: 0; padding: 0; overflow: hidden; }
.lp-hv-main .lp-hv-top { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--al-line); }
.lp-hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-hv-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.lp-hv-row { height: 56px; border-radius: var(--radius-md); border: 1px solid var(--al-line); display: flex; align-items: center; gap: 12px; padding: 0 14px; background: var(--al-paper); }
.lp-hv-tick { width: 26px; height: 26px; border-radius: 7px; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; }
.lp-hv-line { height: 9px; border-radius: 5px; background: var(--al-line-2); }
.lp-hv-meta { height: 7px; border-radius: 4px; background: var(--al-line); margin-top: 6px; }
.lp-float { position: absolute; background: #fff; border: var(--card-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 14px 16px; will-change: transform; }
.lp-float-1 { top: -26px; left: -34px; width: 230px; }
.lp-float-2 { bottom: 28px; right: -36px; width: 210px; }
.lp-float-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12.5px; font-weight: 700; color: var(--al-navy); }
.lp-float-ic { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.lp-float-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--al-navy); margin-top: 8px; letter-spacing: -.02em; }
.lp-float-sub { font-size: 12px; color: var(--al-text-3); margin-top: 2px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.lp-stats { padding: 8px 0 40px; }
.lp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--al-navy); border-radius: var(--radius-2xl);
  padding: 38px 40px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.lp-stats-grid .lp-ring { border-color: rgba(255,255,255,.12); opacity: 1; }
.lp-stat { position: relative; z-index: 1; }
.lp-stat-num { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.lp-stat-num .al-hl { color: var(--al-blue-300); }
.lp-stat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.lp-sec { padding: 96px 0; }
.lp-sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.lp-sec-head.left { margin-left: 0; text-align: left; }
.lp-eyebrow { display: inline-block; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--al-blue); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.lp-sec-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.4vw, 44px); line-height: 1.12; letter-spacing: -.02em; color: var(--al-navy); }
.lp-sec-title .al-hl { color: var(--al-blue); }
.lp-sec-sub { font-size: 18px; line-height: 1.6; color: var(--al-text-2); margin-top: 18px; }

/* ============================================================
   USE CASES (alternating, parallax media)
   ============================================================ */
.lp-uc { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; }
.lp-uc.flip .lp-uc-text { order: 2; }
.lp-uc-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--al-blue);
  background: var(--al-blue-50); border-radius: var(--radius-pill); padding: 7px 14px; }
.lp-uc h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.14; letter-spacing: -.02em; color: var(--al-navy); margin: 18px 0 0; }
.lp-uc-p { font-size: 17px; line-height: 1.6; color: var(--al-text-2); margin: 16px 0 0; }
.lp-uc-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; }
.lp-uc-li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--al-navy); font-weight: 500; }
.lp-uc-li i { color: var(--al-blue); font-size: 20px; flex: none; margin-top: 1px; }
.lp-uc-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 26px; font-family: var(--font-display); font-weight: 700; color: var(--al-blue); cursor: pointer; }
.lp-uc-media { position: relative; }
.lp-uc-frame { position: relative; background: #fff; border: var(--card-border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); padding: 16px; overflow: hidden; }
.lp-uc-frame .lp-parallax-inner { will-change: transform; }
.lp-uc-chip { position: absolute; z-index: 2; background: #fff; border: var(--card-border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 11px 14px; display: flex; align-items: center; gap: 10px; will-change: transform; }
.lp-uc-chip i { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex: none; }
.lp-uc-chip-t { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--al-navy); }
.lp-uc-chip-s { font-size: 11.5px; color: var(--al-text-3); }

/* mock dashboard inside frame */
.mock { display: flex; flex-direction: column; gap: 12px; }
.mock-head { display: flex; align-items: center; gap: 10px; }
.mock-av { width: 34px; height: 34px; border-radius: 50%; background: var(--al-blue); }
.mock-bar { height: 10px; border-radius: 5px; background: var(--al-line-2); }
.mock-bar.s { background: var(--al-line); }
.mock-card { border: 1px solid var(--al-line); border-radius: var(--radius-md); padding: 14px; background: var(--al-paper); display: flex; flex-direction: column; gap: 9px; }
.mock-card.accent { border-left: 3px solid var(--al-blue); }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-pill { height: 22px; border-radius: var(--radius-pill); padding: 0 10px; display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; font-family: var(--font-display); }

/* ============================================================
   FEATURES
   ============================================================ */
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-feat { background: #fff; border: var(--card-border); border-radius: var(--radius-lg); padding: 28px; transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s; }
.lp-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--al-line-2); }
.lp-feat-ic { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--al-blue-50); color: var(--al-blue); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.lp-feat h4 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--al-navy); margin: 18px 0 0; }
.lp-feat p { font-size: 15px; line-height: 1.6; color: var(--al-text-2); margin: 10px 0 0; }

/* ============================================================
   PRICING
   ============================================================ */
.lp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.lp-price { background: #fff; border: var(--card-border); border-radius: var(--radius-2xl); padding: 30px; display: flex; flex-direction: column; transition: transform .2s var(--ease-out), box-shadow .2s; }
.lp-price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-price.featured { background: var(--al-navy); border-color: var(--al-navy); box-shadow: var(--shadow-lg); position: relative; }
.lp-price.featured .lp-price-name, .lp-price.featured .lp-price-amt, .lp-price.featured .lp-price-li { color: #fff; }
.lp-price.featured .lp-price-period, .lp-price.featured .lp-price-desc { color: rgba(255,255,255,.7); }
.lp-price.featured .lp-price-li i { color: var(--al-blue-300); }
.lp-price-badge { position: absolute; top: 22px; right: 22px; background: var(--al-blue); color: #fff; font-family: var(--font-display); font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); }
.lp-price-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--al-navy); }
.lp-price-desc { font-size: 13.5px; color: var(--al-text-2); margin-top: 6px; min-height: 38px; }
.lp-price-amt { font-family: var(--font-display); font-size: 46px; font-weight: 800; color: var(--al-navy); letter-spacing: -.02em; margin-top: 14px; line-height: 1; }
.lp-price-period { font-size: 14px; font-weight: 600; color: var(--al-text-3); }
.lp-price-list { display: flex; flex-direction: column; gap: 13px; margin: 24px 0; flex: 1; }
.lp-price-li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--al-navy); }
.lp-price-li i { color: var(--al-blue); font-size: 18px; flex: none; margin-top: 1px; }
.lp-price .lp-btn { width: 100%; }

/* ============================================================
   BIG CTA
   ============================================================ */
.lp-cta-card { position: relative; overflow: hidden; background: var(--surface-feature); border-radius: var(--radius-3xl); padding: 72px 56px; text-align: center; box-shadow: var(--shadow-lg); }
.lp-cta-card .lp-ring { border-color: rgba(255,255,255,.16); opacity: 1; }
.lp-cta-card .lp-ring.c1 { width: 560px; height: 560px; top: -220px; left: -160px; }
.lp-cta-card .lp-ring.c2 { width: 560px; height: 560px; bottom: -240px; right: -160px; }
.lp-cta-inner { position: relative; z-index: 1; }
.lp-cta-card h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.4vw, 48px); line-height: 1.1; letter-spacing: -.02em; color: #fff; margin: 0; }
.lp-cta-card p { font-size: 18px; color: rgba(255,255,255,.82); margin: 18px auto 0; max-width: 540px; }
.lp-cta-btns { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer { background: var(--al-ice); padding: 80px 0 40px; }
.lp-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.lp-foot-brand img { height: 30px; }
.lp-foot-brand p { font-size: 14.5px; color: var(--al-text-2); line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.lp-foot-col h5 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--al-navy); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 16px; }
.lp-foot-col a { display: block; font-size: 14.5px; font-weight: 500; color: var(--al-text-2); padding: 6px 0; }
.lp-foot-col a:hover { color: var(--al-blue); }
.lp-foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--al-line); flex-wrap: wrap; gap: 14px; }
.lp-foot-bottom p { font-size: 13.5px; color: var(--al-text-3); }
.lp-foot-social { display: flex; gap: 10px; }
.lp-foot-social a { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: var(--card-border); display: flex; align-items: center; justify-content: center; color: var(--al-navy); font-size: 18px; }
.lp-foot-social a:hover { background: var(--al-blue); color: #fff; border-color: var(--al-blue); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lp-hv-card, .lp-float, .lp-uc-chip, .lp-parallax-inner, .lp-ring, .lp-blob { transform: none !important; }
}

/* ============================================================
   HOW IT WORKS — interactive auto-advancing tabs
   ============================================================ */
.lp-tabs { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; }
.lp-tabs-rail { display: flex; flex-direction: column; }
.lp-tab { position: relative; display: flex; align-items: flex-start; gap: 16px; text-align: left; background: none; border: none;
  cursor: pointer; padding: 20px 16px 20px 0; border-top: 1px solid var(--al-line); font: inherit; transition: opacity .2s; }
.lp-tab:first-child { border-top: none; }
.lp-tab:not(.on) { opacity: .5; }
.lp-tab:not(.on):hover { opacity: .8; }
.lp-tab-n { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--al-blue); padding-top: 3px; }
.lp-tab-t { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--al-navy); letter-spacing: -.01em; }
.lp-tab-d { display: block; font-size: 14.5px; line-height: 1.5; color: var(--al-text-2); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s var(--ease-out), opacity .3s, margin-top .35s; }
.lp-tab.on .lp-tab-d { max-height: 80px; opacity: 1; margin-top: 7px; }
.lp-tab-bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: transparent; }
.lp-tab.on .lp-tab-bar { background: var(--al-line); }
.lp-tab-bar span { display: block; height: 100%; width: 0; background: var(--al-blue); border-radius: 2px; }
.lp-tabs-stage { position: relative; min-height: 400px; background: linear-gradient(165deg, #F4F7FF, #E9EFFF); border: var(--card-border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.lp-tabpanel { position: absolute; inset: 0; padding: 30px; display: flex; flex-direction: column; gap: 16px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.lp-tabpanel.on { opacity: 1; transform: none; pointer-events: auto; }
.lp-tp-head { display: flex; align-items: center; gap: 12px; }
.lp-tp-ic { width: 44px; height: 44px; flex: none; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.lp-tp-t { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--al-navy); }
.lp-tp-s { font-size: 13px; color: var(--al-text-3); }
.lp-tabpanel .mock { background: #fff; border: var(--card-border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-sm); }
.lp-tabpanel .mock-pill i { margin-right: 4px; font-size: 12px; }

/* ============================================================
   BENTO grid
   ============================================================ */
.lp-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 198px; gap: 18px; }
.lp-bento-tile { position: relative; overflow: hidden; background: #fff; border: var(--card-border); border-radius: var(--radius-lg);
  padding: 24px; transition: border-color .2s, box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.lp-bento-tile:hover { border-color: var(--al-line-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lp-bento-tile.big { grid-column: span 2; grid-row: span 2; }
.lp-bento-tile.wide { grid-column: span 2; }
.lp-bento-ic { width: 46px; height: 46px; flex: none; border-radius: var(--radius-md); background: var(--al-blue-50); color: var(--al-blue); display: flex; align-items: center; justify-content: center; font-size: 23px; position: relative; z-index: 1; }
.lp-bento-t { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--al-navy); margin-top: 16px; letter-spacing: -.01em; position: relative; z-index: 1; }
.lp-bento-d { font-size: 14px; color: var(--al-text-2); line-height: 1.55; margin-top: 8px; max-width: 400px; position: relative; z-index: 1; }
.lp-bento-mock { margin-top: auto; padding-top: 18px; position: relative; z-index: 1; }
.lp-bento-tile.navy { background: var(--al-navy); }
.lp-bento-tile.navy .lp-bento-t { color: #fff; }
.lp-bento-tile.navy .lp-bento-d { color: rgba(255,255,255,.8); }
.lp-bento-tile.navy .lp-bento-ic { background: rgba(255,255,255,.14); color: #fff; }
@media (max-width: 980px) {
  .lp-tabs { grid-template-columns: 1fr; gap: 28px; }
  .lp-tabs-stage { min-height: 320px; }
  .lp-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .lp-bento-tile.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .lp-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .lp-bento-tile, .lp-bento-tile.big, .lp-bento-tile.wide { grid-column: auto; grid-row: auto; min-height: 168px; }
  .lp-tab-t { font-size: 17px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .lp-nav-links { display: none; }
  .lp-nav-cta .lp-btn, .lp-nav-login { display: none; }
  .lp-burger { display: inline-flex; margin-left: auto; }
  .lp-nav-inner { gap: 0; }
  .lp-hero { padding: 124px 0 64px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero-visual { height: 420px; max-width: 460px; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; padding: 32px; }
  .lp-uc, .lp-uc.flip { grid-template-columns: 1fr; gap: 36px; }
  .lp-uc.flip .lp-uc-text { order: 0; }
  .lp-feat-grid { grid-template-columns: 1fr 1fr; }
  .lp-price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .lp-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .lp-wrap { padding: 0 18px; }
  .lp-sec { padding: 68px 0; }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-foot-grid { grid-template-columns: 1fr; }
  .lp-cta-card { padding: 48px 24px; }
  .lp-hero-cta { flex-direction: column; align-items: stretch; }
  .lp-hero-cta .lp-btn { width: 100%; }
  .lp-float-1 { left: -10px; }
  .lp-float-2 { right: -10px; }
}
