/* Public website — distinct from the authenticated control room. */
.lc-site {
  --lc-blue: oklch(0.57 0.22 258);
  --lc-blue-deep: oklch(0.38 0.16 257);
  --lc-blue-soft: oklch(0.94 0.035 256);
  --lc-coral: oklch(0.64 0.22 30);
  --lc-amber: oklch(0.76 0.16 76);
  --lc-green: oklch(0.61 0.16 151);
  --lc-ink: oklch(0.19 0.025 257);
  --lc-ink-soft: oklch(0.32 0.025 257);
  --lc-muted: oklch(0.47 0.02 257);
  --lc-line: oklch(0.89 0.012 257);
  --lc-canvas: oklch(0.975 0.006 257);
  --lc-white: #ffffff;
  min-height: 100vh;
  overflow: clip;
  color: var(--lc-ink);
  background: var(--lc-canvas);
  font-family: "SF Pro Display", "SF Pro Text", "PingFang SC", "Segoe UI Variable", "Segoe UI", "Microsoft YaHei UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.lc-site button,
.lc-site a {
  -webkit-tap-highlight-color: transparent;
}

.lc-site button {
  font: inherit;
}

.lc-site button:focus-visible,
.lc-site a:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--lc-blue), white 30%);
  outline-offset: 3px;
}

.lc-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.lc-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: var(--lc-ink);
  background: color-mix(in oklab, var(--lc-canvas), transparent 14%);
  backdrop-filter: blur(22px) saturate(145%);
}

.lc-nav::after {
  content: "";
  position: absolute;
  inset: auto 0 -12px;
  height: 12px;
  pointer-events: none;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--lc-ink), transparent 96%), transparent);
}

.lc-nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lc-brand {
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.lc-brand img,
.lc-footer__brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
}

.lc-brand__copy {
  display: grid;
  text-align: left;
}

.lc-brand__copy strong,
.lc-footer__brand strong {
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lc-brand__copy small,
.lc-footer__brand span {
  margin-top: 2px;
  color: var(--lc-muted);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.lc-nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.lc-nav__links button,
.lc-link-button,
.lc-footer__links button {
  border: 0;
  padding: 7px 0;
  color: var(--lc-ink-soft);
  background: transparent;
  font-size: 14px;
  font-weight: 610;
  cursor: pointer;
  transition: color 160ms ease-out;
}

.lc-nav__links button:hover,
.lc-link-button:hover,
.lc-footer__links button:hover {
  color: var(--lc-blue);
}

.lc-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lc-nav__login {
  min-height: 38px;
  padding-inline: 17px;
  border-radius: 999px;
  color: var(--lc-white);
  background: var(--lc-ink);
  transition: transform 150ms ease-out, background 150ms ease-out;
}

.lc-nav__login:hover {
  color: white;
  background: var(--lc-blue-deep);
  transform: translateY(-1px);
}

.lc-nav__login:active,
.lc-button:active,
.lc-menu-button:active {
  transform: scale(0.97);
  transition-duration: 90ms;
}

.lc-menu-button {
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0 10px;
  display: none;
  place-content: center;
  gap: 6px;
  border-radius: 999px;
  color: var(--lc-ink);
  background: var(--lc-blue-soft);
  cursor: pointer;
}

.lc-menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.lc-mobile-menu {
  width: min(100% - 32px, 480px);
  margin: 0 auto 14px;
  padding: 8px;
  display: grid;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px color-mix(in oklab, var(--lc-ink), transparent 88%);
}

.lc-mobile-menu button {
  min-height: 48px;
  border: 0;
  padding: 0 12px;
  text-align: left;
  color: var(--lc-ink);
  background: transparent;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}

.lc-mobile-menu button + button {
  border-top: 1px solid var(--lc-line);
}

.lc-hero {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9ff 0%, var(--lc-canvas) 82%);
  isolation: isolate;
}

.lc-hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 92px;
  z-index: -2;
  background-image: var(--lc-hero-art, none);
  background-position: center;
  background-size: cover;
  opacity: .07;
}

