/* The standalone landing palette maps to the inverse-public theme metadata
   declared on body; it intentionally remains independent from app tokens. */

:root {
  --lp-ink: #090c11;
  --lp-ink-soft: #0e131b;
  --lp-panel: #131a24;
  --lp-panel-raised: #192330;
  --lp-paper: #f1eee7;
  --lp-paper-muted: #a4adb9;
  --lp-paper-dim: #6f7a88;
  --lp-line: rgba(231, 237, 246, 0.14);
  --lp-line-soft: rgba(231, 237, 246, 0.08);
  --lp-blue: #9ab6ff;
  --lp-blue-strong: #6f91ff;
  --lp-blue-wash: rgba(154, 182, 255, 0.12);
  --lp-lime: #d7f27a;
  --lp-warm: #c9814a;
  --lp-shell: min(1180px, calc(100% - 64px));
  --lp-radius: 18px;
  --lp-radius-sm: 10px;
  --lp-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --lp-display: "Avenir Next", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lp-body: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--lp-ink);
}

body {
  margin: 0;
  background: var(--lp-ink);
  color: var(--lp-paper);
  font-family: var(--lp-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp-page a[href] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.lp-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid var(--lp-line-soft);
}

.lp-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-brand,
.lp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.lp-brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lp-blue);
  border-radius: 50%;
  color: var(--lp-blue);
  font-size: 13px;
  letter-spacing: -0.1em;
}

.lp-brand-name {
  line-height: 1;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.lp-nav-links a,
.lp-footer-links a {
  color: var(--lp-paper-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-nav-links a:hover,
.lp-nav-links a:focus-visible,
.lp-footer-links a:hover,
.lp-footer-links a:focus-visible {
  color: var(--lp-paper);
}

.lp-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lp-action:hover {
  transform: translateY(-2px);
}

.lp-action-nav {
  min-height: 44px;
  padding-inline: 16px;
  border-color: var(--lp-line);
  color: var(--lp-paper);
}

.lp-action-nav:hover,
.lp-action-nav:focus-visible {
  border-color: var(--lp-blue);
  background: var(--lp-blue-wash);
}

.lp-action-primary {
  background: var(--lp-blue);
  color: var(--lp-ink);
}

.lp-action-primary:hover,
.lp-action-primary:focus-visible {
  background: #b5c9ff;
}

.lp-action-light {
  background: var(--lp-paper);
  color: var(--lp-ink);
}

.lp-action-light:hover,
.lp-action-light:focus-visible {
  background: #ffffff;
}

.lp-text-link,
.lp-card-link,
.lp-fact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lp-paper-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.lp-text-link:hover,
.lp-text-link:focus-visible,
.lp-card-link:hover,
.lp-card-link:focus-visible,
.lp-fact-link:hover,
.lp-fact-link:focus-visible {
  gap: 13px;
  color: var(--lp-paper);
}

.lp-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 150px 0 104px;
  overflow: hidden;
  background: var(--lp-ink);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
}

.lp-eyebrow,
.lp-section-label,
.lp-mini-label {
  margin: 0;
  color: var(--lp-blue);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--lp-paper-muted);
  letter-spacing: 0.08em;
}

.lp-eyebrow-dot,
.lp-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-lime);
  box-shadow: 0 0 0 5px rgba(215, 242, 122, 0.1);
}

.lp-hero-title,
.lp-section-title,
.lp-cta-title {
  margin: 0;
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.lp-hero-title {
  max-width: 600px;
  color: var(--lp-paper);
  font-size: clamp(58px, 7vw, 96px);
}

.lp-hero-title em,
.lp-section-title em,
.lp-flow-preview-copy h3 em {
  color: var(--lp-blue);
  font-style: normal;
}

.lp-hero-lede {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--lp-paper-muted);
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.lp-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lp-hero-signals li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lp-hero-signals span {
  color: var(--lp-blue);
}

.lp-hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: center;
  padding: 28px 0 24px;
}

.lp-hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(154, 182, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(154, 182, 255, 0.025), 0 0 0 88px rgba(154, 182, 255, 0.018);
  transform: translate(-48%, -50%);
}

.lp-visual-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px 22px;
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-editor-window,
.lp-studio-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-panel);
  box-shadow: var(--lp-shadow);
}

