@import url('/suite-system.css?v=20260911-style1');
:root {
  --bg: #ffffff;
  --ink: #171c24;
  --muted: #667283;
  --soft: #98a2b1;
  --line: #e7ecf2;
  --line-strong: #d5dde8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --yellow: #ffe05c;
  --yellow-soft: #fff9de;
  --green: #2d7567;
  --green-soft: #edf7f4;
  --blue: #426fd4;
  --blue-soft: #f0f5ff;
  --accent: var(--green);
  --accent-soft: var(--green-soft);
  --shadow: 0 24px 70px rgba(27, 39, 56, 0.08);
  --shadow-deep: 0 38px 110px rgba(27, 39, 56, 0.12);
}

body[data-tone="blue"] {
  --accent: var(--blue);
  --accent-soft: var(--blue-soft);
}

body[data-tone="yellow"] {
  --accent: #9a7911;
  --accent-soft: var(--yellow-soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

main h2[tabindex="-1"]:focus,
main h3[tabindex="-1"]:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 32%, transparent);
  outline-offset: 6px;
  border-radius: 4px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

.lp-text-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.lp-text-link:hover {
  text-decoration-color: var(--accent);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

main,
section,
.lp-hero-grid,
.lp-hero-copy,
.presenter-window,
.presenter-body,
.lp-split,
.lp-copy,
.lp-process-visual,
.lp-faq-layout,
.lp-footer-main,
.lp-footer-column,
.demo-grid > *,
.lp-card-grid > *,
.lp-facts-grid > *,
.lp-detail-grid > *,
.lp-related-grid > * {
  min-width: 0;
}

.lp-hero h1,
.lp-lead,
.lp-fact strong,
.lp-card h3,
.lp-card p,
.lp-step h3,
.lp-step p,
.lp-detail h3,
.lp-detail p,
.lp-related-link strong,
.lp-footer-column a {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 300;
  letter-spacing: -0.035em;
}

p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(66, 111, 212, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.lp-shell {
  width: min(1320px, calc(100% - clamp(24px, 8vw, 112px)));
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(27, 39, 56, 0.04);
  backdrop-filter: blur(18px);
}

.lp-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.lp-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.lp-menu-toggle::after {
  content: "☰";
  color: var(--soft);
  font-size: 14px;
  line-height: 1;
}

.lp-header-inner.is-menu-open .lp-menu-toggle::after {
  content: "×";
  color: var(--accent);
  font-size: 18px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.lp-brand img {
  display: block;
  width: 178px;
  height: auto;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.lp-nav a {
  padding: 9px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-nav a:hover {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  transform: none;
}

.lp-nav-home,
.lp-nav-group > summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 0;
  border-radius: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lp-nav-group {
  position: relative;
}

.lp-nav > .lp-nav-home::before,
.lp-nav > .lp-nav-group > summary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.lp-nav-group > summary::-webkit-details-marker {
  display: none;
}

.lp-nav-group > summary::after {
  content: "⌄";
  margin-left: 7px;
  color: var(--soft);
  font-size: 11px;
  transform: translateY(-1px);
  transition: transform 0.2s ease, color 0.2s ease;
}

.lp-nav-group > summary:hover,
.lp-nav-group[open] > summary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.lp-nav > .lp-nav-home:hover::before,
.lp-nav > .lp-nav-home:focus-visible::before,
.lp-nav > .lp-nav-group > summary:hover::before,
.lp-nav > .lp-nav-group[open] > summary::before,
.lp-nav > .lp-nav-group.has-current > summary::before,
.lp-nav > .lp-nav-group:has(a[aria-current="page"]) > summary::before,
.lp-nav > .lp-nav-group:has(a[aria-current="location"]) > summary::before {
  transform: scaleX(1);
}

.lp-nav-group[open] > summary::after {
  color: var(--accent);
  transform: translateY(1px) rotate(180deg);
}

.lp-nav-group.has-current > summary,
.lp-nav-group:has(a[aria-current="page"]) > summary,
.lp-nav-group:has(a[aria-current="location"]) > summary {
  color: var(--accent);
}

.lp-nav-dropdown {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  z-index: 20;
  display: none;
  width: max-content;
  min-width: 250px;
  max-width: min(320px, calc(100vw - 24px));
  gap: 3px;
  padding: 7px;
  border: 1px solid rgba(213, 221, 232, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(27, 39, 56, 0.16), inset 0 1px 0 #ffffff;
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.lp-nav-group[open] > .lp-nav-dropdown {
  display: grid;
  animation: nav-dropdown-in 0.2s ease both;
}

.lp-nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.lp-nav-dropdown a::after {
  content: "↗";
  color: var(--line-strong);
  font-size: 13px;
  font-weight: 300;
}

.lp-nav-dropdown a[href^="#"]::after {
  content: "↓";
}

.lp-nav-dropdown a:hover {
  border-color: var(--line);
  background: var(--surface-soft);
  box-shadow: none;
  color: var(--ink);
  transform: none;
}

.lp-nav-dropdown a[aria-current="page"],
.lp-nav-dropdown a[aria-current="location"] {
  border-color: color-mix(in srgb, var(--accent) 20%, var(--line));
  background: var(--accent-soft);
  color: var(--accent);
}

.lp-nav-dropdown a[aria-current="page"]::after,
.lp-nav-dropdown a[aria-current="location"]::after {
  color: var(--accent);
}

.lp-nav-home:focus-visible,
.lp-nav-group > summary:focus-visible,
.lp-nav-dropdown a:focus-visible,
.lp-menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
  border-color: #bcc7d5;
  box-shadow: 0 10px 28px rgba(27, 39, 56, 0.09);
}

.lp-btn-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.lp-btn-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.lp-btn-arrow::after {
  content: "↗";
  margin-left: 18px;
  font-size: 17px;
  font-weight: 300;
}

.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffffff 0 56%, #fff9df 56% 100%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  height: 100%;
  border-top: 1px solid rgba(231, 236, 242, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 252, 0.78));
}

.lp-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  background-image:
    linear-gradient(rgba(23, 28, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 28, 36, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
  mask-image: linear-gradient(90deg, transparent 0, #000 58%, #000 100%);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.72fr);
  gap: 54px;
  align-items: center;
  min-height: 640px;
  padding: 58px 0 52px;
}

.lp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--soft);
  font-size: 13px;
}

.lp-breadcrumbs a:hover {
  color: var(--ink);
}

.lp-breadcrumbs > * + *::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(45, 117, 103, 0.16);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-kicker::before {
  display: none;
}

.lp-hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.08;
}

.lp-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #536071;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.58;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lp-proof-list li {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 12px;
}

.lp-proof-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
  font-weight: 600;
}

.lp-presenter {
  position: relative;
  min-height: 530px;
  min-width: 0;
  padding: 8px 8px 92px;
  border: 1px solid rgba(216, 225, 238, 0.94);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 4%, rgba(177, 151, 255, 0.1), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(77, 195, 166, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 42px 100px rgba(49, 72, 111, 0.16),
    0 12px 34px rgba(49, 72, 111, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(26px) saturate(1.12);
}

.lp-presenter::before {
  content: "";
  position: absolute;
  inset: 32px -34px -36px 34px;
  z-index: -1;
  border-radius: 34px;
  background: var(--accent-soft);
  filter: blur(28px);
  opacity: 0.72;
}

.presenter-float {
  position: absolute;
  z-index: 4;
  display: grid;
  width: min(210px, calc(50% - 30px));
  min-width: 0;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(216, 225, 238, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 28px 65px rgba(49, 72, 111, 0.14),
    0 8px 22px rgba(49, 72, 111, 0.06),
    inset 0 1px 0 #ffffff;
  backdrop-filter: blur(22px);
  animation: presenter-float-card 5.4s ease-in-out infinite;
}

.presenter-float-left {
  bottom: 17px;
  left: 22px;
}

.presenter-float-right {
  right: 22px;
  bottom: 17px;
  animation-delay: -1.8s;
}

.presenter-float span,
.presenter-float strong {
  display: block;
}

.presenter-float span {
  margin-bottom: 3px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.presenter-float strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presenter-window {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, #ffffff, #f8fafc);
}

.presenter-window::after {
  content: "";
  position: absolute;
  top: 72px;
  bottom: 0;
  left: -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: skewX(-12deg);
  animation: presenter-scan 6s ease-in-out 1 both;
  pointer-events: none;
}

.presenter-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.presenter-dots {
  display: flex;
  gap: 7px;
}

.presenter-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfe4ea;
}

.presenter-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #414a58;
  font-size: 13px;
}

.presenter-title::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
  animation: presenter-pulse 2.4s ease-out infinite;
}

.presenter-status {
  justify-self: end;
  color: var(--soft);
  font-size: 12px;
}

.presenter-body {
  padding: 22px;
}

.presenter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.presenter-tabs button {
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 250, 253, 0.9);
  box-shadow: 0 10px 24px rgba(38, 58, 92, 0.045), inset 0 1px 0 #ffffff;
  color: var(--soft);
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.presenter-tabs button:hover,
.presenter-tabs button.is-active {
  border-color: #e2c958;
  background: linear-gradient(145deg, #fffdf3, #fff4bd);
  color: #735d00;
  box-shadow: 0 16px 34px rgba(183, 149, 27, 0.14), inset 0 1px 0 #ffffff;
  transform: translateY(-1px);
}

.presenter-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 300px;
}

.presenter-lane {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.88);
}

.presenter-lane > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}

.presenter-card {
  margin-bottom: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(27, 39, 56, 0.045);
  color: var(--muted);
  font-size: 11px;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, color 0.32s ease;
}

.presenter-card strong,
.presenter-card small {
  display: block;
}

.presenter-card strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.presenter-card small {
  color: var(--soft);
}

[data-stage].is-active.presenter-card,
.presenter-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 13px 30px color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  transform: translateY(-3px);
}

