@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/fraunces-latin-600.woff2") format("woff2");
}

.page {
  --landing-font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --landing-color-primary-600: #1a8470;
  --landing-color-primary-700: #156b5c;
  --landing-color-accent-500: #f4845f;
  --landing-color-accent-600: #e86c44;
  --landing-color-neutral-0: #ffffff;
  --landing-color-neutral-25: #fdfdfc;
  --landing-color-neutral-30: #fdfdfb;
  --landing-color-neutral-50: #fafaf8;
  --landing-color-neutral-75: #f9f9f7;
  --landing-color-neutral-85: #f6f6f3;
  --landing-color-neutral-100: #f2f2ef;
  --landing-color-neutral-200: #e0e0db;
  --landing-color-neutral-300: #c8c8c2;
  --landing-color-neutral-500: #888888;
  --landing-color-neutral-600: #666660;
  --landing-color-neutral-700: #444440;
  --landing-color-bg-page: var(--landing-color-neutral-30);
  --landing-color-bg-surface: var(--landing-color-neutral-0);
  --landing-color-bg-elevated: var(--landing-color-neutral-85);
  --landing-color-text-primary: var(--landing-color-neutral-700);
  --landing-color-text-secondary: var(--landing-color-neutral-600);
  --landing-color-text-muted: var(--landing-color-neutral-500);
  --landing-color-border-subtle: var(--landing-color-neutral-200);
  --landing-color-border-default: var(--landing-color-neutral-300);
  --landing-color-action-accent: var(--landing-color-accent-500);
  --landing-color-action-accent-hover: var(--landing-color-accent-600);
  --landing-space-1: 0.25rem;
  --landing-space-2: 0.5rem;
  --landing-space-3: 0.75rem;
  --landing-space-4: 1rem;
  --landing-space-5: 1.25rem;
  --landing-space-6: 1.5rem;
  --landing-space-8: 2rem;
  --landing-space-10: 2.5rem;
  --landing-space-12: 3rem;
  --landing-space-16: 4rem;
  --landing-text-xs: 0.75rem;
  --landing-text-sm: 0.875rem;
  --landing-text-base: 1rem;
  --landing-text-md: 1.25rem;
  --landing-text-lg: 1.25rem;
  --landing-text-xl: 1.5rem;
  --landing-text-2xl: 1.875rem;
  --landing-leading-tight: 1.2;
  --landing-leading-snug: 1.35;
  --landing-leading-relaxed: 1.7;
  --landing-weight-medium: 500;
  --landing-weight-semibold: 600;
  --landing-radius-md: 0.5rem;
  --landing-radius-lg: 0.75rem;
  --landing-shadow-sm: 0 2px 4px rgba(30, 20, 10, 0.08), 0 1px 2px rgba(30, 20, 10, 0.04);
  --landing-duration-base: 150ms;
  --landing-page-padding-x: var(--landing-space-6);
  --landing-mobile-padding-x: var(--landing-space-5);
  --landing-section-padding-y: var(--landing-space-16);
  --landing-divider-color: rgba(0, 0, 0, 0.06);
  --landing-problem-overlap-y: -60px;
  --landing-centered-max-width: 900px;
  --landing-hero-shift-x: calc((var(--landing-page-padding-x) * 2) + 20px);

  min-height: 100vh;
  background: var(--landing-color-bg-page);
  color: var(--landing-color-text-primary);
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--landing-page-padding-x);
}

.section {
  padding: var(--landing-section-padding-y) 0;
}

.compactSection {
  padding-top: 0;
  padding-bottom: 0;
}