.lp-editor-window {
  width: min(100%, 594px);
  margin-left: auto;
}

.lp-editor-topbar,
.lp-studio-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 19px;
  border-bottom: 1px solid var(--lp-line-soft);
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-window-dots {
  display: inline-flex;
  gap: 5px;
}

.lp-window-dots i {
  width: 6px;
  height: 6px;
  display: block;
  border: 1px solid var(--lp-paper-dim);
  border-radius: 50%;
}

.lp-editor-title {
  margin-right: auto;
  color: var(--lp-paper-muted);
}

.lp-editor-state {
  color: var(--lp-lime);
}

.lp-editor-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
}

.lp-editor-photo {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #19120e;
}

.lp-editor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.16);
}

.lp-editor-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  object-position: 67% center;
}

.lp-photo-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background: rgba(9, 12, 17, 0.68);
  color: var(--lp-paper);
  font-size: 12px;
  font-weight: 700;
}

.lp-editor-copy {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 27px 26px 21px;
}

.lp-status-chip {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(215, 242, 122, 0.24);
  border-radius: 999px;
  color: var(--lp-lime);
  font-size: 12px;
  font-weight: 800;
}

.lp-status-chip span {
  font-size: 12px;
}

.lp-editor-kicker {
  margin: 31px 0 10px;
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-editor-copy h2 {
  margin: 0;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.lp-editor-excerpt {
  margin: 18px 0 0;
  color: var(--lp-paper-muted);
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}

.lp-editor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-editor-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-editor-meta i {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--lp-blue);
}

.lp-editor-footer {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-top: 1px solid var(--lp-line-soft);
  color: var(--lp-paper-dim);
  font-size: 12px;
  font-weight: 700;
}

.lp-editor-arrow {
  color: var(--lp-blue);
  font-size: 15px;
}

.lp-floating-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: var(--lp-panel-raised);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  color: var(--lp-paper-muted);
  font-size: 12px;
  font-weight: 700;
}

.lp-floating-note-top {
  top: 72px;
  left: -8px;
}

.lp-floating-note-bottom {
  right: -11px;
  bottom: 51px;
}

.lp-note-check {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-lime);
  color: var(--lp-ink);
  font-size: 12px;
}

.lp-note-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-blue);
}

.lp-floating-note strong {
  color: var(--lp-paper);
}

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

.lp-proof-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.lp-proof-intro {
  margin: 0;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-proof-items {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  color: var(--lp-paper-muted);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-proof-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-proof-items i {
  color: var(--lp-blue);
  font-style: normal;
}

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

.lp-why,
.lp-studio {
  background: var(--lp-ink);
}

.lp-section-heading {
  max-width: 570px;
}

.lp-section-title {
  margin-top: 22px;
  color: var(--lp-paper);
  font-size: clamp(42px, 5.1vw, 68px);
}

.lp-section-lede {
  max-width: 480px;
  margin: 27px 0 0;
  color: var(--lp-paper-muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 74px;
}

.lp-value-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 25px 24px 22px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-panel);
}

.lp-value-card-accent {
  border-color: rgba(154, 182, 255, 0.42);
  background: var(--lp-panel-raised);
}

.lp-card-number {
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lp-value-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 42px 0 31px;
  border: 1px solid var(--lp-line);
  border-radius: 50%;
  color: var(--lp-blue);
}

.lp-icon-frame span {
  position: absolute;
  width: 18px;
  height: 14px;
  border: 1px solid currentColor;
}

.lp-icon-frame span:nth-child(1) { top: 15px; left: 11px; }
.lp-icon-frame span:nth-child(2) { top: 21px; left: 20px; }
.lp-icon-frame span:nth-child(3) { top: 26px; left: 28px; width: 9px; height: 7px; }

.lp-icon-scan::before,
.lp-icon-scan::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 10px;
  height: 18px;
  border-block: 1px solid currentColor;
}

.lp-icon-scan::before { left: 14px; border-left: 1px solid currentColor; }
.lp-icon-scan::after { right: 14px; border-right: 1px solid currentColor; }
.lp-scan-line { position: absolute; top: 27px; left: 19px; width: 18px; border-top: 1px solid currentColor; }
.lp-scan-box { position: absolute; top: 22px; left: 23px; width: 10px; height: 10px; border: 1px solid var(--lp-lime); }