.presenter-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.presenter-summary span,
.presenter-summary small {
  display: block;
}

.presenter-summary span {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.presenter-summary strong {
  font-size: 14px;
  font-weight: 500;
}

.presenter-summary small {
  color: var(--accent);
  font-size: 11px;
}

.presenter-summary b {
  font-size: 28px;
  font-weight: 300;
}

.presenter-stack {
  display: grid;
  gap: 12px;
  min-height: 310px;
}

.presenter-stack-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(27, 39, 56, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.presenter-stack-item::before {
  content: attr(data-index);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--soft);
  font-size: 11px;
}

.presenter-stack-item strong,
.presenter-stack-item small {
  display: block;
}

.presenter-stack-item strong {
  font-size: 13px;
  font-weight: 500;
}

.presenter-stack-item small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 11px;
}

.presenter-stack-item > span {
  color: var(--muted);
  font-size: 11px;
}

.presenter-stack-item.is-active {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 15px 34px color-mix(in srgb, var(--accent) 10%, transparent);
  transform: translateX(6px);
}

.presenter-stack-item.is-active::before {
  background: var(--accent-soft);
  color: var(--accent);
}

.demo-scenes {
  position: relative;
  min-height: 328px;
}

.demo-scene[hidden] {
  display: none !important;
}

