/* LCDC public homepage */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

body.is-home-screen {
  --home-bg: #f8f7f3;
  --home-paper: #ffffff;
  --home-soft: #f3f5f8;
  --home-ink: #16284d;
  --home-muted: #5d6c89;
  --home-accent: #433cea;
  --home-accent-dark: #342dcc;
  --home-line: rgba(30, 54, 101, 0.14);
  --home-line-strong: rgba(30, 54, 101, 0.22);
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

body.is-home-screen .app-shell {
  min-height: 100vh;
}

body.is-home-screen .about-control {
  display: none !important;
}

body.is-home-screen .home-page {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: left;
  isolation: auto;
}

body.is-home-screen .home-page.is-active {
  display: block;
}

body.is-home-screen .home-page-content {
  width: 100%;
}

body.is-home-screen .home-container {
  width: min(1240px, calc(100% - 72px));
  margin-inline: auto;
}

body.is-home-screen .home-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(30, 54, 101, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 40, 77, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.is-home-screen .home-announcement {
  background: #3569ef;
  color: #ffffff;
}

body.is-home-screen .home-announcement.is-hidden {
  display: none;
}

body.is-home-screen .home-announcement-inner {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding-block: 5px;
}

body.is-home-screen .home-announcement p {
  margin: 0;
  padding-inline: 48px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 11px;
  font-size: 0.79rem;
  font-weight: 740;
  line-height: 1.35;
  text-align: center;
}

body.is-home-screen .home-announcement-beta-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  color: #ffffff;
  line-height: 1;
}

body.is-home-screen .home-announcement-beta-badge {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 7px;
  background: rgba(46, 85, 222, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 2px 5px rgba(16, 37, 118, 0.16);
  color: #ffffff;
  padding: 0 7px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px rgba(14, 36, 110, 0.3);
}

body.is-home-screen .home-announcement-message {
  min-width: 0;
}

body.is-home-screen .home-announcement-dismiss {
  position: absolute;
  right: 0;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

body.is-home-screen .home-announcement-dismiss:hover,
body.is-home-screen .home-announcement-dismiss:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

body.is-home-screen .home-announcement-dismiss svg {
  width: 21px;
  height: 21px;
}

body.is-home-screen .home-header.is-scrolled {
  border-bottom-color: var(--home-line-strong);
  box-shadow: 0 12px 30px rgba(22, 40, 77, 0.09);
}

body.is-home-screen .home-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  background: #ffffff;
}

body.is-home-screen .home-brand {
  display: inline-flex;
  align-items: center;
  width: 196px;
  border-radius: 6px;
}

body.is-home-screen .home-brand img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-home-screen .home-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

body.is-home-screen .home-navigation > a,
body.is-home-screen .home-navigation-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(22, 40, 77, 0.76);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

body.is-home-screen .home-navigation > a::after,
body.is-home-screen .home-navigation-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--home-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

body.is-home-screen .home-navigation > a:hover,
body.is-home-screen .home-navigation > a:focus-visible,
body.is-home-screen .home-navigation > a.is-active,
body.is-home-screen .home-navigation-link:hover,
body.is-home-screen .home-navigation-link:focus-visible {
  color: var(--home-ink);
}

body.is-home-screen .home-navigation > a:hover::after,
body.is-home-screen .home-navigation > a:focus-visible::after,
body.is-home-screen .home-navigation > a.is-active::after,
body.is-home-screen .home-navigation-link:hover::after,
body.is-home-screen .home-navigation-link:focus-visible::after {
  transform: scaleX(1);
}

body.is-home-screen .home-navigation-mobile-actions {
  display: none;
}

body.is-home-screen .home-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

body.is-home-screen .topbar {
  position: static;
  inset: auto;
  z-index: auto;
  opacity: 1;
  pointer-events: auto;
  border-left: 1px solid var(--home-line-strong);
  padding-left: 22px;
  transition: none;
}

body.is-home-screen .login-button,
body.is-home-screen .home-header-demo,
body.is-home-screen .home-header-register {
  min-height: 49px;
  border-radius: 999px;
  padding: 0 22px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 720;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.is-home-screen .login-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--home-ink);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.is-home-screen .home-header-demo {
  border: 1px solid var(--home-accent);
  background: var(--home-accent);
  color: #ffffff;
}

body.is-home-screen .home-header-register {
  border: 1px solid var(--home-accent);
  background: var(--home-accent);
  box-shadow: 0 8px 18px rgba(67, 60, 234, 0.18);
  color: #ffffff;
}

body.is-home-screen .home-header-tutorial {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: rgba(22, 40, 77, 0.76);
  font-size: 0.79rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

body.is-home-screen .home-header-tutorial svg {
  width: 15px;
  height: 15px;
}

body.is-home-screen .home-header-tutorial:hover,
body.is-home-screen .home-header-tutorial:focus-visible {
  color: var(--home-accent-dark);
}

body.is-home-screen .login-button:hover,
body.is-home-screen .login-button:focus-visible {
  border-color: var(--home-line-strong);
  background: #ffffff;
  color: var(--home-accent-dark);
  box-shadow: none;
}

body.is-home-screen .home-header-register:hover,
body.is-home-screen .home-header-register:focus-visible {
  border-color: var(--home-accent-dark);
  background: var(--home-accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

body.is-home-screen .home-header-demo:hover,
body.is-home-screen .home-header-demo:focus-visible {
  border-color: var(--home-accent-dark);
  background: var(--home-accent-dark);
  transform: translateY(-1px);
}

body.is-home-screen .home-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--home-ink);
  cursor: pointer;
}

body.is-home-screen .home-menu-toggle svg {
  width: 21px;
  height: 21px;
}

body.is-home-screen .home-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 21px;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.is-home-screen .home-button-primary {
  border: 1px solid var(--home-accent);
  background: var(--home-accent);
  color: #ffffff;
}

body.is-home-screen .home-hero-actions .home-button-primary {
  gap: 12px;
  padding-inline: 23px;
}

body.is-home-screen .home-cta-glyph {
  display: grid;
  width: 20px;
  height: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  flex: none;
}

body.is-home-screen .home-cta-glyph i {
  display: block;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

body.is-home-screen .home-button-primary:hover,
body.is-home-screen .home-button-primary:focus-visible {
  border-color: var(--home-accent-dark);
  background: var(--home-accent-dark);
  transform: translateY(-1px);
}

body.is-home-screen .home-button-secondary {
  border: 1px solid var(--home-line-strong);
  background: #ffffff;
  color: var(--home-ink);
}

body.is-home-screen .home-button-secondary:hover,
body.is-home-screen .home-button-secondary:focus-visible {
  border-color: rgba(67, 60, 234, 0.46);
  color: var(--home-accent-dark);
  transform: translateY(-1px);
}

body.is-home-screen .home-text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid var(--home-line-strong);
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--home-ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

body.is-home-screen .home-text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

body.is-home-screen .home-text-link:hover,
body.is-home-screen .home-text-link:focus-visible {
  border-bottom-color: var(--home-accent);
  color: var(--home-accent-dark);
}

body.is-home-screen .home-text-link:hover svg,
body.is-home-screen .home-text-link:focus-visible svg {
  transform: translateY(2px);
}

body.is-home-screen .home-section-label,
body.is-home-screen .home-hero-context {
  margin: 0;
  color: var(--home-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

body.is-home-screen .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 82px;
  padding: 64px 0 0;
  background: var(--home-bg);
}

body.is-home-screen .home-hero-background,
body.is-home-screen .home-hero::before,
body.is-home-screen .home-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.is-home-screen .home-hero-background {
  z-index: -3;
  overflow: hidden;
  background: var(--home-bg);
}

body.is-home-screen .home-hero-background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

body.is-home-screen .home-hero::before {
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(248, 247, 243, 0.88) 0%, rgba(248, 247, 243, 0.71) 48%, rgba(232, 240, 251, 0.48) 100%);
}

body.is-home-screen .home-hero::after {
  z-index: -1;
  content: "";
  top: auto;
  height: 160px;
  background: linear-gradient(to bottom, rgba(248, 247, 243, 0), var(--home-bg));
}

body.is-home-screen .home-hero > .home-container {
  position: relative;
  z-index: 1;
}

body.is-home-screen .home-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 0;
}

body.is-home-screen .home-hero-copy {
  max-width: 840px;
}

body.is-home-screen .home-hero-copy h1 {
  max-width: 830px;
  margin: 17px 0 19px;
  color: var(--home-ink);
  font-family: inherit;
  font-size: clamp(2.65rem, 3.55vw, 3.3rem);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

body.is-home-screen .home-hero-lead {
  max-width: 700px;
  margin: 0;
  color: var(--home-muted);
  font-size: 1.08rem;
  font-weight: 520;
  line-height: 1.68;
}

body.is-home-screen .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
}

body.is-home-screen .home-hero-note {
  max-width: 700px;
  margin: 15px 0 0;
  color: rgba(22, 40, 77, 0.57);
  font-size: 0.77rem;
  line-height: 1.5;
}

body.is-home-screen .home-access-section {
  position: relative;
  z-index: 2;
  padding: 34px 0 26px;
  background: var(--home-bg);
}

body.is-home-screen .home-access-section-label {
  margin: 0 0 16px;
  color: rgba(22, 40, 77, 0.65);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

body.is-home-screen .home-access-card {
  display: grid;
  grid-template-columns: minmax(225px, 0.75fr) minmax(0, 1.45fr) minmax(245px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 52px);
  border: 1px solid rgba(67, 60, 234, 0.16);
  border-radius: 14px;
  padding: 31px clamp(26px, 4vw, 52px);
  background: #ffffff;
  box-shadow: 0 20px 0 -12px rgba(67, 60, 234, 0.12), 0 31px 48px rgba(35, 45, 104, 0.13);
  color: var(--home-ink);
  transform: perspective(1200px) rotateX(1.2deg);
  transform-origin: center top;
}

body.is-home-screen .home-access-price-panel {
  min-width: 0;
  padding-right: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--home-line);
  text-align: center;
}

body.is-home-screen .home-access-card h2 {
  margin: 0 0 3px;
  color: var(--home-ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.12;
}

body.is-home-screen .home-access-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--home-accent);
  line-height: 1;
}

body.is-home-screen .home-access-price strong {
  font-size: clamp(3.6rem, 5.4vw, 4.7rem);
  font-weight: 800;
  letter-spacing: 0;
}

body.is-home-screen .home-access-price span {
  font-size: clamp(2.3rem, 3.3vw, 3rem);
  font-weight: 780;
}

body.is-home-screen .home-access-period {
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 620;
}

body.is-home-screen .home-access-content {
  min-width: 0;
}

body.is-home-screen .home-access-includes {
  margin: 0 0 13px;
  color: var(--home-ink);
  font-size: 0.87rem;
  font-weight: 780;
}

body.is-home-screen .home-access-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.is-home-screen .home-access-list li {
  position: relative;
  min-height: 20px;
  padding-left: 25px;
  color: rgba(22, 40, 77, 0.84);
  font-size: 0.76rem;
  font-weight: 560;
  line-height: 1.4;
}

body.is-home-screen .home-access-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #f0efff;
  color: var(--home-accent);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

body.is-home-screen .home-access-action {
  min-width: 0;
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid var(--home-line);
}

body.is-home-screen .home-access-cta {
  width: 100%;
  min-height: 54px;
  gap: 10px;
  padding-inline: 16px;
}

body.is-home-screen .home-access-cta > svg {
  width: 18px;
  height: 18px;
  margin-left: auto;
}

body.is-home-screen .home-access-reassurance {
  margin: 12px 0 0;
  color: rgba(22, 40, 77, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}


body.is-home-screen .home-publish-preview {
  padding: 88px 0 124px;
  background: var(--home-bg);
}

body.is-home-screen .home-showcase-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 5px;
  border: 1px solid rgba(31, 54, 104, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(30, 54, 101, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

body.is-home-screen .home-showcase-tabs::-webkit-scrollbar {
  display: none;
}

body.is-home-screen .home-showcase-tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(22, 40, 77, 0.74);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

body.is-home-screen .home-showcase-tab svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.is-home-screen .home-showcase-tab:hover,
body.is-home-screen .home-showcase-tab:focus-visible {
  color: var(--home-ink);
  outline: none;
}

body.is-home-screen .home-showcase-tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(67, 60, 234, 0.2);
}

body.is-home-screen .home-showcase-tab.is-active {
  background: #e8edff;
  color: #423bea;
  box-shadow: inset 0 0 0 1px rgba(67, 60, 234, 0.05);
}

body.is-home-screen .home-showcase-panel[hidden] {
  display: none;
}

body.is-home-screen .home-showcase-panel.is-active {
  animation: home-showcase-panel-in 280ms ease both;
}

@keyframes home-showcase-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.is-home-screen .home-publish-preview-surface {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(46px, 6.4vw, 102px);
  min-height: 632px;
  padding: clamp(46px, 5.2vw, 82px) clamp(34px, 5.7vw, 92px);
  border: 1px solid rgba(31, 54, 104, 0.045);
  border-radius: 16px;
  background: #f8f9fd;
}

body.is-home-screen .home-publish-preview-copy {
  max-width: 452px;
}

body.is-home-screen .home-publish-preview-copy h2 {
  margin: 16px 0 22px;
  color: var(--home-ink);
  font-size: clamp(2.15rem, 3.15vw, 3.32rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.1;
}

body.is-home-screen .home-publish-preview-copy > p:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  font-weight: 540;
  line-height: 1.64;
}

body.is-home-screen .home-publish-preview-points {
  display: grid;
  gap: 17px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

body.is-home-screen .home-publish-preview-points li {
  position: relative;
  padding-left: 31px;
  color: var(--home-ink);
  font-size: 0.84rem;
  font-weight: 590;
  line-height: 1.42;
}

body.is-home-screen .home-publish-preview-points li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8eaff;
  color: #3f3bf0;
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

body.is-home-screen .home-publish-preview-visual {
  position: relative;
  min-height: 492px;
  margin: 0;
}

body.is-home-screen .home-showcase-structured-visual {
  position: relative;
  min-height: 492px;
}

body.is-home-screen .home-publish-preview-photo,
body.is-home-screen .home-publish-preview-draft,
body.is-home-screen .home-publish-preview-published {
  position: absolute;
  margin: 0;
}

body.is-home-screen .home-publish-preview-photo {
  top: 2px;
  right: 0;
  width: 87%;
  height: 464px;
  overflow: hidden;
  border-radius: 13px;
  background: #e8ebf5;
}

body.is-home-screen .home-publish-preview-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

body.is-home-screen .home-showcase-context-photo {
  position: absolute;
  top: 2px;
  right: 0;
  width: 87%;
  height: 464px;
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  background: #e8ebf5;
}

body.is-home-screen .home-showcase-context-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.is-home-screen .home-publish-preview-draft,
body.is-home-screen .home-publish-preview-published {
  overflow: hidden;
  border: 1px solid rgba(31, 54, 104, 0.12);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(30, 54, 101, 0.16);
}

body.is-home-screen .home-publish-preview-draft {
  bottom: -24px;
  left: -4%;
  width: 64%;
  aspect-ratio: 1.14 / 1;
}

body.is-home-screen .home-publish-preview-published {
  right: 1%;
  bottom: -8px;
  width: 55%;
}

body.is-home-screen .home-publish-preview-draft > img,
body.is-home-screen .home-publish-preview-published > img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-home-screen .home-publish-preview-draft > img {
  position: absolute;
  top: -21%;
  left: -40%;
  width: 180%;
  max-width: none;
}

body.is-home-screen .home-showcase-product-screen {
  position: absolute;
  bottom: -14px;
  left: -4%;
  width: 72%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 54, 104, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(30, 54, 101, 0.15);
}

body.is-home-screen .home-showcase-product-screen img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-home-screen .home-feedback-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  max-width: none;
  margin: 48px auto 0;
  padding: 26px 30px;
  box-sizing: border-box;
  border: 1px solid rgba(67, 60, 234, 0.11);
  border-radius: 14px;
  background: #f5f6ff;
  box-shadow: 0 16px 36px rgba(30, 54, 101, 0.055);
}

body.is-home-screen .home-feedback-note-copy {
  max-width: 700px;
}

body.is-home-screen .home-feedback-note-label {
  margin: 0 0 4px;
  color: #433cea;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

body.is-home-screen .home-feedback-note-copy > p:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.85rem;
  font-weight: 540;
  line-height: 1.6;
}

body.is-home-screen .home-feedback-note-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  column-gap: 16px;
  min-width: 306px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(67, 60, 234, 0.16);
  border-radius: 10px;
  background: #ffffff;
  color: var(--home-ink);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.is-home-screen .home-feedback-note-contact:hover,
body.is-home-screen .home-feedback-note-contact:focus-visible {
  border-color: rgba(67, 60, 234, 0.38);
  box-shadow: 0 10px 20px rgba(67, 60, 234, 0.1);
  outline: none;
  transform: translateY(-1px);
}

body.is-home-screen .home-feedback-note-contact span,
body.is-home-screen .home-feedback-note-contact strong {
  grid-column: 1;
}

body.is-home-screen .home-feedback-note-contact span {
  margin-bottom: 3px;
  color: #6f7e98;
  font-size: 0.67rem;
  font-weight: 760;
}

body.is-home-screen .home-feedback-note-contact strong {
  overflow: hidden;
  color: #2923d4;
  font-size: 0.76rem;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-home-screen .home-feedback-note-contact svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.is-home-screen .home-screen-crop {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line-strong);
  border-radius: 10px;
  background: #ffffff;
}

body.is-home-screen .home-screen-crop img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-home-screen .home-screen-crop--board {
  aspect-ratio: 2.55 / 1;
}

body.is-home-screen .home-screen-identity-mask {
  position: absolute;
  top: 8.2%;
  right: 3.7%;
  width: 3.9%;
  min-width: 26px;
  aspect-ratio: 1;
  border: 1px solid rgba(30, 54, 101, 0.08);
  border-radius: 50%;
  background: #ffffff;
}

body.is-home-screen .home-product-view figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  color: rgba(22, 40, 77, 0.58);
  font-size: 0.74rem;
  line-height: 1.5;
}

body.is-home-screen .home-product-view figcaption span:first-child {
  color: var(--home-ink);
  font-weight: 760;
}

body.is-home-screen .home-handover {
  scroll-margin-top: 76px;
  padding: 142px 0 136px;
  background: #ffffff;
}

body.is-home-screen .home-handover-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: 88px;
}

body.is-home-screen .home-handover-heading {
  position: sticky;
  top: 112px;
}

body.is-home-screen .home-handover-heading h2,
body.is-home-screen .home-categories-heading h2,
body.is-home-screen .home-retrieve-heading h2,
body.is-home-screen .home-followups-heading h2,
body.is-home-screen .home-security h2,
body.is-home-screen .home-beta h2,
body.is-home-screen .home-faq h2,
body.is-home-screen .home-final-cta h2 {
  color: var(--home-ink);
  font-family: inherit;
  font-weight: 760;
  letter-spacing: 0;
}

body.is-home-screen .home-handover-heading h2 {
  margin: 18px 0 22px;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 1.1;
}

body.is-home-screen .home-handover-heading > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

body.is-home-screen .home-shift-sequence {
  min-width: 0;
}

body.is-home-screen .home-shift-entry {
  padding: 0 0 104px;
  border-top: 1px solid var(--home-line-strong);
}

body.is-home-screen .home-shift-entry + .home-shift-entry {
  padding-top: 54px;
}

body.is-home-screen .home-shift-entry:last-child {
  padding-bottom: 0;
}

body.is-home-screen .home-shift-entry > header {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0 31px;
}

body.is-home-screen .home-shift-entry time {
  padding-top: 5px;
  color: var(--home-accent);
  font-size: 0.77rem;
  font-weight: 820;
  line-height: 1.4;
}

body.is-home-screen .home-shift-entry h3 {
  margin: 0 0 11px;
  color: var(--home-ink);
  font-size: 1.16rem;
  font-weight: 780;
  line-height: 1.35;
}

body.is-home-screen .home-shift-entry header p {
  max-width: 600px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.91rem;
  line-height: 1.68;
}

body.is-home-screen .home-product-view {
  position: relative;
  margin: 0;
}

body.is-home-screen .home-product-view > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
}

body.is-home-screen .home-product-view figcaption {
  justify-content: flex-start;
}

body.is-home-screen .home-product-view--write::after,
body.is-home-screen .home-product-view--settings::after,
body.is-home-screen .home-product-view--categories::after,
body.is-home-screen .home-product-view--precheckin::after,
body.is-home-screen .home-product-view--checklist::after {
  content: "";
  position: absolute;
  top: 4.4%;
  right: 3.6%;
  width: 3.8%;
  min-width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
}

body.is-home-screen .home-screen-crop--handover {
  aspect-ratio: 2.25 / 1;
}

body.is-home-screen .home-categories {
  padding: 132px 0 138px;
  background: var(--home-soft);
}

body.is-home-screen .home-categories-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 4fr);
  align-items: end;
  gap: 84px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--home-line);
}