.lp-icon-pen::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 26px;
  width: 6px;
  height: 23px;
  border: 1px solid currentColor;
  transform: rotate(40deg);
}

.lp-icon-pen::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 30px;
  width: 6px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(40deg);
}

.lp-value-card h3 {
  margin: 0;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.lp-value-card p {
  margin: 13px 0 0;
  color: var(--lp-paper-muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

.lp-card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--lp-blue);
  font-size: 12px;
}

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

.lp-how-grid,
.lp-studio-grid,
.lp-boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.lp-steps {
  display: grid;
  gap: 0;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}

.lp-step {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  align-items: start;
  padding: 0 0 25px;
  color: var(--lp-paper-dim);
}

.lp-step + .lp-step {
  padding-top: 25px;
  border-top: 1px solid var(--lp-line-soft);
}

.lp-step-index {
  padding-top: 2px;
  color: var(--lp-paper-dim);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.lp-step strong {
  color: var(--lp-paper-muted);
  font-size: 14px;
}

.lp-step small {
  margin-top: 7px;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-step-active .lp-step-index,
.lp-step-active strong {
  color: var(--lp-blue);
}

.lp-flow-preview {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: var(--lp-panel);
  box-shadow: var(--lp-shadow);
}

.lp-flow-preview-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  border-bottom: 1px solid var(--lp-line-soft);
  color: var(--lp-paper-muted);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 700;
}

.lp-flow-preview-header span:last-child {
  color: var(--lp-blue);
  font-size: 12px;
}

.lp-flow-progress {
  height: 2px;
  background: var(--lp-line-soft);
}

.lp-flow-progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--lp-blue);
}

.lp-flow-preview-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 37px;
}

.lp-flow-preview-copy h3 {
  margin: 16px 0 0;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.lp-flow-preview-copy > p {
  margin: 17px 0 0;
  color: var(--lp-paper-muted);
  font-size: 12px;
  line-height: 1.7;
}

.lp-flow-input {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 15px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 0 13px;
  border: 1px solid var(--lp-line);
  border-radius: 7px;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-flow-input strong {
  color: var(--lp-paper-muted);
  font-size: 12px;
  font-weight: 600;
}

.lp-flow-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--lp-blue);
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 800;
}

.lp-flow-thumb {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: #21170e;
}

.lp-flow-thumb img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: 66% center;
}

.lp-flow-thumb span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: rgba(9, 12, 17, 0.68);
  color: var(--lp-paper);
  font-size: 12px;
  font-weight: 700;
}

.lp-studio-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.lp-studio-window {
  order: 1;
}

.lp-studio-grid > .lp-section-heading {
  order: 2;
}

.lp-studio-bar {
  min-height: 46px;
}

.lp-studio-bar > span:nth-child(2) {
  margin-right: auto;
  color: var(--lp-paper-muted);
}

.lp-studio-saved {
  color: var(--lp-lime);
}

.lp-studio-body {
  min-height: 388px;
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.75fr;
}

.lp-studio-sidebar,
.lp-studio-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 23px 19px;
  background: rgba(0, 0, 0, 0.1);
}

.lp-studio-sidebar {
  border-right: 1px solid var(--lp-line-soft);
}

.lp-studio-facts {
  border-left: 1px solid var(--lp-line-soft);
}

.lp-studio-sidebar > strong {
  color: var(--lp-paper);
  font-size: 12px;
}

.lp-sidebar-line {
  width: 78%;
  height: 6px;
  display: block;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--lp-line);
}

.lp-sidebar-line.active {
  width: 92%;
  background: var(--lp-blue);
}

.lp-sidebar-line.short {
  width: 58%;
  margin-top: 0;
}

.lp-sidebar-divider {
  width: 100%;
  margin: 7px 0 6px;
  border-top: 1px solid var(--lp-line-soft);
}

.lp-sidebar-check {
  color: var(--lp-paper-muted);
  font-size: 12px;
}

.lp-sidebar-check.pending {
  color: var(--lp-paper-dim);
}