.brandLabel,
.sectionLabel {
  margin: 0 0 var(--landing-space-4);
  font-size: var(--landing-text-base);
  font-weight: var(--landing-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brandLabel {
  color: var(--landing-color-primary-700);
}

.sectionLabel {
  color: var(--landing-color-text-muted);
}

.bodyText {
  margin: 0;
  color: var(--landing-color-text-secondary);
  line-height: var(--landing-leading-relaxed);
}

.surfaceBlock {
  margin: 0 auto;
  padding: var(--landing-space-6);
  border-radius: var(--landing-radius-lg);
  background: var(--landing-color-bg-elevated);
}

.btnAccent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: var(--landing-space-3) var(--landing-space-6);
  border: 1px solid rgba(168, 94, 63, 0.16);
  border-radius: var(--landing-radius-md);
  background-color: var(--landing-color-action-accent);
  background-image: none;
  color: var(--landing-color-neutral-0);
  font-size: var(--landing-text-base);
  font-weight: var(--landing-weight-semibold);
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0.35rem 0.85rem rgba(40, 26, 18, 0.09);
  cursor: pointer;
  transition:
    background-color var(--landing-duration-base) ease,
    box-shadow var(--landing-duration-base) ease,
    transform 100ms ease;
}

.btnAccent:hover {
  background-color: var(--landing-color-action-accent-hover);
  background-image: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0.45rem 0.95rem rgba(40, 26, 18, 0.11);
}

.btnAccent:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 132, 95, 0.35);
}

.btnAccent:active {
  transform: scale(0.98);
}

.btnAccent:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: var(--landing-space-3) var(--landing-space-6);
  border: 1px solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-md);
  background: transparent;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-text-base);
  font-weight: var(--landing-weight-semibold);
  text-decoration: none;
  transition:
    border-color var(--landing-duration-base) ease,
    color var(--landing-duration-base) ease;
}

.btnSecondary:hover {
  border-color: var(--landing-color-primary-700);
  color: var(--landing-color-primary-700);
}

.btnSecondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.15);
}

.hero {
  background-color: var(--landing-color-bg-page);
  background-image:
    linear-gradient(
      180deg,
      #f4f8f6 0%,
      #f8faf8 34%,
      #fdfdfb 100%
    ),
    linear-gradient(
      135deg,
      rgba(197, 215, 224, 0.32) 0%,
      rgba(197, 215, 224, 0.16) 19%,
      rgba(197, 215, 224, 0) 48%
    ),
    linear-gradient(
      315deg,
      rgba(236, 221, 204, 0.24) 0%,
      rgba(236, 221, 204, 0.11) 16%,
      rgba(236, 221, 204, 0) 42%
    ),
    linear-gradient(
      210deg,
      rgba(26, 132, 112, 0.16) 0%,
      rgba(26, 132, 112, 0.08) 18%,
      rgba(26, 132, 112, 0) 44%
    );
  border-bottom: 1px solid var(--landing-divider-color);
}

.heroInner {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--landing-hero-shift-x);
}

.siteHeaderActions {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.siteHeaderActions .siteHeaderCta {
  white-space: nowrap;
  min-height: 2.14rem;
  padding: 0.3rem 0.68rem;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.025em;
  border-radius: 0.4rem;
}

.siteHeaderLogin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.14rem;
  padding: 0.3rem 0.2rem;
  color: #3f3f3b;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition:
    color 140ms ease,
    opacity 140ms ease;
}

.siteHeaderLogin:hover {
  color: #156b5c;
  opacity: 1;
}

.siteHeaderLogin:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(21, 107, 92, 0.2);
  border-radius: 0.3rem;
}

.heroShell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.heroContent {
  margin: 0;
  min-width: 0;
  text-align: left;
}

.heroLabel {
  margin-bottom: 0;
  font-size: var(--landing-text-md);
  letter-spacing: 0.12em;
  line-height: 1;
}

.heroBrandSubline {
  margin: -0.1rem 0 var(--landing-space-4);
  color: var(--landing-color-text-secondary);
  font-size: 0.6875rem;
  line-height: 1.2;
}

.heroHeadline {
  margin: 0 0 var(--landing-space-5);
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.heroHeadlinePrimary,
.heroHeadlineSecondary {
  white-space: nowrap;
}

.heroHeadlinePrimary {
  font-size: 0.85em;
}

.heroHeadlineSecondary {
  font-size: 1em;
  position: relative;
  top: -0.06em;
}

.heroSubline {
  margin: 0 0 var(--landing-space-6);
  font-size: var(--landing-text-md);
  line-height: var(--landing-leading-snug);
  max-width: clamp(40ch, 46vw, 50ch);
  color: var(--landing-color-text-primary);
  opacity: 0.85;
}

.heroSublineChunk {
  white-space: nowrap;
}

.heroSupporting {
  margin: 0 0 var(--landing-space-6);
  max-width: clamp(46ch, 64vw, 110ch);
  color: var(--landing-color-text-secondary);
  line-height: var(--landing-leading-relaxed);
}

.heroCta {
  margin-top: 0;
  margin-bottom: var(--landing-space-3);
}

.heroSupportLine {
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-text-sm);
}