body.is-home-screen .home-categories-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 3.8vw, 3.5rem);
  line-height: 1.12;
}

body.is-home-screen .home-categories-heading p {
  margin: 0 0 5px;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

body.is-home-screen .home-categories-spread {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  align-items: start;
  gap: 70px;
  padding-top: 64px;
}

body.is-home-screen .home-situation-ledger {
  padding-top: 4px;
}

body.is-home-screen .home-situation-ledger > p {
  margin-bottom: 24px;
}

body.is-home-screen .home-situation-ledger dl {
  margin: 0;
}

body.is-home-screen .home-situation-ledger dl > div {
  padding: 20px 0 22px;
  border-top: 1px solid var(--home-line);
}

body.is-home-screen .home-situation-ledger dl > div:last-child {
  border-bottom: 1px solid var(--home-line);
}

body.is-home-screen .home-situation-ledger dt {
  margin: 0 0 7px;
  color: var(--home-ink);
  font-size: 0.9rem;
  font-weight: 790;
  line-height: 1.35;
}

body.is-home-screen .home-situation-ledger dd {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.58;
}

body.is-home-screen .home-retrieve {
  padding: 138px 0 132px;
  background: #ffffff;
}

body.is-home-screen .home-retrieve-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  align-items: end;
  gap: 84px;
  margin-bottom: 62px;
}

