@import url('/assets/css/tokens.css?v=3');

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--lp-fg);
  background:var(--lp-bg);
  line-height:1.5;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.lp-skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  z-index:9999;
  background:#fff;
  color:#000;
  border:1px solid var(--lp-border);
  padding:10px 12px;
  border-radius:10px;
}
.lp-skip-link:focus{left:12px}

.lp-container{
  width:var(--lp-content-width);
  margin:0 auto;
}

.lp-section{
  padding:84px 0;
}
.lp-section.lp-hero{padding:110px 0 86px}
.lp-section.lp-hero.lp-hero--showcase{padding:110px 0 0}

.lp-eyebrow{
  margin:0 0 10px;
  color:var(--lp-muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
  font-size:12px;
}
.lp-h1{
  margin:0 0 14px;
  font-size:clamp(36px, 4.5vw, 72px);
  line-height:1.0;
  letter-spacing:-.02em;
  font-weight:800;
  text-transform:uppercase;
}
.lp-h1 .accent-word{color:var(--lp-accent)}
.lp-h1 .lp-hero-line{display:block}
.lp-h2{
  margin:0;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.1;
  letter-spacing:-.02em;
  font-weight:800;
  text-transform:uppercase;
}
.lp-h3{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.02em;
  font-weight:700;
  text-transform:uppercase;
}
.lp-lead{
  margin:0 0 18px;
  font-size:18px;
  color:var(--lp-muted);
  max-width:56ch;
}
.lp-subhead{
  margin:10px 0 0;
  color:var(--lp-muted);
  font-size:16px;
  max-width:70ch;
}
.lp-micro{
  margin:12px 0 0;
  color:var(--lp-muted);
  font-size:13px;
}
.lp-footnote{
  margin:12px 0 0;
  color:var(--lp-muted);
  font-size:14px;
}
.lp-center{text-align:center}

/* Keep CTA buttons from touching preceding content blocks */
.lp-feature-grid + .lp-center,
.lp-spotlight-grid + .lp-center,
.lp-metrics + .lp-center,
.lp-logos + .lp-center,
.lp-steps + .lp-center{
  margin-top:22px;
}

/* Supporting copy / lists immediately above a CTA */
.lp-micro + .lp-center,
.lp-micro + .lp-cta-row,
.lp-micro + .lp-btn,
.lp-footnote + .lp-center,
.lp-footnote + .lp-cta-row,
.lp-footnote + .lp-btn,
.lp-checklist + .lp-cta-row,
.lp-checklist + .lp-btn,
.lp-lead + .lp-cta-row,
.lp-lead + .lp-btn,
.lp-subhead + .lp-cta-row,
.lp-subhead + .lp-btn{
  margin-top:16px;
}

.lp-header{
  position:sticky;
  top:0;
  z-index:2000;
  height:var(--lp-header-h);
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.55);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease, box-shadow .25s ease;
}
.lp-header[data-solid="true"]{
  background:rgba(255,255,255,.92);
  border-bottom-color:var(--lp-border);
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.lp-header-inner{
  width:var(--lp-content-width);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
/* Match left/right insets so logo and nav sit at equal distance from viewport edges */
.lp-header-inner{
  width:100%;
  max-width:none;
  padding-left:var(--lp-hero-text-inset);
  padding-right:var(--lp-hero-text-inset);
}
.lp-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:140px;
}
.lp-brand img{height:46px}

.lp-nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.lp-nav-link{
  text-decoration:none;
  color:var(--lp-muted);
  font-weight:600;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:10px 10px;
  border-radius:10px;
}
.lp-nav-link:hover{background:var(--lp-surface)}

.lp-nav-toggle{
  display:none;
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  cursor:pointer;
}
.lp-nav-toggle-lines{
  position:relative;
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:var(--lp-fg);
}
.lp-nav-toggle-lines:before,
.lp-nav-toggle-lines:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--lp-fg);
}
.lp-nav-toggle-lines:before{top:-6px}
.lp-nav-toggle-lines:after{top:6px}

.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  border:2px solid transparent;
  transition:background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  user-select:none;
}
.lp-btn:hover{transform:none}
.lp-btn:active{transform:none}
.lp-btn-primary{
  background:var(--lp-accent);
  border-color:var(--lp-accent);
  color:#fff;
  box-shadow:none;
}
.lp-btn-primary:hover{
  background:transparent;
  color:var(--lp-accent);
  box-shadow:none;
}

/* Primary on dark / accent backgrounds - white solid CTA for contrast */
.lp-on-dark .lp-btn-primary,
.lp-hero .lp-btn-primary,
.lp-section--charcoal .lp-btn-primary,
.lp-spotlight .lp-btn-primary,
.lp-purchase .lp-btn-primary{
  background:var(--lp-btn-primary-on-dark-bg);
  border-color:var(--lp-btn-primary-on-dark-border);
  color:var(--lp-btn-primary-on-dark-fg);
  box-shadow:var(--lp-btn-primary-on-dark-shadow);
}
.lp-on-dark .lp-btn-primary:hover,
.lp-hero .lp-btn-primary:hover,
.lp-section--charcoal .lp-btn-primary:hover,
.lp-spotlight .lp-btn-primary:hover,
.lp-purchase .lp-btn-primary:hover{
  background:var(--lp-btn-primary-on-dark-hover-bg);
  border-color:var(--lp-btn-primary-on-dark-hover-border);
  color:var(--lp-btn-primary-on-dark-hover-fg);
  box-shadow:var(--lp-btn-primary-on-dark-shadow);
}