.js .demo-scene:not(.is-active) {
  display: none;
}

.demo-scene.is-active {
  animation: demo-scene-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 10px;
}

.demo-grid.demo-grid-equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(27, 39, 56, 0.05), inset 0 1px 0 #ffffff;
}

.demo-panel-accent {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 54%),
    rgba(255, 255, 255, 0.96);
}

.demo-panel-alert {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 224, 92, 0.3), transparent 55%),
    rgba(255, 255, 255, 0.96);
}

.demo-panel > span,
.demo-panel-head span {
  display: block;
  color: var(--soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.demo-panel-head strong {
  font-size: 13px;
  font-weight: 500;
}

.demo-panel-head em,
.demo-badge {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.demo-kpi {
  min-width: 0;
  min-height: 78px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.demo-kpi span,
.demo-kpi small,
.demo-kpi strong {
  display: block;
}

.demo-kpi span {
  overflow: hidden;
  color: var(--soft);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-kpi strong {
  margin: 7px 0 2px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.demo-kpi small {
  color: var(--accent);
  font-size: 9px;
}

.demo-list {
  display: grid;
  gap: 7px;
}

.demo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.demo-row strong,
.demo-row small {
  display: block;
}

.demo-row strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-row > strong {
  max-width: 150px;
  line-height: 1.25;
  text-align: right;
  white-space: normal;
}

.demo-row small {
  margin-top: 2px;
  color: var(--soft);
  font-size: 9px;
}

.demo-row > small {
  grid-column: 1 / -1;
  margin-top: -5px;
  text-align: right;
}

.demo-row > span,
.demo-row > em {
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.demo-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  min-height: 150px;
  padding: 18px 4px 4px;
}

.demo-bars i {
  flex: 1;
  min-width: 8px;
  height: var(--bar, 60%);
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 68%, #ffffff), var(--accent));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 14%, transparent);
  transform-origin: bottom;
  animation: demo-bar-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-bars i:nth-child(2) { animation-delay: 0.07s; }
.demo-bars i:nth-child(3) { animation-delay: 0.14s; }
.demo-bars i:nth-child(4) { animation-delay: 0.21s; }
.demo-bars i:nth-child(5) { animation-delay: 0.28s; }
.demo-bars i:nth-child(6) { animation-delay: 0.35s; }

.demo-bars-cohort i:nth-child(even) {
  background: linear-gradient(180deg, #ffe98c, #dfbd27);
}

.demo-progress {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.demo-progress > i {
  display: block;
  width: var(--progress, 65%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--accent));
  transform-origin: left;
  animation: demo-progress-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.demo-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 9px;
}

.demo-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 8px;
  align-items: center;
  min-height: 138px;
}

.demo-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--yellow), var(--accent));
}

.demo-flow > i:not(.demo-pulse) {
  display: none;
}

.demo-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(27, 39, 56, 0.06);
  text-align: center;
}

.demo-node strong,
.demo-node small,
.demo-node span {
  display: block;
}

.demo-node strong {
  font-size: 12px;
  font-weight: 500;
}

.demo-node small,
.demo-node span {
  margin-top: 3px;
  color: var(--soft);
  font-size: 9px;
}

.demo-node.demo-node-middle {
  min-height: 62px;
  background: var(--accent-soft);
  color: var(--accent);
}

.demo-pulse {
  position: absolute;
  top: calc(50% - 5px);
  left: 19%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
  color: transparent;
  font-size: 0;
  animation: demo-pulse-route 2.2s ease-in-out infinite;
}

.demo-timeline {
  position: relative;
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding-left: 20px;
}

.demo-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line));
}

