:root {
  --lp-highlight: #1f5f67;
  --lp-paper-top: rgba(255, 254, 250, 0.98);
  --lp-paper-bottom: rgba(244, 239, 231, 0.92);
  --lp-paper-line: rgba(166, 182, 195, 0.24);
  --lp-paper-shadow: 0 24px 52px rgba(31, 36, 42, 0.1);
  --lp-rail-top: rgba(39, 57, 90, 0.98);
  --lp-rail-bottom: rgba(31, 36, 42, 0.98);
  --lp-rail-line: rgba(166, 182, 195, 0.22);
  --lp-rail-copy: rgba(246, 244, 239, 0.9);
  --lp-rail-chip: rgba(246, 244, 239, 0.08);
  --lp-rail-chip-hover: rgba(246, 244, 239, 0.14);
  --lp-rail-card-top: rgba(255, 255, 255, 0.98);
  --lp-rail-card-bottom: rgba(248, 245, 239, 0.92);
}

.lp-skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  background: var(--graphite);
  color: var(--warm-white);
  padding: 10px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-skip-link:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(252, 250, 245, 0.94) 0%, rgba(246, 244, 239, 0.88) 100%);
  border-bottom: 1px solid rgba(166, 182, 195, 0.18);
  box-shadow: 0 10px 26px rgba(31, 36, 42, 0.04);
}

.lp-nav::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 115, 0.56), rgba(166, 182, 195, 0.4), rgba(47, 107, 115, 0.22));
}

.lp-nav .lp-container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.lp-brand img,
.lp-brand-logo {
  width: auto;
  height: 34px;
}

.lp-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.lp-nav-links a:hover,
.lp-nav-links a:focus-visible {
  color: var(--lp-highlight);
}

.lp-nav-cta {
  margin-inline-start: auto;
}

.lp-hero {
  padding: 58px 0 48px;
}

.lp-hero .lp-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: stretch;
  gap: 20px;
}

.lp-hero-copy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--lp-paper-top) 0%, var(--lp-paper-bottom) 100%);
  border: 1px solid var(--lp-paper-line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--lp-paper-shadow);
}

.lp-hero-copy::before,
.lp-card::before,
.lp-step::before,
.lp-proof-card::before,
.lead-capture-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 107, 115, 0.84), rgba(166, 182, 195, 0.8));
}

.lp-eyebrow {
  margin: 0;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lp-hero h1 {
  margin: 10px 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lp-hero p {
  margin: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lp-trust-row span {
  border: 1px solid rgba(166, 182, 195, 0.26);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.lp-mini-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 13px;
}

.lp-boundary-list {
  list-style: none;
  margin: 16px 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.lp-boundary-list li {
  padding: 11px 12px;
  border: 1px solid rgba(166, 182, 195, 0.26);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  background: rgba(246, 244, 239, 0.06);
}

.lp-boundary-list li span {
  color: var(--ink-soft);
}

.lp-boundary-list li strong {
  color: var(--warm-white);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-mini-assistant {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-rail-line);
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(145deg, var(--lp-rail-top) 0%, var(--lp-rail-bottom) 100%);
  color: var(--warm-white);
  box-shadow: 0 28px 56px rgba(31, 36, 42, 0.18);
}

.lp-mini-assistant::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 28%),
    repeating-linear-gradient(
      90deg,
      rgba(166, 182, 195, 0.08) 0,
      rgba(166, 182, 195, 0.08) 1px,
      transparent 1px,
      transparent 86px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.lp-mini-assistant::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-highlight), rgba(166, 182, 195, 0.84));
}

.lp-mini-assistant > * {
  position: relative;
  z-index: 1;
}

.lp-mini-assistant .lp-mini-question {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 700;
  color: #f6f4ef;
}

.lp-mini-assistant .lp-mini-value {
  margin: 0;
  color: #e6e1d7;
  font-weight: 500;
  line-height: 1.55;
}

.lp-mini-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.lp-chip {
  width: 100%;
  justify-content: flex-start;
  border: 1px solid var(--lp-rail-line);
  background: var(--lp-rail-chip);
  border-radius: 16px;
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  color: var(--warm-white);
  box-shadow: none;
  cursor: pointer;
}

.lp-chip:hover,
.lp-chip:focus-visible {
  border-color: rgba(166, 182, 195, 0.36);
  background: var(--lp-rail-chip-hover);
  color: var(--warm-white);
}

.lp-mini-output {
  margin-top: 12px;
  margin-bottom: 0;
  min-height: 86px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(166, 182, 195, 0.28);
  background: linear-gradient(180deg, var(--lp-rail-card-top) 0%, var(--lp-rail-card-bottom) 100%);
  color: var(--graphite);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lp-mini-output strong {
  color: var(--admiral);
}

.lp-section {
  padding: 38px 0;
}

.lp-section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(245, 241, 234, 0.68) 100%);
}

.lp-section-head {
  margin-bottom: 18px;
}

.lp-section-head--centered {
  text-align: center;
}