.lc-hero::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: -1;
  width: min(74vw, 980px);
  height: 62%;
  border-radius: 50%;
  background: color-mix(in oklab, var(--lc-blue), transparent 92%);
  filter: blur(80px);
  transform: translateX(-50%);
}

.lc-hero__layout {
  min-height: clamp(590px, calc(100svh - 176px), 760px);
  padding-block: clamp(64px, 8vw, 104px) clamp(52px, 7vw, 86px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-hero__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

.lc-kicker {
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--lc-blue-deep);
  background: color-mix(in oklab, var(--lc-blue), transparent 91%);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--lc-blue), transparent 76%);
  font-size: 13px;
  font-weight: 720;
}

.lc-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lc-blue);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--lc-blue), transparent 86%);
}

.lc-kicker--blue {
  color: var(--lc-blue);
}

.lc-hero h1 {
  max-width: none;
  margin: 0;
  white-space: pre-line;
  color: var(--lc-ink);
  font-size: clamp(58px, 7.2vw, 88px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.lc-hero__subtitle {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--lc-ink-soft);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.8;
  text-wrap: pretty;
}

.lc-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lc-live-metrics {
  width: min(900px, 100%);
  margin: clamp(46px, 6vw, 68px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lc-live-metric {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.lc-live-metric + .lc-live-metric {
  padding-left: 0;
  border-left: 1px solid var(--lc-line);
}

.lc-live-metric > span {
  color: var(--lc-ink-soft);
  font-size: 12px;
  font-weight: 680;
}

.lc-live-metric__value {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
}

.lc-live-metric__value strong {
  min-width: 0;
  color: var(--lc-ink);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lc-live-metric__value small {
  color: var(--lc-blue);
  font-size: 12px;
  font-weight: 760;
}

.lc-button {
  min-height: 48px;
  border: 0;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 720;
  cursor: pointer;
  transition: transform 160ms ease-out, background 160ms ease-out, color 160ms ease-out;
}

.lc-button:hover {
  transform: translateY(-2px);
}

.lc-button--primary {
  color: white;
  background: var(--lc-blue);
  box-shadow: 0 7px 8px color-mix(in oklab, var(--lc-blue), transparent 78%);
}

.lc-button--primary:hover {
  background: var(--lc-blue-deep);
}

.lc-button--secondary {
  color: var(--lc-ink);
  background: white;
  box-shadow: inset 0 0 0 1px var(--lc-line);
}

.lc-button--secondary:hover {
  color: var(--lc-blue-deep);
  background: var(--lc-blue-soft);
}

.lc-hero__boundary {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lc-muted);
  font-size: 13px;
}

.lc-hero__boundary span {
  color: var(--lc-green);
  font-weight: 800;
}

.lc-evidence-stage {
  position: relative;
  min-height: 510px;
  padding: 22px;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  background-color: var(--lc-ink);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 60px color-mix(in oklab, var(--lc-ink), transparent 78%);
  isolation: isolate;
}

.lc-evidence-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 0%, color-mix(in oklab, var(--lc-blue), transparent 48%), transparent 34%),
    linear-gradient(150deg, color-mix(in oklab, var(--lc-ink), transparent 4%), color-mix(in oklab, var(--lc-blue-deep), transparent 12%));
}

.lc-evidence-stage__bar,
.lc-evidence-stage__decision,
.lc-evidence-stage__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lc-evidence-stage__bar {
  padding-bottom: 19px;
  color: color-mix(in oklab, white, transparent 42%);
  font-size: 12px;
}

.lc-evidence-stage__bar div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
}

.lc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.78 0.18 151);
  box-shadow: 0 0 0 5px color-mix(in oklab, oklch(0.78 0.18 151), transparent 86%);
}

.lc-evidence-stage__subject {
  padding: 19px 0;
  border-block: 1px solid color-mix(in oklab, white, transparent 88%);
}

.lc-evidence-stage__subject p,
.lc-evidence-stage__subject strong,
.lc-evidence-stage__subject span {
  display: block;
}

.lc-evidence-stage__subject p {
  margin: 0 0 5px;
  color: color-mix(in oklab, white, transparent 46%);
  font-size: 12px;
}

