/*
 * Unified landing visual system, 2026-09-06.
 * This layer intentionally targets the public landing only. It keeps legacy
 * component behaviour intact while making the page read as one ambient canvas.
 */

.landing-page {
  --landing-acid: #b6ff00;
  --landing-text: #f3f5f1;
  --landing-muted: #a8b3aa;
  --landing-canvas: #08110b;
  --landing-surface: rgba(11, 20, 14, .72);
  --landing-surface-strong: rgba(8, 16, 11, .88);
  --landing-line-soft: rgba(218, 255, 193, .12);
  --landing-container: 1440px;
  --landing-gutter: clamp(20px, 3.35vw, 64px);
  --landing-edge: max(var(--landing-gutter), calc((100vw - var(--landing-container)) / 2));
  --landing-display-xl: clamp(52px, 4.25vw, 76px);
  --landing-display-lg: clamp(42px, 3.35vw, 60px);
  --landing-heading: clamp(24px, 1.55vw, 30px);
  --landing-body-lg: clamp(17px, 1.05vw, 19px);
  --landing-body: 16px;
  --landing-small: 14px;
  --landing-space-xs: 8px;
  --landing-space-sm: 16px;
  --landing-space-md: 24px;
  --landing-space-lg: 40px;
  --landing-space-xl: 64px;
  --landing-space-2xl: 96px;
  --landing-space-3xl: 128px;
  background: var(--landing-canvas);
  color: var(--landing-text);
}