.lp-btn-secondary{
  background:transparent;
  border-color:var(--lp-border);
  color:var(--lp-fg);
}
.lp-btn-secondary:hover{
  background:var(--lp-surface);
  border-color:var(--lp-fg-muted);
}
.lp-btn-ghost{
  background:transparent;
  border-color:var(--lp-border);
  color:var(--lp-fg);
}
.lp-btn-ghost:hover{
  background:var(--lp-surface);
  border-color:var(--lp-fg-muted);
}
.lp-btn-link{
  background:transparent;
  border-color:transparent;
  color:var(--lp-muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.lp-btn-link:hover{background:var(--lp-surface); color:var(--lp-fg)}
.lp-btn-block{width:100%}
.lp-btn-lg{padding:14px 22px; font-size:15px}

.lp-hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background:#111;
}
.lp-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    var(--site-dark-overlay),
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(0,159,216,.28), transparent 55%),
    var(--site-hero-bg);
  z-index:0;
}
.lp-hero > .lp-container{
  position:relative;
  z-index:1;
}
.lp-hero .lp-h1{color:#fff}
.lp-hero .lp-lead,
.lp-hero .lp-bullets,
.lp-hero .lp-bullets li{color:rgba(255,255,255,.82)}
.lp-hero .lp-eyebrow{color:rgba(255,255,255,.55)}
.lp-hero .lp-micro{color:rgba(255,255,255,.55)}
.lp-hero .lp-btn-ghost{
  border-color:rgba(255,255,255,.6);
  color:#fff;
}
.lp-hero .lp-btn-secondary{
  border-color:rgba(255,255,255,.35);
  color:#fff;
  background:transparent;
}
.lp-hero .lp-btn-secondary:hover{
  background:rgba(255,255,255,.1);
  border-color:#fff;
}
.lp-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.lp-bullets{
  margin:0 0 22px;
  padding-left:18px;
  color:var(--lp-fg);
}
.lp-bullets li{margin:10px 0}
.lp-cta-row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

.lp-hero-visual{
  display:flex;
  justify-content:center;
}
.lp-visual-stack{
  position:relative;
  width:min(480px, 100%);
  aspect-ratio: 1 / 1;
}
.lp-phone{
  position:absolute;
  right:0;
  bottom:0;
  width:72%;
  height:82%;
  border-radius:34px;
  background:linear-gradient(180deg,#0d1220,#0b0f18);
  box-shadow:var(--lp-shadow);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.lp-phone-notch{
  position:absolute;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:22px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
}
.lp-phone-screen{
  position:absolute;
  inset:54px 14px 14px;
  background:linear-gradient(180deg, #ffffff, #f5f7fb);
  border-radius:24px;
  overflow:hidden;
}
.lp-profile{padding:16px}
.lp-profile-top{display:flex; gap:12px; align-items:center; margin-bottom:14px}
.lp-avatar{
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--lp-accent) 0%, var(--lp-accent-2) 100%);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
}
.lp-profile-name{font-weight:800}
.lp-profile-role{font-size:12px;color:var(--lp-muted)}
.lp-profile-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:6px;
}
.lp-chip{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  font-weight:700;
  font-size:12px;
}
.lp-profile-footer{
  margin-top:14px;
  color:var(--lp-muted);
  font-size:12px;
}
.lp-card{
  position:absolute;
  left:0;
  top:16px;
  width:66%;
  height:40%;
  border-radius:22px;
  background:linear-gradient(135deg,#0a0f1b,#0b1d2b);
  box-shadow:0 18px 60px rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.12);
  transform:rotate(-12deg);
  overflow:hidden;
}
.lp-card-shine{
  position:absolute;
  inset:-40% -30%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
  transform:rotate(10deg);
}
.lp-card-mark{
  position:absolute;
  left:18px;
  top:18px;
  color:rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
}
.lp-card-sub{
  position:absolute;
  left:18px;
  bottom:16px;
  color:rgba(255,255,255,.70);
  font-weight:700;
  font-size:12px;
}

.lp-section-head{max-width:70ch; margin:0 auto 30px; text-align:center}
.lp-section-head.lp-left{margin:0 0 18px; text-align:left}

/* Alternating section backgrounds - charcoal / light / accent */
.lp-section--charcoal{
  background:var(--site-charcoal);
  color:#fff;
}
.lp-section--charcoal .lp-h2,
.lp-section--charcoal .lp-h3,
.lp-section--charcoal .lp-name{color:#fff}
.lp-section--charcoal .lp-subhead,
.lp-section--charcoal p,
.lp-section--charcoal .lp-support,
.lp-section--charcoal .lp-role,
.lp-section--charcoal .lp-micro{color:rgba(255,255,255,.7)}
.lp-section--charcoal .lp-step,
.lp-section--charcoal .lp-problem-item,
.lp-section--charcoal .lp-testimonial,
.lp-section--charcoal .lp-metric{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:rgba(255,255,255,.9);
}
.lp-section--charcoal .lp-step-num{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
  color:#fff;
}
.lp-section--charcoal .lp-btn-secondary{
  border-color:rgba(255,255,255,.45);
  color:#fff;
  background:transparent;
}
.lp-section--charcoal .lp-logo-pill{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
  color:rgba(255,255,255,.75);
}
.lp-section--charcoal .lp-metric span{color:rgba(255,255,255,.6)}
.lp-section--charcoal .lp-stat{
  background:rgba(0,159,216,.2);
  border-color:rgba(0,159,216,.35);
  color:#fff;
}
.lp-section--charcoal .lp-photo{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.35);
  box-shadow:0 0 0 1px rgba(0,0,0,.25);
  color:#fff;
}

.lp-problem{
  background:linear-gradient(180deg, #fff 0%, #f8fafc 42%, #f0f2f5 100%);
}

.lp-problem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:26px;
}
.lp-problem-item{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:20px 18px;
  box-shadow:0 4px 18px rgba(11,18,32,0.04);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-problem-item:hover{
  transform:translateY(-2px);
  border-color:rgba(11,18,32,0.16);
  box-shadow:0 12px 30px rgba(11,18,32,0.08);
}
.lp-problem-item p{
  margin:0;
  color:var(--lp-muted);
  font-size:15px;
  line-height:1.5;
}
.lp-problem-icon{
  width:38px;
  height:38px;
  min-width:38px;
  min-height:38px;
  max-width:38px;
  max-height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  background:rgba(220,53,69,0.08);
  border:1px solid rgba(220,53,69,0.14);
  color:#b02a37;
  flex:0 0 auto;
  overflow:hidden;
  line-height:0;
  font-size:0;
}
.lp-problem-icon svg{
  display:block;
  width:20px;
  height:20px;
  min-width:20px;
  min-height:20px;
  max-width:20px;
  max-height:20px;
  flex-shrink:0;
}

.lp-problem-source{
  margin:14px auto 0;
  max-width:78ch;
  text-align:center;
  font-size:12px;
  line-height:1.45;
}
.lp-problem-source a{
  color:var(--lp-muted);
  text-decoration:underline;
  text-underline-offset:2px;
}
.lp-problem-source a:hover{color:var(--lp-accent)}

.lp-problem-solution{
  margin-top:8px;
}
.lp-problem-bridge{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin:0 auto 16px;
}
.lp-problem-bridge-line{
  width:1px;
  height:34px;
  background:linear-gradient(180deg, rgba(11,18,32,0.12), rgba(0,159,216,0.45));
}
.lp-problem-bridge-chevron{
  display:flex;
  margin-top:-2px;
  color:var(--lp-accent);
  opacity:.75;
}
.lp-problem-bridge-chevron svg{
  display:block;
  width:18px;
  height:18px;
  min-width:18px;
  min-height:18px;
  max-width:18px;
  max-height:18px;
  flex-shrink:0;
}

.lp-callout{
  margin:0 auto;
  max-width:78ch;
  padding:22px 24px;
  border-radius:var(--lp-radius);
  border:1px solid rgba(0,159,216,.24);
  background:linear-gradient(135deg, rgba(0,159,216,.10), rgba(255,255,255,.92));
  box-shadow:0 10px 32px rgba(0,159,216,.08);
}
.lp-callout-eyebrow{
  margin:0 0 12px;
  color:var(--lp-accent);
  text-align:center;
}
.lp-callout-inner{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.lp-callout-icon{
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  max-width:42px;
  max-height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:rgba(0,159,216,0.12);
  border:1px solid rgba(0,159,216,0.22);
  color:var(--lp-accent);
  overflow:hidden;
  line-height:0;
  font-size:0;
}
.lp-callout-icon svg{
  display:block;
  width:22px;
  height:22px;
  min-width:22px;
  min-height:22px;
  max-width:22px;
  max-height:22px;
  flex-shrink:0;
}
.lp-callout-text{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:var(--lp-fg);
}

/* Ensure consistent spacing after the callout (fix “no gap” issue) */
.lp-problem-solution + .lp-center,
.lp-callout + .lp-center{
  margin-top:18px;
}

.lp-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:20px;
}
.lp-step{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
}
.lp-step-num{
  width:34px;height:34px;border-radius:12px;
  background:var(--lp-surface);
  border:1px solid var(--lp-border);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  margin-bottom:12px;
}

.lp-features{
  position:relative;
  overflow:hidden;
  background:#f5f7fa;
}
.lp-features::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('/assets/landing/features-section-bg.png') center/cover no-repeat;
  filter:grayscale(55%) brightness(1.12) contrast(0.92);
  z-index:0;
}
.lp-features::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0.82) 0%,
    rgba(245,247,250,0.78) 45%,
    rgba(255,255,255,0.88) 100%
  );
  z-index:1;
}
.lp-features > .lp-container{
  position:relative;
  z-index:2;
}
.lp-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:22px;
}
.lp-features .lp-feature{
  position:relative;
  border:1px solid rgba(255,255,255,0.72);
  background:rgba(255,255,255,0.52);
  -webkit-backdrop-filter:blur(14px) saturate(130%);
  backdrop-filter:blur(14px) saturate(130%);
  border-radius:var(--lp-radius);
  padding:18px 16px;
  box-shadow:0 4px 24px rgba(11,18,32,0.05);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, padding .2s ease;
  cursor:pointer;
  text-align:left;
}
.lp-features .lp-feature:not(.is-expanded)::after{
  content:"";
  position:absolute;
  top:16px;
  right:15px;
  width:7px;
  height:7px;
  border-right:1.5px solid rgba(11,18,32,0.18);
  border-bottom:1.5px solid rgba(11,18,32,0.18);
  transform:rotate(45deg);
  pointer-events:none;
  opacity:.85;
  transition:opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.lp-features .lp-feature:not(.is-expanded):hover::after{
  opacity:1;
  border-color:rgba(0,159,216,0.42);
  transform:rotate(45deg) translate(1px,1px);
}
.lp-features .lp-feature:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.68);
  border-color:rgba(255,255,255,0.9);
  box-shadow:0 12px 30px rgba(11,18,32,0.08);
}
.lp-features .lp-feature:focus-visible{
  outline:2px solid var(--lp-accent);
  outline-offset:2px;
}
.lp-feature-summary .lp-h3{margin:0 0 10px;padding-right:14px}
.lp-feature-summary p{margin:0}
.lp-feature-detail[hidden]{display:none}
.lp-feature.is-expanded{
  cursor:default;
  transform:none;
  background:rgba(255,255,255,0.78);
  border-color:rgba(255,255,255,0.95);
  box-shadow:0 18px 48px rgba(11,18,32,0.1);
  padding:22px 20px;
}
.lp-feature.is-expanded:hover{transform:none}
.lp-feature.is-expanded .lp-feature-summary{display:none}
.lp-feature.is-expanded .lp-feature-detail{display:block}
.lp-feature-detail-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px;
  align-items:center;
}
.lp-feature-detail-copy .lp-h3{margin:0 0 12px}
.lp-feature-detail-lead{
  margin:0 0 14px;
  color:var(--lp-fg);
  line-height:1.55;
}
.lp-feature-points{
  margin:0 0 14px;
  padding:0;
  list-style:none;
}
.lp-feature-points li{
  position:relative;
  padding:0 0 8px 18px;
  color:var(--lp-muted);
  font-size:14px;
  line-height:1.45;
}
.lp-feature-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--lp-accent);
}
.lp-feature-detail-visual{
  border-radius:calc(var(--lp-radius) - 2px);
  overflow:hidden;
  border:1px solid rgba(11,18,32,0.08);
  background:rgba(255,255,255,0.55);
  box-shadow:0 10px 30px rgba(11,18,32,0.08);
}
.lp-feature-detail-visual img{
  display:block;
  width:100%;
  height:auto;
}
.lp-feature-close{
  margin-top:14px;
  border:1px solid var(--lp-border);
  background:rgba(255,255,255,0.72);
  color:var(--lp-fg);
  border-radius:var(--site-radius-pill, 999px);
  padding:9px 16px;
  font:inherit;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}