.lc-evidence-stage__subject strong {
  font-size: 18px;
  font-weight: 740;
}

.lc-evidence-stage__subject span {
  margin-top: 4px;
  color: color-mix(in oklab, white, transparent 58%);
  font-size: 12px;
}

.lc-evidence-stage__decision {
  padding: 21px 0 15px;
}

.lc-evidence-stage__decision div {
  display: grid;
  gap: 3px;
}

.lc-evidence-stage__decision span {
  color: color-mix(in oklab, white, transparent 50%);
  font-size: 12px;
}

.lc-evidence-stage__decision strong {
  font-size: 22px;
}

.lc-evidence-stage__decision b {
  color: oklch(0.72 0.22 31);
  font-size: 46px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lc-signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lc-signal-list li {
  min-height: 47px;
  display: grid;
  grid-template-columns: 10px minmax(90px, 0.7fr) 1fr;
  align-items: center;
  gap: 10px;
  border-top: 1px solid color-mix(in oklab, white, transparent 90%);
  color: color-mix(in oklab, white, transparent 46%);
  font-size: 12px;
}

.lc-signal-list strong {
  color: white;
  font-size: 13px;
  font-weight: 640;
  text-align: right;
}

.lc-signal-list__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lc-signal-list__status.is-danger { background: var(--lc-coral); }
.lc-signal-list__status.is-warning { background: var(--lc-amber); }

.lc-evidence-stage__footer {
  margin: 18px -22px -22px;
  padding: 16px 22px;
  background: color-mix(in oklab, white, transparent 94%);
  color: color-mix(in oklab, white, transparent 34%);
  font-size: 11px;
  font-weight: 650;
}

.lc-trust-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--lc-line);
}

.lc-trust-row p {
  margin: 0;
  padding: 25px 22px;
  display: grid;
  align-content: center;
  gap: 3px;
}

.lc-trust-row p + p {
  border-left: 1px solid var(--lc-line);
}

.lc-trust-row strong {
  font-size: 13px;
  font-weight: 760;
}

.lc-trust-row span {
  color: var(--lc-muted);
  font-size: 13px;
}

.lc-section {
  scroll-margin-top: 72px;
  padding-block: clamp(90px, 11vw, 150px);
}

.lc-section--light {
  background: white;
}

.lc-section--plain {
  background: var(--lc-canvas);
}

.lc-section--ink {
  color: white;
  background: var(--lc-ink);
}

.lc-section-heading {
  margin-bottom: clamp(54px, 7vw, 88px);
}

.lc-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.lc-section-heading--compact {
  max-width: 850px;
}

.lc-section-heading h2,
.lc-delivery-copy h2,
.lc-privacy-layout h2,
.lc-contact h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 790;
  letter-spacing: -0.036em;
  line-height: 1.1;
  text-wrap: balance;
}

.lc-section-heading p,
.lc-delivery-copy > p,
.lc-privacy-copy > p,
.lc-contact__layout > div > p {
  max-width: 63ch;
  margin: 24px 0 0;
  color: var(--lc-muted);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.lc-section-heading--split p {
  margin: 0;
}

.lc-section-heading--dark {
  max-width: 820px;
}

.lc-section-heading--dark p {
  color: color-mix(in oklab, white, transparent 42%);
}

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

.lc-domain-row {
  min-height: 132px;
  display: grid;
  grid-template-columns: 56px minmax(190px, 0.7fr) minmax(320px, 1.35fr) minmax(120px, 0.45fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--lc-line);
}

.lc-domain-row__index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lc-blue-deep);
  background: var(--lc-blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.lc-domain-row h3,
.lc-delivery-list h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.lc-domain-row p {
  margin: 0;
  color: var(--lc-muted);
  line-height: 1.75;
}

.lc-domain-row > strong {
  color: var(--lc-blue-deep);
  font-size: 14px;
  text-align: right;
}

.lc-step-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-block: 1px solid color-mix(in oklab, white, transparent 84%);
}