.demo-timeline > div {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
}

.demo-timeline > .demo-row {
  min-height: 42px;
  padding: 8px 10px;
}

.demo-timeline > .demo-row > small {
  margin: 0;
  text-align: right;
}

.demo-timeline > div::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -19px;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--line);
}

.demo-timeline span {
  color: var(--muted);
}

.demo-timeline time {
  color: var(--soft);
  white-space: nowrap;
}

.presenter-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.presenter-metric {
  min-height: 100px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.presenter-metric span,
.presenter-metric small {
  display: block;
  color: var(--soft);
  font-size: 10px;
}

.presenter-metric strong {
  display: block;
  margin: 10px 0 5px;
  font-size: 24px;
  font-weight: 300;
}

.presenter-metric small {
  color: var(--accent);
}

.presenter-chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 190px;
  padding: 22px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #ffffff;
}

.presenter-chart i {
  flex: 1;
  min-width: 14px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 70%, #ffffff), var(--accent));
  transform-origin: bottom;
  animation: bar-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.presenter-chart i:nth-child(2) { animation-delay: 0.12s; }
.presenter-chart i:nth-child(3) { animation-delay: 0.24s; }
.presenter-chart i:nth-child(4) { animation-delay: 0.36s; }
.presenter-chart i:nth-child(5) { animation-delay: 0.48s; }
.presenter-chart i:nth-child(6) { animation-delay: 0.6s; }

.lp-facts {
  position: relative;
  z-index: 3;
  margin-top: -18px;
}

.lp-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-fact {
  min-width: 0;
  min-height: 128px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(27, 39, 56, 0.055), inset 0 1px 0 #ffffff;
}

.lp-fact:last-child {
  border-right: 1px solid var(--line);
}

.lp-fact span,
.lp-fact strong {
  display: block;
}

.lp-fact span {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-fact strong {
  max-width: 320px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.lp-section {
  padding: 90px 0;
}

.lp-section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.lp-section-accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff 60%);
}

.lp-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 38px;
}

.lp-section-head::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}

.lp-section-head h2,
.lp-copy h2,
.lp-faq-head h2,
.lp-final h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}

.lp-section-head p,
.lp-copy > p,
.lp-faq-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(218, 225, 236, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 235, 255, 0.38), transparent 40%),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 34px 80px rgba(47, 70, 108, 0.1),
    0 8px 24px rgba(47, 70, 108, 0.05),
    inset 0 1px 0 #ffffff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lp-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 224, 92, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.96);
}

.lp-card:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 195, 166, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.96);
}

.lp-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-card:hover {
  border-color: color-mix(in srgb, var(--accent) 27%, var(--line));
  box-shadow: 0 24px 65px rgba(27, 39, 56, 0.08);
  transform: translateY(-5px);
}

.lp-card:hover::after {
  opacity: 0.8;
  transform: scale(1);
}

.lp-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 12px;
}

.lp-card h3 {
  max-width: 290px;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.15;
}

.lp-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(440px, 0.92fr);
  gap: 70px;
  align-items: center;
}

.lp-copy .lp-kicker {
  margin-bottom: 20px;
}

.lp-copy h2 {
  margin-bottom: 24px;
}

.lp-checks {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lp-checks li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  color: #414a58;
}

.lp-checks li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 17px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

.lp-process-visual {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 235, 255, 0.3), transparent 42%),
    #ffffff;
  box-shadow: 0 30px 78px rgba(27, 39, 56, 0.1), inset 0 1px 0 #ffffff;
}

.lp-process-visual::before {
  content: "";
  position: absolute;
  top: 58px;
  bottom: 58px;
  left: 56px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line));
}

.lp-process-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 15px 16px 15px 0;
  border-bottom: 1px solid var(--line);
}

.lp-process-row:last-child {
  border-bottom: 0;
}

.lp-process-row > span:first-child {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #ffffff;
  color: var(--accent);
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(27, 39, 56, 0.06);
}

.lp-process-row strong,
.lp-process-row small {
  display: block;
}

.lp-process-row strong {
  font-size: 15px;
  font-weight: 500;
}

