:root {
  --lp-brand: #324a5f;
  --lp-brand-dark: #243849;
  --lp-brand-deeper: #182530;
  --lp-brand-glow: rgba(50, 74, 95, 0.18);
  --lp-brand-soft: rgba(50, 74, 95, 0.08);
  --lp-orange: #f8961e;
  --lp-orange-dark: #e6861b;
  --lp-success: #22c55e;
  --lp-success-soft: rgba(34, 197, 94, 0.12);
  --lp-danger: #f94144;
  --lp-danger-soft: rgba(249, 65, 68, 0.1);

  --lp-ink-900: #060c18;
  --lp-ink-800: #0a0f1a;
  --lp-ink-700: #0f172a;
  --lp-ink-600: #1e293b;
  --lp-ink-500: #334155;
  --lp-ink-400: #475569;
  --lp-ink-300: #64748b;
  --lp-ink-200: #94a3b8;
  --lp-ink-100: #cbd5e1;

  --lp-surface-0: #ffffff;
  --lp-surface-1: #fafbfc;
  --lp-surface-2: #f1f5f9;
  --lp-surface-3: #e8eef4;

  --lp-border: rgba(100, 116, 139, 0.18);
  --lp-border-dark: rgba(255, 255, 255, 0.1);

  --lp-radius: 20px;
  --lp-radius-sm: 12px;
  --lp-radius-xs: 8px;
  --lp-shadow: 0 24px 64px rgba(10, 15, 26, 0.14);
  --lp-shadow-sm: 0 8px 24px rgba(10, 15, 26, 0.08);
  --lp-max: 1240px;
  --lp-narrow: 860px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.marketing-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.marketing-site main {
  flex: 1;
}
.lp3 {
  width: 100%;
  min-height: 100vh;
  background: var(--lp-surface-0);
  color: var(--lp-ink-700);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.lp3 *,
.lp3 *::before,
.lp3 *::after {
  box-sizing: border-box;
}
.lp3 a {
  text-decoration: none;
}
.lp3 h1,
.lp3 h2,
.lp3 h3 {
  margin: 0;
  line-height: 1.1;
}
.lp3 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.lp3-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-brand);
  margin-bottom: 0.75rem;
}
.lp3-label--light {
  color: rgba(50, 74, 95, 0.7);
}

.lp3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.lp3-eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lp-brand);
  box-shadow: 0 0 10px var(--lp-brand);
  animation: lp3-pulse 2.4s ease-in-out infinite;
}

@keyframes lp3-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.lp3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.lp3-btn:hover {
  transform: translateY(-2px);
}
.lp3-btn:active {
  transform: translateY(0);
}
.lp3-btn--primary {
  background: var(--lp-orange);
  color: #fff;
  box-shadow: 0 8px 28px rgba(248, 150, 30, 0.32);
}
.lp3-btn--primary:hover {
  background: var(--lp-orange-dark);
  box-shadow: 0 14px 36px rgba(248, 150, 30, 0.4);
}
.lp3-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
}
.lp3-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}
.lp3-btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
}
.lp3-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.lp3-btn--lg {
  min-height: 52px;
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
}
.lp3-btn--full {
  width: 100%;
  justify-content: center;
}
.lp3-btn--inline {
  margin-top: 1rem;
}