.lp-feature-close:hover{
  background:#fff;
  border-color:rgba(11,18,32,0.2);
}
.lp-feature-close:focus-visible{
  outline:2px solid var(--lp-accent);
  outline-offset:2px;
}

/* Expanded explorer layout */
.lp-feature-grid.is-expanded .lp-feature.is-expanded{
  cursor:pointer;
}
@media (min-width: 981px){
  .lp-feature-grid.is-expanded{
    grid-template-columns:minmax(0,1fr) minmax(180px,240px);
    align-items:stretch;
  }
  .lp-feature-grid.is-expanded .lp-feature.is-expanded{
    display:flex;
    flex-direction:column;
    align-self:stretch;
  }
  .lp-feature-grid.is-expanded .lp-feature.is-expanded .lp-feature-detail{
    display:flex;
    flex:1;
    flex-direction:column;
  }
  .lp-feature-grid.is-expanded .lp-feature.is-expanded .lp-feature-detail-inner{
    flex:1;
    align-items:center;
  }
}
@media (max-width: 980px){
  .lp-feature-grid.is-expanded .lp-feature.is-expanded{
    grid-column:1 / -1;
  }
}
.lp-feature-grid.is-expanded .lp-feature:not(.is-expanded){
  padding:12px 14px;
  transform:none;
}
.lp-feature-grid.is-expanded .lp-feature:not(.is-expanded):hover{
  transform:none;
  background:rgba(255,255,255,0.62);
}
.lp-feature-grid.is-expanded .lp-feature:not(.is-expanded) .lp-feature-summary .lp-h3{
  margin:0;
  font-size:14px;
  line-height:1.35;
}
.lp-feature-grid.is-expanded .lp-feature:not(.is-expanded) .lp-feature-summary p,
.lp-feature-grid.is-expanded .lp-feature:not(.is-expanded) .lp-feature-summary .lp-support{
  display:none;
}
.lp-feature-grid.is-expanded .lp-feature.is-active-rail{
  background:rgba(255,255,255,0.72);
  border-color:rgba(0,159,216,0.35);
  box-shadow:0 0 0 1px rgba(0,159,216,0.12);
}
.lp-support{margin:10px 0 0; color:var(--lp-muted); font-size:13px}