body.is-home-screen .home-retrieve-heading h2 {
  max-width: 720px;
  margin: 17px 0 0;
  font-size: clamp(2.4rem, 3.7vw, 3.35rem);
  line-height: 1.12;
}

body.is-home-screen .home-retrieve-heading > p {
  margin: 0 0 4px;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

body.is-home-screen .home-board-detail {
  margin: 0;
}

body.is-home-screen .home-screen-crop--search {
  aspect-ratio: 2.42 / 1;
}

body.is-home-screen .home-board-detail figcaption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

body.is-home-screen .home-board-detail figcaption span {
  min-height: 112px;
  padding: 26px 25px;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.58;
}

body.is-home-screen .home-board-detail figcaption span:first-child {
  padding-left: 0;
}

body.is-home-screen .home-board-detail figcaption span:last-child {
  padding-right: 0;
}

body.is-home-screen .home-board-detail figcaption span + span {
  border-left: 1px solid var(--home-line);
}

body.is-home-screen .home-board-detail figcaption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--home-ink);
  font-size: 0.85rem;
  font-weight: 780;
}

body.is-home-screen .home-followups {
  padding: 136px 0 150px;
  background: #f8f7f3;
}

body.is-home-screen .home-followups-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  align-items: end;
  gap: 84px;
  margin-bottom: 72px;
}