.lp3-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.lp3-nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--lp-border);
  box-shadow: 0 4px 24px rgba(10, 15, 26, 0.06);
}
.lp3-nav--scrolled .lp3-nav__brand-name {
  color: var(--lp-ink-700);
}
.lp3-nav--scrolled .lp3-nav__links a {
  color: var(--lp-ink-400);
}
.lp3-nav--scrolled .lp3-nav__links a:hover {
  color: var(--lp-brand);
}
.lp3-nav--scrolled .lp3-nav__login {
  color: var(--lp-ink-400);
}
.lp3-nav--scrolled .lp3-nav__login:hover {
  color: var(--lp-brand);
}
.lp3-nav--scrolled .lp3-nav__burger span {
  background: var(--lp-ink-600);
}
.lp3-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 72px;
  gap: 1.5rem;
}
.lp3-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.lp3-nav__brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.lp3-nav__brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.25s ease;
}
.lp3-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lp3-nav__links a {
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.15s ease, color 0.15s ease;
}
.lp3-nav__links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lp3-nav__login {
  margin-left: 0.25rem;
}
.lp3-nav__cta {
  background: var(--lp-brand) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(50, 74, 95, 0.28) !important;
  margin-left: 0.25rem;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease !important;
}
.lp3-nav__cta:hover {
  background: var(--lp-brand-dark) !important;
  transform: translateY(-1px);
}
.lp3-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.lp3-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.25s ease;
}
.lp3-nav__mobile {
  display: flex;
  flex-direction: column;
  background: var(--lp-surface-0);
  border-top: 1px solid var(--lp-border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}
.lp3-nav__mobile a {
  padding: 0.75rem 1rem;
  border-radius: var(--lp-radius-xs);
  font-weight: 600;
  color: var(--lp-ink-500);
  transition: background 0.15s ease, color 0.15s ease;
}
.lp3-nav__mobile a:hover {
  background: var(--lp-surface-2);
  color: var(--lp-brand);
}
.lp3-nav__mobile-cta {
  margin-top: 0.5rem;
  background: var(--lp-brand) !important;
  color: #fff !important;
  text-align: center;
}

.lp3-hero {
  position: relative;
  background: var(--lp-ink-800);
  padding: 9rem 1.5rem 6rem;
  overflow: hidden;
}
.lp3-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}
.lp3-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.lp3-hero__glow--tl {
  top: -120px;
  left: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(50, 74, 95, 0.22) 0%, transparent 60%);
}
.lp3-hero__glow--br {
  bottom: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 150, 30, 0.12) 0%, transparent 60%);
}
.lp3-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp3-hero__copy {
  animation: lp3-fadeUp 0.7s ease both;
}
.lp3-hero__heading {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.lp3-hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lp-brand) 0%, #6b9ab8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp3-hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}
.lp3-hero__sub strong {
  color: rgba(255, 255, 255, 0.95);
}
.lp3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.lp3-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.lp3-hero__proofs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.lp3-hero__proofs li i {
  color: var(--lp-success);
  font-size: 0.75rem;
}
.lp3-hero__visual {
  display: flex;
  justify-content: center;
  animation: lp3-fadeUp 0.7s 0.15s ease both;
}

@keyframes lp3-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp3-mockup {
  width: 100%;
  max-width: 540px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: var(--lp-surface-0);
}
.lp3-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f1f3f5;
  border-bottom: 1px solid #e2e8f0;
}
.lp3-mockup__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  flex-shrink: 0;
}
.lp3-mockup__dot--red {
  background: #ff5f57;
}
.lp3-mockup__dot--yellow {
  background: #febc2e;
}
.lp3-mockup__dot--green {
  background: #28c840;
}
.lp3-mockup__url {
  flex: 1;
  margin-left: 0.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--lp-ink-400);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp3-mockup__app {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 360px;
}
.lp3-mockup__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.875rem;
  background: #f8fafc;
  border-right: 1px solid #e8eef4;
}
.lp3-mockup__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 0.25rem;
}
.lp3-mockup__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
  transition: background 0.15s ease;
}
.lp3-mockup__nav-icon.active {
  background: rgba(50, 74, 95, 0.1);
  color: var(--lp-brand);
}
.lp3-mockup__content {
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp3-mockup__breadcrumb {
  font-size: 0.7rem;
  color: #94a3b8;
  display: flex;
  gap: 0.35rem;
}
.lp3-mockup__breadcrumb .sep {
  color: #cbd5e1;
}
.lp3-mockup__breadcrumb span:last-child {
  color: var(--lp-ink-500);
}
.lp3-mockup__meeting-header {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: var(--lp-radius-xs);
  overflow: hidden;
}
.lp3-mockup__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid #f1f5f9;
}
.lp3-mockup__meeting-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-ink-600);
}
.lp3-mockup__status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.lp3-mockup__tabs {
  display: flex;
  padding: 0 0.5rem;
  gap: 0;
}
.lp3-mockup__tabs span {
  padding: 0.5rem 0.625rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.lp3-mockup__tabs span.active {
  color: var(--lp-brand);
  border-bottom-color: var(--lp-brand);
}
.lp3-mockup__quorum {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: var(--lp-radius-xs);
  padding: 0.625rem 0.875rem;
}
.lp3-mockup__quorum-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  color: var(--lp-ink-400);
}
.lp3-mockup__quorum-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.lp3-mockup__quorum-badge.met {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.lp3-mockup__quorum-track {
  position: relative;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: visible;
}
.lp3-mockup__quorum-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
  animation: lp3-quorum-fill 1.2s 0.4s ease both;
}
.lp3-mockup__quorum-marker {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 12px;
  background: #94a3b8;
  border-radius: 999px;
}
@keyframes lp3-quorum-fill {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}
.lp3-mockup__attendees {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: var(--lp-radius-xs);
  overflow: hidden;
  flex: 1;
}
.lp3-mockup__attendee {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}
.lp3-mockup__attendee:last-child {
  border-bottom: none;
}
.lp3-mockup__attendee-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.lp3-mockup__attendee-info {
  flex: 1;
}
.lp3-mockup__attendee-info .name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-ink-600);
}
.lp3-mockup__attendee-info .role {
  font-size: 0.65rem;
  color: #94a3b8;
}
.lp3-mockup__attendee-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.lp3-mockup__attendee-check.checked {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}
.lp3-mockup__attendee-check.unchecked {
  border: 2px solid #e2e8f0;
}