.heroSecondaryCta {
  display: inline-flex;
  align-items: center;
  margin-top: var(--landing-space-5);
  color: var(--landing-color-primary-700);
  font-size: var(--landing-text-base);
  font-weight: var(--landing-weight-semibold);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.heroSecondaryCta:hover {
  color: var(--landing-color-primary-600);
  text-decoration: underline;
}

.heroSecondaryCta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.15);
  border-radius: 0.25rem;
}

.heroPromptList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: var(--landing-space-4) 0 0;
  padding: 0;
  max-width: clamp(34rem, 50vw, 46rem);
  list-style: none;
}

.heroPromptList li {
  display: flex;
}

.heroPromptChip {
  display: inline-flex;
  position: relative;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 0.84rem 1rem 1rem;
  border: 1px solid rgba(68, 68, 64, 0.13);
  border-radius: 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(253, 253, 251, 0.78) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 6px 18px rgba(30, 20, 10, 0.035);
  color: var(--landing-color-text-primary);
  font-size: var(--landing-text-sm);
  line-height: 1.35;
  overflow: hidden;
}

.heroPromptChip::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.62rem;
  width: 1.9rem;
  height: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(26, 132, 112, 0.7) 0%,
    rgba(244, 132, 95, 0.42) 72%,
    rgba(244, 132, 95, 0) 100%
  );
  opacity: 0.95;
}

.heroPromptChip::after {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.72rem;
  pointer-events: none;
}

.heroPromptChip--active {
  border-color: rgba(68, 68, 64, 0.3);
  background: linear-gradient(
    180deg,
    rgba(250, 250, 246, 0.98) 0%,
    rgba(240, 240, 235, 0.95) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(68, 68, 64, 0.04),
    0 8px 18px rgba(30, 20, 10, 0.045);
  color: #2f2f2b;
  font-weight: 600;
}

.heroPromptChip--active::before {
  width: 3rem;
  height: 0.18rem;
  background: rgba(68, 68, 64, 0.56);
  opacity: 1;
}

.heroPromptChip--active::after {
  border-color: rgba(255, 255, 255, 0.62);
}

.heroDecisionRail {
  width: min(100%, 24rem);
  justify-self: end;
  margin-top: clamp(4rem, 7vw, 5.35rem);
  margin-right: 3rem;
  padding: var(--landing-space-5);
  text-align: left;
  background: var(--landing-color-neutral-75);
  border-left: 2px solid var(--landing-color-border-default);
  box-shadow: 0 14px 32px rgba(30, 20, 10, 0.05);
}

.heroDecisionRailLabel {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #3f3f3a;
}

.heroDecisionRailQuestion {
  margin: var(--landing-space-2) 0 var(--landing-space-4);
  font-size: 1rem;
  line-height: 1.38;
  color: var(--landing-color-text-primary);
  font-weight: 600;
}

.heroDecisionRailBody {
  margin: var(--landing-space-2) 0 var(--landing-space-4);
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b4b46;
}

.heroDecisionRailBody:last-child {
  margin-bottom: 0;
}

.heroDecisionRailCode {
  padding: 0.05rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font-family: var(--landing-font-mono);
  font-size: 0.92em;
}

.trustLine {
  margin: 0 0 var(--landing-space-3);
  font-size: var(--landing-text-xs);
  color: var(--landing-color-text-secondary);
  opacity: 0.95;
  letter-spacing: 0.02em;
}

.homepageProofSection {
  margin-top: var(--landing-space-16);
}

.homepageProofSection .shellSectionTitle {
  max-width: 34ch;
  font-size: var(--landing-text-xl);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-snug);
  letter-spacing: -0.02em;
  color: var(--landing-color-text-primary);
}

.homepageProofSection .proofBlock .proofAssessmentLead {
  font-weight: 600;
}