.lc-step-list li {
  min-height: 280px;
  padding: 30px clamp(24px, 3vw, 42px) 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lc-step-list li + li {
  border-left: 1px solid color-mix(in oklab, white, transparent 84%);
}

.lc-step-list > li > span {
  color: color-mix(in oklab, white, transparent 58%);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.lc-step-list h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.lc-step-list p {
  margin: 12px 0 0;
  color: color-mix(in oklab, white, transparent 46%);
  line-height: 1.75;
}

.lc-boundary-line {
  margin-top: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
}

.lc-boundary-line span {
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: var(--lc-blue);
  font-size: 12px;
  font-weight: 760;
}

.lc-boundary-line span:nth-of-type(2) {
  color: var(--lc-ink);
  background: white;
}

.lc-boundary-line strong {
  color: color-mix(in oklab, white, transparent 24%);
  font-size: 13px;
  font-weight: 600;
}

.lc-capability-table {
  overflow: hidden;
  border-radius: 14px;
  background: white;
  box-shadow: 0 6px 8px color-mix(in oklab, var(--lc-ink), transparent 94%);
}

.lc-capability-table__head,
.lc-capability-table__row {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(190px, 0.8fr) minmax(260px, 1.25fr) minmax(280px, 1.4fr);
  gap: 22px;
}

.lc-capability-table__head {
  min-height: 50px;
  align-items: center;
  padding: 0 26px;
  color: var(--lc-muted);
  background: var(--lc-blue-soft);
  font-size: 12px;
  font-weight: 720;
}

.lc-capability-table__row {
  min-height: 118px;
  padding: 25px 26px;
  align-items: start;
}

.lc-capability-table__row + .lc-capability-table__row {
  border-top: 1px solid var(--lc-line);
}

.lc-capability-table__row > span {
  color: var(--lc-blue-deep);
  font-size: 13px;
  font-weight: 740;
}

.lc-capability-table__row > strong {
  font-size: 16px;
  font-weight: 740;
}

.lc-capability-table__row p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.lc-section--delivery {
  color: white;
  background: var(--lc-blue-deep);
}

.lc-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 10vw, 130px);
  align-items: start;
}

.lc-delivery-copy > p {
  color: color-mix(in oklab, white, transparent 27%);
}

.lc-policy-flow {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lc-policy-flow::-webkit-scrollbar { display: none; }

.lc-policy-flow span {
  min-width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, white, transparent 88%);
  font-size: 12px;
  font-weight: 700;
}

.lc-policy-flow i {
  width: 20px;
  height: 1px;
  flex: 0 0 20px;
  background: color-mix(in oklab, white, transparent 63%);
}

.lc-text-action {
  margin-top: 34px;
  border: 0;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.lc-text-action span {
  margin-left: 8px;
  display: inline-block;
  transition: transform 160ms ease-out;
}

.lc-text-action:hover span {
  transform: translateX(4px);
}

.lc-delivery-list {
  border-top: 1px solid color-mix(in oklab, white, transparent 77%);
}

.lc-delivery-list article {
  padding: 24px 0;
  border-bottom: 1px solid color-mix(in oklab, white, transparent 77%);
}

.lc-delivery-list p {
  margin: 8px 0 0;
  color: color-mix(in oklab, white, transparent 39%);
  font-size: 14px;
  line-height: 1.7;
}

.lc-section--privacy {
  background: white;
}

.lc-privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  align-items: end;
  gap: 80px;
}

.lc-privacy-copy > p {
  margin-top: 0;
}

.lc-privacy-copy .lc-text-action {
  color: var(--lc-blue-deep);
}

.lc-contact {
  padding-block: clamp(82px, 10vw, 132px) 46px;
  color: white;
  background: var(--lc-blue);
}

.lc-contact__layout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.lc-contact__layout > div > p {
  color: color-mix(in oklab, white, transparent 18%);
}

.lc-contact__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.lc-button--white {
  color: var(--lc-blue-deep);
  background: white;
}

.lc-button--outline {
  color: white;
  background: transparent;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, white, transparent 48%);
}

.lc-contact-detail {
  margin-top: 68px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 42px;
  border-top: 1px solid color-mix(in oklab, white, transparent 66%);
}

.lc-contact-detail div {
  display: grid;
}