.lp-studio-article {
  position: relative;
  padding: 28px 28px 24px;
}

.lp-studio-article h3 {
  margin: 17px 0 0;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1.04;
}

.lp-studio-deck,
.lp-studio-article > p:not(.lp-highlight) {
  color: var(--lp-paper-muted);
  font-size: 12px;
  line-height: 1.75;
}

.lp-studio-deck {
  margin: 16px 0 0;
}

.lp-studio-rule {
  margin: 20px 0;
  border-top: 1px solid var(--lp-line-soft);
}

.lp-studio-article > p:not(.lp-highlight) {
  margin: 0;
}

.lp-highlight {
  margin: 23px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--lp-blue);
  color: var(--lp-paper);
  font-size: 12px;
  font-weight: 700;
}

.lp-cursor {
  position: absolute;
  right: 25px;
  bottom: 39px;
  width: 1px;
  height: 18px;
  background: var(--lp-lime);
}

.lp-fact {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-line-soft);
}

.lp-fact-status {
  color: var(--lp-lime);
  font-size: 12px;
}

.lp-fact-pending .lp-fact-status {
  color: #f4b86b;
}

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

.lp-fact strong {
  color: var(--lp-paper-muted);
  font-size: 12px;
}

.lp-fact small {
  margin-top: 4px;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-fact-link {
  margin-top: auto;
  color: var(--lp-blue);
  font-size: 12px;
}

.lp-callout {
  display: flex;
  gap: 13px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-line);
}

.lp-callout-mark {
  color: var(--lp-lime);
  font-size: 17px;
}

.lp-callout p {
  max-width: 270px;
  margin: 0;
  color: var(--lp-paper-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
}

.lp-boundary {
  border-top: 1px solid var(--lp-line-soft);
  background: var(--lp-ink-soft);
}

.lp-boundary-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.lp-boundary-list {
  display: grid;
  gap: 0;
}

.lp-boundary-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--lp-line);
}