body.is-home-screen .home-followups-heading h2 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(2.45rem, 3.7vw, 3.4rem);
  line-height: 1.12;
}

body.is-home-screen .home-followups-heading p {
  margin: 0 0 4px;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

body.is-home-screen .home-followups-spread {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: 24px;
  row-gap: 66px;
}

body.is-home-screen .home-product-view--precheckin {
  grid-column: 1 / span 8;
  grid-row: 1;
}

body.is-home-screen .home-followups-copy {
  grid-column: 9 / -1;
  grid-row: 1 / span 2;
  border-left: 1px solid var(--home-line-strong);
  padding-left: 31px;
}

body.is-home-screen .home-followups-copy article {
  padding: 0 0 31px;
}

body.is-home-screen .home-followups-copy article + article {
  padding-top: 31px;
  border-top: 1px solid var(--home-line);
}

body.is-home-screen .home-followups-copy h3 {
  margin: 0 0 11px;
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 790;
  line-height: 1.35;
}

body.is-home-screen .home-followups-copy p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

body.is-home-screen .home-product-view--checklist {
  grid-column: 3 / span 6;
  grid-row: 2;
}

body.is-home-screen .home-security {
  scroll-margin-top: 74px;
  padding: 124px 0 128px;
  background: #ffffff;
  color: var(--home-ink);
}

body.is-home-screen .home-security-layout {
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(56px, 8vw, 126px);
}

body.is-home-screen .home-security .home-section-label {
  color: var(--home-primary);
}

body.is-home-screen .home-security h2 {
  max-width: 560px;
  margin: 16px 0 30px;
  color: var(--home-ink);
  font-size: clamp(2.35rem, 3.5vw, 3.3rem);
  line-height: 1.13;
}

body.is-home-screen .home-security-visual {
  position: relative;
  overflow: hidden;
  min-height: 432px;
  border-radius: 14px;
  background: #e9e2d7;
}

body.is-home-screen .home-security-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 432px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.9) contrast(0.97);
}

body.is-home-screen .home-security-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.is-home-screen .home-security-list li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

body.is-home-screen .home-security-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #eff0ff;
  color: var(--home-primary);
  font-size: 0.76rem;
  font-weight: 900;
}

body.is-home-screen .home-security-list p {
  margin: 1px 0 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.is-home-screen .home-security-list strong {
  color: var(--home-ink);
  font-weight: 780;
}

body.is-home-screen .home-security-notice {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 27px 0 0;
  color: #69748f;
  font-size: 0.76rem;
  line-height: 1.45;
}

body.is-home-screen .home-security-notice > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff4e9;
  color: #b76a1d;
  font-size: 0.72rem;
  font-weight: 900;
}

