:root {
  --lp-bg: #ececec;
  --lp-paper: #ffffff;
  --lp-card: #e4e4e4;
  --lp-text: #0f1115;
  --lp-muted: #666b72;
  --lp-border: #d7d7d7;
  --lp-radius-xl: 28px;
  --lp-radius-lg: 20px;
  --lp-radius-md: 14px;
  --lp-wrap: min(1140px, calc(100% - 64px));
  --lp-shadow-soft: 0 8px 28px rgba(25, 30, 40, 0.08);
}

* {
  box-sizing: border-box;
}

.public-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

.lp-wrap {
  width: var(--lp-wrap);
  margin-inline: auto;
}

.lp-page img {
  display: block;
  max-width: 100%;
}

.lp-preview-banner {
  width: var(--lp-wrap);
  margin: 12px auto 0;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(50, 92, 188, 0.1);
  border: 1px solid rgba(50, 92, 188, 0.24);
  font-size: 13px;
}

.lp-preview-banner a {
  color: #193d9a;
  margin-left: 6px;
  font-weight: 700;
  text-decoration: none;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.lp-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.lp-header__menu-toggle {
  display: none;
  border: 1px solid #c8d4e4;
  background: linear-gradient(180deg, #f8fbff 0%, #e8f0fb 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.lp-header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #2c4566;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.lp-header__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(13, 23, 38, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lp-no-scroll {
  overflow: hidden;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.lp-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lp-border);
}

.lp-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-brand__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-nav a {
  text-decoration: none;
  color: #232323;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 6px 10px;
  border-radius: 999px;
}

.lp-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn--dark {
  color: #fff;
  background: #0d0d0d;
}

.lp-btn--glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.lp-btn--light-gray {
  color: #1f1f1f;
  border-color: #cbcbcb;
  background: #f6f6f6;
}

.lp-page main {
  position: relative;
  background:
    radial-gradient(1200px 420px at 12% 22%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 64%),
    radial-gradient(1080px 380px at 90% 56%, rgba(204, 219, 238, 0.32) 0%, rgba(204, 219, 238, 0) 68%),
    linear-gradient(180deg, #e9edf2 0%, #e6ebf1 32%, #edf1f5 62%, #e6ebf0 100%);
}

.lp-page main > section:not(.lp-hero):nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.08);
}

.lp-page main > section:not(.lp-hero):nth-of-type(even) {
  background: rgba(224, 233, 244, 0.1);
}

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

.lp-section__header {
  margin-bottom: 28px;
}

.lp-section__header--center {
  text-align: center;
}