.lp-section-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 36, 42, 0.68);
}

.lp-section-head h2 {
  margin: 10px 0 0;
  max-width: 24ch;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.lp-section-intro {
  max-width: 62ch;
  color: var(--ink-soft);
}

.lp-card-grid,
.lp-step-grid,
.lp-proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-card,
.lp-step,
.lp-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-paper-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 245, 239, 0.9) 100%);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(31, 36, 42, 0.05);
}

.lp-card h3,
.lp-step h3,
.lp-proof-card strong {
  color: var(--admiral);
}

.lp-proof-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.lp-proof-strip {
  max-width: 860px;
  border: 1px solid var(--lp-paper-line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 243, 237, 0.9) 100%);
  box-shadow: var(--lp-paper-shadow);
  display: grid;
  gap: 12px;
}

.lp-proof-pill-group {
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-proof-pill-group span {
  border: 1px solid rgba(31, 36, 42, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.lp-sample-preview {
  max-width: 860px;
  border: 1px solid var(--lp-paper-line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 243, 237, 0.9) 100%);
  box-shadow: var(--lp-paper-shadow);
  display: grid;
  gap: 12px;
}

.lp-outcomes-row {
  margin: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-outcomes-row span {
  border: 1px solid rgba(31, 36, 42, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.lp-step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--ink-inverse);
  font-weight: 700;
  background: var(--lp-highlight);
}

.lp-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-form-shell {
  padding-bottom: 54px;
}

.lead-capture-form {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 243, 237, 0.94) 100%);
  border: 1px solid var(--lp-paper-line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--lp-paper-shadow);
}

.lead-capture-form label {
  display: block;
  margin-top: 6px;
  margin-bottom: 4px;
  font-weight: 700;
}

.lead-capture-form .lp-note {
  color: var(--ink-soft);
  margin: 0;
  font-size: 13px;
}

.lead-capture-form button[type="submit"] {
  margin-top: 4px;
}

.lead-capture-form button[disabled] {
  cursor: not-allowed;
}

.lp-hidden-field {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
}

.lp-form-status {
  margin: 0;
  font-weight: 600;
  min-height: 21px;
}

.lp-form-status[data-state="success"] {
  color: var(--success);
}

.lp-form-status[data-state="error"] {
  color: var(--danger);
}

.lp-form-fallback {
  margin: 2px 0 0;
  font-size: 14px;
}

.lp-form-fallback[hidden] {
  display: none;
}

.lp-form-fallback a {
  color: var(--lp-highlight);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.lp-form-fallback a:hover,
.lp-form-fallback a:focus-visible {
  color: var(--teal);
}

.lp-faq {
  display: grid;
  gap: 10px;
}

.lp-faq details {
  border: 1px solid rgba(31, 36, 42, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 14px;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.lp-faq summary:focus-visible {
  outline: 2px solid var(--lp-highlight);
  outline-offset: 2px;
}

.lp-faq p {
  margin: 10px 0 6px;
  color: var(--ink-soft);
}

.lp-bottom-cta {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid var(--lp-rail-line);
  background:
    linear-gradient(145deg, rgba(39, 57, 90, 0.98) 0%, rgba(31, 36, 42, 0.98) 100%);
  text-align: center;
  box-shadow: 0 20px 42px rgba(31, 36, 42, 0.14);
}

.lp-bottom-cta p {
  margin-top: 0;
  color: var(--warm-white);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.lp-btn-primary {
  color: var(--ink-inverse);
  background: linear-gradient(180deg, #3b818a 0%, #2f6b73 46%, #245860 100%);
  border-color: rgba(36, 88, 96, 0.92);
  box-shadow: 0 12px 24px rgba(47, 107, 115, 0.18);
}

.lp-btn-ghost {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(166, 182, 195, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.lp-btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(31, 36, 42, 0.12);
  box-shadow: var(--lp-paper-shadow);
}

.lp-bottom-cta-actions {
  margin-top: 12px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lp-footer {
  border-top: 1px solid rgba(166, 182, 195, 0.2);
  margin-top: 34px;
  padding: 26px 0;
}

.lp-footer-brand img {
  width: auto;
  height: 28px;
}

.lp-footer p {
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .lp-hero .lp-container {
    grid-template-columns: 1fr;
  }

  .lp-nav .lp-container {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lp-nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .lp-nav-cta {
    margin-inline-start: 0;
  }
}

@media (max-width: 760px) {
  .lp-container {
    padding-inline: 16px;
  }

  .lp-hero-actions .lp-btn,
  .lp-proof-strip .lp-btn {
    width: 100%;
  }

  .lp-proof-note {
    font-size: 13px;
  }

  .lp-card-grid,
  .lp-step-grid,
  .lp-proof-grid,
  .lp-proof-pill-group,
  .lp-outcomes-row {
    grid-template-columns: 1fr;
  }

  .lp-boundary-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-bottom-cta-actions {
    justify-content: stretch;
  }

  .lp-bottom-cta-actions .lp-btn {
    width: 100%;
  }
}