.lp3-trust-bar {
  background: var(--lp-ink-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp3-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.lp3-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.lp3-trust-bar__item i {
  color: var(--lp-brand);
  font-size: 0.9rem;
}
.lp3-trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.lp3-cost {
  background: var(--lp-ink-700);
  padding: 6rem 1.5rem;
  overflow: hidden;
  position: relative;
}
.lp3-cost::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(50, 74, 95, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.lp3-cost__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: auto auto;
  gap: 3rem 4rem;
  align-items: start;
}
.lp3-cost__copy {
  grid-row: 1;
}
.lp3-cost__copy .lp3-label {
  color: rgba(50, 74, 95, 0.7);
}
.lp3-cost__copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.lp3-cost__copy p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.lp3-cost__comparison {
  grid-row: 1/3;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1.25rem;
}
.lp3-cost__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 0.5rem;
}
.lp3-cost__card {
  border-radius: var(--lp-radius);
  padding: 1.75rem;
  border: 1px solid;
}
.lp3-cost__card--old {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.lp3-cost__card--old .lp3-cost__card-label {
  color: rgba(255, 255, 255, 0.5);
}
.lp3-cost__card--old .lp3-cost__card-price {
  opacity: 0.7;
}
.lp3-cost__card--new {
  background: rgba(50, 74, 95, 0.12);
  border-color: rgba(50, 74, 95, 0.3);
  position: relative;
}
.lp3-cost__card-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: var(--lp-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lp3-cost__card-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.lp3-cost__card-price {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}
.lp3-cost__price-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.lp3-cost__price-amount--crossed {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(249, 65, 68, 0.6);
}
.lp3-cost__price-amount--new {
  color: var(--lp-brand);
}
.lp3-cost__price-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
}
.lp3-cost__card-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}
.lp3-cost__card-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp3-cost__card-items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.lp3-cost__card-items li i {
  font-size: 0.7rem;
  flex-shrink: 0;
}
.lp3-cost__card-items--bad li {
  color: rgba(255, 255, 255, 0.45);
}
.lp3-cost__card-items--bad li i {
  color: rgba(249, 65, 68, 0.7);
}
.lp3-cost__card-items--good li {
  color: rgba(255, 255, 255, 0.8);
}
.lp3-cost__card-items--good li i {
  color: var(--lp-success);
}
.lp3-cost__savings {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lp3-cost__savings-amount {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--lp-success);
  line-height: 1;
  white-space: nowrap;
}
.lp3-cost__savings-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.lp3-cost__savings-label span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.lp3-problem {
  background: var(--lp-surface-0);
  padding: 6rem 1.5rem;
}
.lp3-problem__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp3-problem__header {
  max-width: var(--lp-narrow);
  margin-bottom: 3.5rem;
}
.lp3-problem__header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.lp3-problem__header p {
  font-size: 1.05rem;
  color: var(--lp-ink-300);
  line-height: 1.7;
}
.lp3-problem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp3-problem__card {
  background: var(--lp-surface-1);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp3-problem__card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}
.lp3-problem__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-ink-600);
  margin-bottom: 0.75rem;
}
.lp3-problem__card p {
  font-size: 0.9rem;
  color: var(--lp-ink-300);
  line-height: 1.6;
}
.lp3-problem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.lp3-features-header {
  background: var(--lp-surface-2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.lp3-features-header__inner {
  max-width: var(--lp-narrow);
  margin: 0 auto;
}
.lp3-features-header__inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.lp3-features-header__inner p {
  font-size: 1.1rem;
  color: var(--lp-ink-300);
  line-height: 1.7;
}

.lp3-feature {
  padding: 6rem 1.5rem;
  background: var(--lp-surface-0);
}
.lp3-feature--tinted {
  background: var(--lp-surface-1);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp3-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp3-feature--flip .lp3-feature__inner .lp3-feature__shot {
  order: 2;
}
.lp3-feature--flip .lp3-feature__inner .lp3-feature__copy {
  order: 1;
}
.lp3-feature__copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.lp3-feature__copy > p {
  font-size: 1.05rem;
  color: var(--lp-ink-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.lp3-feature__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.lp3-feature__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-ink-500);
  line-height: 1.5;
}
.lp3-feature__bullets li i {
  color: var(--lp-brand);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp3-screen {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--lp-shadow), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: var(--lp-surface-0);
  width: 100%;
}
.lp3-screen__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.625rem 0.875rem;
  background: #f1f3f5;
  border-bottom: 1px solid #e2e8f0;
}
.lp3-screen__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.lp3-screen__dot:nth-child(1) {
  background: #ff5f57;
}
.lp3-screen__dot:nth-child(2) {
  background: #febc2e;
}
.lp3-screen__dot:nth-child(3) {
  background: #28c840;
}
.lp3-screen__url {
  flex: 1;
  margin-left: 0.375rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 0.2rem 0.625rem;
  font-size: 0.7rem;
  color: var(--lp-ink-300);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp3-screen__body {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp3-screen__tabs-row {
  display: flex;
  border-bottom: 1px solid var(--lp-border);
  margin: -0.25rem -0.125rem 0;
  padding-bottom: 0;
}
.lp3-screen__tabs-row .tab {
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.lp3-screen__tabs-row .tab.active {
  color: var(--lp-brand);
  border-bottom-color: var(--lp-brand);
}
.lp3-screen__tabs-row.compact .tab {
  font-size: 0.68rem;
  padding: 0.4rem 0.6rem;
}
.lp3-screen__quorum-bar {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xs);
  padding: 0.625rem 0.875rem;
}
.lp3-screen__quorum-bar .label {
  font-size: 0.7rem;
  color: #16a34a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lp3-screen__quorum-bar .bar {
  position: relative;
  height: 5px;
  background: #e2e8f0;
  border-radius: 999px;
}
.lp3-screen__quorum-bar .bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
}
.lp3-screen__quorum-bar .bar .marker {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px;
  height: 10px;
  background: #94a3b8;
  border-radius: 999px;
}
.lp3-screen__row-list {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xs);
  overflow: hidden;
}
.lp3-screen__row-list .item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f8fafc;
}
.lp3-screen__row-list .item:last-child {
  border-bottom: none;
}
.lp3-screen__row-list .avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--lp-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--lp-brand);
  flex-shrink: 0;
}
.lp3-screen__row-list .lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lp3-screen__row-list .l {
  height: 8px;
  border-radius: 999px;
  background: #e8eef4;
}
.lp3-screen__row-list .l1 {
  width: 55%;
}
.lp3-screen__row-list .l2 {
  width: 38%;
}
.lp3-screen__row-list .check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}
.lp3-screen__row-list .check.on {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}
.lp3-screen__row-list .check.off {
  border: 1.5px solid #e2e8f0;
}
.lp3-screen__action-bar {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.lp3-screen__action-bar .action-btn {
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}
.lp3-screen__action-bar .action-btn.primary {
  background: var(--lp-brand);
  color: #fff;
}
.lp3-screen__action-bar .action-btn:not(.primary) {
  background: var(--lp-surface-2);
  color: var(--lp-ink-400);
  border: 1px solid var(--lp-border);
}
.lp3-screen--finance .lp3-screen__body {
  gap: 0.5rem;
}
.lp3-screen__finance-header {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xs);
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp3-screen__finance-header .acct {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-ink-400);
}
.lp3-screen__finance-header .bal {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.02em;
}
.lp3-screen__txn-list {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xs);
  overflow: hidden;
}
.lp3-screen__txn-list .txn {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.875rem;
  border-bottom: 1px solid #f8fafc;
}
.lp3-screen__txn-list .txn:last-child {
  border-bottom: none;
}
.lp3-screen__txn-list .date {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
}
.lp3-screen__txn-list .desc {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lp3-screen__txn-list .l {
  height: 8px;
  border-radius: 999px;
  background: #e8eef4;
}
.lp3-screen__txn-list .short {
  width: 40%;
}
.lp3-screen__txn-list .medium {
  width: 60%;
}
.lp3-screen__txn-list .long {
  width: 85%;
}
.lp3-screen__txn-list .amount {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.lp3-screen__txn-list .amount.debit {
  color: var(--lp-danger);
}
.lp3-screen__txn-list .amount.credit {
  color: #16a34a;
}
.lp3-screen__doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp3-screen__doc-header .l {
  height: 14px;
  border-radius: 999px;
  background: #e8eef4;
}
.lp3-screen__doc-header .heading {
  width: 38%;
}
.lp3-screen__doc-header .search-bar {
  flex: 1;
  height: 30px;
  border-radius: 999px;
  background: var(--lp-surface-2);
  border: 1px solid var(--lp-border);
}
.lp3-screen__doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.lp3-screen .doc-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xs);
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp3-screen .doc-card .doc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--lp-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--lp-brand);
}
.lp3-screen .doc-card .doc-icon.insurance {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}
.lp3-screen .doc-card .doc-icon.finance {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
}
.lp3-screen .doc-card .doc-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lp3-screen .doc-card .l {
  height: 8px;
  border-radius: 999px;
  background: #e8eef4;
}
.lp3-screen .doc-card .d1 {
  width: 80%;
}
.lp3-screen .doc-card .d2 {
  width: 55%;
}
.lp3-screen .doc-card .doc-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  align-self: flex-start;
}
.lp3-screen .doc-card .doc-tag.bylaws {
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
}
.lp3-screen .doc-card .doc-tag.insurance {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}
.lp3-screen .doc-card .doc-tag.finance {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
}
.lp3-screen .doc-card .doc-tag.contracts {
  background: rgba(248, 150, 30, 0.1);
  color: #c2620a;
}