.proofTabList {
  display: flex;
  gap: 0.5rem;
  width: min(100%, 56rem);
  margin: 0 auto 1rem;
  padding: 0 0 0.2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.proofTabList::-webkit-scrollbar {
  display: none;
}

.proofTab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.42rem 0.82rem 0.46rem;
  border: 1px solid rgba(68, 68, 64, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #5f5f59;
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background-color var(--landing-duration-base) ease,
    border-color var(--landing-duration-base) ease,
    color var(--landing-duration-base) ease,
    box-shadow var(--landing-duration-base) ease;
}

.proofTab[aria-selected="true"] {
  background: rgba(246, 246, 243, 0.96);
  color: #2e2e2b;
  font-weight: 600;
  box-shadow:
    inset 0 -1px 0 rgba(68, 68, 64, 0.22),
    0 1px 3px rgba(30, 20, 10, 0.03);
}

.proofTab:hover {
  border-color: rgba(68, 68, 64, 0.2);
  color: #3f3f3a;
}

.proofTab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.14);
}

.proofPanel[hidden] {
  display: none;
}

.proofInlineCode {
  padding: 0.05rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font-family: var(--landing-font-mono);
  font-size: 0.92em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.proofExpandToggle {
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f3f3a;
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  border-bottom: 1px solid rgba(68, 68, 64, 0.2);
}

.proofExpandToggle:hover {
  color: #2e2e2b;
  border-bottom-color: rgba(68, 68, 64, 0.36);
}

.proofExpandToggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.14);
  border-radius: 0.2rem;
}

.proofExpandedShell {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition:
    grid-template-rows 180ms ease,
    margin-top 180ms ease,
    opacity 180ms ease;
}

.proofExpandedShell.is-open {
  grid-template-rows: 1fr;
  margin-top: var(--landing-space-4);
  opacity: 1;
}

.proofExpandedInner {
  overflow: hidden;
}

.proofExpandedInner > * + * {
  margin-top: var(--landing-space-3);
}

.proofSupportLine {
  margin: 1.1rem auto 0;
  max-width: 72ch;
  font-size: 0.9rem;
}

.proofTrustNote {
  margin-top: 0.5rem;
}

.problemSection {
  margin-top: var(--landing-space-16);
  padding-top: 0;
  padding-bottom: 0;
}

.problemSection .container,
.whatContainer,
.howContainer,
.whoContainer,
.trustContainer,
.statusContainer,
.ctaSection .container,
.footer .container {
  width: 100%;
  max-width: var(--landing-centered-max-width);
  margin: 0 auto;
  text-align: center;
}

.section + .section::before {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  margin: var(--landing-space-16) auto;
  background: var(--landing-divider-color);
}

.hero + .section::before {
  content: none;
}

.problemSection .container > *,
.whatContainer > *,
.howContainer > *,
.whoContainer > *,
.trustContainer > *,
.statusContainer > *,
.ctaSection .container > *,
.footer .container > * {
  margin-left: auto;
  margin-right: auto;
}

.problemIntro,
.trustIntro,
.statusIntro,
.ctaHeadline {
  margin-top: 0;
}

.problemIntro,
.trustIntro,
.statusIntro,
.ctaHeadline {
  letter-spacing: -0.02em;
}

.problemIntro {
  margin-bottom: var(--landing-space-3);
  font-size: var(--landing-text-xl);
  font-weight: var(--landing-weight-semibold);
  color: var(--landing-color-text-primary);
  line-height: var(--landing-leading-snug);
}

.bodySpacing {
  margin-bottom: var(--landing-space-4);
}

.problemList {
  display: inline-block;
  margin: var(--landing-space-2) auto 0;
  padding-left: var(--landing-space-5);
  text-align: left;
}

.problemList li {
  margin-bottom: var(--landing-space-2);
  color: var(--landing-color-text-secondary);
  font-style: italic;
  line-height: 1.5;
}

.problemList li:first-child {
  color: var(--landing-color-text-primary);
}

.closingStatement {
  margin: var(--landing-space-6) auto 0;
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-relaxed);
}

.whatSection {
  background: transparent;
}

.whatSection .surfaceBlock,
.trustSection .surfaceBlock {
  margin: 0 auto;
}

.whatSection .surfaceBlock > *,
.trustSection .surfaceBlock > * {
  margin-left: auto;
  margin-right: auto;
}

.spacedParagraph {
  margin: 0 0 var(--landing-space-4);
}

.emphasisLine {
  margin: 0;
  font-weight: var(--landing-weight-medium);
  color: var(--landing-color-text-primary);
}