.lp-boundary-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.lp-boundary-index {
  color: var(--lp-blue);
  font-family: var(--lp-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lp-boundary-item h3 {
  margin: 0;
  color: var(--lp-paper);
  font-family: var(--lp-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lp-boundary-item p {
  max-width: 440px;
  margin: 10px 0 0;
  color: var(--lp-paper-muted);
  font-size: 12px;
  line-height: 1.75;
  word-break: keep-all;
}

.lp-cta {
  padding: 144px 0 152px;
  border-top: 1px solid var(--lp-line);
  background: var(--lp-panel);
  text-align: center;
}

.lp-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-cta .lp-section-label {
  color: var(--lp-lime);
}

.lp-cta-title {
  max-width: 700px;
  margin-top: 25px;
  color: var(--lp-paper);
  font-size: clamp(48px, 6vw, 82px);
}

.lp-cta-body {
  max-width: 430px;
  margin: 27px 0 34px;
  color: var(--lp-paper-muted);
  font-size: 14px;
  line-height: 1.7;
}

.lp-footer {
  border-top: 1px solid var(--lp-line-soft);
  background: var(--lp-ink);
}

.lp-footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-footer-brand {
  font-size: 14px;
}

.lp-footer-brand span {
  color: var(--lp-blue);
  font-size: 13px;
}

.lp-footer-note {
  margin: 0 auto 0 0;
  color: var(--lp-paper-dim);
  font-size: 12px;
}

.lp-footer-links {
  display: flex;
  gap: 19px;
}

:focus-visible {
  outline: 2px solid var(--lp-blue);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --lp-shell: min(100% - 40px, 760px);
  }

  .lp-hero {
    min-height: auto;
    padding-top: 133px;
  }

  .lp-hero-grid,
  .lp-how-grid,
  .lp-studio-grid,
  .lp-boundary-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-grid {
    gap: 70px;
  }

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

  .lp-hero-visual {
    min-height: 475px;
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .lp-hero-visual::before {
    transform: translate(-50%, -50%);
  }

  .lp-value-grid {
    gap: 10px;
  }

  .lp-value-card {
    min-height: 355px;
    padding-inline: 19px;
  }

  .lp-studio-window {
    order: 2;
  }

  .lp-studio-grid > .lp-section-heading {
    order: 1;
  }

  .lp-boundary-grid {
    gap: 65px;
  }

  .lp-footer-note {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --lp-shell: min(100% - 32px, 540px);
  }

  html {
    scroll-behavior: auto;
  }

  .lp-nav-inner {
    min-height: 68px;
    gap: 12px;
  }

  .lp-nav-links {
    display: none;
  }

  .lp-action-nav {
    margin-left: auto;
  }

  .lp-hero {
    padding: 117px 0 76px;
  }

  .lp-hero-grid {
    gap: 52px;
  }

  .lp-eyebrow {
    margin-bottom: 21px;
    font-size: 12px;
  }

  .lp-hero-title {
    font-size: clamp(52px, 15vw, 72px);
    letter-spacing: -0.08em;
  }

  .lp-hero-lede {
    margin-top: 24px;
    font-size: 15px;
  }

  .lp-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 28px;
  }

  .lp-hero-signals {
    gap: 10px 16px;
    margin-top: 40px;
    font-size: 12px;
  }

  .lp-hero-visual {
    min-height: 0;
    padding-top: 0;
  }

  .lp-hero-visual::before {
    width: 290px;
    height: 290px;
  }

  .lp-visual-label {
    margin-left: 8px;
  }

  .lp-editor-window {
    width: 100%;
  }

  .lp-editor-content {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .lp-editor-photo,
  .lp-editor-photo img,
  .lp-editor-copy {
    min-height: 280px;
  }

  .lp-editor-copy {
    padding: 19px 16px 16px;
  }

  .lp-editor-kicker {
    margin-top: 22px;
    font-size: 12px;
  }

  .lp-editor-copy h2 {
    font-size: 20px;
  }

  .lp-editor-excerpt {
    margin-top: 13px;
    font-size: 12px;
  }

  .lp-editor-meta {
    font-size: 12px;
  }

  .lp-floating-note {
    padding: 9px 10px;
    font-size: 12px;
  }

  .lp-floating-note-top {
    top: 42px;
    left: -7px;
  }

  .lp-floating-note-bottom {
    right: -6px;
    bottom: 30px;
  }

  .lp-proof-inner {
    min-height: 118px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .lp-proof-items {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
  }

  .lp-proof-items span {
    gap: 4px;
  }

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

  .lp-section-title {
    margin-top: 18px;
    font-size: clamp(41px, 12vw, 58px);
  }

  .lp-section-lede {
    margin-top: 22px;
    font-size: 14px;
  }

  .lp-value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 46px;
  }

  .lp-value-card {
    min-height: 0;
    padding: 21px 20px 20px;
  }

  .lp-value-icon {
    margin: 28px 0 21px;
  }

  .lp-value-card p {
    max-width: 330px;
  }

  .lp-card-link {
    margin-top: 28px;
  }

  .lp-steps {
    margin-top: 40px;
  }

  .lp-flow-preview {
    margin-top: 0;
  }

  .lp-flow-preview-body {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px 20px 20px;
  }

  .lp-flow-preview-copy h3 {
    font-size: 30px;
  }

  .lp-flow-thumb {
    min-height: 185px;
    order: -1;
  }

  .lp-flow-thumb img {
    min-height: 185px;
    max-height: 230px;
  }

  .lp-studio-body {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lp-studio-sidebar,
  .lp-studio-facts {
    display: none;
  }

  .lp-studio-article {
    min-height: 330px;
    padding: 25px 21px;
  }

  .lp-studio-article h3 {
    font-size: 27px;
  }

  .lp-callout {
    margin-top: 30px;
  }

  .lp-boundary-grid {
    gap: 49px;
  }

  .lp-boundary-item {
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 21px 0;
  }

  .lp-boundary-item p {
    font-size: 12px;
  }

  .lp-cta {
    padding: 96px 0 103px;
  }

  .lp-cta-title {
    font-size: clamp(46px, 13vw, 65px);
  }

  .lp-cta-body {
    margin-top: 23px;
    font-size: 13px;
  }

  .lp-footer-inner {
    min-height: 86px;
    gap: 12px;
  }

  .lp-footer-links {
    margin-left: auto;
    gap: 12px;
  }

  .lp-footer-links a {
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
  }
}