.lp3-compliance {
  background: var(--lp-ink-800);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.lp3-compliance::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(50, 74, 95, 0.14) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(248, 150, 30, 0.07) 0%, transparent 40%);
  pointer-events: none;
}
.lp3-compliance__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 2rem 3rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  align-items: start;
}
.lp3-compliance__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(50, 74, 95, 0.18);
  color: var(--lp-brand);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.lp3-compliance__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.lp3-compliance__text > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.lp3-compliance__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp3-compliance__list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.lp3-compliance__list li i {
  color: var(--lp-success);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.lp3-compliance__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 200px;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 2.5rem;
}
.lp3-compliance__stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--lp-brand);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.lp3-compliance__stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.lp3-compliance__stat-label span {
  opacity: 0.65;
  font-size: 0.78rem;
}

.lp3-testimonials {
  padding: 6rem 1.5rem;
  background: var(--lp-surface-1);
  border-top: 1px solid var(--lp-border);
}
.lp3-testimonials__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp3-testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lp3-testimonials__header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
}
.lp3-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.lp3-testimonial {
  background: var(--lp-surface-0);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.75rem;
  margin: 0;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp3-testimonial:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}
.lp3-testimonial p {
  font-size: 0.95rem;
  color: var(--lp-ink-400);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.lp3-testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--lp-border);
  padding-top: 1rem;
}
.lp3-testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--lp-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.lp3-testimonial strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lp-ink-600);
}
.lp3-testimonial span {
  display: block;
  font-size: 0.78rem;
  color: var(--lp-ink-200);
}
.lp3-testimonial--featured {
  border-color: rgba(50, 74, 95, 0.2);
  background: linear-gradient(145deg, rgba(50, 74, 95, 0.04) 0%, var(--lp-surface-0) 50%);
  box-shadow: 0 12px 40px rgba(50, 74, 95, 0.08);
}
.lp3-testimonial--featured p {
  color: var(--lp-ink-500);
}
.lp3-testimonial__quote-mark {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(50, 74, 95, 0.08);
  pointer-events: none;
}