.howSection,
.whoSection,
.trustSection,
.statusSection {
  margin-top: 0;
}

.howSection .sectionLabel,
.whoSection .sectionLabel {
  margin-bottom: var(--landing-space-4);
}

.howSection .shellSectionTitle {
  max-width: 20ch;
  font-size: var(--landing-text-xl);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-snug);
  letter-spacing: -0.02em;
  color: var(--landing-color-text-primary);
}

.howStepGrid {
  display: grid;
  gap: 0.95rem 1.15rem;
  margin-top: 1.9rem;
  text-align: left;
}

.step,
.persona {
  margin: 0 auto var(--landing-space-6);
}

.howStepGrid .step {
  margin: 0;
  padding-top: 0.82rem;
  border-top: 1px solid var(--landing-color-border-subtle);
}

.step:last-child,
.persona:last-child {
  margin-bottom: 0;
}

.stepNumber {
  margin: 0 0 var(--landing-space-1);
  font-family: var(--landing-font-mono);
  font-size: var(--landing-text-sm);
  color: var(--landing-color-text-muted);
  opacity: 0.7;
}

.stepTitle,
.personaTitle {
  margin: 0 0 var(--landing-space-1);
  font-size: var(--landing-text-lg);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-snug);
}

.howStepGrid .bodyText {
  max-width: none;
}

.howCta {
  margin-top: 1.85rem;
}

.howSupportLine {
  margin-top: 0.6rem;
}

.persona + .persona {
  padding-top: var(--landing-space-6);
}

.trustIntro,
.statusIntro {
  margin-bottom: var(--landing-space-6);
  font-size: var(--landing-text-lg);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-snug);
}

.trustStatements {
  display: grid;
  gap: var(--landing-space-3);
}

.trustClosing {
  margin-top: var(--landing-space-6);
  font-weight: var(--landing-weight-medium);
  line-height: var(--landing-leading-relaxed);
}

.statusText + .statusText {
  margin-top: var(--landing-space-4);
}

.ctaSection {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.ctaHeadline {
  margin-bottom: var(--landing-space-4);
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: var(--landing-text-2xl);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-tight);
}

.ctaSupporting {
  margin: 0 auto var(--landing-space-6);
  max-width: 70ch;
  color: var(--landing-color-text-secondary);
  line-height: 1.62;
}

.ctaForm {
  display: grid;
  width: 100%;
  gap: var(--landing-space-3);
  justify-items: center;
  margin: 0 auto;
}

.ctaFieldLabel {
  width: 80%;
  margin: 0 auto -0.5rem;
  text-align: left;
  font-size: var(--landing-text-sm);
  font-weight: var(--landing-weight-semibold);
  color: var(--landing-color-text-secondary);
}

.ctaFieldLabel--spaced {
  margin-top: 0.35rem;
}

.ctaFormRow {
  display: grid;
  width: 80%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--landing-space-3);
  align-items: center;
  justify-items: stretch;
}

.emailInput,
.textarea {
  width: 80%;
  min-width: 0;
  padding: var(--landing-space-3) var(--landing-space-5);
  border: 1.5px solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-md);
  background: var(--landing-color-bg-surface);
  color: var(--landing-color-text-primary);
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: var(--landing-text-base);
  outline: none;
  transition:
    border-color var(--landing-duration-base) ease,
    box-shadow var(--landing-duration-base) ease;
}

.ctaFormRow .emailInput {
  width: 100%;
}

.ctaFormRow .btnAccent {
  width: auto;
}

.honeypotField {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.emailInput:focus,
.textarea:focus {
  border-color: var(--landing-color-primary-600);
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.15);
}

.disclaimer {
  margin: var(--landing-space-4) auto 0;
  font-size: var(--landing-text-sm);
  color: var(--landing-color-text-muted);
}

.formStatus {
  width: 80%;
  margin: var(--landing-space-2) auto 0;
  padding: var(--landing-space-3) var(--landing-space-4);
  border: 1px solid transparent;
  border-radius: var(--landing-radius-md);
  font-size: var(--landing-text-sm);
  text-align: center;
  color: var(--landing-color-text-muted);
  background: var(--landing-color-bg-surface);
}

.formStatus[data-state="pending"] {
  color: var(--landing-color-text-secondary);
  border-color: var(--landing-color-border-muted);
}