.lp-process-row small {
  margin-top: 4px;
  color: var(--soft);
}

.lp-process-row > em {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lp-step {
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(27, 39, 56, 0.06), inset 0 1px 0 #ffffff;
}

.lp-step > span {
  display: block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lp-step h3 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.2;
}

.lp-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.lp-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp-detail {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(27, 39, 56, 0.06), inset 0 1px 0 #ffffff;
}

.lp-detail span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-detail h3 {
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 1.18;
}

.lp-detail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.lp-estimator {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lp-estimator-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.lp-estimator-head strong,
.lp-estimator-head span {
  display: block;
}

.lp-estimator-head strong {
  font-size: 17px;
  font-weight: 500;
}

.lp-estimator-head span {
  color: var(--soft);
  font-size: 12px;
}

.lp-estimator-value {
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  white-space: nowrap;
}

.lp-range-group {
  margin-bottom: 24px;
}

.lp-range-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.lp-range-group input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.lp-estimator-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.lp-estimator-options label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.lp-estimator-options input {
  accent-color: var(--accent);
}

.estimate-breakdown {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, var(--surface-soft));
}

.estimate-breakdown-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.estimate-breakdown-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 34px;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.estimate-breakdown-row > i {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f5;
}

.estimate-breakdown-row > i > b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--accent));
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.estimate-breakdown-row > strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  text-align: right;
}

.estimate-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.estimate-plan span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 9px;
}

.lp-estimator-note {
  margin: 22px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--soft);
  font-size: 11px;
}

.lp-interface-section {
  position: relative;
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 224, 92, 0.16), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(77, 195, 166, 0.1), transparent 28%),
    var(--surface-soft);
}

.lp-interface-section > .lp-shell {
  width: min(980px, calc(100% - clamp(24px, 8vw, 112px)));
}

.lp-interface-section .lp-section-head {
  max-width: 720px;
}

.interface-gallery {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(216, 225, 238, 0.94);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 36px 90px rgba(49, 72, 111, 0.12),
    0 10px 28px rgba(49, 72, 111, 0.06),
    inset 0 1px 0 #ffffff;
  backdrop-filter: blur(22px);
}

.interface-gallery-buttons,
.interface-gallery-tabs,
.interface-gallery-nav {
  counter-reset: interface-tab;
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, #ffffff, #f7f9fc);
}

.interface-gallery-button {
  counter-increment: interface-tab;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 54px;
  padding: 10px 12px 10px 47px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.interface-gallery-button::before {
  content: counter(interface-tab, decimal-leading-zero);
  position: absolute;
  left: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #ffffff;
  color: var(--soft);
  font-size: 9px;
  box-shadow: 0 0 0 0 transparent;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.interface-gallery-button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--line-strong);
  box-shadow: 0 0 0 0 transparent;
  flex: 0 0 auto;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.interface-gallery-button:hover {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  transform: translateX(2px);
}

.interface-gallery-button.is-active {
  border-color: color-mix(in srgb, var(--accent) 25%, var(--line));
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 224, 92, 0.22), transparent 54%),
    #ffffff;
  box-shadow: 0 12px 28px rgba(39, 59, 92, 0.08), inset 0 1px 0 #ffffff;
  color: var(--ink);
}

.interface-gallery-button.is-active::before {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 9%, transparent);
}

.interface-gallery-button.is-active::after {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.interface-gallery-panels,
.interface-gallery-stage {
  min-width: 0;
}

.interface-gallery-panel {
  position: relative;
  min-width: 0;
  min-height: 350px;
  overflow: hidden;
  padding: 57px 15px 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 235, 255, 0.28), transparent 38%),
    linear-gradient(rgba(23, 28, 36, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 28, 36, 0.025) 1px, transparent 1px),
    linear-gradient(150deg, #ffffff, #f9fbfd);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 1px 0 #ffffff;
}

.interface-gallery-panel::before {
  content: attr(aria-label);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 43px;
  overflow: hidden;
  padding: 13px 42px 10px 60px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at calc(100% - 20px) 50%, var(--accent) 0 3px, var(--accent-soft) 3.5px 7px, transparent 7.5px),
    rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.interface-gallery-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dfe4ea;
  box-shadow: 12px 0 #dfe4ea, 24px 0 #dfe4ea;
  pointer-events: none;
  z-index: 2;
}

.interface-gallery-panel[hidden] {
  display: none !important;
}

.interface-gallery-panel:not(.is-active) {
  display: none;
}