.lp3-pricing {
  padding: 6rem 1.5rem;
  background: var(--lp-surface-0);
  border-top: 1px solid var(--lp-border);
}
.lp3-pricing__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp3-pricing__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lp3-pricing__header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.lp3-pricing__header p {
  font-size: 1.05rem;
  color: var(--lp-ink-300);
}
.lp3-pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.lp3-pricing__card {
  background: var(--lp-ink-800);
  border-radius: var(--lp-radius);
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--lp-shadow);
  position: relative;
  overflow: hidden;
}
.lp3-pricing__card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(50, 74, 95, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.lp3-pricing__plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-brand);
  margin-bottom: 0.75rem;
}
.lp3-pricing__price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.lp3-pricing__price {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}
.lp3-pricing__period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.lp3-pricing__trial {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-success);
  margin-bottom: 1.75rem;
}
.lp3-pricing__includes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.lp3-pricing__includes li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.lp3-pricing__includes li i {
  color: var(--lp-success);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.lp3-pricing__table-wrap {
  background: var(--lp-surface-1);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp3-pricing__table-label {
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lp-ink-500);
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-surface-0);
}
.lp3-pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.lp3-pricing__table th,
.lp3-pricing__table td {
  padding: 0.875rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.9rem;
}
.lp3-pricing__table thead th {
  background: var(--lp-surface-0);
  font-weight: 700;
  color: var(--lp-ink-400);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp3-pricing__table tbody td {
  font-weight: 600;
  color: var(--lp-ink-500);
}
.lp3-pricing__table tbody tr:last-child td {
  border-bottom: none;
}
.lp3-pricing__table tbody tr:hover td {
  background: var(--lp-surface-2);
}
.lp3-pricing__table tbody td.price {
  color: var(--lp-brand);
  font-weight: 700;
}
.lp3-pricing__table tbody td.savings {
  color: var(--lp-success);
  font-weight: 700;
  font-size: 0.85rem;
}
.lp3-pricing__table-note {
  padding: 0.875rem 1.5rem;
  font-size: 0.78rem;
  color: var(--lp-ink-200);
  background: var(--lp-surface-0);
  border-top: 1px solid var(--lp-border);
  line-height: 1.5;
}

.lp3-cta {
  position: relative;
  background: var(--lp-ink-900);
  padding: 7rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.lp3-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(50, 74, 95, 0.2) 0%, transparent 55%), radial-gradient(ellipse at 70% 50%, rgba(248, 150, 30, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.lp3-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-narrow);
  margin: 0 auto;
}
.lp3-cta__heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.lp3-cta__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.lp3-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.lp3-footer {
  background: var(--lp-ink-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lp3-footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}
.lp3-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}
.lp3-footer__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.lp3-footer__tagline {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.lp3-footer__links, .lp3-footer__legal, .lp3-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.lp3-footer__links a, .lp3-footer__legal a, .lp3-footer__col a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.15s ease;
}
.lp3-footer__links a:hover, .lp3-footer__legal a:hover, .lp3-footer__col a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.lp3-footer__legal-btn {
  font-family: "SourceSans3Light";
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}
.lp3-footer__legal-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}
.lp3-footer__bar {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lp3-footer__bar span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1080px) {
  .lp3-problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp3-cost__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
  }
  .lp3-cost__copy {
    grid-row: auto;
    grid-column: auto;
  }
  .lp3-cost__comparison {
    grid-column: auto;
    grid-row: auto;
  }
  .lp3-cost__savings {
    grid-column: auto;
    grid-row: auto;
  }
  .lp3-compliance__inner {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
  }
  .lp3-compliance__aside {
    grid-column: 1/-1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 2rem;
    flex-direction: row;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .lp3-pricing__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .lp3-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lp3-hero__heading {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }
  .lp3-hero {
    padding-top: 7rem;
  }
  .lp3-feature__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lp3-feature--flip .lp3-feature__inner .lp3-feature__shot {
    order: unset;
  }
  .lp3-feature--flip .lp3-feature__inner .lp3-feature__copy {
    order: unset;
  }
  .lp3-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .lp3-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lp3-trust-bar__inner {
    gap: 0;
  }
  .lp3-trust-bar__item {
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
  }
  .lp3-trust-bar__divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .lp3-nav__links {
    display: none;
  }
  .lp3-nav__burger {
    display: flex;
  }
  .lp3-problem__grid {
    grid-template-columns: 1fr;
  }
  .lp3-cost__comparison {
    grid-template-columns: 1fr;
  }
  .lp3-cost__vs {
    order: 2;
    padding: 0.5rem 0;
  }
  .lp3-cost__card--old {
    order: 1;
  }
  .lp3-cost__card--new {
    order: 3;
  }
  .lp3-compliance__inner {
    grid-template-columns: 1fr;
  }
  .lp3-compliance__badge {
    display: none;
  }
  .lp3-mockup {
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .lp3-hero {
    padding: 6rem 1rem 4rem;
  }
  .lp3-hero__actions {
    flex-direction: column;
  }
  .lp3-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .lp3-cta__actions .lp3-btn {
    width: 100%;
  }
  .lp3-pricing__card,
  .lp3-cost__card {
    padding: 1.5rem;
  }
  .lp3-feature,
  .lp3-problem,
  .lp3-cost,
  .lp3-compliance,
  .lp3-testimonials,
  .lp3-pricing,
  .lp3-cta {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lp3-screen__doc-grid {
    grid-template-columns: 1fr;
  }
}.page-content {
  background: var(--lp-surface-0);
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}
.page-content__inner {
  max-width: var(--lp-narrow);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.page-content__inner h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-ink-700);
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.page-content__inner h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--lp-ink-700);
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.page-content__inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-ink-600);
  margin: 1.75rem 0 0.75rem;
}
.page-content__inner p {
  font-size: 1.05rem;
  color: var(--lp-ink-400);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.page-content__inner a {
  color: var(--lp-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content__inner a:hover {
  color: var(--lp-brand-dark);
}
.page-content__inner ul, .page-content__inner ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.page-content__inner ul li, .page-content__inner ol li {
  font-size: 1.05rem;
  color: var(--lp-ink-400);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}
.page-content__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.page-content__inner table th {
  text-align: left;
  padding: 0.625rem 1rem;
  background: var(--lp-surface-2);
  color: var(--lp-ink-500);
  font-weight: 700;
  border-bottom: 2px solid var(--lp-border);
}
.page-content__inner table td {
  padding: 0.625rem 1rem;
  color: var(--lp-ink-400);
  border-bottom: 1px solid var(--lp-border);
}

.blog-index {
  background: var(--lp-surface-0);
}
.blog-index__header {
  background: var(--lp-ink-800);
  padding: 8rem 1.5rem 4rem;
}
.blog-index__header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.blog-index__header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.blog-index__header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}
.blog-index__body {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.blog-index__section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-brand);
  margin-bottom: 1.5rem;
}
.blog-index__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .blog-index__categories {
    grid-template-columns: 1fr;
  }
}
.blog-index__category-card {
  display: block;
  background: var(--lp-surface-1);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-index__category-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}