.formStatus[data-state="success"] {
  color: var(--landing-color-primary-700);
  border-color: rgba(21, 107, 92, 0.2);
  background: rgba(21, 107, 92, 0.06);
}

.formStatus[data-state="error"] {
  color: var(--landing-color-accent-600);
  border-color: rgba(179, 73, 43, 0.18);
  background: rgba(179, 73, 43, 0.05);
}

.footer {
  padding: var(--landing-space-12) 0 var(--landing-space-8);
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: var(--landing-space-2);
}

.footerMark {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.8;
}

.footerText {
  margin: 0;
  font-size: var(--landing-text-sm);
  color: var(--landing-color-text-muted);
}

.footerText + .footerText {
  margin-top: var(--landing-space-2);
}

.footerMuted {
  color: var(--landing-color-border-default);
}

.footerLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--landing-space-2);
}

.footerLinkRow,
.footerActionRow {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footerLink,
.footerLink:link,
.footerLink:visited,
.footerLink:active {
  color: currentColor;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--landing-duration-base) ease;
}

.footerLink:hover {
  color: var(--landing-color-text-secondary);
}

.footerLink:focus-visible {
  outline: 2px solid rgba(94, 81, 70, 0.28);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.footerLoginLink {
  margin-top: var(--landing-space-4);
}

.legalShell {
  padding:
    var(--landing-space-8)
    var(--landing-page-padding-x)
    var(--landing-space-8)
    var(--landing-hero-shift-x);
}

.legalCard {
  width: min(760px, 100%);
  margin: 0 auto 0 0;
  border: 1px solid var(--landing-color-border-default);
  border-left: 4px solid var(--landing-color-primary-700);
  border-radius: var(--landing-radius-lg);
  background: var(--landing-color-bg-surface);
  box-shadow: var(--landing-shadow-sm);
  padding: var(--landing-space-8);
  display: grid;
  gap: var(--landing-space-6);
}

.legalCard--plain {
  border: none;
  border-left: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.legalCard--centered {
  margin: 0 auto;
}

.legalShell--centered {
  padding:
    var(--landing-space-12)
    var(--landing-page-padding-x)
    var(--landing-space-8)
    var(--landing-page-padding-x);
}

.legalShell--leftOffset {
  padding:
    calc(var(--landing-space-12) + 50px)
    var(--landing-page-padding-x)
    var(--landing-space-8)
    200px;
}

.legalShell--privacyOffset {
  padding:
    var(--landing-space-12)
    var(--landing-page-padding-x)
    var(--landing-space-8)
    190px;
}

.legalEyebrow {
  margin-bottom: 0;
  font-size: var(--landing-text-sm);
}

.legalTitle {
  margin: 0;
  font-family: var(--landing-font-display), Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-tight);
  color: var(--landing-color-text-primary);
}

.legalTitle--headerFont {
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
}

.legalSection {
  display: grid;
  gap: var(--landing-space-2);
}

.legalDocument {
  max-width: 900px;
}

.legalSectionTitle,
.legalMeta {
  margin: 0;
  color: var(--landing-color-text-primary);
  line-height: var(--landing-leading-relaxed);
}

.legalSectionTitle {
  font-size: var(--landing-text-sm);
  font-weight: var(--landing-weight-semibold);
}

.legalAddress {
  font-size: var(--landing-text-sm);
  font-style: normal;
  color: var(--landing-color-text-secondary);
  line-height: var(--landing-leading-relaxed);
}

.legalMeta {
  font-size: var(--landing-text-sm);
}

.legalSubsection {
  display: grid;
  gap: var(--landing-space-2);
}

.legalSubheading {
  margin: var(--landing-space-2) 0 0;
  font-size: var(--landing-text-sm);
  font-weight: var(--landing-weight-medium);
  color: var(--landing-color-text-primary);
  line-height: var(--landing-leading-relaxed);
}

.privacyList {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-text-sm);
  line-height: var(--landing-leading-relaxed);
}

.privacyList li + li {
  margin-top: var(--landing-space-1);
}

.legalActions {
  padding-top: var(--landing-space-2);
}

.legalActions .btnSecondary {
  min-height: 2.5rem;
  padding: var(--landing-space-2) var(--landing-space-5);
  font-size: var(--landing-text-sm);
}