.interface-gallery-panel.is-active {
  animation: demo-scene-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.interface-gallery .demo-panel,
.interface-gallery .demo-kpi,
.interface-gallery .demo-row {
  min-width: 0;
}

.interface-gallery .demo-kpis {
  gap: 7px;
  margin-bottom: 8px;
}

.interface-gallery .demo-kpi {
  position: relative;
  min-height: 66px;
  overflow: hidden;
  padding: 9px 42px 9px 10px;
  border-radius: 12px;
}

.interface-gallery .demo-kpi strong {
  margin: 5px 0 2px;
  font-size: 17px;
}

.interface-gallery .demo-kpi::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 27px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(to top, color-mix(in srgb, var(--accent) 45%, transparent) 0 100%) 0 100% / 4px 38% no-repeat,
    linear-gradient(to top, color-mix(in srgb, var(--accent) 62%, transparent) 0 100%) 8px 100% / 4px 72% no-repeat,
    linear-gradient(to top, rgba(255, 224, 92, 0.85) 0 100%) 16px 100% / 4px 54% no-repeat,
    linear-gradient(to top, var(--accent) 0 100%) 24px 100% / 4px 88% no-repeat;
  opacity: 0.72;
}

.interface-gallery .demo-grid {
  gap: 8px;
}

.interface-gallery .demo-panel {
  padding: 11px;
  border-radius: 13px;
}

.interface-gallery .demo-panel-head {
  margin-bottom: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.interface-gallery .demo-list {
  gap: 6px;
}

.interface-gallery .demo-row {
  min-height: 36px;
  padding: 7px 9px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: 10px;
}

.interface-gallery .demo-tags {
  gap: 5px;
  margin-top: 7px;
}

.interface-gallery .demo-tags span {
  padding: 4px 7px;
}

.interface-gallery .demo-progress {
  margin-top: 7px;
}

.interface-gallery .demo-bars {
  min-height: 112px;
  padding-top: 12px;
}

.interface-gallery-panel.is-active .demo-panel,
.interface-gallery-panel.is-active .demo-kpi {
  animation: interface-element-in 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.interface-gallery-panel.is-active .demo-panel:nth-child(2),
.interface-gallery-panel.is-active .demo-kpi:nth-child(2) {
  animation-delay: 0.06s;
}

.interface-gallery-panel.is-active .demo-kpi:nth-child(3) {
  animation-delay: 0.1s;
}

.interface-gallery-panel.is-active .demo-kpi:nth-child(4) {
  animation-delay: 0.14s;
}

.interface-gallery .demo-row > span,
.interface-gallery .demo-panel-head strong {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.interface-gallery .demo-row > div {
  min-width: 0;
}

.interface-gallery .demo-grid + .demo-kpis,
.interface-gallery .demo-flow + .demo-kpis {
  margin-top: 8px;
}

.interface-gallery .demo-row > strong {
  max-width: min(190px, 44%);
  overflow-wrap: anywhere;
}

.lp-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: start;
}

.lp-faq-head {
  position: sticky;
  top: 118px;
}

.lp-faq-head h2 {
  margin-bottom: 20px;
}

.lp-faq-list {
  border-top: 1px solid var(--line);
}

.lp-faq-list details {
  border-bottom: 1px solid var(--line);
}

.lp-faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 400;
}

.lp-faq-list summary::-webkit-details-marker {
  display: none;
}

.lp-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease, background 0.25s ease;
}

.lp-faq-list details[open] summary::after {
  background: var(--accent-soft);
  transform: rotate(45deg);
}

.lp-faq-list details p {
  max-width: 740px;
  padding: 0 54px 25px 0;
  color: var(--muted);
  line-height: 1.75;
}

.lp-related {
  padding-top: 0;
}

.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-related-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-related-link:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 18px 48px rgba(27, 39, 56, 0.07);
  transform: translateY(-4px);
}

.lp-related-link span,
.lp-related-link strong {
  display: block;
}

.lp-related-link span {
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-related-link strong {
  max-width: 270px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.lp-related-link b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 300;
}

.lp-final-section {
  padding: 0 0 78px;
}

.lp-final {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 224, 92, 0.34), transparent 28%),
    linear-gradient(90deg, #ffffff 0 58%, #fff9df 58% 100%);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(27, 39, 56, 0.1), inset 0 1px 0 #ffffff;
}

.lp-final::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(45, 117, 103, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(45, 117, 103, 0.025), 0 0 0 140px rgba(45, 117, 103, 0.018);
}

.lp-final-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.lp-final .lp-kicker {
  color: var(--green);
}

.lp-final h2 {
  margin-bottom: 22px;
}

.lp-final p {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
}

.lp-final .lp-btn-light {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.lp-footer {
  padding: 0;
  border-top: 1px solid var(--line);
}

.lp-footer > .lp-shell {
  padding: 46px 0 24px;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(190px, 0.62fr));
  gap: 34px;
  padding-bottom: 0;
}

.lp-footer-brand img {
  display: block;
  width: 185px;
  height: auto;
  margin-bottom: 18px;
}