.blog-index__category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-ink-700);
  margin: 0 0 0.625rem;
}
.blog-index__category-card p {
  font-size: 0.95rem;
  color: var(--lp-ink-300);
  line-height: 1.6;
  margin: 0;
}

.resources-index {
  background: var(--lp-surface-0);
}
.resources-index__header {
  background: var(--lp-ink-800);
  padding: 8rem 1.5rem 4rem;
}
.resources-index__header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.resources-index__header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.resources-index__header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}
.resources-index__body {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.resources-index__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .resources-index__cards {
    grid-template-columns: 1fr;
  }
}
.resources-index__card {
  background: var(--lp-surface-1);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.resources-index__card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}
.resources-index__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-ink-700);
  margin: 0 0 0.625rem;
}
.resources-index__card p {
  font-size: 0.95rem;
  color: var(--lp-ink-300);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.resources-index__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lp-brand);
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--lp-brand);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.resources-index__cta:hover {
  background: var(--lp-brand);
  color: #fff;
}

.glossary-index {
  background: var(--lp-surface-0);
}
.glossary-index__header {
  background: var(--lp-ink-800);
  padding: 8rem 1.5rem 4rem;
}
.glossary-index__header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.glossary-index__header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.glossary-index__header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}
.glossary-index__body {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.glossary-index__body p {
  font-size: 1.05rem;
  color: var(--lp-ink-400);
  line-height: 1.75;
}

.lp3-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp3-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.375rem;
}

@media (max-width: 900px) {
  .lp3-footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .lp3-footer__inner {
    grid-template-columns: 1fr !important;
  }
}