.lp-kicker,
.lp-eyebrow {
  margin: 0;
  color: #6d7480;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lp-section__header h2,
.lp-copy-block h2,
.lp-final-cta h2,
.lp-title {
  margin: 10px 0 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-section__header p,
.lp-copy-block p,
.lp-final-cta p {
  margin: 14px 0 0;
  color: var(--lp-muted);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.lp-typed-title {
  position: relative;
}

.lp-typed-title.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.94em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: currentColor;
  animation: lp-type-caret 0.82s steps(1, end) infinite;
}

@keyframes lp-type-caret {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 42px 0 52px;
  background:
    radial-gradient(90% 112% at 50% 50%, rgba(72, 92, 130, 0.9) 0%, rgba(92, 116, 152, 0.84) 34%, rgba(124, 151, 184, 0.76) 68%, rgba(166, 195, 223, 0.7) 100%),
    linear-gradient(90deg, rgba(209, 226, 241, 0.74) 0%, rgba(171, 196, 220, 0.3) 22%, rgba(138, 162, 190, 0.08) 50%, rgba(171, 196, 220, 0.3) 78%, rgba(209, 226, 241, 0.74) 100%),
    linear-gradient(135deg, #8ea7c2 0%, #7390ae 100%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1020px, 94vw);
  height: min(640px, 86vh);
  transform: translate(-50%, -50%);
  border-radius: 26px;
  border: 1px solid rgba(214, 230, 249, 0.46);
  background:
    radial-gradient(circle at 38px 30px, rgba(249, 125, 118, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 70px 30px, rgba(244, 194, 81, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 102px 30px, rgba(77, 200, 100, 0.9) 0 7px, transparent 8px),
    linear-gradient(180deg, rgba(245, 250, 255, 0.22) 0 58px, rgba(245, 250, 255, 0.06) 58px 100%),
    linear-gradient(135deg, rgba(157, 184, 214, 0.14) 0%, rgba(183, 208, 232, 0.08) 100%);
  box-shadow:
    0 26px 46px rgba(20, 33, 53, 0.24),
    inset 0 1px 0 rgba(239, 248, 255, 0.34);
  opacity: 0.42;
  z-index: 0;
  pointer-events: none;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 62% at 50% 0%, rgba(228, 238, 251, 0.34) 0%, rgba(228, 238, 251, 0) 72%),
    radial-gradient(125% 92% at 50% 100%, rgba(61, 90, 127, 0.4) 0%, rgba(61, 90, 127, 0) 72%);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.lp-hero__inner {
  min-height: min(680px, calc(100vh - 180px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-hero__window {
  width: min(860px, 100%);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.lp-hero .lp-eyebrow {
  color: #c9d9ee;
  text-shadow: 0 2px 10px rgba(23, 37, 62, 0.22);
}

.lp-hero h1 {
  margin: 18px auto 0;
  max-width: 16ch;
  color: #e2ecf9;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 16px rgba(24, 38, 64, 0.4);
}

.lp-hero__lead {
  margin: 18px auto 0;
  max-width: 44ch;
  color: rgba(245, 249, 255, 0.95);
}

.lp-hero__actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-themes__grid {
  display: grid;
  grid-template-columns: minmax(290px, 330px) 1fr;
  gap: 14px;
  align-items: stretch;
}

.lp-themes__menu {
  display: grid;
  gap: 8px;
}

.lp-theme-tab {
  --tab-bg: #f4f4f4;
  --tab-bg-active: #ececec;
  --tab-border: #d4d4d4;
  --tab-border-active: #c3c3c3;
  --tab-fg: #242424;
  --tab-fg-active: #1a1a1a;
  --tab-icon-bg: #ffffff;
  --tab-icon-border: #cecece;
  --tab-icon-fg: #454545;
  border: 1px solid var(--tab-border);
  background: var(--tab-bg);
  border-radius: 12px;
  width: 100%;
  min-height: 68px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--tab-fg);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-theme-tab.is-active {
  background: var(--tab-bg-active);
  color: var(--tab-fg-active);
  border-color: var(--tab-border-active);
  box-shadow: 0 8px 18px rgba(23, 33, 51, 0.08);
}

.lp-theme-tab:hover {
  border-color: var(--tab-border-active);
}

.lp-theme-tab:focus-visible {
  outline: 2px solid rgba(46, 116, 184, 0.38);
  outline-offset: 2px;
}

.lp-theme-tab__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--tab-icon-border);
  background: var(--tab-icon-bg);
  color: var(--tab-icon-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-theme-tab__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-theme-tab__label {
  display: block;
  font-size: 0.96rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.lp-theme-tab--educacao {
  --tab-bg: #edf4fb;
  --tab-bg-active: #ddecf9;
  --tab-border: #c2d8ee;
  --tab-border-active: #9fc3e5;
  --tab-fg: #274d74;
  --tab-fg-active: #1d4064;
  --tab-icon-border: #a8c8e6;
  --tab-icon-fg: #285885;
}

.lp-theme-tab--saude {
  --tab-bg: #ecf6ef;
  --tab-bg-active: #dcf0e2;
  --tab-border: #bdddc7;
  --tab-border-active: #95caaa;
  --tab-fg: #245b40;
  --tab-fg-active: #1b4d35;
  --tab-icon-border: #9bc9aa;
  --tab-icon-fg: #2a6f4e;
}

.lp-theme-tab--admin {
  --tab-bg: #f5efe6;
  --tab-bg-active: #f0e5d6;
  --tab-border: #decdaf;
  --tab-border-active: #cfb58d;
  --tab-fg: #61411a;
  --tab-fg-active: #4b2f0f;
  --tab-icon-border: #cfb88f;
  --tab-icon-fg: #7a5220;
}

.lp-theme-tab--cidadao {
  --tab-bg: #eef1fa;
  --tab-bg-active: #e2e8fa;
  --tab-border: #c6d2f1;
  --tab-border-active: #9fb5e9;
  --tab-fg: #2f4a79;
  --tab-fg-active: #223a63;
  --tab-icon-border: #adc0ea;
  --tab-icon-fg: #365894;
}

.lp-theme-tab--transparencia {
  --tab-bg: #eef6f3;
  --tab-bg-active: #dff0e8;
  --tab-border: #bfded0;
  --tab-border-active: #95c9af;
  --tab-fg: #255a45;
  --tab-fg-active: #1b4636;
  --tab-icon-border: #a4ceb9;
  --tab-icon-fg: #2d6f55;
}

.lp-theme-tab--painel {
  --tab-bg: #f3eff9;
  --tab-bg-active: #e9e1f7;
  --tab-border: #d3c4eb;
  --tab-border-active: #b79bdc;
  --tab-fg: #5b427f;
  --tab-fg-active: #472f69;
  --tab-icon-border: #c3afdf;
  --tab-icon-fg: #664592;
}

.lp-themes__content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--lp-radius-lg);
  background: #edf2f8;
  border: 1px solid #d8d8d8;
  box-shadow: var(--lp-shadow-soft);
  padding: 72px 22px 22px;
}

.lp-themes__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 248, 253, 0.88), rgba(242, 247, 252, 0.86));
  opacity: 1;
  z-index: -2;
}

.lp-themes__content::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 54px;
  background:
    radial-gradient(circle at 34px 26px, #f97d76 0 7px, transparent 8px),
    radial-gradient(circle at 66px 26px, #f4c251 0 7px, transparent 8px),
    radial-gradient(circle at 98px 26px, #4dc864 0 7px, transparent 8px),
    linear-gradient(180deg, rgba(241, 246, 252, 0.82), rgba(232, 239, 248, 0.78));
  border-bottom: 1px solid rgba(167, 183, 205, 0.4);
  z-index: -1;
}

.lp-theme-panel {
  display: none;
}

.lp-theme-panel.is-active {
  display: block;
}

.lp-theme-panel h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

.lp-theme-panel > p {
  margin: 10px 0 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

#theme-educacao {
  --panel-accent: #285885;
  --panel-soft: #edf4fb;
  --panel-border: #bcd5ec;
}

#theme-saude {
  --panel-accent: #2a6f4e;
  --panel-soft: #edf7f1;
  --panel-border: #bdddc7;
}

#theme-admin {
  --panel-accent: #7a5220;
  --panel-soft: #f7f1e8;
  --panel-border: #decdaf;
}

#theme-cidadao {
  --panel-accent: #365894;
  --panel-soft: #eef2fa;
  --panel-border: #c5d2ef;
}

#theme-transparencia {
  --panel-accent: #2d6f55;
  --panel-soft: #edf6f2;
  --panel-border: #bfded0;
}

#theme-painel {
  --panel-accent: #664592;
  --panel-soft: #f2eef9;
  --panel-border: #d2c4e8;
}

.lp-accordion {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.lp-accordion__item {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(1px);
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-accordion__item.is-open {
  border-color: var(--panel-border, #cdd8e6);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 18px rgba(30, 42, 61, 0.06);
}

.lp-accordion__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #232323;
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.lp-accordion__headline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
}

.lp-accordion__headline i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--panel-border, #d2d7df);
  color: var(--panel-accent, #3e5d80);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-accordion__state {
  color: var(--panel-accent, #3e5d80);
  transition: transform 0.2s ease;
}

.lp-accordion__item.is-open .lp-accordion__state {
  transform: rotate(180deg);
}

.lp-accordion__content {
  padding: 0 14px 14px 58px;
}

.lp-accordion__content p {
  margin: 0;
  color: #4b5562;
  line-height: 1.5;
  font-size: 0.95rem;
}

.lp-accordion__trigger:focus-visible {
  outline: 2px solid rgba(46, 116, 184, 0.34);
  outline-offset: -2px;
}

.lp-accordion__trigger:hover .lp-accordion__headline i {
  background: #f9fbff;
}

.lp-tech {
  padding: 58px 0 52px;
}

.lp-tech .lp-title {
  text-align: center;
  margin: 0;
}

.lp-tech__marquee {
  margin-top: 34px;
  overflow: hidden;
  padding: 8px 0;
}

.lp-tech__track {
  display: flex;
  width: max-content;
  gap: 72px;
  animation: lp-tech-scroll 28s linear infinite;
}

.lp-tech-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.lp-tech-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.lp-tech-item span {
  color: #1f2329;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@keyframes lp-tech-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-tech__track {
    animation: none;
  }
}

.lp-role-showcase {
  padding-top: 48px;
}

.lp-role-viewer {
  margin-top: 24px;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.lp-role-viewer::before {
  content: none;
}

.lp-role-stage {
  position: relative;
  min-height: 520px;
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  z-index: 1;
}

.lp-role-screen {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.lp-role-screen.is-active {
  display: block;
  animation: lp-role-fade 0.32s ease;
}

.lp-role-ui {
  --role-accent: #2f7fd3;
  --role-soft: rgba(47, 127, 211, 0.1);
  --role-border: rgba(47, 127, 211, 0.24);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 104px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(130% 110% at 50% 0%, rgba(232, 244, 255, 0.92) 0%, rgba(232, 244, 255, 0) 66%),
    linear-gradient(168deg, rgba(190, 214, 241, 0.84) 0%, rgba(169, 199, 233, 0.78) 48%, rgba(178, 207, 238, 0.8) 100%);
  box-shadow: 0 14px 22px rgba(28, 39, 54, 0.14);
}

.lp-role-ui--aluno {
  --role-accent: #2f7fd3;
  --role-soft: rgba(47, 127, 211, 0.11);
  --role-border: rgba(47, 127, 211, 0.22);
}

.lp-role-ui--professor {
  --role-accent: #615ce5;
  --role-soft: rgba(97, 92, 229, 0.1);
  --role-border: rgba(97, 92, 229, 0.24);
}

.lp-role-ui--gestor {
  --role-accent: #279a7e;
  --role-soft: rgba(39, 154, 126, 0.1);
  --role-border: rgba(39, 154, 126, 0.24);
}

.lp-role-ui--coordenador {
  --role-accent: #7d58b0;
  --role-soft: rgba(125, 88, 176, 0.1);
  --role-border: rgba(125, 88, 176, 0.24);
}

.lp-role-ui--nee {
  --role-accent: #2f8c62;
  --role-soft: rgba(47, 140, 98, 0.1);
  --role-border: rgba(47, 140, 98, 0.24);
}

.lp-role-ui__top {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dde5f0;
  background: linear-gradient(180deg, rgba(246, 252, 255, 0.92), rgba(218, 235, 252, 0.84));
}

.lp-role-ui__dots {
  display: inline-flex;
  gap: 8px;
}

.lp-role-ui__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.lp-role-ui__dots span:nth-child(1) {
  background: #f97d76;
}

.lp-role-ui__dots span:nth-child(2) {
  background: #f4c251;
}

.lp-role-ui__dots span:nth-child(3) {
  background: #4dc864;
}

.lp-role-ui__top strong {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: #27344a;
}

.lp-role-ui__status {
  margin-left: auto;
  border: 1px solid var(--role-border);
  background: var(--role-soft);
  color: var(--role-accent);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-role-ui__body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.lp-role-ui__nav {
  border-right: 1px solid #dde5f0;
  background: rgba(241, 248, 255, 0.64);
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.lp-role-ui__nav a {
  text-decoration: none;
  color: #4a5b74;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid transparent;
  background: transparent;
}

.lp-role-ui__nav a.is-active {
  color: var(--role-accent);
  background: var(--role-soft);
  border-color: var(--role-border);
}

.lp-role-ui__main {
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: rgba(242, 249, 255, 0.54);
}

.lp-role-subscreen {
  display: none;
  gap: 10px;
}

.lp-role-subscreen.is-active {
  display: grid;
}

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

.lp-role-kpi {
  border: 1px solid var(--role-border);
  border-radius: 11px;
  background: #fafdff;
  padding: 10px;
}

.lp-role-kpi span {
  display: block;
  color: #5f6e83;
  font-size: 0.74rem;
  font-weight: 600;
}

.lp-role-kpi strong {
  display: block;
  margin-top: 6px;
  color: #1e304a;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.lp-role-grid {
  display: grid;
  gap: 10px;
}

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

.lp-role-card {
  border: 1px solid #d7e0eb;
  border-radius: 12px;
  background: #fafdff;
  padding: 10px;
}

.lp-role-card h4 {
  margin: 0;
  color: #24354d;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.lp-role-card p {
  margin: 8px 0 0;
  color: #5f6f86;
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 600;
}

.lp-role-list,
.lp-role-check {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.lp-role-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #e1e7f0;
  border-radius: 9px;
  background: #f7fbff;
  padding: 8px 10px;
}

.lp-role-list li span {
  color: #253953;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-role-list li small {
  color: #60708a;
  font-size: 0.72rem;
  font-weight: 600;
}

.lp-role-check li {
  position: relative;
  border: 1px solid #e1e7f0;
  border-radius: 9px;
  background: #f7fbff;
  color: #2f435e;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 10px 8px 28px;
}

.lp-role-check li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--role-accent);
}

.lp-role-table {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.lp-role-table div {
  border: 1px solid #e1e7f0;
  border-radius: 9px;
  background: #f7fbff;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-role-table span {
  color: #243852;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-role-table small {
  color: #61738c;
  font-size: 0.74rem;
  font-weight: 600;
}

.lp-role-bars {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.lp-role-bars div {
  display: grid;
  gap: 5px;
}

.lp-role-bars span {
  color: #2e415d;
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-role-bars small {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #d9e4f3;
  position: relative;
  overflow: hidden;
}

.lp-role-bars small::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar, 50%);
  background: linear-gradient(90deg, rgba(24, 46, 76, 0.46), var(--role-accent));
  border-radius: inherit;
}

.lp-role-dock {
  --dock-focus: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: fit-content;
  max-width: calc(100% - 32px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(10px + (var(--dock-focus) * 4px));
  border-radius: calc(24px + (var(--dock-focus) * 4px));
  border: 1px solid rgba(124, 153, 187, calc(0.62 + (var(--dock-focus) * 0.12)));
  background:
    radial-gradient(120% 95% at 50% 5%, rgba(197, 224, 242, 0.8) 0%, rgba(138, 177, 209, 0.8) 36%, rgba(112, 131, 172, 0.82) 66%, rgba(139, 149, 187, 0.8) 100%),
    linear-gradient(135deg, rgba(138, 160, 185, 0.82) 0%, rgba(157, 184, 205, 0.82) 100%);
  box-shadow:
    0 calc(14px + (var(--dock-focus) * 8px))
      calc(20px + (var(--dock-focus) * 8px))
      rgba(24, 34, 49, calc(0.16 + (var(--dock-focus) * 0.08))),
    inset 0 1px 0 rgba(223, 240, 255, 0.34);
  overflow: visible;
  padding:
    calc(14px + (var(--dock-focus) * 2px))
    calc(16px + (var(--dock-focus) * 8px))
    calc(12px + (var(--dock-focus) * 2px));
  z-index: 4;
  backdrop-filter: blur(8px);
  transition:
    gap 0.12s ease,
    padding 0.12s ease,
    border-radius 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
}

.lp-role-app {
  --dock-color: #4d74ac;
  --dock-power: 0;
  position: relative;
  border: 0;
  background: transparent;
  color: #e4edf9;
  display: grid;
  justify-items: center;
  gap: 0;
  min-width: 64px;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.lp-role-app__icon {
  width: 56px;
  height: 56px;
  border-radius: calc(14px + (var(--dock-power) * 9px));
  border: 1px solid rgba(214, 232, 251, 0.22);
  background: linear-gradient(160deg, var(--dock-bg-top, #4d79bf), var(--dock-bg-bottom, #2f578f));
  color: var(--dock-fg, #f4f9ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform:
    translateY(calc(var(--dock-power) * -18px))
    scale(calc(1 + (var(--dock-power) * 0.34)));
  box-shadow:
    0 calc(8px + (var(--dock-power) * 8px))
      calc(14px + (var(--dock-power) * 12px))
      rgba(5, 14, 34, 0.35);
  transition: transform 0.11s ease, box-shadow 0.13s ease, border-radius 0.15s ease;
}

.lp-role-app__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.lp-role-app__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lp-role-app::before {
  content: attr(data-role-name);
  position: absolute;
  bottom: 97px;
  left: 50%;
  transform: translate(-50%, 6px) scale(0.97);
  padding: 5px 10px;
  border-radius: 9px;
  border: 1px solid rgba(111, 142, 185, 0.66);
  background: linear-gradient(180deg, rgba(17, 47, 88, 0.96), rgba(15, 35, 68, 0.96));
  color: #f2f7ff;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3;
}

.lp-role-app::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 8px;
  background: #d8ebff;
  opacity: 0;
  transform: translateY(2px) scale(0.7);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-role-app:hover::before,
.lp-role-app:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -2px) scale(1);
}

.lp-role-app:hover .lp-role-app__icon {
  box-shadow:
    0 calc(10px + (var(--dock-power) * 9px))
      calc(18px + (var(--dock-power) * 14px))
      rgba(5, 14, 34, 0.4);
}

.lp-role-app.is-active::after {
  transform: translateY(-2px) scale(1);
  opacity: 1;
}

.lp-role-app:focus-visible {
  outline: 2px solid rgba(147, 189, 243, 0.6);
  outline-offset: 4px;
  border-radius: 12px;
}

.lp-role-app--aluno {
  --dock-bg-top: #2f7fd3;
  --dock-bg-bottom: #1f5796;
  --dock-fg: #f4f9ff;
}

.lp-role-app--professor {
  --dock-bg-top: #6d6cf1;
  --dock-bg-bottom: #3936b8;
  --dock-fg: #f8f7ff;
}

.lp-role-app--gestor {
  --dock-bg-top: #36ad8b;
  --dock-bg-bottom: #1d7f63;
  --dock-fg: #f4fffb;
}

.lp-role-app--coordenador {
  --dock-bg-top: #8a66c5;
  --dock-bg-bottom: #583d8f;
  --dock-fg: #fbf7ff;
}

.lp-role-app--nee {
  --dock-bg-top: #3f9d74;
  --dock-bg-bottom: #216748;
  --dock-fg: #f5fff9;
}

@keyframes lp-role-fade {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lp-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.lp-split .lp-wrap {
  overflow: visible;
}

.lp-copy-block .lp-btn {
  margin-top: 20px;
}

.lp-panel-shot {
  margin: 0;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  border: 1px solid #d4d7de;
  background: #f6f8fc;
  box-shadow: var(--lp-shadow-soft);
  min-height: 360px;
}

.lp-panel-shot--mock {
  display: grid;
  grid-template-rows: auto 1fr;
}

.lp-panel-shot--peek {
  justify-self: end;
  width: 520px;
  height: auto;
  min-height: 0;
  max-width: none;
  transform: none;
  margin-right: calc(-1 * max(32px, (100vw - 1140px) / 2));
  transform-origin: right center;
}

.lp-panel-shot--peek .lp-panel-shot__body {
  min-height: 0;
}

.lp-panel-shot__top {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d8e0ec;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(236, 244, 252, 0.9));
}

.lp-panel-shot__dots {
  display: inline-flex;
  gap: 8px;
}

.lp-panel-shot__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.lp-panel-shot__dots span:nth-child(1) {
  background: #f97d76;
}

.lp-panel-shot__dots span:nth-child(2) {
  background: #f4c251;
}

.lp-panel-shot__dots span:nth-child(3) {
  background: #4dc864;
}

.lp-panel-shot__top strong {
  color: #223753;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.lp-panel-shot__body {
  padding: 14px;
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.88), rgba(238, 245, 253, 0.8));
  display: grid;
  align-content: start;
  gap: 12px;
}

.lp-panel-shot__pillbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-panel-shot__pillbar span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #c7d9ef;
  background: #f8fcff;
  color: #3f5d82;
  font-size: 0.72rem;
  font-weight: 700;
}

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

.lp-panel-shot__card {
  border: 1px solid #d6e1ee;
  border-radius: 12px;
  background: #fbfdff;
  padding: 10px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.lp-panel-shot__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #bdd2ea;
  background: linear-gradient(160deg, rgba(62, 121, 196, 0.14), rgba(44, 90, 157, 0.12));
  color: #2b5f97;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-panel-shot__icon svg {
  width: 22px;
  height: 22px;
}

.lp-panel-shot__card h4 {
  margin: 0;
  color: #243a58;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
}

.lp-panel-shot__card p {
  margin: 0;
  color: #59708f;
  font-size: 0.74rem;
  line-height: 1.45;
  font-weight: 600;
}

.lp-split--studio .lp-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #262f44;
  background:
    radial-gradient(78% 120% at 8% 40%, rgba(64, 90, 156, 0.28) 0%, rgba(64, 90, 156, 0) 62%),
    linear-gradient(180deg, #141923 0%, #10141d 100%);
  box-shadow: 0 24px 52px rgba(8, 12, 20, 0.3);
}

.lp-split--studio .lp-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(151, 173, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 173, 214, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.22;
  pointer-events: none;
}

.lp-split--studio .lp-wrap::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  border: 1px solid rgba(128, 149, 189, 0.18);
  top: -180px;
  left: 34%;
  pointer-events: none;
}

.lp-split--studio .lp-split__grid {
  position: relative;
  z-index: 1;
  padding: 34px;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.lp-copy-block--studio {
  display: grid;
  align-content: center;
  gap: 16px;
  color: #d9e2f7;
}

.lp-copy-block__kicker {
  margin: 0;
  color: #9fb5df;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lp-copy-block--studio h2 {
  margin: 0;
  color: #f6f9ff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.lp-copy-block--studio p {
  margin: 0;
  color: #ccd7ee;
  font-size: 1.02rem;
  line-height: 1.42;
  max-width: 35ch;
}

.lp-copy-block__footnote {
  margin-top: 4px;
  color: #9aaed4;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.4;
}

.lp-platform-btn {
  justify-self: flex-start;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(88, 127, 255, 0.46);
  color: #f7f9ff;
  background: linear-gradient(120deg, #2b5ce8 0%, #3f6dff 100%);
  box-shadow: 0 12px 24px rgba(30, 70, 184, 0.38);
}

.lp-platform-btn:hover {
  box-shadow: 0 16px 28px rgba(30, 70, 184, 0.44);
}

.lp-split--studio .lp-panel-shot--studio {
  margin: 0;
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid #cbd2dd;
  background: #f3f5f9;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 20px 36px rgba(5, 10, 18, 0.26);
}

.lp-split--studio .lp-panel-shot__top {
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid #d5dde8;
  background: #f6f7fa;
}

.lp-split--studio .lp-panel-shot__top strong {
  color: #2c3344;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-panel-shot__env {
  margin-left: auto;
  color: #353e52;
  font-size: 0.84rem;
  font-weight: 700;
}

.lp-panel-shot__layout {
  min-height: 0;
  display: grid;
  grid-template-columns: 172px 1fr;
}

.lp-panel-shot__sidebar {
  border-right: 1px solid #d6deea;
  background: #eef1f6;
  padding: 10px 8px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.lp-panel-shot__sidebar small {
  color: #6d7588;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-panel-shot__menu {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.lp-panel-shot__menu-item {
  width: 100%;
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  padding: 4px 6px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 6px;
  text-align: left;
  color: #4e5b75;
  font-size: 0.64rem;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  line-height: 1.15;
}

.lp-panel-shot__menu-item:hover {
  border-color: #d0dcee;
  background: #f5f9ff;
  color: #355f97;
}

.lp-panel-shot__menu-item.is-active {
  border: 1px solid #c5d5ed;
  background: #f7fbff;
  color: #2e5b95;
  font-weight: 700;
}

.lp-panel-shot__menu-item > span:last-child {
  letter-spacing: -0.01em;
}

.lp-panel-shot__menu-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid #c8d9ed;
  background: linear-gradient(160deg, rgba(62, 121, 196, 0.16), rgba(44, 90, 157, 0.1));
  color: #2d5e97;
  display: grid;
  place-items: center;
}

.lp-panel-shot__menu-icon svg {
  width: 11px;
  height: 11px;
}

.lp-panel-shot__menu-item.is-active .lp-panel-shot__menu-icon {
  border-color: #2f6fb4;
  background: linear-gradient(135deg, #2f6fb4 0%, #4185cf 100%);
  color: #f4f9ff;
}

.lp-panel-shot__content {
  padding: 10px;
  display: grid;
  align-content: start;
  gap: 9px;
}

.lp-panel-shot__hero {
  border: 1px solid #d6deea;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(247, 250, 255, 0.96), rgba(241, 245, 252, 0.94));
  padding: 13px 14px;
}

.lp-panel-shot__hero h4 {
  margin: 0;
  color: #223a59;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.lp-panel-shot__hero p {
  margin: 6px 0 0;
  color: #5a6f8f;
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 600;
}

.lp-platform-panels {
  display: grid;
}

.lp-platform-panel {
  display: none;
  border: 1px solid #d6deeb;
  border-radius: 10px;
  background: #fbfdff;
  padding: 10px;
  gap: 6px;
}

.lp-platform-panel.is-active {
  display: grid;
  animation: lp-role-fade 0.24s ease;
}

.lp-platform-panel h4 {
  margin: 0;
  color: #223a59;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

.lp-platform-panel p {
  margin: 0;
  color: #5a6f8f;
  font-size: 0.71rem;
  line-height: 1.35;
  font-weight: 600;
}

.lp-platform-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 10px;
}

.lp-platform-panel li {
  padding: 0 0 0 14px;
  position: relative;
  color: #385779;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
}

.lp-platform-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(150deg, #2f6fb4, #478cd6);
  transform: translateY(-50%);
}

.lp-process {
  padding-top: 42px;
}

.lp-onboarding {
  margin-top: 26px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #c9d8ea;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(242, 248, 255, 0.86) 0%, rgba(242, 248, 255, 0) 58%),
    linear-gradient(170deg, #eaf2fb 0%, #e3edf9 52%, #e7f0fa 100%);
  box-shadow: var(--lp-shadow-soft);
}

.lp-onboarding__top {
  min-height: 50px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d1dfef;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(235, 244, 253, 0.92));
}

.lp-onboarding__dots {
  display: inline-flex;
  gap: 8px;
}

.lp-onboarding__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.lp-onboarding__dots span:nth-child(1) {
  background: #f97d76;
}

.lp-onboarding__dots span:nth-child(2) {
  background: #f4c251;
}

.lp-onboarding__dots span:nth-child(3) {
  background: #4dc864;
}

.lp-onboarding__top strong {
  color: #234063;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.lp-onboarding__status {
  margin-left: auto;
  border: 1px solid #bfd4ee;
  background: #f6fbff;
  color: #365b89;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-onboarding__body {
  display: grid;
  gap: 0;
  min-height: 420px;
}

.lp-onboarding__steps {
  border-bottom: 1px solid #d6e3f2;
  background: rgba(244, 250, 255, 0.82);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lp-onboarding-step {
  width: 100%;
  border: 1px solid #d5e2f3;
  border-radius: 12px;
  background: #f9fcff;
  text-align: left;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-onboarding-step:hover {
  border-color: #b9cfea;
  background: #f1f8ff;
  transform: translateY(-1px);
}

.lp-onboarding-step.is-active {
  border-color: #97bbe6;
  background: linear-gradient(150deg, #eef6ff 0%, #e4effc 100%);
  box-shadow: 0 8px 16px rgba(37, 69, 110, 0.1);
}

.lp-onboarding-step:focus-visible {
  outline: 2px solid rgba(63, 129, 210, 0.45);
  outline-offset: 2px;
}

.lp-onboarding-step__idx {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #f4f9ff;
  background: #2f6fb4;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-onboarding-step__text {
  display: grid;
  gap: 1px;
}

.lp-onboarding-step__text strong {
  color: #1f3858;
  font-size: 0.78rem;
  line-height: 1.3;
}

.lp-onboarding-step__text small {
  color: #5b7291;
  font-size: 0.68rem;
  line-height: 1.35;
}

.lp-onboarding__content {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.lp-onboarding-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-onboarding-progress__track {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #d8e5f5;
  overflow: hidden;
}

.lp-onboarding-progress__fill {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f77c7 0%, #3e8de3 100%);
  transition: width 0.25s ease;
}

.lp-onboarding-progress__label {
  color: #3d5474;
  font-size: 0.74rem;
  font-weight: 700;
}

.lp-onboarding-panel {
  display: none;
  border: 1px solid #d4e0ee;
  border-radius: 14px;
  background: rgba(250, 253, 255, 0.86);
  padding: 12px;
  gap: 10px;
}

.lp-onboarding-panel.is-active {
  display: grid;
  animation: lp-role-fade 0.26s ease;
}

.lp-onboarding-panel h3 {
  margin: 0;
  color: #213a59;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.lp-onboarding-panel > p {
  margin: 0;
  color: #556c8a;
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.lp-onboarding-field {
  display: grid;
  gap: 4px;
}

.lp-onboarding-field--full {
  grid-column: 1 / -1;
}

.lp-onboarding-field span {
  color: #415b7b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-onboarding-field input,
.lp-onboarding-field select,
.lp-onboarding-field textarea {
  width: 100%;
  border-radius: 9px;
  border: 1px solid #c9d9ec;
  background: #f7fbff;
  color: #1f3653;
  font-size: 0.8rem;
  padding: 8px 9px;
  font: inherit;
}

.lp-onboarding-field textarea {
  resize: vertical;
}

.lp-onboarding-field input:focus,
.lp-onboarding-field select:focus,
.lp-onboarding-field textarea:focus {
  outline: none;
  border-color: #6fa2dc;
  box-shadow: 0 0 0 3px rgba(66, 132, 206, 0.14);
  background: #fff;
}

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

.lp-store-app {
  display: block;
  cursor: pointer;
}

.lp-store-app input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-store-app__ui {
  border: 1px solid #d6e3f2;
  border-radius: 12px;
  background: #f7fbff;
  padding: 10px 9px;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-store-app:hover .lp-store-app__ui {
  border-color: #b9cfea;
  background: #f2f9ff;
  transform: translateY(-1px);
}

.lp-store-app__logo {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #2d67a8;
  background: linear-gradient(160deg, #eaf3ff 0%, #dbeafe 100%);
  border: 1px solid #c4d8f1;
}

.lp-store-app__logo svg {
  width: 23px;
  height: 23px;
}

.lp-store-app__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  justify-items: center;
  flex: 1;
  align-content: start;
}

.lp-store-app__meta strong {
  color: #24405f;
  font-size: 0.78rem;
  line-height: 1.25;
}

.lp-store-app__meta small {
  color: #5e7594;
  font-size: 0.69rem;
  line-height: 1.3;
}

.lp-store-app__action {
  margin-top: auto;
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #bfd3eb;
  color: #40658e;
  background: #f4f9ff;
  display: inline-flex;
  align-items: center;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-store-app input[type="checkbox"]:checked + .lp-store-app__ui {
  border-color: #8fb5e0;
  background: linear-gradient(150deg, #edf5ff 0%, #e4efff 100%);
  box-shadow: 0 10px 18px rgba(40, 84, 136, 0.12);
}

.lp-store-app input[type="checkbox"]:checked + .lp-store-app__ui .lp-store-app__logo {
  color: #f3f8ff;
  border-color: #2f6fb4;
  background: linear-gradient(140deg, #2f6fb4 0%, #3f82cb 100%);
}

.lp-store-app input[type="checkbox"]:checked + .lp-store-app__ui .lp-store-app__action {
  color: #f5f9ff;
  border-color: #2f6fb4;
  background: #2f6fb4;
}

.lp-store-app__installed {
  display: none;
}

.lp-store-app input[type="checkbox"]:checked + .lp-store-app__ui .lp-store-app__install {
  display: none;
}

.lp-store-app input[type="checkbox"]:checked + .lp-store-app__ui .lp-store-app__installed {
  display: inline;
}

.lp-onboarding-wireframe {
  display: grid;
  gap: 8px;
}

.lp-onboarding-wireframe__row {
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  background: #f7fbff;
  padding: 9px 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.lp-onboarding-wireframe__row span {
  color: #27405f;
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-onboarding-wireframe__row small {
  color: #5f7694;
  font-size: 0.74rem;
  font-weight: 600;
}

.lp-onboarding-actions {
  margin-top: 2px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-onboarding-nav {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #c4d6eb;
  background: #f5faff;
  color: #2a4669;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.lp-onboarding-nav--next {
  border-color: #2f6fb4;
  background: #2f6fb4;
  color: #f7fbff;
}

.lp-onboarding-contact {
  min-height: 38px;
  padding: 0 16px;
}

.lp-carousel-section {
  padding-top: 52px;
}

.lp-carousel {
  margin-top: 24px;
  overflow: hidden;
  border: 0;
  background: transparent;
  padding: 0;
}

.lp-carousel__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: lp-scroll 34s linear infinite;
}

.lp-carousel-card {
  position: relative;
  width: 300px;
  min-height: 228px;
  border-radius: 18px;
  border: 1px solid rgba(41, 56, 87, 0.16);
  box-shadow: var(--lp-shadow-soft);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #f4f8fd 0%, #e6ecf7 100%);
}

.lp-carousel-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -56px;
  top: -66px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.02) 72%);
  z-index: 0;
  pointer-events: none;
}

.lp-carousel-art {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 20px rgba(27, 42, 71, 0.12);
  display: grid;
  place-items: center;
  color: #1f4678;
  position: relative;
  z-index: 1;
}

.lp-carousel-art svg {
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.lp-carousel-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b2130;
  position: relative;
  z-index: 1;
}

.lp-carousel-card p {
  margin: 0;
  color: #415168;
  font-size: 14px;
  line-height: 1.45;
  max-width: 25ch;
  position: relative;
  z-index: 1;
}

.lp-carousel-card--matriculas {
  background: linear-gradient(145deg, #edf4ff 0%, #dce8fa 100%);
}

.lp-carousel-card--matriculas .lp-carousel-art {
  color: #224f91;
}

.lp-carousel-card--diario {
  background: linear-gradient(145deg, #e9f8f4 0%, #d7eee7 100%);
}

.lp-carousel-card--diario .lp-carousel-art {
  color: #16685d;
}

.lp-carousel-card--indicadores {
  background: linear-gradient(145deg, #f6f1ff 0%, #e8ddfb 100%);
}

.lp-carousel-card--indicadores .lp-carousel-art {
  color: #5a3a95;
}

.lp-carousel-card--relatorios {
  background: linear-gradient(145deg, #fff4e6 0%, #f9e8ce 100%);
}

.lp-carousel-card--relatorios .lp-carousel-art {
  color: #9b6220;
}

@keyframes lp-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.lp-terminal {
  margin-top: 24px;
  border-radius: 22px;
  border: 1px solid rgba(56, 82, 122, 0.52);
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(39, 65, 104, 0.62) 0%, rgba(39, 65, 104, 0) 58%),
    linear-gradient(165deg, #14233a 0%, #121f33 52%, #111b2c 100%);
  box-shadow:
    0 24px 44px rgba(11, 22, 37, 0.26),
    inset 0 1px 0 rgba(138, 177, 224, 0.24);
}

.lp-terminal__top {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(96, 128, 174, 0.38);
  background: linear-gradient(180deg, rgba(38, 60, 95, 0.86), rgba(26, 43, 70, 0.88));
}

.lp-terminal__dots {
  display: inline-flex;
  gap: 8px;
}

.lp-terminal__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.lp-terminal__dots span:nth-child(1) {
  background: #f97d76;
}

.lp-terminal__dots span:nth-child(2) {
  background: #f4c251;
}

.lp-terminal__dots span:nth-child(3) {
  background: #4dc864;
}

.lp-terminal__top strong {
  color: #d9e9ff;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

.lp-terminal__status {
  margin-left: auto;
  border: 1px solid rgba(119, 212, 173, 0.5);
  background: rgba(119, 212, 173, 0.13);
  color: #90f0c5;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-terminal__body {
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr;
  min-height: 390px;
}

.lp-terminal__folders {
  border-right: 1px solid rgba(80, 111, 154, 0.36);
  background: linear-gradient(180deg, rgba(18, 34, 58, 0.92), rgba(16, 29, 48, 0.94));
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.lp-folder {
  width: 100%;
  border: 1px solid rgba(83, 114, 159, 0.4);
  border-radius: 12px;
  background: rgba(25, 44, 72, 0.72);
  color: #dbe9ff;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.lp-folder:hover {
  transform: translateX(2px);
  border-color: rgba(124, 168, 226, 0.7);
  background: rgba(33, 57, 90, 0.82);
}

.lp-folder.is-active {
  border-color: rgba(143, 206, 255, 0.72);
  background: linear-gradient(145deg, rgba(48, 82, 128, 0.92), rgba(36, 62, 100, 0.9));
}

.lp-folder__glyph {
  width: 24px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(222, 189, 99, 0.68);
  background: linear-gradient(180deg, #f4c55a 0%, #de9f2f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 236, 175, 0.58);
  position: relative;
  flex-shrink: 0;
}

.lp-folder__glyph::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -5px;
  width: 12px;
  height: 6px;
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(222, 189, 99, 0.68);
  border-bottom: 0;
  background: linear-gradient(180deg, #f8d67d 0%, #edbc52 100%);
}

.lp-folder__text {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.lp-folder__text strong {
  color: #f2f7ff;
  font-size: 0.82rem;
  line-height: 1.3;
}

.lp-folder__text small {
  color: #9fb8da;
  font-size: 0.7rem;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

.lp-terminal__screen {
  position: relative;
  padding: 16px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(56, 88, 128, 0.3) 0%, rgba(56, 88, 128, 0) 56%),
    linear-gradient(180deg, #101a2a 0%, #0d1624 100%);
  overflow: auto;
}

.lp-terminal__output {
  margin: 0;
  min-height: 312px;
  color: #cde4ff;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  white-space: pre;
  word-break: normal;
}

.lp-terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #79e8b9;
  box-shadow: 0 0 10px rgba(121, 232, 185, 0.62);
  border-radius: 2px;
  animation: lp-terminal-blink 1s steps(1, end) infinite;
}

@keyframes lp-terminal-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.lp-final-cta {
  text-align: center;
  padding-top: 58px;
  padding-bottom: 30px;
}

.lp-final-cta__actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-contact-panel {
  margin-top: 34px;
  border-radius: 20px;
  border: 1px solid #d3dbe8;
  background: linear-gradient(145deg, #eef3fa 0%, #e5edf8 100%);
  box-shadow: var(--lp-shadow-soft);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  text-align: left;
}

.lp-contact-panel__intro h3 {
  margin: 10px 0 0;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lp-contact-panel__intro p {
  margin: 12px 0 0;
  font-size: 16px;
  color: #526173;
}

.lp-contact-panel__list {
  display: grid;
  gap: 10px;
}

.lp-contact-link {
  border-radius: 14px;
  border: 1px solid #ccd7e7;
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  color: #1a2535;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.lp-contact-link:hover {
  border-color: #b1c7e2;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.lp-contact-link > i:first-child {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #c6d5e9;
  background: #f4f8ff;
  color: #36598f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-contact-link span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.lp-contact-link strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.lp-contact-link small {
  color: #586878;
  font-size: 13px;
  line-height: 1.35;
}

.lp-contact-link > i:last-child {
  margin-left: auto;
  color: #7a8594;
  font-size: 13px;
}

.lp-footer {
  border-top: 1px solid #d6d6d6;
  padding: 44px 0 28px;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.lp-footer h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.lp-footer h4 {
  margin: 0;
  font-size: 18px;
}

.lp-footer p {
  margin: 10px 0 0;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-footer a {
  display: block;
  margin-top: 9px;
  text-decoration: none;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-footer__social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.lp-footer__social a {
  margin: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  display: grid;
  place-items: center;
  color: #787878;
}

.lp-footer__copy {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #d8d8d8;
}

.lp-footer__copy p {
  margin: 0;
  color: #6e737a;
  font-size: 13px;
}

@media (max-width: 1100px) {
  :root {
    --lp-wrap: min(1140px, calc(100% - 40px));
  }

  .lp-header__inner {
    grid-template-columns: auto 1fr;
    padding: 12px 0;
  }

  .lp-themes__grid,
  .lp-split__grid,
  .lp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-split--studio .lp-split__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .lp-split--studio .lp-wrap::after {
    left: auto;
    right: -100px;
    top: -210px;
  }

  .lp-copy-block--studio p {
    max-width: 52ch;
  }

  .lp-panel-shot__layout {
    grid-template-columns: 176px 1fr;
  }

  .lp-themes__menu,
  .lp-themes__content {
    grid-column: 1 / -1;
  }

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

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

  .lp-terminal__folders {
    border-right: 0;
    border-bottom: 1px solid rgba(80, 111, 154, 0.36);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
  }

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

  .lp-onboarding__steps {
    border-right: 0;
    border-bottom: 1px solid #d6e3f2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
  }

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

  .lp-role-viewer {
    padding: 16px 16px 90px;
    border-radius: 24px;
  }

  .lp-role-stage {
    min-height: 420px;
  }

  .lp-role-ui__body {
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --lp-wrap: min(1140px, calc(100% - 24px));
  }

  .lp-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 41;
    width: min(86vw, 320px);
    height: 100dvh;
    padding: 84px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-y: auto;
    background: linear-gradient(180deg, #f5f9ff 0%, #ecf3fd 100%);
    border-left: 1px solid #c8d9ed;
    box-shadow: -20px 0 34px rgba(17, 31, 52, 0.2);
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .lp-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
  }

  .lp-header__menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 42;
  }

  .lp-header__backdrop {
    display: block;
    z-index: 40;
  }

  .lp-header.is-menu-open .lp-header__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .lp-header.is-menu-open .lp-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .lp-brand {
    gap: 8px;
  }

  .lp-brand__mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .lp-brand__name {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }

  .lp-nav a {
    padding: 10px 11px;
    border: 1px solid #d6e3f3;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
  }

  .lp-hero {
    min-height: auto;
    padding: 78px 0 48px;
  }

  .lp-hero__inner {
    min-height: auto;
  }

  .lp-hero::before {
    width: min(96vw, 520px);
    height: 76%;
    border-radius: 18px;
    opacity: 0.36;
  }

  .lp-hero__window {
    padding: 0;
  }

  .lp-hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    max-width: 13ch;
  }

  .lp-split--studio .lp-wrap {
    border-radius: 22px;
  }

  .lp-split--studio .lp-split__grid {
    padding: 16px;
    gap: 16px;
  }

  .lp-copy-block__kicker {
    font-size: 0.8rem;
  }

  .lp-copy-block--studio h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .lp-copy-block--studio p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .lp-platform-btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .lp-copy-block__footnote {
    font-size: 0.82rem;
  }

  .lp-panel-shot {
    min-height: auto;
  }

  .lp-panel-shot--peek {
    width: 100%;
    height: auto;
    min-height: auto;
    max-width: 100%;
    transform: none;
    margin-right: 0;
  }

  .lp-panel-shot__top {
    min-height: 46px;
    padding: 0 10px;
  }

  .lp-panel-shot__top strong {
    font-size: 0.82rem;
  }

  .lp-panel-shot__body {
    padding: 10px;
    gap: 8px;
  }

  .lp-panel-shot__pillbar span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .lp-panel-shot__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lp-panel-shot__card {
    padding: 9px;
  }

  .lp-split--studio .lp-panel-shot--studio {
    min-height: auto;
  }

  .lp-split--studio .lp-panel-shot__top {
    min-height: 44px;
    padding: 0 10px;
  }

  .lp-panel-shot__env {
    display: none;
  }

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

  .lp-panel-shot__sidebar {
    border-right: 0;
    border-bottom: 1px solid #d6deea;
    padding: 10px;
  }

  .lp-panel-shot__menu {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .lp-panel-shot__menu-item {
    white-space: nowrap;
    min-height: 28px;
    min-width: max-content;
    font-size: 0.62rem;
    padding: 4px 7px;
    gap: 5px;
  }

  .lp-panel-shot__menu-icon {
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .lp-panel-shot__menu-icon svg {
    width: 10px;
    height: 10px;
  }

  .lp-panel-shot__content {
    padding: 10px;
    gap: 9px;
  }

  .lp-panel-shot__hero {
    padding: 10px 11px;
  }

  .lp-panel-shot__hero p {
    font-size: 0.71rem;
  }

  .lp-platform-panel {
    padding: 10px;
  }

  .lp-platform-panel p {
    font-size: 0.72rem;
  }

  .lp-platform-panel li {
    font-size: 0.7rem;
    padding: 0 0 0 12px;
  }

  .lp-platform-panel ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lp-onboarding__top {
    min-height: 44px;
    padding: 0 10px;
  }

  .lp-onboarding__top strong {
    font-size: 0.8rem;
  }

  .lp-onboarding__status {
    display: none;
  }

  .lp-onboarding__steps {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 6px;
  }

  .lp-onboarding-step {
    padding: 8px;
    gap: 8px;
  }

  .lp-onboarding-step__text strong {
    font-size: 0.78rem;
  }

  .lp-onboarding-step__text small {
    font-size: 0.7rem;
  }

  .lp-onboarding-store {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lp-store-app__ui {
    min-height: 118px;
    padding: 10px 8px;
  }

  .lp-onboarding__content {
    padding: 10px;
    gap: 10px;
  }

  .lp-onboarding-panel {
    padding: 10px;
  }

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

  .lp-onboarding-field--full {
    grid-column: auto;
  }

  .lp-onboarding-actions {
    justify-content: stretch;
  }

  .lp-onboarding-nav,
  .lp-onboarding-contact {
    width: 100%;
    justify-content: center;
  }

  .lp-onboarding-wireframe__row {
    padding: 8px 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .lp-theme-tab {
    min-height: 58px;
    min-width: 208px;
    flex: 0 0 auto;
    padding: 9px;
    gap: 8px;
  }

  .lp-theme-tab__icon {
    width: 36px;
    height: 36px;
  }

  .lp-theme-tab__icon svg {
    width: 19px;
    height: 19px;
  }

  .lp-theme-tab__label {
    font-size: 0.82rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .lp-themes__menu {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 2px 1px 6px;
    scrollbar-width: thin;
  }

  .lp-themes__content {
    padding: 56px 12px 12px;
  }

  .lp-themes__content::after {
    height: 48px;
    background:
      radial-gradient(circle at 28px 23px, #f97d76 0 6px, transparent 7px),
      radial-gradient(circle at 56px 23px, #f4c251 0 6px, transparent 7px),
      radial-gradient(circle at 84px 23px, #4dc864 0 6px, transparent 7px),
      linear-gradient(180deg, rgba(241, 246, 252, 0.82), rgba(232, 239, 248, 0.78));
  }

  .lp-role-showcase {
    padding-top: 34px;
  }

  .lp-role-viewer {
    margin-top: 16px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid #c6d9ee;
    background:
      radial-gradient(130% 120% at 50% -6%, rgba(226, 239, 254, 0.9) 0%, rgba(226, 239, 254, 0) 70%),
      linear-gradient(165deg, rgba(194, 216, 240, 0.58) 0%, rgba(171, 197, 228, 0.48) 100%);
    box-shadow: 0 14px 26px rgba(29, 43, 64, 0.15);
  }

  .lp-role-stage {
    min-height: 0;
    margin-bottom: 0;
    display: grid;
    gap: 10px;
  }

  .lp-role-screen {
    position: static;
    inset: auto;
  }

  .lp-role-ui {
    padding-bottom: 12px;
    border-radius: 16px;
    border: 1px solid rgba(171, 193, 220, 0.78);
    box-shadow: 0 10px 18px rgba(22, 35, 53, 0.14);
  }

  .lp-role-ui__top {
    min-height: 40px;
    padding: 0 10px;
  }

  .lp-role-ui__status {
    display: none;
  }

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

  .lp-role-ui__nav {
    border-right: 0;
    border-bottom: 1px solid #dde5f0;
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 8px;
  }

  .lp-role-ui__nav a {
    white-space: nowrap;
    font-size: 0.76rem;
    padding: 7px 9px;
  }

  .lp-role-ui__main {
    padding: 8px;
    gap: 8px;
    max-height: min(52vh, 420px);
  }

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

  .lp-role-kpi:nth-child(3) {
    grid-column: 1 / -1;
  }

  .lp-role-kpi strong {
    font-size: 0.98rem;
  }

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

  .lp-role-card {
    padding: 9px;
  }

  .lp-role-card h4 {
    font-size: 0.8rem;
  }

  .lp-role-list li,
  .lp-role-table div {
    padding: 7px 9px;
  }

  .lp-role-check li {
    padding: 7px 9px 7px 24px;
  }

  .lp-role-check li::before {
    left: 8px;
    width: 8px;
    height: 8px;
  }

  .lp-role-dock {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    --dock-focus: 0 !important;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    justify-content: stretch;
    border-radius: 16px;
    border: 1px solid rgba(125, 154, 189, 0.45);
    background:
      radial-gradient(125% 120% at 50% 0%, rgba(204, 227, 248, 0.88) 0%, rgba(160, 191, 222, 0.8) 54%, rgba(136, 163, 198, 0.82) 100%),
      linear-gradient(140deg, rgba(143, 169, 200, 0.82) 0%, rgba(166, 190, 214, 0.8) 100%);
    box-shadow: 0 10px 18px rgba(23, 37, 56, 0.2);
    padding: 9px 8px 8px;
    gap: 6px;
    overflow: visible;
    margin-top: 8px;
    backdrop-filter: blur(6px);
  }

  .lp-role-app {
    --dock-power: 0 !important;
    min-width: 0;
    width: 100%;
    gap: 4px;
  }

  .lp-role-app__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transform: none;
    box-shadow: 0 7px 13px rgba(9, 23, 41, 0.28);
  }

  .lp-role-app__icon svg {
    width: 22px;
    height: 22px;
  }

  .lp-role-app__label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    border: 0;
    color: #1f3857;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
    white-space: nowrap;
    max-width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.88;
  }

  .lp-role-app::before {
    display: none;
  }

  .lp-role-app::after {
    width: 5px;
    height: 5px;
    margin-top: 2px;
    background: rgba(238, 247, 255, 0.9);
  }

  .lp-role-app:hover .lp-role-app__icon {
    box-shadow: 0 7px 13px rgba(9, 23, 41, 0.28);
  }

  .lp-role-app.is-active .lp-role-app__icon {
    border-color: rgba(239, 248, 255, 0.7);
    box-shadow:
      0 10px 16px rgba(9, 23, 41, 0.35),
      0 0 0 2px rgba(240, 248, 255, 0.32);
  }

  .lp-role-app.is-active .lp-role-app__label {
    color: #102844;
    opacity: 1;
  }

  .lp-accordion__trigger {
    padding: 11px 12px;
  }

  .lp-accordion__headline i {
    width: 32px;
    height: 32px;
  }

  .lp-accordion__content {
    padding: 0 12px 12px 52px;
  }

  .lp-hero__actions,
  .lp-final-cta__actions {
    display: grid;
    width: 100%;
  }

  .lp-hero__actions .lp-btn,
  .lp-final-cta__actions .lp-btn {
    width: 100%;
  }

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

  .lp-section__header h2,
  .lp-copy-block h2,
  .lp-final-cta h2,
  .lp-title {
    font-size: 32px;
  }

  .lp-split__grid,
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .lp-terminal__screen {
    padding: 12px;
  }

  .lp-terminal__output {
    min-height: 274px;
    font-size: 13px;
  }

  .lp-carousel-card {
    width: 240px;
    min-height: 214px;
    padding: 14px;
  }

  .lp-carousel-art {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .lp-carousel-art svg {
    width: 38px;
    height: 38px;
  }

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

  .lp-carousel-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .lp-contact-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .lp-contact-panel__intro h3 {
    font-size: 24px;
  }

  .lp-contact-panel__intro p {
    font-size: 15px;
  }

  .lp-contact-link {
    padding: 11px 12px;
  }

  .lp-contact-link > i:first-child {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .lp-contact-link strong {
    font-size: 15px;
  }

  .lp-contact-link small {
    font-size: 12px;
  }

  .lp-tech-item {
    min-width: auto;
    min-height: auto;
    padding: 0;
    gap: 10px;
  }

  .lp-tech__marquee {
    margin-top: 24px;
  }

  .lp-tech__track {
    gap: 44px;
  }

  .lp-tech-item img {
    width: 38px;
    height: 38px;
  }

  .lp-tech-item span {
    font-size: 17px;
  }
}