body.is-home-screen .home-security-link {
  margin-top: 25px;
  border: 0;
  border-bottom: 1px solid rgba(32, 43, 103, 0.26);
  padding: 0 0 6px;
  background: transparent;
  color: var(--home-ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 760;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

body.is-home-screen .home-security-link:hover,
body.is-home-screen .home-security-link:focus-visible {
  border-bottom-color: var(--home-primary);
  color: var(--home-primary);
}

body.is-home-screen .home-beta {
  scroll-margin-top: 74px;
  padding: 108px 0 116px;
  background: #f5f7fc url("lcdc-contact-wallpaper-v1.png") center / cover no-repeat;
}

body.is-home-screen .home-beta-layout {
  display: block;
  max-width: 1050px;
}

body.is-home-screen .home-beta h2 {
  max-width: 480px;
  margin: 18px 0 21px;
  font-size: clamp(2.45rem, 3.7vw, 3.35rem);
  line-height: 1.11;
}

body.is-home-screen .home-beta-intro > p:not(.home-section-label, .home-independent-note) {
  max-width: 460px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

body.is-home-screen .home-beta-intro > .home-button {
  margin-top: 31px;
}

body.is-home-screen .home-independent-note {
  max-width: 440px;
  margin: 38px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

body.is-home-screen .home-independent-note strong {
  color: var(--home-ink);
}

body.is-home-screen .home-demo-form {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  column-gap: 34px;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--home-line-strong);
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(20, 45, 122, 0.1);
}

body.is-home-screen .home-demo-content {
  min-width: 0;
  padding: 24px 24px 24px 0;
}

body.is-home-screen .home-demo-visual {
  position: relative;
  min-height: 548px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e4dd;
}

body.is-home-screen .home-demo-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
}

body.is-home-screen .home-demo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

body.is-home-screen .home-demo-visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 286px;
  color: var(--home-ink);
}

body.is-home-screen .home-demo-visual figcaption span {
  color: var(--home-violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-home-screen .home-demo-visual figcaption strong {
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.04;
}

body.is-home-screen .home-demo-visual figcaption em {
  color: var(--home-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.5;
}

body.is-home-screen .home-demo-form header {
  margin-top: 0;
  margin-bottom: 29px;
}

body.is-home-screen .home-demo-form header h3 {
  margin: 12px 0 8px;
  color: var(--home-ink);
  font-family: inherit;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
}

body.is-home-screen .home-demo-form header > p:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

body.is-home-screen .home-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 16px;
}

body.is-home-screen .home-demo-grid label {
  display: grid;
  gap: 8px;
}

body.is-home-screen .home-demo-grid label > span {
  color: var(--home-ink);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.4;
}

body.is-home-screen .home-demo-grid label small {
  color: var(--home-muted);
  font-size: 0.69rem;
  font-weight: 540;
}

body.is-home-screen .home-demo-grid input,
body.is-home-screen .home-demo-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--home-line-strong);
  border-radius: 7px;
  background: #ffffff;
  color: var(--home-ink);
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.is-home-screen .home-demo-grid input {
  min-height: 48px;
  padding: 0 13px;
}

body.is-home-screen .home-demo-grid textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.5;
}

body.is-home-screen .home-demo-grid input:focus,
body.is-home-screen .home-demo-grid textarea:focus {
  border-color: rgba(67, 60, 234, 0.72);
  box-shadow: 0 0 0 3px rgba(67, 60, 234, 0.09);
}

body.is-home-screen .home-demo-grid input[aria-invalid="true"],
body.is-home-screen .home-demo-grid textarea[aria-invalid="true"] {
  border-color: rgba(181, 69, 69, 0.68);
  box-shadow: 0 0 0 3px rgba(181, 69, 69, 0.08);
}

body.is-home-screen .home-demo-grid input::placeholder,
body.is-home-screen .home-demo-grid textarea::placeholder {
  color: rgba(22, 40, 77, 0.42);
}

body.is-home-screen .home-demo-message {
  grid-column: 1 / -1;
}

body.is-home-screen .home-demo-grid label > .home-field-error {
  min-height: 1.1em;
  color: #a43e3e;
  font-size: 0.69rem;
  font-weight: 620;
  line-height: 1.45;
}

body.is-home-screen .home-demo-grid label > .home-field-error:empty {
  min-height: 0;
}

body.is-home-screen .home-demo-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

body.is-home-screen .home-demo-actions {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 23px;
}

body.is-home-screen .home-demo-feedback {
  flex: 1;
  min-height: 1.5em;
  margin: 0;
  color: #b54545;
  font-size: 0.76rem;
  line-height: 1.5;
}

body.is-home-screen .home-demo-feedback.is-success {
  color: #2d7a55;
}

body.is-home-screen .home-demo-feedback.is-error {
  color: #a43e3e;
}

body.is-home-screen .home-demo-actions .home-button {
  min-width: 178px;
}

body.is-home-screen .home-demo-actions .home-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

body.is-home-screen .home-demo-form .turnstile-wrap {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-items: start;
  justify-items: start;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--home-line);
  overflow: visible;
}

body.is-home-screen .home-demo-turnstile-label {
  margin: 0 0 10px;
  color: var(--home-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

body.is-home-screen .home-demo-turnstile .cf-turnstile {
  min-width: 0;
  max-width: 100%;
  min-height: 65px;
}

body.is-home-screen .home-demo-form[aria-busy="true"] .home-demo-grid,
body.is-home-screen .home-demo-form[aria-busy="true"] .home-demo-turnstile {
  opacity: 0.76;
  transition: opacity 180ms ease;
}

body.is-home-screen .home-faq {
  scroll-margin-top: 74px;
  padding: 132px 0 140px;
  background: var(--home-soft);
}

body.is-home-screen .home-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: 90px;
}

body.is-home-screen .home-faq header {
  position: sticky;
  top: 112px;
  isolation: isolate;
  display: flex;
  align-self: start;
  height: 430px;
  min-height: 430px;
  box-sizing: border-box;
  flex: none;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 14px;
  padding: 34px 30px;
  background: #e7eaf0;
}

body.is-home-screen .home-faq header::before,
body.is-home-screen .home-faq header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.is-home-screen .home-faq header::before {
  z-index: 0;
  background: url("lcdc-faq-reception-v1.png") 62% center / cover no-repeat;
}

body.is-home-screen .home-faq header::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.87) 53%, rgba(255, 255, 255, 0.34) 100%);
}

body.is-home-screen .home-faq header > * {
  position: relative;
  z-index: 2;
}

body.is-home-screen .home-faq h2 {
  max-width: 420px;
  margin: 18px 0 19px;
  font-size: clamp(2rem, 2.75vw, 2.58rem);
  line-height: 1.14;
}

body.is-home-screen .home-faq header > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

body.is-home-screen .home-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 38px;
}

body.is-home-screen .home-faq-column {
  align-self: start;
  border-top: 1px solid var(--home-line-strong);
}

body.is-home-screen .home-faq-list details {
  border-bottom: 1px solid var(--home-line-strong);
}

body.is-home-screen .home-faq-list summary {
  position: relative;
  display: flex;
  min-height: 61px;
  align-items: center;
  padding: 13px 32px 13px 0;
  color: var(--home-ink);
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

body.is-home-screen .home-faq-list summary::-webkit-details-marker {
  display: none;
}

body.is-home-screen .home-faq-list summary::before,
body.is-home-screen .home-faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 12px;
  height: 1px;
  background: var(--home-ink);
  transition: transform 180ms ease;
}

body.is-home-screen .home-faq-list summary::after {
  transform: rotate(90deg);
}

body.is-home-screen .home-faq-list details[open] summary::after {
  transform: rotate(0deg);
}

body.is-home-screen .home-faq-list details p {
  max-width: none;
  margin: 0 0 19px;
  color: var(--home-muted);
  font-size: 0.76rem;
  line-height: 1.58;
}

body.is-home-screen .home-faq-list details p a {
  color: var(--home-primary);
  font-weight: 760;
  text-decoration-color: rgba(67, 60, 234, 0.35);
  text-underline-offset: 3px;
}

body.is-home-screen .home-final-cta {
  padding: 100px 0 104px;
  background: #f5f7fc url("lcdc-contact-wallpaper-v1.png") center / cover no-repeat;
}

body.is-home-screen .home-final-cta .home-container {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  align-items: stretch;
  gap: 70px;
}

body.is-home-screen .home-final-copy {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 12px;
  padding: 34px;
  background: #eef1f5 url("lcdc-final-handover-v1.png") right center / cover no-repeat;
}

body.is-home-screen .home-final-copy::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(255, 255, 255, 0.22) 100%);
}

body.is-home-screen .home-final-copy > * {
  position: relative;
  z-index: 1;
}

body.is-home-screen .home-final-cta h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 3.5vw, 3.2rem);
  line-height: 1.12;
}

body.is-home-screen .home-final-cta p {
  max-width: 660px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.93rem;
  line-height: 1.68;
}

body.is-home-screen .home-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

body.is-home-screen .home-final-actions .home-button {
  width: min(100%, 320px);
}

body.is-home-screen .home-final-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 8px;
}

body.is-home-screen .home-final-actions .home-text-link {
  justify-content: center;
  align-self: center;
}