.lp-meeting-success{
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(184,29,36,.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(140,22,28,.06), transparent 50%),
    var(--lp-bg);
}
.lp-meeting-success .lp-section-head{
  margin-bottom:8px;
}
.lp-meeting-success-grid{
  margin-top:22px;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr);
  align-items:start;
}
.lp-meeting-success .lp-spotlight-grid + .lp-center{
  margin-top:28px;
}
.lp-meeting-success-panel{
  flex-direction:column;
  gap:14px;
  padding:12px;
}
.lp-meeting-demo{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(160deg, #e8eef5, #dfe6ef);
  box-shadow:inset 0 0 0 1px rgba(15, 23, 42, .06);
}
.lp-meeting-demo-gif{
  width:100%;
  height:auto;
  display:block;
}
.lp-meeting-demo-copy{
  padding:4px 8px 6px;
}
.lp-meeting-demo-copy .lp-spot-kicker{
  margin:0;
}
.lp-meeting-demo-copy h3{
  margin:8px 0 8px;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.02em;
  color:var(--lp-fg);
  text-transform:none;
}
.lp-meeting-demo-copy p[data-spot-desc]{
  margin:0;
  color:#46556b;
  font-size:14px;
  line-height:1.5;
}
.lp-meeting-demo-copy .lp-spot-points{
  margin:12px 0;
}
.lp-meeting-demo-copy .lp-spot-points li{
  font-size:13px;
  font-weight:600;
}
.lp-spot-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.lp-spot-item-title{
  display:block;
}
.lp-spot-item-short{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--lp-muted);
  letter-spacing:0;
  text-transform:none;
}
.lp-spot-item.is-active .lp-spot-item-short{
  color:#7a151c;
}