.loginShell {
  display: grid;
  place-items: center;
  padding: var(--landing-space-8) var(--landing-space-4);
}

.loginCard {
  width: min(520px, 100%);
  border: 1px solid var(--landing-color-border-default);
  border-left: 4px solid var(--landing-color-primary-700);
  border-radius: var(--landing-radius-md);
  background: var(--landing-color-bg-surface);
  box-shadow: var(--landing-shadow-sm);
  padding: var(--landing-space-6);
  display: grid;
  gap: var(--landing-space-4);
}

.loginTitle {
  margin: 0;
  font-family: var(--landing-font-display), Georgia, serif;
  font-size: var(--landing-text-2xl);
  font-weight: var(--landing-weight-semibold);
  line-height: var(--landing-leading-tight);
  color: var(--landing-color-text-primary);
}

.loginCopy {
  margin: 0;
  color: var(--landing-color-text-secondary);
  line-height: var(--landing-leading-relaxed);
}

.loginForm {
  display: grid;
  gap: var(--landing-space-4);
}

.loginField {
  display: grid;
  gap: var(--landing-space-2);
}

.loginLabel {
  font-size: var(--landing-text-sm);
  font-weight: var(--landing-weight-medium);
  color: var(--landing-color-text-primary);
}

.loginInput {
  width: 100%;
  padding: var(--landing-space-3) var(--landing-space-4);
  border: 1.5px solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-md);
  background: var(--landing-color-bg-surface);
  color: var(--landing-color-text-primary);
  font-family: var(--landing-font-body), "Segoe UI", sans-serif;
  font-size: var(--landing-text-base);
  outline: none;
  transition:
    border-color var(--landing-duration-base) ease,
    box-shadow var(--landing-duration-base) ease;
}

.loginInput:focus {
  border-color: var(--landing-color-primary-600);
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.15);
}

.loginActions {
  display: flex;
  justify-content: flex-start;
}

.secondaryLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: var(--landing-space-3) var(--landing-space-5);
  border: 1px solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-md);
  color: var(--landing-color-text-secondary);
  background: transparent;
  text-decoration: none;
  font-size: var(--landing-text-base);
  font-weight: var(--landing-weight-semibold);
  transition:
    border-color var(--landing-duration-base) ease,
    color var(--landing-duration-base) ease;
}

.secondaryLink:hover {
  border-color: var(--landing-color-primary-700);
  color: var(--landing-color-primary-700);
}

.secondaryLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 107, 92, 0.15);
}

@media (max-width: 1180px) {
  .siteHeaderActions {
    grid-column: 1;
    justify-self: start;
  }
}

@media (min-width: 900px) {
  .howStepGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 960px) {
  .heroShell {
    grid-template-columns: 1fr;
    gap: var(--landing-space-6);
  }

  .heroDecisionRail {
    width: 100%;
    max-width: 42rem;
    justify-self: start;
    margin-top: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--landing-mobile-padding-x);
  }

  .heroInner {
    padding-left: var(--landing-mobile-padding-x);
    padding-right: var(--landing-mobile-padding-x);
  }

  .problemSection {
    margin-top: 0;
  }

  .heroHeadline {
    font-size: var(--landing-text-2xl);
  }

  .heroHeadlinePrimary,
  .heroHeadlineSecondary {
    white-space: normal;
  }

  .heroSublineChunk {
    white-space: normal;
  }

  .heroPromptList {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ctaFormRow {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .ctaFieldLabel {
    width: 100%;
  }

  .footerLinks {
    flex-wrap: wrap;
    justify-content: center;
  }

  .legalShell {
    padding: var(--landing-space-8) var(--landing-mobile-padding-x);
  }

  .legalShell--leftOffset {
    padding: var(--landing-space-8) var(--landing-mobile-padding-x);
  }

  .legalShell--privacyOffset {
    padding: var(--landing-space-8) var(--landing-mobile-padding-x);
  }

  .emailInput,
  .textarea,
  .btnAccent,
  .legalCard {
    width: 100%;
  }

  .legalCard {
    padding: var(--landing-space-6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btnAccent,
  .btnSecondary,
  .secondaryLink,
  .emailInput,
  .textarea,
  .loginInput {
    transition-duration: 0.01ms !important;
  }
}