body.is-home-screen .home-footer {
  padding: 58px 0 30px;
  border-top: 1px solid var(--home-line);
  background: var(--home-bg);
}

body.is-home-screen .home-footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) minmax(220px, 1fr) minmax(180px, 0.8fr);
  align-items: start;
  gap: 68px;
  padding-bottom: 42px;
}

body.is-home-screen .home-footer-brand img {
  display: block;
  width: 184px;
  height: auto;
}

body.is-home-screen .home-footer-brand p {
  max-width: 330px;
  margin: 17px 0 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

body.is-home-screen .home-footer nav,
body.is-home-screen .home-footer-actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

body.is-home-screen .home-footer a,
body.is-home-screen .home-footer button {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--home-muted);
  font: inherit;
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

body.is-home-screen .home-footer a:hover,
body.is-home-screen .home-footer a:focus-visible,
body.is-home-screen .home-footer button:hover,
body.is-home-screen .home-footer button:focus-visible {
  color: var(--home-accent-dark);
}

body.is-home-screen .home-footer-project {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

body.is-home-screen .about-overlay {
  z-index: 100;
}

body.is-home-screen .about-overlay-backdrop {
  background: rgba(15, 32, 65, 0.34);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.is-home-screen .about-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: min(86vh, 780px);
  overflow: auto;
  border: 1px solid var(--home-line-strong);
  border-radius: 10px;
  padding: 44px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(22, 40, 77, 0.16);
}

body.is-home-screen .about-dialog::before,
body.is-home-screen .about-dialog::after {
  display: none;
}

body.is-home-screen .about-close {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--home-line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--home-ink);
  box-shadow: none;
}

body.is-home-screen .about-heading {
  display: block;
  padding-right: 54px;
}

body.is-home-screen .about-avatar {
  display: none;
}

body.is-home-screen .about-heading-copy {
  display: block;
  width: 100%;
}

body.is-home-screen .about-eyebrow {
  display: block;
  width: max-content;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--home-accent);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-home-screen .about-title {
  max-width: 680px;
  margin: 0;
  color: var(--home-ink);
  font-family: inherit;
  font-size: 2.55rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

body.is-home-screen .about-subtitle {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 0.95rem;
  font-weight: 520;
  line-height: 1.65;
}

body.is-home-screen .about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 32px;
  padding-top: 29px;
  border-top: 1px solid var(--home-line);
}

body.is-home-screen .about-column {
  min-width: 0;
}

body.is-home-screen .about-column + .about-column {
  border-left: 1px solid var(--home-line);
  padding-left: 36px;
}

body.is-home-screen .about-copy p,
body.is-home-screen .about-copy .about-intro {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.66;
}

body.is-home-screen .about-copy .about-intro {
  margin-bottom: 13px;
  color: var(--home-ink);
  font-size: 0.94rem;
  font-weight: 760;
}

body.is-home-screen .about-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 31px;
  padding-top: 25px;
  border-top: 1px solid var(--home-line);
}

body.is-home-screen .about-email {
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid var(--home-line-strong);
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--home-ink);
  box-shadow: none;
  font-size: 0.78rem;
}

body.is-home-screen .about-email svg {
  width: 18px;
  height: 18px;
}

body.is-home-screen .about-signature {
  display: grid;
  gap: 3px;
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.4;
  text-align: right;
}

body.is-home-screen .about-signature strong {
  color: var(--home-ink);
  font-family: inherit;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 760;
}

body.is-home-screen .legal-dialog {
  width: min(900px, calc(100% - 32px));
}

body.is-home-screen .legal-copy {
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--home-line);
}

body.is-home-screen .legal-section {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--home-line);
}

body.is-home-screen .legal-section h3 {
  margin: 0 0 9px;
  color: var(--home-ink);
  font-size: 0.9rem;
  line-height: 1.4;
}