/* One page-sized background. No section owns a full-width colour band. */
.landing-page .landing-main {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background-color: var(--landing-canvas) !important;
  background-image:
    radial-gradient(1250px 950px at 82% 4%, rgba(105, 165, 55, .16) 0%, rgba(68, 119, 43, .075) 42%, transparent 76%),
    radial-gradient(1150px 1000px at 8% 22%, rgba(112, 154, 45, .105) 0%, rgba(45, 94, 44, .045) 48%, transparent 78%),
    radial-gradient(1350px 1050px at 91% 43%, rgba(25, 89, 71, .13) 0%, rgba(31, 72, 52, .055) 48%, transparent 78%),
    radial-gradient(1300px 1100px at 13% 65%, rgba(116, 145, 43, .105) 0%, rgba(57, 93, 38, .045) 50%, transparent 80%),
    radial-gradient(1450px 1050px at 82% 87%, rgba(70, 128, 55, .115) 0%, rgba(32, 76, 48, .04) 52%, transparent 81%),
    linear-gradient(180deg, #08110b 0%, #09130d 46%, #071009 100%) !important;
  color: var(--landing-text);
}

.landing-page .hero-task-stack,
.landing-page .hero-clean,
.landing-page .advantage-section,
.landing-page .employee-section,
.landing-page .audio-showcase-section,
.landing-page .success-stories-section,
.landing-page .savings-section,
.landing-page .industries-section,
.landing-page .integrations-section,
.landing-page .faq-section,
.landing-page .quick-launch-section,
.landing-page .live-demo-section {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.landing-page .hero-task-stack::before,
.landing-page .hero-task-stack::after,
.landing-page .advantage-section::before,
.landing-page .advantage-section::after,
.landing-page .employee-section::before,
.landing-page .audio-showcase-section::before,
.landing-page .success-stories-section::before,
.landing-page .savings-section::before,
.landing-page .industries-section::before,
.landing-page .industries-section::after,
.landing-page .integrations-section::before,
.landing-page .faq-section::before,
.landing-page .quick-launch-section::before,
.landing-page .quick-launch-section::after,
.landing-page .live-demo-section::before,
.landing-page .live-demo-section::after {
  display: none !important;
  content: none !important;
}

/* Savings calculator. Uses the billing minute price and excludes subscription fees. */
.landing-page .savings-section { position: relative; padding: clamp(104px, 8vw, 136px) 0; }
.landing-page .savings-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: clamp(24px, 3vw, 48px); max-width: var(--landing-container); margin-inline: var(--landing-edge); }
.landing-page .savings-controls,
.landing-page .savings-result { border: 1px solid rgba(182,255,0,.15); border-radius: 28px; background: linear-gradient(145deg, rgba(17,31,20,.88), rgba(7,15,10,.78)); box-shadow: 0 30px 90px rgba(0,0,0,.2); }
.landing-page .savings-controls { padding: clamp(28px, 3vw, 48px); }
.landing-page .savings-heading { margin-bottom: 34px; }
.landing-page .savings-heading h2 { margin: 0 0 18px; color: var(--landing-text); font-size: var(--landing-display-lg); font-weight: 620; line-height: 1.02; letter-spacing: -.045em; }
.landing-page .savings-heading h2 em { color: var(--landing-acid); font-style: normal; }
.landing-page .savings-heading p { max-width: 620px; margin: 0; color: var(--landing-muted); font-size: var(--landing-body-lg); line-height: 1.55; }
.landing-page .savings-mode { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.landing-page .savings-mode button { min-height: 42px; padding: 0 17px; border: 1px solid rgba(218,255,193,.12); border-radius: 999px; background: rgba(255,255,255,.025); color: #78847b; font: 600 13px Manrope,Arial,sans-serif; }
.landing-page .savings-mode button.is-active { border-color: rgba(182,255,0,.48); background: rgba(182,255,0,.11); box-shadow: inset 0 0 20px rgba(182,255,0,.035); color: var(--landing-acid); }
.landing-page .savings-mode button:not(.is-active) { cursor: pointer; }
.landing-page .savings-mode button:not(.is-active):hover { border-color: rgba(218,255,193,.24); color: #a9b5ab; }
.landing-page .savings-field,
.landing-page .savings-rate { display: block; margin-top: 14px; padding: 20px; border: 1px solid rgba(218,255,193,.1); border-radius: 18px; background: rgba(5,12,8,.42); }
.landing-page .savings-field > span,
.landing-page .savings-rate { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.landing-page .savings-field b,
.landing-page .savings-rate b { display: block; color: var(--landing-text); font-size: 15px; font-weight: 560; }
.landing-page .savings-field small,
.landing-page .savings-rate small { color: #87958b; font-size: 13px; font-weight: 400; }
.landing-page .savings-field input { --range-progress: 0%; width: 100%; height: 4px; margin: 20px 0 14px; appearance: none; border: 0; border-radius: 999px; background: linear-gradient(90deg, var(--landing-acid) 0 var(--range-progress), rgba(203,224,207,.13) var(--range-progress) 100%); }
.landing-page .savings-field input::-webkit-slider-thumb { width: 19px; height: 19px; appearance: none; border: 4px solid #e9ffd1; border-radius: 50%; background: #88bd00; box-shadow: 0 0 0 2px rgba(182,255,0,.35); cursor: pointer; }
.landing-page .savings-field input::-moz-range-thumb { width: 13px; height: 13px; border: 4px solid #e9ffd1; border-radius: 50%; background: #88bd00; box-shadow: 0 0 0 2px rgba(182,255,0,.35); cursor: pointer; }
.landing-page .savings-field output { display: block; padding: 13px 15px; border-radius: 11px; background: rgba(255,255,255,.035); color: var(--landing-text); font-size: 17px; font-weight: 650; }
.landing-page .savings-rate > span small { display: block; margin-top: 5px; }
.landing-page .savings-rate > strong { flex: none; color: var(--landing-acid); font-size: 24px; }
.landing-page .savings-result { position: relative; display: flex; justify-content: center; overflow: hidden; padding: clamp(28px, 3vw, 48px); background: radial-gradient(circle at 100% 100%, rgba(182,255,0,.15), transparent 42%), linear-gradient(145deg, rgba(11,27,16,.95), rgba(6,15,9,.9)); flex-direction: column; }
.landing-page .savings-result::before { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(182,255,0,.045), transparent 38%); content: ""; }
.landing-page .savings-result > * { position: relative; }
.landing-page .savings-result-head { position: relative; display: flex; align-items: center; flex-direction: column; padding: 4px 0 30px; text-align: center; }
.landing-page .savings-result-head > span { color: var(--landing-muted); font-size: 15px; }
.landing-page .savings-result-head > strong { margin-top: 8px; color: var(--landing-acid); font-size: clamp(46px, 5vw, 76px); line-height: 1; letter-spacing: -.045em; }
.landing-page .savings-result-head > small { margin-top: 5px; color: var(--landing-acid); font-size: 16px; font-weight: 650; }
.landing-page .savings-result-head > i { position: absolute; top: 0; right: 0; max-width: 125px; padding: 10px 12px; border: 1px solid rgba(182,255,0,.14); border-radius: 12px; background: rgba(182,255,0,.055); color: #d4ff6a; font-size: 11px; font-style: normal; font-weight: 650; line-height: 1.25; }
.landing-page .savings-comparison { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding-top: 12px; border-top: 1px solid rgba(218,255,193,.09); }
.landing-page .savings-comparison article { display: flex; min-height: 126px; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.035); flex-direction: column; }
.landing-page .savings-comparison article.accent { border: 1px solid rgba(182,255,0,.18); background: linear-gradient(135deg, rgba(182,255,0,.1), rgba(82,125,40,.07)); }
.landing-page .savings-comparison span { color: var(--landing-text); font-size: 15px; font-weight: 600; }
.landing-page .savings-comparison small { margin-top: 8px; color: var(--landing-muted); }
.landing-page .savings-comparison strong { margin-top: auto; color: var(--landing-text); font-size: clamp(22px,2vw,31px); }
.landing-page .savings-comparison .accent :is(span,strong) { color: var(--landing-acid); }
.landing-page .savings-year { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 12px; padding: 19px 20px; border-radius: 16px; background: rgba(255,255,255,.04); }
.landing-page .savings-year span { color: var(--landing-muted); }
.landing-page .savings-year strong { color: var(--landing-acid); font-size: clamp(25px,2.3vw,36px); }
.landing-page .savings-result > a { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 56px; margin-top: 16px; border-radius: 14px; background: var(--landing-acid); color: #071009; font-weight: 700; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.landing-page .savings-result > a:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(182,255,0,.17); }
.landing-page .savings-result > p { margin: 13px 4px 0; color: #7f8c82; font-size: 12px; line-height: 1.45; text-align: center; }

/* CRM and telephony integrations: a distinct band inside the shared canvas. */
.landing-page .integrations-section { padding: 0 0 clamp(104px,8vw,136px); }
.landing-page .integrations-panel { display: grid; grid-template-columns: 1fr; gap: clamp(42px,4.5vw,68px); max-width: var(--landing-container); margin-inline: var(--landing-edge); padding: clamp(34px,4vw,58px); border: 1px solid rgba(218,255,193,.12); border-radius: 30px; background: radial-gradient(720px 360px at 88% 12%, rgba(182,255,0,.075), transparent 68%), linear-gradient(145deg, rgba(13,25,16,.88), rgba(7,15,10,.82)); box-shadow: inset 0 1px rgba(255,255,255,.025), 0 30px 90px rgba(0,0,0,.2); }
.landing-page .integrations-copy { max-width: 860px; }
.landing-page .integrations-copy h2 { margin: 0; color: var(--landing-text); font-size: clamp(34px,3vw,52px); font-weight: 620; line-height: 1.04; letter-spacing: -.04em; }
.landing-page .integrations-copy h2 em { color: var(--landing-acid); font-style: normal; font-weight: inherit; }
.landing-page .integrations-copy p { max-width: 610px; margin: 20px 0 0; color: var(--landing-muted); font-size: var(--landing-body-lg); line-height: 1.58; }
.landing-page .integrations-logos { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(22px,3vw,46px); padding-top: clamp(26px,3vw,42px); border-top: 1px solid rgba(218,255,193,.09); }
.landing-page .integration-logo-card { display: flex; min-width: 0; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 12px 0; text-align: center; }
.landing-page .integration-logo-card img { display: block; width: auto; max-width: 100%; height: 42px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: .28; }
.landing-page .integration-logo-card span { color: rgba(243,245,241,.48); font-size: 13px; }

/* FAQ replaces the former callout and keeps the same page rhythm. */
.landing-page .faq-section { padding: clamp(104px,8vw,136px) 0 clamp(112px,9vw,152px); }
.landing-page .faq-heading,
.landing-page .faq-list { max-width: var(--landing-container); margin-inline: var(--landing-edge); }
.landing-page .faq-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,480px); align-items: end; gap: clamp(34px,5vw,76px); margin-bottom: clamp(42px,5vw,70px); }
.landing-page .faq-heading h2 { margin: 0; color: var(--landing-text); font-size: var(--landing-display-lg); font-weight: 620; line-height: 1.02; letter-spacing: -.045em; }
.landing-page .faq-heading h2 em { color: var(--landing-acid); font-style: normal; font-weight: inherit; }
.landing-page .faq-heading p { margin: 0; color: var(--landing-muted); font-size: var(--landing-body-lg); line-height: 1.62; }
.landing-page .faq-list { display: grid; gap: 12px; }
.landing-page .faq-item { overflow: hidden; border: 1px solid rgba(218,255,193,.12); border-radius: 20px; background: rgba(10,20,13,.64); transition: border-color .2s ease, background .2s ease; }
.landing-page .faq-item.is-open { border-color: rgba(182,255,0,.25); background: linear-gradient(120deg, rgba(17,32,19,.88), rgba(8,17,11,.82)); }
.landing-page .faq-item h3 { margin: 0; }
.landing-page .faq-item button { display: grid; width: 100%; grid-template-columns: minmax(0,1fr) 34px; align-items: center; gap: 24px; padding: 24px clamp(22px,3vw,38px); border: 0; background: transparent; color: var(--landing-text); font: inherit; text-align: left; cursor: pointer; }
.landing-page .faq-item button span { font-size: clamp(18px,1.35vw,22px); font-weight: 600; line-height: 1.3; }
.landing-page .faq-item button i { position: relative; display: block; width: 28px; height: 28px; border: 1px solid rgba(218,255,193,.14); border-radius: 50%; }
.landing-page .faq-item button i::before,
.landing-page .faq-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--landing-acid); content: ""; transform: translate(-50%,-50%); transition: transform .2s ease; }
.landing-page .faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.landing-page .faq-item.is-open button i::after { transform: translate(-50%,-50%) rotate(0); }
.landing-page .faq-answer { padding: 0 clamp(64px,7vw,108px) 26px clamp(22px,3vw,38px); }
.landing-page .faq-answer p { max-width: 1040px; margin: 0; color: var(--landing-muted); font-size: 16px; line-height: 1.65; }

/* The header belongs to the same forest-green material as the page. */
.landing-page .site-header,
.landing-page .site-header.landing-header,
.landing-page .site-header.landing-header.landing-floating {
  padding-inline: var(--landing-edge);
  border-bottom-color: rgba(182, 255, 0, .075) !important;
  background: rgba(6, 13, 8, .84) !important;
  box-shadow: 0 14px 50px rgba(0, 0, 0, .18);
}

/* Shared type rules: one hierarchy and one accent treatment. */
.landing-page .hero-product .hero-copy h1 {
  color: var(--landing-text) !important;
  font-size: var(--landing-display-xl) !important;
  font-weight: 700 !important;
  line-height: .98 !important;
  letter-spacing: -.052em !important;
}

.landing-page :is(
  .advantage-section .task-section-heading h2,
  .employee-center h2,
  .audio-showcase-heading h2,
  .industries-heading h2,
  .quick-launch-intro h2,
  .live-demo-copy h2
) {
  color: var(--landing-text) !important;
  font-size: var(--landing-display-lg) !important;
  font-weight: 620 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}

.landing-page :is(
  .advantage-section .task-section-heading h2 span,
  .employee-center h2,
  .audio-showcase-heading h2,
  .industries-heading h2,
  .quick-launch-intro h2,
  .live-demo-copy h2
) {
  -webkit-text-fill-color: currentColor !important;
  background: none !important;
}

.landing-page :is(
  .advantage-section .task-section-heading h2 em,
  .employee-center h2 em,
  .audio-showcase-heading h2 em,
  .industries-heading h2 em,
  .quick-launch-intro h2 em,
  .live-demo-copy h2 em
) {
  background: none !important;
  color: var(--landing-acid) !important;
  font-style: normal !important;
  font-weight: inherit !important;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--landing-acid) !important;
}

.landing-page :is(
  .hero-lead,
  .task-section-heading > p,
  .employee-center > p,
  .audio-showcase-heading > p,
  .industries-heading > p,
  .quick-launch-intro > p,
  .live-demo-copy > p
) {
  color: var(--landing-muted) !important;
  font-size: var(--landing-body-lg) !important;
  line-height: 1.62 !important;
}

.landing-page :is(.advantage-card h3, .quick-launch-card h3, .audio-case-main h3) {
  color: var(--landing-text) !important;
  font-size: var(--landing-heading) !important;
  font-weight: 620 !important;
  line-height: 1.18 !important;
  letter-spacing: -.025em !important;
}

.landing-page :is(.advantage-card p, .quick-launch-card p, .audio-case-tags) {
  color: var(--landing-muted) !important;
  font-size: var(--landing-body) !important;
  line-height: 1.6 !important;
}

.landing-page .advantage-card-accent :is(h3, p, .advantage-index) {
  color: #050805 !important;
}

/* Shared horizontal grid. Full-bleed carousels retain their deliberate overflow. */
.landing-page .hero-clean.hero-product {
  min-height: calc(100svh - 84px) !important;
  padding: clamp(132px, 11vw, 176px) var(--landing-edge) clamp(104px, 10vw, 152px) !important;
  background: transparent !important;
}

.landing-page .hero-product .hero-copy {
  width: min(700px, 55vw);
}

.landing-page .advantage-section {
  position: relative;
  isolation: isolate;
  padding: clamp(104px, 8vw, 136px) 0 clamp(80px, 6.5vw, 112px) !important;
}

/* A quiet technical grid bridges the hero and advantages without competing with copy. */
.landing-page .landing-transition-light {
  position: relative;
  z-index: 2;
  height: 0;
  pointer-events: none;
}

.landing-page .landing-transition-grid {
  position: absolute;
  top: -300px;
  left: -1px;
  width: min(72vw, 1120px);
  height: clamp(520px, 48vw, 720px);
  pointer-events: none;
  opacity: .66;
  background-image:
    linear-gradient(rgba(182, 255, 0, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 0, .07) 1px, transparent 1px),
    radial-gradient(ellipse at 0% 48%, rgba(137, 222, 57, .16), rgba(71, 133, 40, .055) 44%, transparent 76%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  mask-image: radial-gradient(ellipse 92% 76% at 0% 48%, #000 0 28%, rgba(0, 0, 0, .82) 47%, rgba(0, 0, 0, .24) 69%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 92% 76% at 0% 48%, #000 0 28%, rgba(0, 0, 0, .82) 47%, rgba(0, 0, 0, .24) 69%, transparent 86%);
}

.landing-page .landing-transition-light-right .landing-transition-grid {
  right: -1px;
  left: auto;
  background-image:
    linear-gradient(rgba(182, 255, 0, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 0, .07) 1px, transparent 1px),
    radial-gradient(ellipse at 100% 48%, rgba(137, 222, 57, .16), rgba(71, 133, 40, .055) 44%, transparent 76%);
  mask-image: radial-gradient(ellipse 92% 76% at 100% 48%, #000 0 28%, rgba(0, 0, 0, .82) 47%, rgba(0, 0, 0, .24) 69%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 92% 76% at 100% 48%, #000 0 28%, rgba(0, 0, 0, .82) 47%, rgba(0, 0, 0, .24) 69%, transparent 86%);
}

.landing-page .advantage-section .task-section-heading,
.landing-page .audio-showcase-heading,
.landing-page .industries-section,
.landing-page .quick-launch-panel,
.landing-page .live-demo-panel {
  width: auto !important;
  max-width: var(--landing-container) !important;
  margin-inline: var(--landing-edge) !important;
}

.landing-page .advantage-section .task-section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) !important;
  gap: clamp(36px, 4vw, 64px) !important;
  margin-bottom: var(--landing-space-xl) !important;
  padding: 0 !important;
}

.landing-page .advantage-section .task-section-heading > p {
  max-width: 420px;
  justify-self: end;
  margin: 0 0 4px !important;
  text-align: left !important;
}

.landing-page .advantage-marquee::before {
  background: linear-gradient(90deg, rgba(8, 17, 11, .96), transparent) !important;
}

.landing-page .advantage-marquee::after {
  background: linear-gradient(270deg, rgba(8, 17, 11, .96), transparent) !important;
}

.landing-page .employee-section {
  padding: clamp(88px, 7vw, 120px) var(--landing-edge) clamp(96px, 8vw, 136px) !important;
}

.landing-page .employee-panel {
  width: 100% !important;
  max-width: var(--landing-container) !important;
  margin: 0 auto !important;
  background: transparent !important;
}

.landing-page .audio-showcase-section {
  padding: clamp(100px, 8vw, 136px) 0 clamp(112px, 9vw, 152px) !important;
}

.landing-page .audio-showcase-section::before {
  display: none !important;
}

.landing-page .audio-showcase-heading {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 40px !important;
  row-gap: 18px !important;
  margin-bottom: var(--landing-space-xl) !important;
}

.landing-page .audio-showcase-heading h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 1080px !important;
}

.landing-page .audio-showcase-heading > p {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  justify-self: start;
  margin: 0 !important;
}

.landing-page .audio-showcase-heading .audio-showcase-nav {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.landing-page .audio-case-card {
  grid-template-columns: minmax(0, 1fr) !important;
  border-color: rgba(194, 255, 137, .2) !important;
  background:
    linear-gradient(115deg, rgba(31, 54, 35, .46) 0%, rgba(14, 31, 21, .8) 46%, rgba(7, 18, 12, .9) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 28px 90px rgba(0, 0, 0, .2) !important;
}

.landing-page .audio-case-main h3 {
  max-width: 980px !important;
}

.landing-page .audio-case-player {
  max-width: 900px;
}

.landing-page .audio-case-player input[type="range"] {
  height: 5px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg,
    var(--landing-acid) 0%,
    #54e0ac var(--audio-progress, 0%),
    rgba(151, 174, 157, .24) var(--audio-progress, 0%),
    rgba(151, 174, 157, .24) 100%);
}

.landing-page .audio-case-player input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: transparent;
}

.landing-page .audio-case-player input[type="range"]::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  margin-top: -4px;
  border: 2px solid #0b1710;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--landing-acid);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, .12);
}

.landing-page .audio-case-player input[type="range"]::-moz-range-track {
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.landing-page .audio-case-player input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid #0b1710;
  border-radius: 50%;
  background: var(--landing-acid);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, .12);
}

.landing-page .industries-section {
  position: relative;
  padding: clamp(112px, 9vw, 152px) 0 clamp(108px, 8vw, 144px) !important;
}

.landing-page .industries-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: clamp(36px, 4vw, 64px);
  margin-bottom: var(--landing-space-xl);
}

.landing-page .industries-heading h2 {
  max-width: 860px;
  margin: 0;
}

.landing-page .industries-heading h2 span,
.landing-page .industries-heading h2 em {
  display: block;
}

.landing-page .industries-heading > p {
  max-width: 420px;
  justify-self: end;
  margin: 0 0 4px;
}

.landing-page .industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.landing-page .industry-card {
  position: relative;
  display: flex;
  min-height: 282px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px 27px 25px;
  border: 1px solid var(--landing-line-soft);
  border-radius: 28px;
  background:
    radial-gradient(260px 220px at 105% 110%, rgba(182, 255, 0, .075), transparent 67%),
    rgba(9, 18, 12, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .28s ease, border-color .28s ease, background-color .28s ease;
}

.landing-page .industry-card::after {
  position: absolute;
  right: -82px;
  bottom: -112px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(182, 255, 0, .1);
  border-radius: 50%;
  content: "";
}

.landing-page .industry-card:hover {
  border-color: rgba(182, 255, 0, .28);
  transform: translateY(-5px);
}

.landing-page .industry-card-accent {
  border-color: transparent;
  background: linear-gradient(145deg, #b7ff19 0%, #82dc08 100%);
  color: #071006;
}

.landing-page .industry-card-accent::after {
  border-color: rgba(7, 16, 6, .15);
}

.landing-page .industry-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.landing-page .industry-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(216, 255, 193, .16);
  border-radius: 50%;
  background: rgba(182, 255, 0, .055);
  color: var(--landing-acid);
}

.landing-page .industry-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-page .industry-index {
  color: #78847b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
}

.landing-page .industry-card h3 {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: 630;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.landing-page .industry-card p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: auto 0 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.52;
}

.landing-page .industry-card-accent :is(.industry-icon, .industry-index, h3, p) {
  color: #071006;
}

.landing-page .industry-card-accent .industry-icon {
  border-color: rgba(7, 16, 6, .18);
  background: rgba(255, 255, 255, .32);
}

.landing-page .quick-launch-section {
  padding: clamp(112px, 9vw, 152px) 0 clamp(112px, 9vw, 152px) !important;
}

.landing-page .quick-launch-panel {
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr) !important;
  gap: clamp(56px, 7vw, 112px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.landing-page .quick-launch-intro {
  top: 120px;
  padding-top: 0;
}

.landing-page .quick-launch-intro h2 {
  margin: 0 0 var(--landing-space-md) !important;
}

.landing-page .quick-launch-card,
.landing-page .quick-launch-card:hover {
  border: 1px solid var(--landing-line-soft) !important;
  background: rgba(182, 255, 0, .026) !important;
  box-shadow: none !important;
}

.landing-page .live-demo-section {
  padding: clamp(88px, 7vw, 120px) 0 clamp(120px, 9vw, 160px) !important;
}

.landing-page .live-demo-panel {
  min-height: 500px;
  padding: clamp(48px, 4.5vw, 72px) !important;
  border: 1px solid rgba(218, 255, 193, .13) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(700px 500px at 82% 48%, rgba(182, 255, 0, .12), transparent 68%),
    linear-gradient(125deg, rgba(12, 23, 15, .88), rgba(7, 14, 10, .84)) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22) !important;
}

.landing-page .live-demo-panel::before {
  display: block !important;
  background: linear-gradient(112deg, rgba(255, 255, 255, .025), transparent 48%) !important;
  content: "" !important;
}

.landing-page .landing-footer { padding: clamp(70px,7vw,108px) var(--landing-edge) 0; border-top: 1px solid rgba(218,255,193,.075); background: #071009; color: var(--landing-text); }
.landing-page .landing-footer-main { display: grid; min-height: 330px; max-width: var(--landing-container); grid-template-columns: minmax(280px,.62fr) minmax(0,1.38fr); gap: clamp(60px,8vw,130px); margin: 0 auto; padding-bottom: clamp(58px,6vw,88px); }
.landing-page .landing-footer-company { max-width: 430px; }
.landing-page .landing-footer-company > img { display: block; width: auto; max-width: 230px; height: 76px; object-fit: contain; object-position: left center; }
.landing-page .landing-footer-company > p { margin: 18px 0 0; color: var(--landing-muted); font-size: 15px; line-height: 1.55; }
.landing-page .landing-footer-contacts { display: grid; gap: 9px; margin-top: 28px; }
.landing-page .landing-footer-contacts a { width: max-content; max-width: 100%; color: var(--landing-muted); font-size: 15px; text-decoration: none; transition: color .18s ease; }
.landing-page .landing-footer-contacts a:hover { color: var(--landing-acid); }
.landing-page .landing-footer-contacts .landing-footer-phone { color: var(--landing-text); font-size: clamp(22px,2vw,30px); font-weight: 600; letter-spacing: -.02em; }
.landing-page .landing-footer-company address { margin-top: 22px; color: var(--landing-muted); font-size: 14px; font-style: normal; line-height: 1.55; }
.landing-page .landing-footer-details { display: grid; gap: 5px; margin-top: 26px; color: #7f8c82; font-size: 13px; }
.landing-page .landing-footer-navigation { min-height: 120px; }
.landing-page .landing-footer-bottom { display: flex; max-width: var(--landing-container); min-height: 92px; align-items: center; justify-content: space-between; gap: 32px; margin: 0 auto; border-top: 1px solid rgba(218,255,193,.095); color: #7f8c82; font-size: 13px; }
.landing-page .landing-footer-bottom nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 12px clamp(18px,2vw,34px); }
.landing-page .landing-footer-bottom a { color: #9da99f; text-decoration: none; transition: color .18s ease; }
.landing-page .landing-footer-bottom a:hover { color: var(--landing-acid); }

/* Stable reusable landing header grid. */
.landing-page .site-header { width: 100%; max-width: none; justify-content: flex-start; gap: clamp(24px,3vw,52px); padding-inline: var(--landing-edge) !important; }
.landing-page .site-header .brand { flex: 0 0 230px; }
.landing-page .site-header .nav { display: flex; align-items: center; gap: clamp(25px,3vw,48px); margin-left: auto; }
.landing-page .site-header .nav a { white-space: nowrap; }
.landing-page .site-header .header-actions { flex: none; white-space: nowrap; }

/* Legal pages: dark header, white document canvas, dark footer. */
.landing-page .privacy-page { min-height: calc(100svh - 84px); padding: clamp(46px,5vw,72px) var(--landing-edge) clamp(96px,8vw,132px) !important; background: #fff !important; color: #172019 !important; }
.landing-page .privacy-shell { width: 100%; max-width: var(--landing-container); margin: 0 auto; }
.landing-page .site-breadcrumbs { margin-bottom: clamp(42px,5vw,68px); color: #768078; font-size: 14px; }
.landing-page .site-breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.landing-page .site-breadcrumbs li { display: flex; align-items: center; gap: 10px; }
.landing-page .site-breadcrumbs li:not(:last-child)::after { color: #b0b7b1; content: "›"; }
.landing-page .site-breadcrumbs a { color: #4c5b50; text-decoration: none; }
.landing-page .site-breadcrumbs a:hover { color: #5c8700; }
.landing-page .privacy-document { width: 100%; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.landing-page .privacy-document > header { max-width: 1120px; padding-bottom: clamp(38px,4vw,56px); border-bottom: 0; }
.landing-page .privacy-document h1 { margin: 0; color: #111812; font-size: clamp(42px,4.5vw,68px); font-weight: 620; line-height: 1.02; letter-spacing: -.045em; }
.landing-page .privacy-document time { display: block; margin-top: 20px; color: #778178; font-size: 14px; }
.landing-page .privacy-document header p { max-width: 900px; margin: 28px 0 0; color: #536057; font-size: 18px; line-height: 1.7; }
.landing-page .privacy-document > section { max-width: 1120px; padding: clamp(38px,4vw,56px) 0; border-bottom: 0; }
.landing-page .privacy-document h2 { margin: 0 0 20px; color: #172019; font-size: clamp(24px,2vw,32px); font-weight: 620; line-height: 1.25; letter-spacing: -.02em; }
.landing-page .privacy-document section p { margin: 0; color: #536057; font-size: 16px; line-height: 1.75; }

@media (max-width: 1100px) {
  .landing-page {
    --landing-gutter: clamp(20px, 4vw, 40px);
  }

  .landing-page .hero-product .hero-copy {
    width: min(640px, 68vw);
  }

  .landing-page .site-header .nav { display: none; }

  .landing-page .advantage-section .task-section-heading,
  .landing-page .audio-showcase-heading,
  .landing-page .industries-heading {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 360px) !important;
  }

  .landing-page .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-page .audio-showcase-nav {
    grid-column: 2;
    justify-self: end;
  }

  .landing-page .quick-launch-panel {
    grid-template-columns: minmax(0, .78fr) minmax(400px, 1.22fr) !important;
    gap: 48px !important;
  }
}

@media (max-width: 900px) {
  .landing-page {
    --landing-display-xl: clamp(48px, 8vw, 64px);
    --landing-display-lg: clamp(38px, 6vw, 52px);
  }

  .landing-page .hero-clean.hero-product {
    min-height: auto !important;
    padding-top: 124px !important;
    padding-bottom: 104px !important;
  }

  .landing-page .hero-product .hero-copy {
    width: min(650px, 76vw);
  }

  .landing-page .advantage-section .task-section-heading,
  .landing-page .audio-showcase-heading,
  .landing-page .industries-heading,
  .landing-page .quick-launch-panel {
    grid-template-columns: 1fr !important;
  }

  .landing-page .advantage-section .task-section-heading > p {
    justify-self: start;
  }

  .landing-page .audio-showcase-heading > p,
  .landing-page .industries-heading > p,
  .landing-page .audio-showcase-nav {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: start;
  }

  .landing-page .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .quick-launch-intro {
    position: static;
    padding-bottom: 0;
  }

  .landing-page .savings-layout { grid-template-columns: 1fr; }
  .landing-page .integrations-panel { grid-template-columns: 1fr; }
  .landing-page .faq-heading { grid-template-columns: 1fr; align-items: start; }
  .landing-page .landing-footer-main { grid-template-columns: 1fr; min-height: 0; }
  .landing-page .landing-footer-navigation { min-height: 40px; }
}

@media (max-width: 700px) {
  .landing-page {
    --landing-gutter: 18px;
    --landing-display-xl: clamp(42px, 12vw, 58px);
    --landing-display-lg: clamp(36px, 10vw, 46px);
    --landing-heading: clamp(22px, 7vw, 27px);
    --landing-body-lg: 16px;
  }

  .landing-page .hero-clean.hero-product {
    padding: 108px var(--landing-gutter) 88px !important;
  }

  .landing-page .hero-product .hero-copy {
    width: 100%;
  }

  .landing-page .advantage-section,
  .landing-page .employee-section,
  .landing-page .audio-showcase-section,
  .landing-page .savings-section,
  .landing-page .industries-section,
  .landing-page .integrations-section,
  .landing-page .faq-section,
  .landing-page .quick-launch-section,
  .landing-page .live-demo-section {
    padding-top: 76px !important;
    padding-bottom: 88px !important;
  }

  .landing-page .advantage-section .task-section-heading,
  .landing-page .audio-showcase-heading,
  .landing-page .industries-section,
  .landing-page .quick-launch-panel,
  .landing-page .live-demo-panel {
    margin-inline: var(--landing-gutter) !important;
  }

  .landing-page .employee-section {
    padding-inline: var(--landing-gutter) !important;
  }

  .landing-page .savings-layout { margin-inline: var(--landing-gutter); }
  .landing-page .integrations-panel { margin-inline: var(--landing-gutter); padding: 28px 20px; border-radius: 22px; }
  .landing-page .faq-heading,
  .landing-page .faq-list { margin-inline: var(--landing-gutter); }
  .landing-page .faq-item { border-radius: 16px; }
  .landing-page .faq-item button { padding: 21px 18px; gap: 14px; }
  .landing-page .faq-answer { padding: 0 58px 22px 18px; }
  .landing-page .landing-footer { padding: 64px var(--landing-gutter) 0; }
  .landing-page .landing-footer-main { gap: 28px; padding-bottom: 48px; }
  .landing-page .landing-footer-company > img { max-width: 205px; height: 66px; }
  .landing-page .landing-footer-bottom { min-height: 0; align-items: flex-start; flex-direction: column; gap: 22px; padding: 30px 0 36px; }
  .landing-page .landing-footer-bottom nav { justify-content: flex-start; }
  .landing-page .privacy-page { padding: 38px var(--landing-gutter) 88px !important; }
  .landing-page .site-breadcrumbs { margin-bottom: 38px; font-size: 13px; }
  .landing-page .privacy-document h1 { font-size: clamp(36px,11vw,48px); }
  .landing-page .privacy-document header p { font-size: 16px; }
  .landing-page .integrations-logos { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
  .landing-page .savings-controls,
  .landing-page .savings-result { border-radius: 22px; }
  .landing-page .savings-result-head > i { position: static; margin-top: 14px; }
  .landing-page .savings-comparison { grid-template-columns: 1fr; }
  .landing-page .savings-field > span,
  .landing-page .savings-rate { align-items: flex-start; flex-direction: column; }

  .landing-page .advantage-section .task-section-heading,
  .landing-page .audio-showcase-heading,
  .landing-page .industries-heading {
    gap: var(--landing-space-md) !important;
    margin-bottom: var(--landing-space-lg) !important;
  }

  .landing-page .industries-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-page .industry-card {
    min-height: 238px;
    padding: 23px;
    border-radius: 23px;
  }

  .landing-page .live-demo-panel {
    min-height: 760px;
    padding: 36px 22px 0 !important;
    border-radius: 22px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .landing-main {
    background-attachment: scroll;
  }
}

/* Customer success stories: left-aligned, horizontally continuing beyond the viewport. */
.landing-page .success-stories-section {
  position: relative;
  padding: clamp(112px, 9vw, 152px) 0 clamp(108px, 8vw, 144px);
  overflow: hidden;
  scroll-margin-top: 88px;
  color: var(--landing-text);
}

.landing-page .success-stories-section::before {
  position: absolute;
  inset: 8% 0 auto;
  height: 68%;
  background: radial-gradient(circle at 78% 36%, rgba(182, 255, 0, .07), transparent 34%);
  pointer-events: none;
  content: "";
}

.landing-page .success-stories-heading {
  position: relative;
  display: flex;
  width: min(var(--landing-container), calc(100% - (var(--landing-gutter) * 2)));
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto clamp(38px, 4vw, 58px);
}

.landing-page .success-stories-heading h2 {
  max-width: 940px;
  margin: 0;
  color: var(--landing-text);
  font-size: var(--landing-display-lg);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.landing-page .success-stories-heading h2 em {
  display: block;
  color: var(--landing-acid);
  font-style: normal;
}

.landing-page .success-stories-heading p {
  margin: 18px 0 0;
  color: var(--landing-muted);
  font-size: var(--landing-body-lg);
}

.landing-page .success-stories-nav {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.landing-page .success-stories-nav button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(202, 220, 204, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  color: #f1f6f1;
  cursor: pointer;
  transition: .2s;
}

.landing-page .success-stories-nav button:hover {
  border-color: rgba(182, 255, 0, .5);
  background: rgba(182, 255, 0, .09);
  color: var(--landing-acid);
}

.landing-page .success-stories-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-page .success-stories-viewport {
  position: relative;
  width: min(var(--landing-container), calc(100% - (var(--landing-gutter) * 2)));
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.landing-page .success-stories-viewport::-webkit-scrollbar { display: none; }
.landing-page .success-stories-viewport.is-fast-sliding { scroll-snap-type: none; }

.landing-page .success-stories-track {
  display: flex;
  width: max-content;
  gap: 22px;
}

.landing-page .success-story-card {
  position: relative;
  isolation: isolate;
  display: flex;
  width: calc((min(var(--landing-container), 100vw - (var(--landing-gutter) * 2)) - 44px) / 3);
  min-height: 690px;
  flex-direction: column;
  flex: 0 0 calc((min(var(--landing-container), 100vw - (var(--landing-gutter) * 2)) - 44px) / 3);
  overflow: hidden;
  border: 1px solid rgba(218, 255, 193, .14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 27, 21, .98), rgba(10, 15, 12, .98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  scroll-snap-align: start;
}

.landing-page .success-story-card::before {
  position: absolute;
  z-index: 0;
  top: 238px;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: .58;
  background-image:
    linear-gradient(rgba(182, 255, 0, .052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 0, .052) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 62%, rgba(122, 201, 50, .085), transparent 68%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  mask-image: radial-gradient(ellipse 92% 82% at 50% 58%, #000 0 26%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .18) 72%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 58%, #000 0 26%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .18) 72%, transparent 90%);
  content: "";
}

.landing-page .success-story-card > * {
  position: relative;
  z-index: 1;
}

.landing-page .success-story-card:nth-child(2n)::before { background-position: 17px 8px, 17px 8px, 0 0; }
.landing-page .success-story-card:nth-child(3n)::before { background-position: -11px 19px, -11px 19px, 0 0; }

.landing-page .success-story-image {
  position: relative;
  height: 255px;
  flex: 0 0 255px;
  width: calc(100% - 28px);
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 18px;
  background: #111713;
}

.landing-page .success-story-image::after {
  display: none;
  content: none;
}

.landing-page .success-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.landing-page .success-story-card:hover .success-story-image img { transform: scale(1.035); }

.landing-page .success-story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.landing-page .success-story-niche {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  overflow: hidden;
  border: 1px solid rgba(182, 255, 0, .42);
  border-radius: 999px;
  color: var(--landing-acid);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-page .success-story-body h3 {
  min-height: 90px;
  margin: 0;
  color: #f4f7f2;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.landing-page .success-story-change {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.landing-page .success-story-change > div {
  min-height: 142px;
  padding-left: 17px;
  border-left: 2px solid rgba(255, 255, 255, .15);
}

.landing-page .success-story-change .solution { border-left-color: var(--landing-acid); }

.landing-page .success-story-change span {
  display: block;
  color: #d9e2da;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.landing-page .success-story-change .before span { color: #8f9991; }

.landing-page .success-story-change p {
  margin: 7px 0 0;
  color: #aab4ac;
  font-size: 14px;
  line-height: 1.55;
}

.landing-page .success-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.landing-page .success-story-metrics > div {
  min-width: 0;
  padding: 14px 8px;
  border: 1px solid rgba(218, 255, 193, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.landing-page .success-story-metrics strong,
.landing-page .success-story-metrics small { display: block; }

.landing-page .success-story-metrics strong {
  color: var(--landing-acid);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 650;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.landing-page .success-story-metrics small {
  margin-top: 6px;
  color: var(--landing-acid);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.35;
}

.landing-page .success-stories-cta {
  display: flex;
  width: min(var(--landing-container), calc(100% - (var(--landing-gutter) * 2)));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(218, 255, 193, .12);
}

.landing-page .success-stories-cta p {
  margin: 0;
  color: #e7ede7;
  font-size: 19px;
  font-weight: 550;
}

.landing-page .success-stories-cta a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 20px;
  padding: 0 23px;
  border-radius: 12px;
  background: var(--landing-acid);
  color: #071006;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.landing-page .success-stories-cta a:hover {
  color: #071006;
  box-shadow: 0 14px 34px rgba(182, 255, 0, .14);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .landing-page .success-story-card { width: min(440px, calc(100vw - 68px)); min-height: 0; flex-basis: min(440px, calc(100vw - 68px)); }
}

@media (max-width: 700px) {
  .landing-page .success-stories-section { padding: 76px 0 88px; }
  .landing-page .success-stories-heading { width: calc(100% - 36px); align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .landing-page .success-stories-heading h2 { font-size: 38px; }
  .landing-page .success-stories-viewport { width: calc(100% - 36px); }
  .landing-page .success-story-card { border-radius: 22px; }
  .landing-page .success-story-card::before { top: 205px; opacity: .44; background-size: 36px 36px, 36px 36px, 100% 100%; }
  .landing-page .success-story-image { height: 220px; flex-basis: 220px; }
  .landing-page .success-story-body { padding: 23px 20px; }
  .landing-page .success-story-body h3 { font-size: 22px; }
  .landing-page .success-story-body h3 { min-height: 0; }
  .landing-page .success-story-change > div { min-height: 0; }
  .landing-page .success-story-metrics strong { font-size: 21px; }
  .landing-page .success-stories-cta { width: calc(100% - 36px); align-items: flex-start; flex-direction: column; margin-top: 36px; }
  .landing-page .success-stories-cta a { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .success-story-image img { transition: none; }
}

/* Shared article template and responsive public navigation. */
.landing-page .content-public-document,
.landing-page .content-public-document * { min-width: 0; max-width: 100%; }
.landing-page .content-public-body { width: 100%; max-width: 1120px; overflow-wrap: anywhere; word-break: normal; }
.landing-page .content-public-body h2 { margin: 48px 0 18px; color: #172019; font-size: clamp(24px,2vw,32px); font-weight: 620; line-height: 1.25; letter-spacing: -.02em; }
.landing-page .content-public-body h2:first-child { margin-top: 0; }
.landing-page .content-public-body h3 { margin: 34px 0 14px; color: #172019; font-size: clamp(20px,1.55vw,25px); line-height: 1.3; }
.landing-page .content-public-body p,
.landing-page .content-public-body li { color: #536057; font-size: 16px; line-height: 1.75; }
.landing-page .content-public-body p { margin: 0 0 18px; }
.landing-page .content-public-body :is(ul,ol) { margin: 0 0 24px; padding-left: 24px; }
.landing-page .content-public-body blockquote { margin: 28px 0; padding: 18px 22px; border-left: 3px solid #83b900; background: #f3f7f3; color: #435046; }
.landing-page .content-public-body a { color: #547d00; text-decoration: underline; text-underline-offset: 3px; }
.landing-page .blog-public-heading { max-width: 900px; margin-bottom: 48px; }
.landing-page .blog-public-heading h1 { margin: 0; color: #111812; font-size: clamp(42px,4.5vw,68px); }
.landing-page .blog-public-heading p { color: #536057; font-size: 18px; }
.landing-page .blog-public-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.landing-page .blog-public-grid article { padding: 28px; border: 1px solid #e1e7e2; border-radius: 18px; }
.landing-page .blog-public-grid article > span { color: #709900; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.landing-page .blog-public-grid h2 { margin: 12px 0; color: #172019; font-size: 24px; }
.landing-page .blog-public-grid p { color: #617065; line-height: 1.6; }
.landing-page .site-menu-toggle { display: none; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; gap: 4px; padding: 11px; border: 1px solid rgba(218,255,193,.15); border-radius: 11px; background: rgba(255,255,255,.035); cursor: pointer; }
.landing-page .site-menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: #eef7e9; transition: transform .18s ease,opacity .18s ease; }
.landing-page .site-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.landing-page .site-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.landing-page .site-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.landing-page .site-mobile-nav { position: absolute; z-index: 999; top: 92px; right: var(--landing-gutter); left: var(--landing-gutter); padding: 10px; border: 1px solid rgba(218,255,193,.13); border-radius: 16px; background: #0b1710; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.landing-page .site-mobile-nav[hidden] { display: none; }
.landing-page .site-mobile-nav a { display: block; padding: 13px 14px; border-radius: 9px; color: #eef7e9; font-size: 15px; }
.landing-page .site-mobile-nav a:hover { background: rgba(182,255,0,.08); color: var(--landing-acid); }
.landing-page .content-public-page,
.landing-page .blog-public-page { padding-top: calc(92px + clamp(46px,5vw,72px)) !important; overflow-x: hidden; }
.landing-page .site-breadcrumbs li:last-child { min-width: 0; overflow-wrap: anywhere; }
@media (max-width:1100px) {
  .landing-page .site-menu-toggle { display: grid; order: 2; }
  .landing-page .site-header .header-actions { order: 3; margin-left: 0; }
  .landing-page .site-header .brand { margin-right: auto; }
  .landing-page .blog-public-grid { grid-template-columns: 1fr; }
}
@media (max-width:700px) {
  .landing-page .content-public-page,
  .landing-page .blog-public-page { padding-top: 110px !important; }
  .landing-page .site-header .brand { width: 155px !important; flex-basis: 155px !important; }
  .landing-page .privacy-document h1 { max-width: 100%; font-size: clamp(32px,9.5vw,42px); overflow-wrap: anywhere; }
  .landing-page .privacy-document > header { padding-bottom: 30px; }
  .landing-page .content-public-body h2 { margin-top: 38px; }
  .landing-page .content-public-body p,
  .landing-page .content-public-body li { font-size: 15px; line-height: 1.7; }
  .landing-page .site-mobile-nav { top: 72px; }
  .landing-page .site-menu-toggle { display: none; }
  .landing-page .savings-mode { display: grid; grid-template-columns: 1fr; }
  .landing-page .savings-mode button { width: 100%; }
}

/* Branded 404/error page. */
.landing-page .site-error-page { position: relative; display: grid; min-height: 100svh; overflow: hidden; padding: 92px var(--landing-edge) 0; background: radial-gradient(700px 620px at 76% 52%,rgba(102,176,35,.2),transparent 68%),linear-gradient(135deg,#061009 0%,#09150d 52%,#071009 100%); }
.landing-page .site-error-page::before { position: absolute; inset: 92px 0 0; opacity: .18; background-image: linear-gradient(rgba(182,255,0,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(182,255,0,.025) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg,#000,transparent 72%); content: ""; }
.landing-page .site-error-shell { position: relative; z-index: 1; display: grid; width: 100%; max-width: var(--landing-container); min-height: calc(100svh - 92px); grid-template-columns: minmax(390px,.78fr) minmax(520px,1.22fr); align-items: center; gap: clamp(20px,4vw,72px); margin: 0 auto; }
.landing-page .site-error-copy { position: relative; z-index: 3; padding: clamp(42px,6vh,80px) 0; }
.landing-page .site-error-code { display: flex; align-items: center; color: #f4f7f2; font-size: clamp(120px,13vw,218px); font-weight: 750; line-height: .74; letter-spacing: -.09em; text-shadow: 0 12px 44px rgba(0,0,0,.28); }
.landing-page .site-error-code em { color: var(--landing-acid); font-style: normal; text-shadow: 0 0 48px rgba(182,255,0,.18); }
.landing-page .site-error-copy h1 { max-width: 620px; margin: clamp(36px,5vh,58px) 0 18px; color: #f4f7f2; font-size: clamp(42px,4.2vw,72px); font-weight: 620; line-height: .98; letter-spacing: -.055em; }
.landing-page .site-error-copy h1 strong { display: block; color: var(--landing-acid); font-weight: inherit; }
.landing-page .site-error-copy > p { max-width: 550px; margin: 0; color: #9eaaa1; font-size: clamp(15px,1.05vw,18px); line-height: 1.65; }
.landing-page .site-error-home { display: inline-flex; min-width: 210px; min-height: 58px; align-items: center; gap: 14px; margin-top: 34px; padding: 0 20px; border-radius: 12px; background: var(--landing-acid); box-shadow: 0 18px 44px rgba(182,255,0,.14); color: #071009; font-size: 15px; font-weight: 750; transition: transform .2s ease,box-shadow .2s ease; }
.landing-page .site-error-home svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.landing-page .site-error-home span { flex: 1; }
.landing-page .site-error-home b { font-size: 20px; font-weight: 500; }
.landing-page .site-error-home:hover { color: #071009; box-shadow: 0 22px 54px rgba(182,255,0,.22); transform: translateY(-2px); }
.landing-page .site-error-visual { position: relative; align-self: stretch; min-height: min(790px,calc(100svh - 92px)); }
.landing-page .site-error-orbit { position: absolute; top: 50%; left: 54%; width: min(46vw,680px); aspect-ratio: 1; border: 1px solid rgba(182,255,0,.11); border-radius: 50%; box-shadow: inset 0 0 100px rgba(182,255,0,.035),0 0 110px rgba(87,163,39,.06); transform: translate(-50%,-47%); }
.landing-page .site-error-robot { position: absolute; z-index: 2; right: clamp(-34px,-1.5vw,-8px); bottom: 0; width: min(39vw,580px); }
.landing-page .site-error-robot img { display: block; width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.48)); }
.landing-page .site-error-question { position: absolute; z-index: 1; top: 11%; right: 0; width: min(12vw,168px); animation: site-error-float 4.6s ease-in-out infinite; }
.landing-page .site-error-question img { display: block; width: 100%; height: auto; filter: drop-shadow(0 0 28px rgba(182,255,0,.28)); }
.landing-page .site-error-bubble { position: absolute; z-index: 3; top: 20%; left: 0; width: 240px; padding: 17px 19px; border: 1px solid rgba(182,255,0,.28); border-radius: 17px; background: rgba(8,18,11,.76); box-shadow: 0 16px 40px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.landing-page .site-error-bubble::after { position: absolute; right: -18px; bottom: 17px; width: 31px; height: 20px; border-bottom: 1px solid rgba(182,255,0,.28); transform: rotate(24deg); content: ""; }
.landing-page .site-error-bubble strong,.landing-page .site-error-bubble span { display: block; }
.landing-page .site-error-bubble strong { color: #edf5e9; font-size: 14px; line-height: 1.35; }
.landing-page .site-error-bubble span { margin-top: 5px; color: #7f8f83; font-size: 12px; line-height: 1.45; }
@keyframes site-error-float { 0%,100% { transform: translate3d(0,0,0) rotate(-3deg); } 50% { transform: translate3d(0,-18px,0) rotate(3deg); } }
@media (max-width: 980px) {
  .landing-page .site-error-shell { grid-template-columns: minmax(310px,.85fr) minmax(390px,1.15fr); }
  .landing-page .site-error-bubble { top: 16%; width: 205px; }
  .landing-page .site-error-robot { width: min(50vw,570px); }
}
@media (max-width: 700px) {
  .landing-page.site-error-body { overflow-x: hidden; }
  .landing-page.site-error-body .site-header .site-login-link { display: none !important; }
  .landing-page.site-error-body .site-header .header-actions { flex: 0 0 auto; }
  .landing-page.site-error-body .site-header .button-small { padding-inline: 12px; font-size: 13px; }
  .landing-page .site-error-page { min-height: 100svh; padding: 72px 18px 0; }
  .landing-page .site-error-page::before { inset-block-start: 72px; }
  .landing-page .site-error-shell { min-height: calc(100svh - 72px); grid-template-columns: 1fr; align-content: start; gap: 0; padding-top: 34px; text-align: center; }
  .landing-page .site-error-copy { padding: 0; }
  .landing-page .site-error-code { justify-content: center; font-size: clamp(102px,35vw,150px); }
  .landing-page .site-error-copy h1 { margin: 32px auto 14px; font-size: clamp(38px,11vw,52px); }
  .landing-page .site-error-copy > p { width: 100%; max-width: 440px; margin-inline: auto; overflow-wrap: anywhere; font-size: 15px; }
  .landing-page .site-error-home { min-width: min(240px,100%); justify-content: center; margin-top: 25px; }
  .landing-page .site-error-visual { min-height: 450px; margin-top: 4px; }
  .landing-page .site-error-orbit { width: 430px; max-width: 110vw; }
  .landing-page .site-error-robot { right: 50%; bottom: -4%; width: min(76vw,350px); transform: translateX(50%); }
  .landing-page .site-error-question { top: 7%; right: 8%; width: 88px; }
  .landing-page .site-error-bubble { display: none; }
}
@media (prefers-reduced-motion: reduce) { .landing-page .site-error-question { animation: none; } }
@media (max-width:380px) {
  .landing-page .site-header .brand { width: 135px !important; flex-basis: 135px !important; }
  .landing-page .landing-brand-logo { width: 135px !important; }
  .landing-page .site-header .button-small { padding-inline: 11px; }
}

/* Cookie notice without decorative icon. */
.landing-page .cookie-notice { position: fixed; z-index: 2600; right: 20px; bottom: 20px; left: 20px; display: flex; max-width: 1440px; min-height: 92px; align-items: center; justify-content: space-between; gap: 32px; margin: 0 auto; padding: 20px 22px 20px 28px; border: 1px solid rgba(218,255,193,.16); border-radius: 22px; background: rgba(8,16,11,.96); box-shadow: 0 24px 70px rgba(0,0,0,.38); color: var(--landing-text); backdrop-filter: blur(18px); }
.landing-page .cookie-notice[hidden] { display: none; }
.landing-page .cookie-notice > div { min-width: 0; }
.landing-page .cookie-notice strong { display: block; margin-bottom: 6px; color: #f3f5f1; font-size: 16px; }
.landing-page .cookie-notice p { margin: 0; color: #a8b3aa; font-size: 13px; line-height: 1.55; }
.landing-page .cookie-notice a { color: #c7ff3b; text-decoration: underline; text-underline-offset: 3px; }
.landing-page .cookie-notice button { min-width: 138px; min-height: 48px; flex: 0 0 auto; padding: 0 24px; border: 0; border-radius: 12px; background: var(--landing-acid); color: #071009; font: 700 14px Manrope,Arial,sans-serif; cursor: pointer; }
.landing-page .cookie-notice button:hover { background: #c8ff45; }
@media (max-width:700px) {
  .landing-page .cookie-notice { right: 12px; bottom: 12px; left: 12px; align-items: stretch; flex-direction: column; gap: 16px; padding: 20px; border-radius: 18px; }
  .landing-page .cookie-notice button { width: 100%; }
}

/* Hero offer strip. */
.landing-page .hero-clean.hero-product { padding-top: clamp(112px,8.5vw,132px) !important; }
.landing-page .hero-product .hero-copy { width: min(760px,60vw); }
.landing-page .hero-product .hero-copy h1 { font-size: clamp(48px,3.8vw,68px) !important; }
.landing-page .hero-offers { display: grid; width: min(720px,100%); grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 38px; border-top: 1px solid rgba(182,255,0,.08); border-bottom: 1px solid rgba(182,255,0,.08); background: linear-gradient(90deg,transparent,rgba(182,255,0,.025),transparent); }
.landing-page .hero-offer { position: relative; display: flex; min-width: 0; align-items: center; gap: 13px; padding: 17px 18px; }
.landing-page .hero-offer + .hero-offer::before { position: absolute; top: 17px; bottom: 17px; left: 0; width: 1px; background: rgba(218,255,193,.1); content: ""; }
.landing-page .hero-offer-icon { display: grid; width: 34px; height: 42px; flex: 0 0 34px; place-items: center; color: var(--landing-acid); }
.landing-page .hero-offer-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.landing-page .hero-offer > span:last-child { display: grid; min-width: 0; gap: 2px; }
.landing-page .hero-offer small,.landing-page .hero-offer strong { display: block; white-space: nowrap; }
.landing-page .hero-offer small { color: #a8b3aa; font-size: 12px; line-height: 1.3; }
.landing-page .hero-offer strong { color: #eef4ea; font-size: 15px; font-weight: 550; line-height: 1.25; }
.landing-page .hero-offer strong em { color: var(--landing-acid); font-size: 20px; font-style: normal; font-weight: 750; }
@media (max-width: 1000px) {
  .landing-page .hero-product .hero-copy { width: min(660px,72vw); }
  .landing-page .hero-offers { width: min(650px,100%); }
  .landing-page .hero-offer { padding-inline: 12px; }
  .landing-page .hero-offer-icon { width: 32px; height: 40px; flex-basis: 32px; }
  .landing-page .landing-transition-grid { top: -250px; left: -1px; width: 82vw; height: 580px; opacity: .42; }
}
@media (max-width: 700px) {
  .landing-page .hero-clean.hero-product { padding-top: 98px !important; }
  .landing-page .hero-product .hero-copy { width: 100%; }
  .landing-page .hero-product .hero-copy h1 { font-size: clamp(39px,11vw,52px) !important; }
  .landing-page .hero-offers { grid-template-columns: 1fr; margin-top: 28px; }
  .landing-page .hero-offer { padding: 13px 8px; }
  .landing-page .hero-offer + .hero-offer::before { top: 0; right: 8px; bottom: auto; left: 8px; width: auto; height: 1px; }
  .landing-page .hero-offer small { font-size: 13px; }
  .landing-page .hero-offer strong { font-size: 16px; }
  .landing-page .hero-product .hero-actions .button { position: relative; justify-content: center !important; padding-inline: 52px !important; text-align: center; }
  .landing-page .hero-product .hero-actions .button > svg { position: absolute; left: 22px; margin: 0; }
  .landing-page .landing-transition-light { z-index: 2; }
  .landing-page .landing-transition-grid {
    top: -190px;
    width: 138vw;
    height: 470px;
    opacity: .34;
    background-size: 42px 42px, 42px 42px, 100% 100%;
    mask-image: radial-gradient(ellipse 88% 74% at 0% 46%, #000 0 22%, rgba(0, 0, 0, .72) 43%, rgba(0, 0, 0, .2) 67%, transparent 86%);
    -webkit-mask-image: radial-gradient(ellipse 88% 74% at 0% 46%, #000 0 22%, rgba(0, 0, 0, .72) 43%, rgba(0, 0, 0, .2) 67%, transparent 86%);
  }
  .landing-page .landing-transition-light-right .landing-transition-grid {
    right: -1px;
    left: auto;
    mask-image: radial-gradient(ellipse 88% 74% at 100% 46%, #000 0 22%, rgba(0, 0, 0, .72) 43%, rgba(0, 0, 0, .2) 67%, transparent 86%);
    -webkit-mask-image: radial-gradient(ellipse 88% 74% at 100% 46%, #000 0 22%, rgba(0, 0, 0, .72) 43%, rgba(0, 0, 0, .2) 67%, transparent 86%);
  }
}

/* Stable mobile menu: the live header stays in place and the panel opens below it. */
@media (max-width: 1050px) {
  .landing-page .site-header,
  .landing-page .site-header.landing-header,
  .landing-page .site-header.landing-header.landing-floating {
    top: 0 !important;
    width: 100% !important;
    height: 84px !important;
    transform: none !important;
  }
  body.landing-page.site-menu-open .public-site-header { z-index: 4100 !important; }
  .landing-page .site-menu-toggle { margin-left: 0 !important; }
  .landing-page .public-mobile-nav {
    top: 84px !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100svh - 84px) !important;
  }
  .landing-page .public-mobile-nav-head { display: none !important; }
  .landing-page .public-mobile-nav-links { margin-top: clamp(22px, 4vh, 38px) !important; }
}

@media (max-width: 700px) {
  .landing-page .site-header,
  .landing-page .site-header.landing-header,
  .landing-page .site-header.landing-header.landing-floating {
    height: 72px !important;
  }
  .landing-page .public-mobile-nav {
    top: 72px !important;
    height: calc(100svh - 72px) !important;
  }
}