.lp-footer-brand p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.lp-footer-column h2 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-footer-column a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.lp-footer-column a:hover {
  color: var(--ink);
}

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
  font-weight: 300;
}

.lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.lp-footer-legal span {
  white-space: nowrap;
}

.lp-footer-legal span:first-child,
.lp-footer-legal span:nth-child(2) {
  color: var(--ink);
  font-weight: 400;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-delay-1 { transition-delay: 0.1s; }
.js .reveal-delay-2 { transition-delay: 0.2s; }
.js .reveal-delay-3 { transition-delay: 0.3s; }

.js .lp-presenter:not(.is-visible) .presenter-window::after,
.js .lp-presenter:not(.is-visible) .presenter-float,
.js .lp-presenter:not(.is-visible) .presenter-chart i,
.js .lp-presenter:not(.is-visible) .demo-bars i,
.js .lp-presenter:not(.is-visible) .demo-progress i,
.js .lp-presenter:not(.is-visible) .demo-pulse {
  animation-play-state: paused;
}

@keyframes presenter-float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-9px) rotate(0.001deg); }
}

@keyframes presenter-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes presenter-scan {
  0%, 18% { left: -34%; opacity: 0; }
  30% { opacity: 0.7; }
  62% { left: 116%; opacity: 0; }
  100% { left: 116%; opacity: 0; }
}

@keyframes demo-scene-in {
  from { opacity: 0; transform: translateY(10px) scale(0.99); }
  to { opacity: 1; transform: none; }
}

@keyframes interface-element-in {
  from { opacity: 0.24; transform: translateY(7px) scale(0.992); }
  to { opacity: 1; transform: none; }
}