body.is-home-screen .legal-section p,
body.is-home-screen .legal-section li {
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

body.is-home-screen .legal-footer {
  position: static;
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  text-align: center;
}

body.is-home-screen .legal-footer button {
  min-height: 28px;
  justify-self: auto;
  border-radius: 4px;
  padding: 2px 3px;
  color: rgba(22, 40, 77, 0.58);
  font-size: 0.71rem;
  font-weight: 640;
  line-height: 1.4;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

body.is-home-screen .legal-footer button:hover,
body.is-home-screen .legal-footer button:focus-visible {
  color: var(--home-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

body.is-home-screen .legal-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: rgba(22, 40, 77, 0.3);
  font-size: 0.72rem;
}

body.is-home-screen .home-page button:focus-visible,
body.is-home-screen .home-page a:focus-visible,
body.is-home-screen .home-page summary:focus-visible,
body.is-home-screen .home-page input:focus-visible,
body.is-home-screen .home-page textarea:focus-visible {
  outline: 3px solid rgba(67, 60, 234, 0.28);
  outline-offset: 3px;
}

body.is-home-screen.home-motion [data-home-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-home-screen.home-motion [data-home-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  body.is-home-screen .home-container {
    width: min(100% - 52px, 1060px);
  }

  body.is-home-screen .home-header-inner {
    gap: 22px;
  }

  body.is-home-screen .home-brand {
    width: 155px;
  }

  body.is-home-screen .home-navigation {
    gap: 17px;
  }

  body.is-home-screen .home-navigation > a,
  body.is-home-screen .home-navigation-link,
  body.is-home-screen .login-button,
  body.is-home-screen .home-header-demo,
  body.is-home-screen .home-header-register {
    font-size: 0.73rem;
  }

  body.is-home-screen .home-hero-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  body.is-home-screen .home-hero-copy h1 {
    font-size: clamp(2.65rem, 3.7vw, 3.15rem);
  }

  body.is-home-screen .home-publish-preview-surface {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }


  body.is-home-screen .home-feedback-note {
    grid-template-columns: 1fr;
  }

  body.is-home-screen .home-publish-preview-copy {
    max-width: 620px;
  }

  body.is-home-screen .home-publish-preview-visual {
    max-width: 760px;
    min-height: 510px;
  }

  body.is-home-screen .home-showcase-structured-visual {
    max-width: 760px;
    min-height: 510px;
  }

  body.is-home-screen .home-handover-layout,
  body.is-home-screen .home-security-layout,
  body.is-home-screen .home-beta-layout,
  body.is-home-screen .home-faq-layout {
    gap: 64px;
  }

  body.is-home-screen .home-categories-heading,
  body.is-home-screen .home-categories-spread,
  body.is-home-screen .home-retrieve-heading,
  body.is-home-screen .home-followups-heading {
    gap: 56px;
  }
}

@media (max-width: 920px) {
  body.is-home-screen .home-container {
    width: min(100% - 40px, 860px);
  }

  body.is-home-screen .home-header-inner {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  body.is-home-screen .home-brand {
    width: 158px;
  }

  body.is-home-screen .home-menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  body.is-home-screen .home-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--home-line-strong);
    border-radius: 8px;
    padding: 12px 18px 16px;
    background: #ffffff;
  }

  body.is-home-screen .home-navigation.is-open {
    display: grid;
  }

  body.is-home-screen .home-navigation > a,
  body.is-home-screen .home-navigation-link {
    width: 100%;
    min-height: 47px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--home-line);
    font-size: 0.82rem;
  }

  body.is-home-screen .home-navigation > a::after,
  body.is-home-screen .home-navigation-link::after {
    display: none;
  }

  body.is-home-screen .home-navigation-mobile-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  body.is-home-screen .home-navigation-mobile-actions button {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--home-line-strong);
    border-radius: 7px;
    background: #ffffff;
    color: var(--home-ink);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 750;
  }

  body.is-home-screen .home-navigation-mobile-actions button:last-child {
    grid-column: 1 / -1;
    border-color: var(--home-accent);
    background: var(--home-accent);
    color: #ffffff;
  }

  body.is-home-screen .home-header-actions {
    display: none;
  }

  body.is-home-screen .home-hero {
    padding-top: 62px;
  }

  body.is-home-screen .home-hero-intro,
  body.is-home-screen .home-handover-layout,
  body.is-home-screen .home-categories-heading,
  body.is-home-screen .home-categories-spread,
  body.is-home-screen .home-retrieve-heading,
  body.is-home-screen .home-followups-heading,
  body.is-home-screen .home-security-layout,
  body.is-home-screen .home-beta-layout,
  body.is-home-screen .home-faq-layout,
  body.is-home-screen .home-final-cta .home-container {
    grid-template-columns: 1fr;
  }

  body.is-home-screen .home-hero-intro {
    gap: 42px;
  }

  body.is-home-screen .home-hero-copy {
    max-width: 760px;
  }

  body.is-home-screen .home-access-card {
    width: 100%;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    box-sizing: border-box;
    transform: perspective(1200px) rotateX(0.8deg);
  }

  body.is-home-screen .home-access-price-panel {
    padding-right: 28px;
  }

  body.is-home-screen .home-access-action {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  body.is-home-screen .home-access-cta {
    display: flex;
    width: min(100%, 400px);
    margin-inline: auto;
  }

  body.is-home-screen .home-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.6rem, 6.2vw, 3.2rem);
  }

  body.is-home-screen .home-handover-heading,
  body.is-home-screen .home-faq header {
    position: relative;
    top: auto;
  }

  body.is-home-screen .home-handover-heading {
    max-width: 690px;
    margin-bottom: 56px;
  }

  body.is-home-screen .home-handover-heading > p:last-child {
    max-width: 620px;
  }

  body.is-home-screen .home-categories-heading,
  body.is-home-screen .home-retrieve-heading,
  body.is-home-screen .home-followups-heading {
    align-items: start;
    gap: 25px;
  }

  body.is-home-screen .home-categories-spread {
    gap: 48px;
  }

  body.is-home-screen .home-situation-ledger {
    max-width: 720px;
  }

  body.is-home-screen .home-followups-spread {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  body.is-home-screen .home-product-view--precheckin {
    grid-column: 1 / -1;
  }

  body.is-home-screen .home-followups-copy {
    grid-column: 5 / -1;
    grid-row: 2;
  }

  body.is-home-screen .home-product-view--checklist {
    grid-column: 1 / span 4;
    grid-row: 2;
  }

  body.is-home-screen .home-security-copy,
  body.is-home-screen .home-beta-intro,
  body.is-home-screen .home-faq header {
    max-width: 690px;
  }

  body.is-home-screen .home-demo-form {
    display: block;
    margin-top: 0;
    border: 1px solid var(--home-line-strong);
    padding: 12px;
  }

  body.is-home-screen .home-demo-content {
    padding: 0 12px 18px;
  }

  body.is-home-screen .home-demo-visual {
    min-height: 255px;
    margin-bottom: 26px;
  }

  body.is-home-screen .home-demo-visual figcaption {
    right: 20px;
    bottom: 24px;
    left: 20px;
    max-width: 235px;
    gap: 8px;
  }

  body.is-home-screen .home-demo-visual figcaption strong {
    font-size: 1.78rem;
  }

  body.is-home-screen .home-demo-form header {
    margin-top: 0;
  }

  body.is-home-screen .home-faq-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  body.is-home-screen .home-faq header {
    height: 330px;
    min-height: 330px;
    padding: 28px 24px;
  }

  body.is-home-screen .home-final-cta .home-container {
    align-items: start;
    gap: 34px;
  }

  body.is-home-screen .home-final-actions {
    max-width: 370px;
    margin-inline: auto;
  }

  body.is-home-screen .home-footer-main {
    grid-template-columns: minmax(240px, 1.3fr) 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  body.is-home-screen .home-publish-preview {
    padding: 58px 0 74px;
  }

  body.is-home-screen .home-showcase-tabs {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 28px;
    overflow-x: auto;
    border-radius: 13px;
    scrollbar-width: none;
  }

  body.is-home-screen .home-showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  body.is-home-screen .home-showcase-tab {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.7rem;
  }

  body.is-home-screen .home-showcase-tab svg {
    width: 17px;
    height: 17px;
  }

  body.is-home-screen .home-publish-preview-surface {
    gap: 38px;
    padding: 34px 22px 44px;
    border-radius: 12px;
  }


  body.is-home-screen .home-feedback-note {
    gap: 12px;
    margin-top: 30px;
    padding: 22px;
    border-radius: 12px;
  }

  body.is-home-screen .home-feedback-note-contact {
    width: 100%;
    min-width: 0;
  }

  body.is-home-screen .home-publish-preview-copy h2 {
    margin-top: 14px;
    font-size: 1.92rem;
  }

  body.is-home-screen .home-publish-preview-visual {
    min-height: 418px;
  }

  body.is-home-screen .home-showcase-structured-visual {
    min-height: 418px;
  }

  body.is-home-screen .home-publish-preview-photo {
    width: 100%;
    height: 366px;
    border-radius: 9px;
  }

  body.is-home-screen .home-showcase-context-photo {
    width: 100%;
    height: 366px;
    border-radius: 9px;
  }

  body.is-home-screen .home-publish-preview-draft {
    bottom: 11px;
    left: -4%;
    width: 73%;
  }

  body.is-home-screen .home-publish-preview-published {
    right: -2%;
    bottom: -3px;
    width: 61%;
  }

  body.is-home-screen .home-showcase-product-screen {
    bottom: -2px;
    left: -4%;
    width: 84%;
    border-radius: 9px;
  }

  body.is-home-screen .home-container {
    width: calc(100% - 32px);
  }

  body.is-home-screen .home-announcement-inner {
    min-height: 46px;
  }

  body.is-home-screen .home-announcement p {
    justify-content: flex-start;
    padding-inline: 8px 44px;
    font-size: 0.71rem;
    text-align: left;
  }

  body.is-home-screen .home-announcement-beta-logo {
    flex: none;
  }

  body.is-home-screen .home-announcement-beta-badge {
    min-height: 21px;
    border-radius: 6px;
    padding-inline: 6px;
    font-size: 0.58rem;
  }

  body.is-home-screen .home-header-inner {
    min-height: 64px;
  }

  body.is-home-screen .home-brand {
    width: 146px;
  }

  body.is-home-screen .home-menu-toggle {
    width: 40px;
    height: 40px;
  }

  body.is-home-screen .home-navigation {
    right: 12px;
    left: 12px;
  }

  body.is-home-screen .home-navigation-mobile-actions {
    grid-template-columns: 1fr;
  }

  body.is-home-screen .home-navigation-mobile-actions button:last-child {
    grid-column: auto;
  }

  body.is-home-screen .home-button {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  body.is-home-screen .home-hero {
    padding-top: 52px;
  }

  body.is-home-screen .home-hero-background video {
    object-position: 62% center;
    opacity: 0.26;
  }

  body.is-home-screen .home-hero::before {
    background: linear-gradient(180deg, rgba(248, 247, 243, 0.8) 0%, rgba(248, 247, 243, 0.64) 56%, rgba(248, 247, 243, 0.74) 100%);
  }

  body.is-home-screen .home-hero-copy h1 {
    margin-top: 16px;
    font-size: 2.65rem;
    line-height: 1.06;
  }

  body.is-home-screen .home-hero-lead {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  body.is-home-screen .home-access-section {
    padding: 28px 0 20px;
  }

  body.is-home-screen .home-access-section-label {
    margin-bottom: 13px;
    font-size: 0.68rem;
  }

  body.is-home-screen .home-access-card {
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 12px;
    padding: 25px 20px 22px;
    transform: none;
  }

  body.is-home-screen .home-access-price-panel {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  body.is-home-screen .home-access-card h2 {
    font-size: 1.7rem;
  }

  body.is-home-screen .home-access-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  body.is-home-screen .home-access-list li {
    font-size: 0.77rem;
  }

  body.is-home-screen .home-access-action {
    grid-column: auto;
    padding-top: 20px;
  }

  body.is-home-screen .home-hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  body.is-home-screen .home-hero-actions .home-text-link {
    justify-self: start;
  }

  body.is-home-screen .home-screen-crop--board,
  body.is-home-screen .home-screen-crop--handover,
  body.is-home-screen .home-screen-crop--search {
    aspect-ratio: 1.55 / 1;
  }

  body.is-home-screen .home-screen-crop--board img,
  body.is-home-screen .home-screen-crop--handover img,
  body.is-home-screen .home-screen-crop--search img {
    width: 160%;
    max-width: none;
    transform: translateX(-5%);
  }

  body.is-home-screen .home-screen-identity-mask {
    display: none;
  }

  body.is-home-screen .home-product-view figcaption {
    display: block;
    margin-top: 10px;
  }

  body.is-home-screen .home-product-view figcaption span {
    display: block;
  }

  body.is-home-screen .home-product-view figcaption span + span {
    margin-top: 2px;
  }

  body.is-home-screen .home-handover,
  body.is-home-screen .home-categories,
  body.is-home-screen .home-retrieve,
  body.is-home-screen .home-followups,
  body.is-home-screen .home-security,
  body.is-home-screen .home-beta,
  body.is-home-screen .home-faq {
    padding-top: 94px;
    padding-bottom: 98px;
  }

  body.is-home-screen .home-handover-heading h2,
  body.is-home-screen .home-categories-heading h2,
  body.is-home-screen .home-retrieve-heading h2,
  body.is-home-screen .home-followups-heading h2,
  body.is-home-screen .home-security h2,
  body.is-home-screen .home-beta h2,
  body.is-home-screen .home-faq h2,
  body.is-home-screen .home-final-cta h2 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  body.is-home-screen .home-faq h2 {
    font-size: 2rem;
    line-height: 1.14;
  }

  body.is-home-screen .home-shift-entry {
    padding-bottom: 76px;
  }

  body.is-home-screen .home-shift-entry + .home-shift-entry {
    padding-top: 42px;
  }

  body.is-home-screen .home-shift-entry > header {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 25px 0;
  }

  body.is-home-screen .home-shift-entry time {
    padding: 0;
  }

  body.is-home-screen .home-product-view--write,
  body.is-home-screen .home-product-view--settings,
  body.is-home-screen .home-product-view--categories,
  body.is-home-screen .home-product-view--precheckin,
  body.is-home-screen .home-product-view--checklist {
    overflow: hidden;
  }

  body.is-home-screen .home-product-view--write > img,
  body.is-home-screen .home-product-view--settings > img,
  body.is-home-screen .home-product-view--categories > img,
  body.is-home-screen .home-product-view--precheckin > img,
  body.is-home-screen .home-product-view--checklist > img {
    width: 140%;
    max-width: none;
    transform: translateX(-14%);
  }

  body.is-home-screen .home-categories-heading {
    padding-bottom: 42px;
  }

  body.is-home-screen .home-categories-spread {
    padding-top: 44px;
  }

  body.is-home-screen .home-board-detail figcaption {
    grid-template-columns: 1fr;
  }

  body.is-home-screen .home-board-detail figcaption span {
    min-height: 0;
    padding: 19px 0;
    border-left: 0 !important;
  }

  body.is-home-screen .home-board-detail figcaption span + span {
    border-top: 1px solid var(--home-line);
  }

  body.is-home-screen .home-followups-spread {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.is-home-screen .home-product-view--precheckin,
  body.is-home-screen .home-followups-copy,
  body.is-home-screen .home-product-view--checklist {
    grid-column: 1;
    grid-row: auto;
  }

  body.is-home-screen .home-followups-copy {
    border-top: 1px solid var(--home-line-strong);
    border-left: 0;
    padding-top: 29px;
    padding-left: 0;
  }

  body.is-home-screen .home-security-visual {
    min-height: 330px;
    padding: 0;
  }

  body.is-home-screen .home-security-photo {
    min-height: 330px;
  }

  body.is-home-screen .home-demo-grid {
    grid-template-columns: 1fr;
  }

  body.is-home-screen .home-demo-message {
    grid-column: 1;
  }

  body.is-home-screen .home-demo-actions {
    display: grid;
  }

  body.is-home-screen .home-demo-actions .home-button {
    min-width: 0;
  }

  body.is-home-screen .home-faq-list summary {
    min-height: 68px;
    padding-right: 38px;
    font-size: 0.87rem;
  }

  body.is-home-screen .home-final-cta {
    padding: 78px 0 82px;
  }

  body.is-home-screen .home-footer {
    padding-top: 48px;
  }

  body.is-home-screen .about-dialog {
    width: calc(100% - 20px);
    max-height: 92vh;
    border-radius: 8px;
    padding: 28px 20px 24px;
  }

  body.is-home-screen .about-heading {
    padding-right: 42px;
  }

  body.is-home-screen .about-title {
    font-size: 2rem;
  }

  body.is-home-screen .about-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.is-home-screen .about-column + .about-column {
    border-top: 1px solid var(--home-line);
    border-left: 0;
    padding-top: 22px;
    padding-left: 0;
  }

  body.is-home-screen .about-footer {
    display: grid;
    align-items: start;
  }

  body.is-home-screen .about-signature {
    text-align: left;
  }

  body.is-home-screen .home-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.is-home-screen .home-footer-brand p {
    max-width: 290px;
  }

  body.is-home-screen .legal-footer {
    column-gap: 8px;
    row-gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-home-screen .home-page *,
  body.is-home-screen .home-page *::before,
  body.is-home-screen .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.is-home-screen.home-motion [data-home-reveal] {
    opacity: 1;
    transform: none;
  }
}