.lp-spotlight{
  background:linear-gradient(135deg, #007aa8 0%, var(--lp-accent) 50%, #0088bb 100%);
  color:#fff;
}
.lp-spotlight .lp-section-head .lp-h2{color:#fff}
.lp-spotlight .lp-subhead{color:rgba(255,255,255,.75)}
.lp-spotlight .lp-btn-secondary{
  border-color:rgba(255,255,255,.5);
  color:#fff;
  background:transparent;
}
.lp-spotlight .lp-btn-secondary:hover{
  background:rgba(255,255,255,.12);
  border-color:#fff;
}
.lp-spotlight-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  margin-top:14px;
  align-items:stretch;
}
.lp-spotlight-list{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  overflow:hidden;
}
.lp-spot-item{
  width:100%;
  text-align:left;
  border:0;
  border-bottom:1px solid var(--lp-border);
  background:#fff;
  color:#2f3b4e;
  font-weight:800;
  font-size:16px;
  line-height:1.2;
  padding:16px 16px;
  cursor:pointer;
  font-family:inherit;
  transition:background .15s ease, color .15s ease, padding-left .15s ease;
}
.lp-spot-item:last-child{border-bottom:0}
.lp-spot-item:hover{background:var(--lp-surface)}
.lp-spot-item.is-active{
  background:linear-gradient(135deg, rgba(184,29,36,.10), rgba(0,0,0,.02));
  color:#0b1220;
  padding-left:20px;
}
.lp-spotlight-panel{
  border:1px solid var(--lp-border);
  border-radius:var(--lp-radius);
  background:#fff;
  padding:14px;
  display:flex;
}
.lp-spot-visual{
  width:100%;
  border-radius:16px;
  background:linear-gradient(145deg, #0b1220, #10263e);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
}
.lp-spot-phone{
  width:100%;
  min-height:420px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, #f9fbff, #edf3fb);
  overflow:hidden;
}
.lp-spot-phone-top{
  height:24px;
  margin:10px auto 0;
  width:120px;
  border-radius:999px;
  background:rgba(0,0,0,.10);
}
.lp-spot-phone-screen{
  padding:16px 16px 18px;
}
.lp-spot-kicker{
  color:#5f6f86;
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lp-spot-phone-screen h3{
  margin:8px 0 8px;
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--lp-fg);
}
.lp-spot-phone-screen p{
  margin:0;
  color:#46556b;
}
.lp-spot-points{
  margin:14px 0;
  padding-left:18px;
}
.lp-spot-points li{
  margin:8px 0;
  color:#2a3749;
  font-weight:600;
}
.lp-spot-metric{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(184,29,36,.14), rgba(0,0,0,.02));
  border:1px solid rgba(184,29,36,.28);
  color:#7a151c;
  font-size:12px;
  font-weight:900;
  padding:8px 12px;
}

.lp-savings-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:28px;
  align-items:center;
}
.lp-savings-copy .lp-h2{
  color:#fff;
  margin:0 0 14px;
}
.lp-savings-copy .lp-subhead{
  color:rgba(255,255,255,.82);
  margin:0 0 14px;
}
.lp-savings-note{
  margin:0 0 22px;
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:1.55;
  max-width:46ch;
}
.lp-savings-note strong{color:#fff}
.lp-savings-panel{
  border:1px solid var(--lp-border);
  border-radius:var(--lp-radius);
  background:#fff;
  padding:22px 20px 18px;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  color:var(--lp-fg);
}
.lp-savings-field + .lp-savings-field{margin-top:18px}
.lp-savings-field .form-label{
  margin-bottom:0;
  color:var(--site-fg-muted);
}
.lp-savings-field > .form-label{margin-bottom:8px}
.lp-savings-field-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.lp-savings-field-head .form-label{margin-bottom:0}
.lp-savings-panel .form-help{margin-top:8px}
.lp-savings-select-wrap{
  position:relative;
}
.lp-savings-select-wrap .form-input{
  appearance:none;
  -webkit-appearance:none;
  padding-right:40px;
  cursor:pointer;
  font-weight:var(--site-font-weight-semibold);
}
.lp-savings-select-wrap::after{
  content:"";
  position:absolute;
  top:50%;
  right:14px;
  width:8px;
  height:8px;
  border-right:2px solid var(--site-fg-muted);
  border-bottom:2px solid var(--site-fg-muted);
  transform:translateY(-65%) rotate(45deg);
  pointer-events:none;
}
.lp-savings-value-wrap{
  display:inline-flex;
  align-items:center;
  gap:4px;
  border:1px solid var(--site-border);
  border-radius:var(--site-radius);
  background:var(--site-white);
  padding:8px 10px;
  min-width:88px;
  justify-content:flex-end;
  transition:border-color .2s, box-shadow .2s;
}
.lp-savings-value-wrap:focus-within{
  border-color:var(--site-accent);
  box-shadow:0 0 0 3px rgba(0,159,216,.12);
}
.lp-savings-value{
  width:56px;
  border:0;
  background:transparent;
  color:var(--lp-fg);
  font:inherit;
  font-weight:var(--site-font-weight-bold);
  font-size:14px;
  text-align:right;
  padding:0;
}
.lp-savings-value--currency{width:52px}
.lp-savings-value--wide{width:72px}
.lp-savings-value-wrap--wide{min-width:108px}
.lp-savings-value:focus{outline:none}
.lp-savings-currency,
.lp-savings-unit{
  color:var(--site-fg-muted);
  font-size:12px;
  font-weight:var(--site-font-weight-bold);
  white-space:nowrap;
}
.lp-savings-range{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:6px;
  margin:0;
  border-radius:var(--site-radius-pill);
  background:var(--site-border);
  cursor:pointer;
  outline:none;
}
.lp-savings-range::-webkit-slider-runnable-track{
  height:6px;
  border-radius:var(--site-radius-pill);
  background:var(--site-border);
}
.lp-savings-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:20px;
  height:20px;
  margin-top:-7px;
  border-radius:50%;
  border:2px solid var(--site-white);
  background:var(--lp-fg);
  box-shadow:var(--site-shadow-sm);
  cursor:pointer;
  transition:box-shadow .2s;
}
.lp-savings-range:focus::-webkit-slider-thumb{
  box-shadow:0 0 0 3px rgba(0,159,216,.12), var(--site-shadow-sm);
}
.lp-savings-range::-moz-range-track{
  height:6px;
  border:0;
  border-radius:var(--site-radius-pill);
  background:var(--site-border);
}
.lp-savings-range::-moz-range-thumb{
  width:20px;
  height:20px;
  border-radius:50%;
  border:2px solid var(--site-white);
  background:var(--lp-fg);
  box-shadow:var(--site-shadow-sm);
  cursor:pointer;
}
.lp-savings-range:focus::-moz-range-thumb{
  box-shadow:0 0 0 3px rgba(0,159,216,.12), var(--site-shadow-sm);
}
.lp-savings-results{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--lp-border);
}
.lp-savings-result{
  display:flex;
  align-items:flex-start;
  gap:10px;
  border:1px solid var(--lp-border);
  border-radius:14px;
  background:#f8fafc;
  padding:14px 12px;
}
.lp-savings-result-icon{
  width:28px;
  height:28px;
  color:#0b1220;
  flex:0 0 auto;
}
.lp-savings-result-icon svg{width:100%;height:100%}
.lp-savings-result-label{
  color:#5f6f86;
  font-size:12px;
  font-weight:700;
}
.lp-savings-result-value{
  margin-top:4px;
  color:var(--lp-fg);
  font-size:clamp(22px, 2.4vw, 30px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.02em;
}
.lp-savings-result-value--text{
  font-size:clamp(18px, 2vw, 24px);
  line-height:1.15;
}
.lp-savings-result-note{
  margin-top:4px;
  color:#7a8799;
  font-size:11px;
  line-height:1.35;
}

.lp-two-col{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.lp-sustain{
  position:relative;
  overflow:hidden;
  background:#e8ede9;
}
.lp-sustain::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('/assets/landing/sustain-section-bg.png') center/cover no-repeat;
  filter:grayscale(45%) brightness(1.05) contrast(0.95);
  z-index:0;
}
.lp-sustain::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0.82) 0%,
    rgba(245,247,250,0.78) 45%,
    rgba(255,255,255,0.88) 100%
  );
  z-index:1;
}
.lp-sustain > .lp-container{
  position:relative;
  z-index:2;
}
.lp-sustain .lp-btn-secondary{
  border-color:rgba(255,255,255,0.72);
  background:rgba(255,255,255,0.45);
  -webkit-backdrop-filter:blur(10px) saturate(130%);
  backdrop-filter:blur(10px) saturate(130%);
}
.lp-sustain .lp-btn-secondary:hover{
  background:rgba(255,255,255,0.65);
  border-color:rgba(255,255,255,0.9);
}
.lp-checklist{margin:0; padding-left:18px}
.lp-checklist li{margin:10px 0; color:var(--lp-fg)}
.lp-materials{
  border:1px solid var(--lp-border);
  border-radius:var(--lp-radius);
  background:#fff;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.lp-sustain .lp-materials{
  border:1px solid rgba(255,255,255,0.72);
  background:rgba(255,255,255,0.52);
  -webkit-backdrop-filter:blur(14px) saturate(130%);
  backdrop-filter:blur(14px) saturate(130%);
  box-shadow:0 4px 24px rgba(11,18,32,0.05);
}
.lp-tabs{
  display:flex;
  gap:6px;
  padding:12px;
  border-bottom:1px solid var(--lp-border);
  background:rgba(11,18,32,.02);
  flex-wrap:wrap;
}
.lp-tabs--segmented{
  gap:4px;
  padding:4px;
  flex-wrap:nowrap;
  border-bottom:0;
  background:rgba(11,18,32,.06);
  border-radius:999px;
}
.lp-tabs--segmented .lp-tab{
  flex:1 1 0;
  min-width:0;
  padding:11px 14px;
  border-radius:999px;
  border:0;
  background:transparent;
  color:var(--lp-muted);
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-align:center;
  transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lp-tabs--segmented .lp-tab:hover{
  color:var(--lp-fg);
  background:rgba(11,18,32,.04);
}
.lp-tabs--segmented .lp-tab.is-active{
  background:#fff;
  color:var(--lp-fg);
  box-shadow:0 1px 2px rgba(11,18,32,.06), 0 4px 12px rgba(11,18,32,.08);
}
.lp-tabs--segmented .lp-tab:focus-visible{
  outline:2px solid var(--lp-accent);
  outline-offset:2px;
}
.lp-sustain .lp-tabs{
  border-bottom:1px solid rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.28);
}
.lp-sustain .lp-tabs--segmented{
  margin:14px 14px 0;
  padding:4px;
  border:1px solid rgba(255,255,255,0.7);
  border-bottom:1px solid rgba(255,255,255,0.7);
  border-radius:999px;
  background:rgba(255,255,255,0.4);
  -webkit-backdrop-filter:blur(10px) saturate(130%);
  backdrop-filter:blur(10px) saturate(130%);
}
.lp-tab{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}
.lp-sustain .lp-tab{
  border:1px solid rgba(255,255,255,0.72);
  background:rgba(255,255,255,0.55);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}