@keyframes nav-dropdown-in {
  from { opacity: 0; transform: translate(-50%, -6px) scale(0.985); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes demo-bar-in {
  from { opacity: 0.2; transform: scaleY(0.08); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes demo-progress-in {
  from { transform: scaleX(0.05); }
  to { transform: scaleX(1); }
}

@keyframes demo-pulse-route {
  0% { left: 19%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(81% - 10px); opacity: 0; }
}

@keyframes presenter-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 28%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes bar-rise {
  from { transform: scaleY(0.05); opacity: 0.25; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1050px) {
  .lp-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .lp-menu-toggle {
    display: inline-flex;
  }

  .lp-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 3px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(27, 39, 56, 0.14);
    max-height: min(72vh, 560px);
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .lp-nav a {
    padding: 12px 14px;
  }

  .lp-nav-home,
  .lp-nav-group > summary {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
  }

  .lp-nav-group {
    width: 100%;
  }

  .lp-nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 3px 0 5px;
    padding: 5px;
    border-color: rgba(222, 229, 238, 0.86);
    border-radius: 12px;
    background: var(--surface-soft);
    box-shadow: inset 0 1px 0 #ffffff;
    transform: none;
    backdrop-filter: none;
  }

  .lp-nav-group[open] > .lp-nav-dropdown {
    animation: none;
  }

  .lp-nav-dropdown a {
    min-height: 42px;
    padding: 10px 13px 10px 20px;
    background: rgba(255, 255, 255, 0.78);
    white-space: normal;
  }

  .lp-header-inner.is-menu-open .lp-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  html:not(.js) .lp-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 8px;
  }

  html:not(.js) .lp-nav {
    position: static;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 62px;
  }

  .lp-hero-copy {
    max-width: 780px;
  }

  .lp-presenter {
    width: min(720px, 100%);
    min-height: 0;
  }

  .lp-section-head,
  .lp-split,
  .lp-faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lp-faq-head {
    position: static;
  }

  .lp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .lp-footer-brand {
    grid-column: 1 / -1;
  }

  .interface-gallery {
    grid-template-columns: 1fr;
  }

  .interface-gallery-buttons,
  .interface-gallery-tabs,
  .interface-gallery-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .interface-gallery-button {
    min-height: 62px;
  }

  .interface-gallery-panel {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .lp-shell {
    width: min(1320px, calc(100% - clamp(24px, 8vw, 112px)));
  }

  .lp-header {
    padding-top: 0;
  }

  .lp-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    min-height: 66px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
  }

  .lp-brand img {
    width: clamp(122px, 30vw, 150px);
  }

  .lp-header .lp-btn {
    min-height: 39px;
    padding: 0 13px;
    font-size: 12px;
  }

  .lp-hero-grid {
    min-height: 0;
    padding: 44px 0 62px;
  }

  .lp-breadcrumbs {
    margin-bottom: 20px;
  }

  .lp-hero h1 {
    font-size: 38px;
  }

  .lp-lead {
    font-size: 17px;
  }

  .lp-presenter {
    padding: 8px;
    border-radius: 24px;
  }

  .presenter-float {
    display: none;
  }

  .presenter-window {
    min-height: 0;
    border-radius: 18px;
  }

  .presenter-body {
    padding: 14px;
  }

  .presenter-board {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 82%);
    min-height: 260px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .presenter-lane {
    padding: 8px;
    scroll-snap-align: start;
  }

  .presenter-card {
    padding: 9px;
  }

  .lp-facts {
    margin-top: -12px;
  }

  .lp-facts-grid {
    grid-template-columns: 1fr;
  }

  .lp-fact {
    min-height: 0;
    padding: 22px;
    border: 1px solid var(--line);
  }

  .lp-fact:last-child {
    border: 1px solid var(--line);
  }

  .lp-section {
    padding: 76px 0;
  }

  .lp-section-head {
    margin-bottom: 32px;
  }

  .lp-section-head h2,
  .lp-copy h2,
  .lp-faq-head h2,
  .lp-final h2 {
    font-size: 32px;
  }

  .lp-card-grid,
  .lp-steps,
  .lp-detail-grid,
  .lp-related-grid {
    grid-template-columns: 1fr;
  }

  .lp-card {
    min-height: 240px;
  }

  .lp-card-num {
    margin-bottom: 32px;
  }

  .lp-card h3,
  .lp-detail h3 {
    font-size: 20px;
  }

  .lp-step h3 {
    font-size: 19px;
  }

  .lp-process-visual,
  .lp-estimator {
    padding: 18px;
  }

  .lp-process-row {
    grid-template-columns: 48px 1fr;
  }

  .lp-process-row > span:first-child {
    width: 48px;
    height: 48px;
  }

  .lp-process-row > em {
    display: none;
  }

  .lp-process-visual::before {
    left: 42px;
  }

  .lp-estimator-options {
    grid-template-columns: 1fr;
  }

  .lp-estimator-head {
    flex-direction: column;
  }

  .lp-estimator-value {
    white-space: normal;
  }

  .lp-faq-list summary {
    font-size: 16px;
  }

  .lp-final {
    padding: 38px 26px;
    border-radius: 25px;
  }

  .lp-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-footer-bottom {
    flex-direction: column;
  }

  .demo-scenes {
    min-height: 350px;
  }

  .demo-grid,
  .demo-grid.demo-grid-equal {
    grid-template-columns: 1fr;
  }

  .demo-bars {
    min-height: 100px;
  }

  .interface-gallery {
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
  }

  .interface-gallery-buttons,
  .interface-gallery-tabs,
  .interface-gallery-nav {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 7px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .interface-gallery-button {
    flex: 0 0 min(220px, 72vw);
    min-height: 56px;
    padding: 11px 13px 11px 48px;
    scroll-snap-align: start;
  }

  .interface-gallery-button::before {
    left: 14px;
  }

  .interface-gallery-panel {
    padding: 55px 12px 12px;
    border-radius: 18px;
  }
}

@media (max-width: 520px) {
  .lp-header-inner {
    grid-template-columns: 1fr auto;
  }

  .lp-header .lp-btn {
    display: none;
  }

  .lp-btn-arrow::after {
    margin-left: 10px;
  }

  .lp-hero-actions {
    display: grid;
  }

  .lp-hero h1 {
    font-size: 29px;
  }

  .lp-section {
    padding: 52px 0;
  }

  .lp-section-head h2,
  .lp-copy h2,
  .lp-faq-head h2,
  .lp-final h2 {
    font-size: 28px;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
  }

  .presenter-tabs {
    gap: 5px;
  }

  .presenter-tabs button {
    padding: 5px;
    font-size: 10px;
  }

  .presenter-bar {
    padding: 0 15px;
  }

  .presenter-status {
    display: none;
  }

  .presenter-bar {
    grid-template-columns: 1fr auto;
  }

  .presenter-title {
    justify-self: end;
  }

  .presenter-metrics {
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .presenter-metric {
    min-height: 78px;
    scroll-snap-align: start;
  }

  .demo-kpis {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(105px, 1fr);
    overflow-x: auto;
    padding-bottom: 7px;
    scroll-snap-type: x proximity;
  }

  .demo-kpi {
    scroll-snap-align: start;
  }

  .demo-flow {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .demo-flow::before,
  .demo-pulse {
    display: none;
  }

  .demo-node {
    min-height: 58px;
  }

  .estimate-breakdown-row {
    grid-template-columns: 68px minmax(0, 1fr) 30px;
  }

  .demo-row > strong {
    max-width: 120px;
  }

  .interface-gallery {
    padding: 6px;
    border-radius: 20px;
  }

  .interface-gallery-panel {
    padding: 53px 10px 10px;
  }

  .interface-gallery .demo-kpis {
    grid-auto-columns: minmax(140px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