.lc-contact-detail span {
  color: color-mix(in oklab, white, transparent 34%);
  font-size: 12px;
}

.lc-contact-detail strong {
  font-size: 14px;
}

.lc-contact-detail img {
  width: 64px;
  height: 64px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 8px;
  background: white;
}

.lc-footer {
  color: color-mix(in oklab, white, transparent 31%);
  background: var(--lc-ink);
}

.lc-footer__inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.lc-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lc-footer__brand div {
  display: grid;
}

.lc-footer__brand strong {
  color: white;
}

.lc-footer__brand span {
  color: color-mix(in oklab, white, transparent 48%);
}

.lc-footer__links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.lc-footer__links button {
  color: color-mix(in oklab, white, transparent 36%);
  font-size: 12px;
}

.lc-footer__inner > p {
  margin: 0;
  font-size: 12px;
  text-align: right;
}

.lc-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--lc-ink), transparent 28%);
  backdrop-filter: blur(10px);
}

.lc-dialog {
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 16px;
  color: var(--lc-ink);
  background: white;
  box-shadow: 0 28px 80px color-mix(in oklab, var(--lc-ink), transparent 62%);
  animation: lcDialogIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lc-dialog__head {
  position: sticky;
  top: 0;
  padding: 24px 26px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: color-mix(in oklab, white, transparent 4%);
  backdrop-filter: blur(14px);
}

.lc-dialog__head h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.lc-dialog__head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--lc-ink);
  background: var(--lc-blue-soft);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lc-dialog ul {
  margin: 0;
  padding: 5px 30px 30px 48px;
}

.lc-dialog li {
  padding: 10px 0 10px 4px;
  color: var(--lc-ink-soft);
  line-height: 1.75;
}