.lp-tab.is-active{
  background:linear-gradient(135deg,var(--lp-accent) 0%,var(--lp-accent-2) 100%);
  border-color:transparent;
  color:#fff;
}
.lp-sustain .lp-tab.is-active{
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}
.lp-sustain .lp-tabs--segmented .lp-tab{
  border:0;
  background:transparent;
  color:rgba(11,18,32,.55);
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}
.lp-sustain .lp-tabs--segmented .lp-tab:hover{
  color:var(--lp-fg);
  background:rgba(255,255,255,0.45);
}
.lp-sustain .lp-tabs--segmented .lp-tab.is-active{
  background:#fff;
  color:var(--lp-fg);
  box-shadow:0 1px 2px rgba(11,18,32,.05), 0 6px 16px rgba(11,18,32,.08);
}
.lp-material-panel{padding:16px}
.lp-material-swatch{
  height:140px;
  border-radius:var(--lp-radius-sm);
  border:1px solid var(--lp-border);
  background:
    linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.02)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 50%);
  margin-bottom:14px;
}
.lp-sustain .lp-material-swatch{
  border:1px solid rgba(255,255,255,0.55);
  background:
    rgba(255,255,255,0.35),
    linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 50%);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}

.lp-testimonials{position:relative; margin-top:18px}
.lp-carousel{
  display:flex;
  gap:14px;
  overflow:hidden;
}
.lp-testimonial{
  min-width:100%;
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
}
.lp-testimonial-top{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.lp-photo{
  width:44px;height:44px;border-radius:50%;
  background:var(--lp-surface);
  border:2px solid #fff;
  box-shadow:0 0 0 1px rgba(0,0,0,.08);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  overflow:hidden;
  flex-shrink:0;
}
.lp-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lp-name{font-weight:900}
.lp-role{color:var(--lp-muted); font-size:12px}
.lp-stat{
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(0,159,216,.12), rgba(0,0,0,.03));
  border:1px solid rgba(0,159,216,.20);
}
.lp-carousel-controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}
.lp-icon-btn{
  width:40px;height:40px;border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.lp-icon-btn:hover{background:var(--lp-surface)}

.lp-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}
.lp-metric{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:14px 14px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.lp-metric strong{font-size:18px}
.lp-metric span{color:var(--lp-muted); font-size:13px}

.lp-logos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}
.lp-logo-pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:rgba(11,18,32,.02);
  color:rgba(11,18,32,.7);
  font-weight:800;
  font-size:12px;
}

.lp-trusted-by{
  background:#f0f2f5;
  padding:56px 0 48px;
  overflow:hidden;
}
.lp-trusted-by-headline{
  margin:0 0 28px;
  text-align:center;
  font-size:clamp(15px, 1.6vw, 18px);
  font-weight:600;
  color:rgba(11,18,32,.72);
  letter-spacing:.01em;
}
.lp-trusted-marquee{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.lp-trusted-marquee-row{
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-trusted-marquee-track{
  display:flex;
  align-items:center;
  gap:clamp(36px, 5vw, 72px);
  width:max-content;
  animation:lp-trusted-scroll 35s linear infinite;
  will-change:transform;
}
.lp-trusted-marquee-row--reverse .lp-trusted-marquee-track{
  animation-direction:reverse;
  animation-duration:41s;
}
.lp-trusted-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  height:44px;
  padding:0 8px;
}
.lp-trusted-logo img{
  max-height:36px;
  max-width:140px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.72;
}
@keyframes lp-trusted-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media (prefers-reduced-motion: reduce){
  .lp-trusted-marquee-track{
    animation:none;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    gap:24px 40px;
    padding:0 20px;
  }
  .lp-trusted-marquee-row{
    mask-image:none;
  }
  .lp-trusted-marquee-row--reverse .lp-trusted-marquee-track{
    display:none;
  }
}

.lp-pricing{background:#f0f2f5}
.lp-price-toggle{display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:10px}
.lp-toggle-label{font-weight:800; color:var(--lp-muted); font-size:13px}
.lp-toggle{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  padding:6px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
}
.lp-toggle-btn{
  padding:10px 12px;
  border-radius:999px;
  border:0;
  background:transparent;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  color:var(--lp-muted);
}
.lp-toggle-btn.is-active{
  background:linear-gradient(135deg,var(--lp-accent) 0%,var(--lp-accent-2) 100%);
  color:#fff;
}
.lp-price-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-top:22px;
}
.lp-plan{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:22px 18px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.lp-plan-alt{
  background:linear-gradient(135deg, rgba(0,159,216,.08), rgba(0,0,0,.02));
  border-color:rgba(0,159,216,.18);
}
.lp-plan-title{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-weight:800;
}
.lp-plan-price{margin:0 0 14px; font-size:28px; font-weight:900; letter-spacing:-.02em}
.lp-plan-unit{font-size:13px; font-weight:800; color:var(--lp-muted)}
.lp-plan-list{margin:0 0 16px; padding-left:18px}
.lp-plan-list li{margin:8px 0}

.lp-purchase{
  padding:84px 0;
  background:
    var(--site-dark-overlay),
    linear-gradient(135deg, #111 0%, #0d2835 50%, #191919 100%);
}
.lp-purchase-inner{ text-align:center }
.lp-invert{color:#fff}
.lp-purchase-actions{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:18px}
.lp-purchase .lp-btn-ghost{border-color:rgba(255,255,255,.22); color:#fff}
.lp-purchase .lp-btn-ghost:hover{background:rgba(255,255,255,.10)}

.lp-faq{background:#fff}
.lp-accordion{max-width:860px; margin:18px auto 0}
.lp-qa{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:2px 14px;
  margin:10px 0;
}
.lp-qa summary{
  list-style:none;
  cursor:pointer;
  padding:14px 0;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}
.lp-qa summary::-webkit-details-marker{display:none}
.lp-q-icon{font-size:18px}
.lp-a{padding:0 0 14px; color:var(--lp-muted)}

.lp-footer{
  padding:56px 0 24px;
  border-top:3px solid var(--lp-accent);
  background:var(--site-charcoal-deep);
  color:rgba(255,255,255,.7);
}
.lp-footer .lp-footer-h{color:var(--lp-accent)}
.lp-footer-tag{color:rgba(255,255,255,.55)}
.lp-footer-bottom{border-top-color:rgba(255,255,255,.08); color:rgba(255,255,255,.35)}
.lp-footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr .8fr;
  gap:18px;
  align-items:start;
}
.lp-footer-logo{
  display:inline-block;
  margin-bottom:16px;
}
.lp-footer-logo img{
  display:block;
  width:128px;
  height:auto;
  max-width:100%;
}
.lp-footer-tag{
  max-width:34ch;
  margin:0 0 18px;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.55);
}
.lp-footer-social-icons{
  display:flex;
  gap:12px;
}
.lp-social-btn{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#fff;
  text-decoration:none;
  transition:background .2s ease, transform .2s ease;
}
.lp-social-btn:hover{
  background:var(--lp-accent);
  transform:translateY(-1px);
}
.lp-social-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.lp-footer-col h3{margin:0}
.lp-footer-h{
  margin:0 0 28px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--lp-accent);
}
.lp-footer-col a,
.lp-footer .lp-link-btn{
  display:block;
  padding:8px 0;
  text-decoration:none;
  color:rgba(255,255,255,.55);
  font-weight:500;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  background:transparent;
  border:0;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
  transition:color .2s ease;
}
.lp-footer-col a:hover,
.lp-footer .lp-link-btn:hover{
  color:#fff;
  text-decoration:none;
}

.lp-footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
}

.lp-modal[hidden]{display:none}
.lp-modal{
  position:fixed;
  inset:0;
  z-index:4000;
  display:grid;
  place-items:center;
}
.lp-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.lp-modal-card{
  position:relative;
  width:min(520px, calc(100% - 28px));
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 40px 120px rgba(0,0,0,.28);
  padding:22px 18px 18px;
}
.lp-modal-close{
  position:absolute;
  right:14px;
  top:12px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.lp-modal-close:hover{background:var(--lp-surface)}
.lp-sales-actions{display:grid; gap:10px; margin-top:12px}
.lp-modal-card--sales{max-width:520px; width:min(100%,520px)}
.lp-sales-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.lp-sales-form-field{display:flex; flex-direction:column; gap:6px}
.lp-sales-form-field--full{grid-column:1 / -1}
.lp-sales-textarea{min-height:96px; resize:vertical}
.lp-sales-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.lp-sales-form-actions{display:grid; gap:10px; margin-top:14px}
.lp-sales-form-feedback{
  margin:12px 0 0;
  font-size:13px;
  line-height:1.45;
}
.lp-sales-form-feedback.is-success{color:#155724}
.lp-sales-form-feedback.is-error{color:#721c24}
.lp-micro a{color:var(--lp-accent); font-weight:600; text-decoration:none}
.lp-micro a:hover{text-decoration:underline}

@media (max-width: 560px){
  .lp-sales-form-grid{grid-template-columns:1fr}
}

.lp-reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}
.lp-reveal.is-in{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .lp-hero-grid{grid-template-columns:1fr; gap:26px}
  .lp-hero-visual{order:-1}
  .lp-two-col{grid-template-columns:1fr}
  .lp-spotlight-grid{grid-template-columns:1fr}
  .lp-meeting-success-grid{grid-template-columns:1fr}
  .lp-savings-grid{grid-template-columns:1fr; gap:22px}
  .lp-savings-results{grid-template-columns:1fr}
  .lp-problem-grid{grid-template-columns:repeat(2,1fr)}
  .lp-steps{grid-template-columns:1fr}
  .lp-feature-grid{grid-template-columns:repeat(2,1fr)}
  .lp-feature-detail-inner{grid-template-columns:1fr}
  .lp-footer-grid{grid-template-columns:1fr 1fr; gap:16px}
}

@media (max-width: 768px) {
  .lp-header {
    position: relative;
    top: auto;
  }

  .lp-section.lp-hero.lp-hero--showcase {
    padding-top: 0;
  }
}

@media (max-width: 740px){
  .lp-nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .lp-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    padding:12px 18px 18px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--lp-border);
    box-shadow:0 18px 50px rgba(0,0,0,.10);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    z-index:1;
  }
  .lp-nav.is-open{display:flex}
  .lp-nav-link{padding:12px 12px}
  .lp-problem-grid{grid-template-columns:1fr}
  .lp-callout{padding:18px 16px}
  .lp-callout-text{font-size:16px}
  .lp-callout-inner{align-items:center}
  .lp-feature-grid{grid-template-columns:1fr}
  .lp-spot-phone{min-height:380px}
  .lp-spot-phone-screen h3{font-size:23px}
  .lp-price-grid{grid-template-columns:1fr}
  .lp-metrics{grid-template-columns:1fr}
  .lp-footer-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .lp-btn,.lp-feature,.lp-problem-item{transition:none}
  .lp-problem-item:hover{transform:none}
  .lp-feature-grid.is-expanded .lp-feature{transition:none}
  .lp-reveal{transition:none; transform:none; opacity:1}
}