@keyframes lcDialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1050px) {
  .lc-nav__links { display: none; }
  .lc-menu-button { display: grid; }
  .lc-nav__login { display: none; }

  .lc-hero__layout {
    min-height: 610px;
  }

  .lc-hero__copy {
    max-width: 920px;
  }

  .lc-evidence-stage {
    width: min(680px, 100%);
    min-height: 500px;
    justify-self: end;
  }

  .lc-section-heading--split,
  .lc-delivery-layout,
  .lc-privacy-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lc-section-heading--split p {
    margin-top: 0;
  }

  .lc-domain-row {
    grid-template-columns: 50px minmax(170px, 0.65fr) minmax(280px, 1.35fr);
  }

  .lc-domain-row > strong {
    grid-column: 2 / -1;
    margin-top: -18px;
    padding-bottom: 18px;
    text-align: left;
  }

  .lc-capability-table {
    overflow-x: auto;
  }

  .lc-capability-table__head,
  .lc-capability-table__row {
    min-width: 940px;
  }

  .lc-privacy-copy {
    max-width: 740px;
  }

  .lc-contact__layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .lc-footer__inner {
    grid-template-columns: auto 1fr;
    padding-block: 28px;
  }

  .lc-footer__links {
    justify-content: flex-end;
  }

  .lc-footer__inner > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .lc-shell {
    width: min(100% - 32px, 620px);
  }

  .lc-nav__inner { min-height: 64px; }
  .lc-brand img { width: 34px; height: 34px; }
  .lc-brand__copy small { display: none; }

  .lc-hero { padding-top: 64px; }
  .lc-hero__layout {
    min-height: 0;
    padding-block: 60px 54px;
  }

  .lc-kicker { margin-bottom: 18px; }
  .lc-hero h1 { font-size: clamp(45px, 13vw, 58px); }
  .lc-hero__subtitle { margin-top: 23px; font-size: 16px; line-height: 1.75; }
  .lc-live-metrics { margin-top: 42px; grid-template-columns: 1fr; }
  .lc-live-metric { padding: 22px 0; }
  .lc-live-metric + .lc-live-metric { border-top: 1px solid var(--lc-line); border-left: 0; }
  .lc-live-metric__value strong { font-size: clamp(39px, 12vw, 50px); }

  .lc-evidence-stage {
    min-height: 490px;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 18px 36px color-mix(in oklab, var(--lc-ink), transparent 82%);
  }

  .lc-evidence-stage__footer { margin: 18px -18px -18px; padding-inline: 18px; }

  .lc-trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .lc-trust-row p { padding: 19px 14px; }
  .lc-trust-row p:nth-child(3) { border-left: 0; border-top: 1px solid var(--lc-line); }
  .lc-trust-row p:nth-child(4) { border-top: 1px solid var(--lc-line); }

  .lc-section {
    padding-block: 84px;
    scroll-margin-top: 64px;
  }

  .lc-section-heading { margin-bottom: 48px; }
  .lc-section-heading h2,
  .lc-delivery-copy h2,
  .lc-privacy-layout h2,
  .lc-contact h2 { font-size: clamp(34px, 10vw, 48px); }

  .lc-section-heading p,
  .lc-delivery-copy > p,
  .lc-privacy-copy > p,
  .lc-contact__layout > div > p { font-size: 16px; }

  .lc-domain-row {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 38px 1fr;
    gap: 8px 14px;
  }

  .lc-domain-row__index { grid-row: 1 / span 2; align-self: start; }
  .lc-domain-row h3 { font-size: 18px; }
  .lc-domain-row p { grid-column: 2; font-size: 14px; }
  .lc-domain-row > strong { grid-column: 2; margin: 5px 0 0; padding: 0; }

  .lc-step-list {
    grid-template-columns: 1fr;
  }

  .lc-step-list li {
    min-height: 0;
    padding: 26px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .lc-step-list li + li { border-left: 0; border-top: 1px solid color-mix(in oklab, white, transparent 84%); }

  .lc-boundary-line {
    grid-template-columns: auto 1fr;
    gap: 13px 16px;
  }

  .lc-capability-table {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lc-capability-table__head { display: none; }

  .lc-capability-table__row {
    min-width: 0;
    min-height: 0;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lc-capability-table__row:first-of-type { border-top: 1px solid var(--lc-line); }
  .lc-capability-table__row p { font-size: 14px; }
  .lc-capability-table__row p:last-child { margin-top: 5px; color: var(--lc-ink-soft); }

  .lc-policy-flow { margin-right: -16px; padding-right: 16px; }

  .lc-contact__layout { gap: 34px; }
  .lc-contact__actions { width: 100%; }
  .lc-contact-detail { margin-top: 48px; align-items: flex-start; flex-direction: column; gap: 18px; }
  .lc-contact-detail img { margin-left: 0; }

  .lc-footer__inner { grid-template-columns: 1fr; gap: 22px; }
  .lc-footer__links { justify-content: flex-start; flex-wrap: wrap; gap: 8px 20px; }
  .lc-footer__inner > p { grid-column: auto; }

  .lc-dialog-backdrop { padding: 12px; align-items: end; }
  .lc-dialog { max-height: calc(100vh - 24px); border-radius: 16px 16px 10px 10px; }
}

@media (max-width: 430px) {
  .lc-hero h1 { font-size: 41px; line-height: 1.08; }
  .lc-hero__subtitle { line-height: 1.7; }
  .lc-evidence-stage { min-height: 470px; }
  .lc-signal-list li { grid-template-columns: 9px minmax(76px, 0.68fr) 1fr; }
  .lc-signal-list strong { font-size: 12px; }
  .lc-evidence-stage__footer { gap: 7px; font-size: 10px; }
  .lc-trust-row { grid-template-columns: 1fr; }
  .lc-trust-row p + p { border-left: 0; border-top: 1px solid var(--lc-line); }
  .lc-contact h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .lc-site *,
  .lc-site *::before,
  .lc-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .lc-nav,
  .lc-dialog__head {
    background: var(--lc-canvas);
    backdrop-filter: none;
  }

  .lc-dialog-backdrop {
    background: color-mix(in oklab, var(--lc-ink), transparent 10%);
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .lc-site { --lc-muted: oklch(0.32 0.02 257); --lc-line: oklch(0.72 0.02 257); }
  .lc-nav { background: var(--lc-canvas); }
  .lc-evidence-stage { outline: 2px solid white; outline-offset: -2px; }
}
