/* DARK landing page 2.10.3 — monochrome concept implementation. */

#heroFrame.darkLanding {
  --landing-bg: #030303;
  --landing-panel: #0a0a0a;
  --landing-panel-soft: #0d0d0d;
  --landing-text: #f4f4f2;
  --landing-muted: rgba(244, 244, 242, .62);
  --landing-faint: rgba(244, 244, 242, .38);
  --landing-line: rgba(255, 255, 255, .14);
  --landing-line-strong: rgba(255, 255, 255, .28);
  --landing-inverse: #080808;
  --landing-radius: 16px;
  --landing-button-radius: 11px;
  --landing-max: 1280px;
  position: relative;
  min-height: 100vh;
  padding-top: 0 !important;
  overflow: clip;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, .055), transparent 26rem),
    radial-gradient(circle at 20% 45%, rgba(255, 255, 255, .025), transparent 24rem),
    var(--landing-bg);
  color: var(--landing-text);
  isolation: isolate;
}

#heroFrame.darkLanding::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 72%);
}

#heroFrame.darkLanding main {
  width: min(calc(100% - 40px), var(--landing-max)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

#heroFrame.darkLanding a { color: inherit; }

/* Header */
body.home-mode .darkTopbar--landing,
body:not(.auth-mode):not(.chat-mode) .darkTopbar--landing {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: min(calc(100% - 40px), var(--landing-max)) !important;
  min-height: 86px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 80 !important;
}

.darkTopbar--landing .darkTopbar__brand {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 150px !important;
  padding: 0 !important;
}

.darkTopbar--landing .darkTopbar__wordmark {
  color: var(--landing-text, #f4f4f2) !important;
  font-size: 21px !important;
  font-weight: 430 !important;
  letter-spacing: .48em !important;
  line-height: 1 !important;
}

.darkTopbar--landing .darkTopbar__nav {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin-left: auto !important;
}

.darkTopbar--landing .darkTopbar__menu {
  display: flex !important;
  align-items: center !important;
  gap: clamp(20px, 2.6vw, 42px) !important;
  position: static !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.darkTopbar--landing .darkTopbar__link {
  padding: 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--landing-muted, rgba(244,244,242,.62)) !important;
  font-size: 14px !important;
  font-weight: 480 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color .18s ease !important;
}

.darkTopbar--landing .darkTopbar__link:hover,
.darkTopbar--landing .darkTopbar__link:focus-visible {
  color: var(--landing-text, #f4f4f2) !important;
  background: transparent !important;
}

.darkTopbar--landing .darkTopbar__link--login { display: none !important; }

.darkTopbar--landing .darkTopbar__landingCta {
  min-height: 42px !important;
  padding: 0 18px !important;
  gap: 18px !important;
  border: 1px solid var(--landing-line-strong, rgba(255,255,255,.28)) !important;
  border-radius: var(--landing-button-radius, 11px) !important;
  background: transparent !important;
  color: var(--landing-text, #f4f4f2) !important;
  font-size: 14px !important;
  font-weight: 520 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

.darkTopbar--landing .darkTopbar__landingCta:hover {
  background: var(--landing-text, #f4f4f2) !important;
  color: var(--landing-inverse, #080808) !important;
  transform: none !important;
}

.darkTopbar--landing .darkTopbar__burger { display: none !important; }

/* Hero */
.darkLandingHero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr);
  gap: clamp(22px, 3.6vw, 62px);
  align-items: center;
  padding: 48px 0 50px;
}

.darkLandingHero__copy { position: relative; z-index: 3; max-width: 650px; }

.darkLandingEyebrow {
  margin: 0 0 22px;
  color: var(--landing-faint);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.darkLandingTitle {
  margin: 0;
  max-width: 700px;
  color: var(--landing-text);
  font-size: clamp(46px, 5vw, 75px);
  font-weight: 330;
  letter-spacing: -.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.darkLandingTitle strong { font-weight: 430; }

.darkLandingLead {
  margin: 24px 0 0;
  color: var(--landing-muted);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 390;
  letter-spacing: -.018em;
}

.darkLandingDescription {
  margin: 25px 0 0;
  max-width: 570px;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.72;
}

.darkLandingActions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.darkLandingButton {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid var(--landing-line-strong);
  border-radius: var(--landing-button-radius);
  color: var(--landing-text);
  background: transparent;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.darkLandingButton--primary {
  border-color: var(--landing-text);
  background: var(--landing-text);
  color: var(--landing-inverse);
}

.darkLandingButton:hover,
.darkLandingButton:focus-visible {
  border-color: var(--landing-text);
  background: var(--landing-text);
  color: var(--landing-inverse);
  outline: none;
}

.darkLandingButton--primary:hover,
.darkLandingButton--primary:focus-visible {
  background: transparent;
  color: var(--landing-text);
}

.darkLandingButton__arrow { font-size: 19px; line-height: 1; }

.darkLandingHero__visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.darkLandingHero__visual::before {
  content: "";
  position: absolute;
  inset: 12% 5% 9%;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(700px) rotateX(63deg) translateY(26%);
  transform-origin: bottom;
  opacity: .72;
}

.darkLandingHero__image {
  position: relative;
  z-index: 2;
  width: min(760px, 112%);
  max-width: none;
  margin-left: -4%;
  filter: contrast(1.04) brightness(1.08);
  mask-image:
    linear-gradient(to right, transparent 0, #000 10%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.darkLandingHero__status {
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--landing-line);
  border-radius: 9px;
  background: rgba(4,4,4,.72);
  color: var(--landing-muted);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.darkLandingHero__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,.7);
}

/* Shared landing sections */
.darkLandingSection { padding: 54px 0; }

.darkLandingSection__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.darkLandingSection__kicker {
  margin: 0;
  color: var(--landing-faint);
  font-size: 14px;
  font-weight: 450;
}

.darkLandingSection__title {
  margin: 0;
  max-width: 750px;
  color: var(--landing-text);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 340;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.darkLandingSection__copy {
  margin: 0;
  max-width: 540px;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.7;
}

.darkContrastGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.darkContrastCard {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 22px 25px 20px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.darkContrastCard__top {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--landing-faint);
  font-size: 13px;
}

.darkContrastCard__top::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--landing-line);
}

.darkContrastCard__label {
  margin: 28px 0 5px;
  color: var(--landing-text);
  font-size: 15px;
}

.darkContrastCard__value {
  margin: 0;
  min-height: 62px;
  color: var(--landing-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.42;
}

.darkContrastCard__divider {
  height: 1px;
  margin: 22px 0 0;
  background: var(--landing-line);
}

.darkContrastCard__icon {
  width: 42px;
  height: 42px;
  margin-top: auto;
  color: var(--landing-text);
}

.darkContrastCard__icon svg { width: 100%; height: 100%; stroke: currentColor; }

.darkLandingQuote {
  position: relative;
  overflow: hidden;
  margin: 8px 0 0;
  min-height: 185px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,.07), transparent 29%),
    radial-gradient(ellipse at 90% 50%, rgba(255,255,255,.07), transparent 29%),
    rgba(255,255,255,.018);
  text-align: center;
}

.darkLandingQuote::before,
.darkLandingQuote::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 140px;
  opacity: .22;
  background-image: radial-gradient(circle, #fff 0 1px, transparent 1.25px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse, #000, transparent 68%);
  transform: rotate(-8deg);
}

.darkLandingQuote::before { left: -5%; }
.darkLandingQuote::after { right: -5%; transform: rotate(8deg); }

.darkLandingQuote blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 760px;
  color: var(--landing-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 400;
  line-height: 1.24;
}

.darkLandingQuote blockquote::before {
  content: "“";
  display: block;
  height: 30px;
  margin-bottom: 5px;
  color: var(--landing-muted);
  font-size: 50px;
  line-height: .8;
}

.darkBenefitGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.darkBenefit {
  min-height: 138px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 22px;
  border-right: 1px solid var(--landing-line);
}

.darkBenefit:last-child { border-right: 0; }
.darkBenefit svg { width: 46px; height: 46px; fill: none; stroke: currentColor; }
.darkBenefit strong { display: block; margin-bottom: 6px; color: var(--landing-text); font-size: 14px; font-weight: 570; }
.darkBenefit p { margin: 0; color: var(--landing-muted); font-size: 12px; line-height: 1.5; }

.darkTechGrid,
.darkAudienceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.darkTechCard,
.darkAudienceCard {
  padding: 25px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: rgba(255,255,255,.018);
}

.darkTechCard__index {
  color: var(--landing-faint);
  font-size: 12px;
  letter-spacing: .14em;
}

.darkTechCard h3,
.darkAudienceCard h3 {
  margin: 30px 0 10px;
  color: var(--landing-text);
  font-size: 21px;
  font-weight: 430;
  letter-spacing: -.025em;
}

.darkTechCard p,
.darkAudienceCard p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.68;
}

.darkAudienceCard { min-height: 190px; }
.darkAudienceCard h3 { margin-top: 0; }

.darkFaqList { border-top: 1px solid var(--landing-line); }

.darkFaqItem {
  border-bottom: 1px solid var(--landing-line);
  padding: 0;
}

.darkFaqItem summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 54px 22px 0;
  color: var(--landing-text);
  font-size: 18px;
  font-weight: 430;
}

.darkFaqItem summary::-webkit-details-marker { display: none; }
.darkFaqItem summary::after { content: "+"; position: absolute; right: 8px; top: 18px; color: var(--landing-muted); font-size: 26px; font-weight: 300; }
.darkFaqItem[open] summary::after { content: "−"; }
.darkFaqItem p { max-width: 820px; margin: -2px 0 22px; color: var(--landing-muted); font-size: 14px; line-height: 1.7; }

.darkLandingCta {
  margin: 48px 0 24px;
  padding: 14px 16px 14px 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: rgba(255,255,255,.024);
}

.darkLandingCta__icon { width: 34px; height: 34px; color: var(--landing-text); }
.darkLandingCta__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; }
.darkLandingCta p { margin: 0; color: var(--landing-muted); font-size: 14px; }
.darkLandingCta p strong { color: var(--landing-text); font-weight: 540; }

/* Footer */
.darkFooter--landing {
  width: min(calc(100% - 40px), var(--landing-max, 1280px)) !important;
  margin: 0 auto !important;
  border-top: 0 !important;
  color: var(--landing-muted, rgba(244,244,242,.62)) !important;
}

.darkFooter--landing .footer-inner {
  width: 100% !important;
  min-height: 92px !important;
  padding: 20px 0 28px !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) auto auto !important;
  gap: 30px !important;
  border-top: 1px solid var(--landing-line, rgba(255,255,255,.14)) !important;
}

.darkFooter--landing .footer-brand { display: flex; align-items: center; gap: 28px; min-width: 0; }
.darkFooter--landing .footer-wordmark { color: var(--landing-text, #f4f4f2); font-size: 14px; letter-spacing: .48em; white-space: nowrap; }
.darkFooter--landing .footer-tagline { color: var(--landing-muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.darkFooter--landing .footer-links { gap: 28px !important; }
.darkFooter--landing .footer-meta { display: flex; align-items: center; gap: 16px; justify-self: end; white-space: nowrap; }
.darkFooter--landing .footer-version { font-size: 11px !important; color: var(--landing-faint) !important; }
.darkFooter--landing .footer-locale { color: var(--landing-muted); font-size: 12px; }

/* White monochrome variant retained for users who selected light mode earlier. */
html[data-theme="light"] #heroFrame.darkLanding {
  --landing-bg: #f4f4f1;
  --landing-panel: #ffffff;
  --landing-panel-soft: #ecece8;
  --landing-text: #111111;
  --landing-muted: rgba(17,17,17,.62);
  --landing-faint: rgba(17,17,17,.42);
  --landing-line: rgba(17,17,17,.14);
  --landing-line-strong: rgba(17,17,17,.30);
  --landing-inverse: #ffffff;
  background: #f4f4f1 !important;
}

html[data-theme="light"] #heroFrame.darkLanding::before {
  background-image:
    linear-gradient(rgba(0,0,0,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.018) 1px, transparent 1px);
}

html[data-theme="light"] .darkTopbar--landing .darkTopbar__wordmark,
html[data-theme="light"] .darkTopbar--landing .darkTopbar__link,
html[data-theme="light"] .darkTopbar--landing .darkTopbar__landingCta { color: #111 !important; }
html[data-theme="light"] .darkTopbar--landing .darkTopbar__landingCta:hover { background: #111 !important; color: #fff !important; }
html[data-theme="light"] .darkLandingHero__visual { border-radius: 22px; background: #030303; overflow: hidden; }
html[data-theme="light"] .darkLandingHero__status { color: rgba(255,255,255,.68); }

@media (max-width: 1080px) {
  .darkTopbar--landing .darkTopbar__menu { gap: 20px !important; }
  .darkTopbar--landing .darkTopbar__link { font-size: 13px !important; }
  .darkLandingHero { grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr); }
  .darkLandingHero__visual { min-height: 500px; }
  .darkBenefitGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .darkBenefit:nth-child(2) { border-right: 0; }
  .darkBenefit:nth-child(-n+2) { border-bottom: 1px solid var(--landing-line); }
}

@media (max-width: 900px) {
  body.home-mode .darkTopbar--landing,
  body:not(.auth-mode):not(.chat-mode) .darkTopbar--landing { min-height: 72px !important; }
  .darkTopbar--landing .darkTopbar__menu {
    position: absolute !important;
    top: 62px !important;
    left: 0 !important;
    right: 0 !important;
    display: grid !important;
    gap: 2px !important;
    padding: 12px !important;
    border: 1px solid var(--landing-line) !important;
    border-radius: 14px !important;
    background: rgba(6,6,6,.97) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,.42) !important;
  }
  .darkTopbar--landing .darkTopbar__menu[hidden] { display: none !important; }
  .darkTopbar--landing .darkTopbar__link { padding: 12px !important; border-radius: 9px !important; }
  .darkTopbar--landing .darkTopbar__link:hover { background: rgba(255,255,255,.06) !important; }
  .darkTopbar--landing .darkTopbar__link--login { display: block !important; }
  .darkTopbar--landing .darkTopbar__landingCta { display: none !important; }
  .darkTopbar--landing .darkTopbar__burger { display: inline-flex !important; color: var(--landing-text) !important; }
  html[data-theme="light"] .darkTopbar--landing .darkTopbar__menu { background: rgba(244,244,241,.98) !important; }
  html[data-theme="light"] .darkTopbar--landing .darkTopbar__link:hover { background: rgba(0,0,0,.05) !important; }

  .darkLandingHero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 54px 0 20px;
  }
  .darkLandingHero__copy { max-width: 720px; }
  .darkLandingHero__visual { min-height: 480px; margin-top: -30px; }
  .darkLandingHero__image { width: min(820px, 108%); margin-left: 0; }
  .darkLandingSection__head { display: grid; align-items: start; }
  .darkContrastGrid, .darkTechGrid, .darkAudienceGrid { grid-template-columns: 1fr; }
  .darkContrastCard { min-height: 300px; }
}

@media (max-width: 680px) {
  #heroFrame.darkLanding main,
  body.home-mode .darkTopbar--landing,
  body:not(.auth-mode):not(.chat-mode) .darkTopbar--landing,
  .darkFooter--landing { width: min(calc(100% - 24px), var(--landing-max)) !important; }

  .darkTopbar--landing .darkTopbar__brand { min-width: 0 !important; }
  .darkTopbar--landing .darkTopbar__wordmark { font-size: 18px !important; }
  .darkLandingHero { padding-top: 40px; }
  .darkLandingTitle { font-size: clamp(39px, 11vw, 58px); }
  .darkLandingLead { font-size: 18px; }
  .darkLandingDescription { font-size: 15px; }
  .darkLandingActions { display: grid; grid-template-columns: 1fr; }
  .darkLandingButton { width: 100%; }
  .darkLandingHero__visual { min-height: 365px; margin-top: -10px; }
  .darkLandingHero__image { width: 120%; }
  .darkLandingHero__status { right: 4%; bottom: 8%; }
  .darkLandingSection { padding: 40px 0; }
  .darkContrastCard { min-height: 286px; padding: 20px; }
  .darkLandingQuote { min-height: 210px; padding: 28px 18px; }
  .darkBenefitGrid { grid-template-columns: 1fr; }
  .darkBenefit { border-right: 0; border-bottom: 1px solid var(--landing-line); }
  .darkBenefit:last-child { border-bottom: 0; }
  .darkBenefit:nth-child(-n+2) { border-bottom: 1px solid var(--landing-line); }
  .darkLandingCta { grid-template-columns: auto 1fr; padding: 18px; }
  .darkLandingCta .darkLandingButton { grid-column: 1 / -1; }
  .darkFooter--landing .footer-inner { grid-template-columns: 1fr !important; gap: 16px !important; }
  .darkFooter--landing .footer-brand { display: grid; gap: 10px; }
  .darkFooter--landing .footer-tagline { white-space: normal; }
  .darkFooter--landing .footer-links { justify-self: start !important; justify-content: flex-start !important; gap: 14px !important; }
  .darkFooter--landing .footer-meta { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  #heroFrame.darkLanding *,
  .darkTopbar--landing * { scroll-behavior: auto !important; transition: none !important; }
}

/* High-specificity resets for the legacy landing selectors kept for auth/runtime compatibility. */
body.home-mode .darkTopbar--landing,
body:not(.auth-mode):not(.chat-mode) .darkTopbar--landing {
  transform: none !important;
}

#heroFrame.darkLanding h1.darkLandingTitle {
  margin: 0 !important;
  max-width: 700px !important;
  color: var(--landing-text) !important;
  font-size: clamp(46px, 5vw, 75px) !important;
  font-weight: 330 !important;
  letter-spacing: -.045em !important;
  line-height: 1.08 !important;
  text-transform: none !important;
  white-space: normal !important;
}

#heroFrame.darkLanding h1.darkLandingTitle strong {
  font-weight: 430 !important;
}

@media (max-width: 680px) {
  #heroFrame.darkLanding h1.darkLandingTitle {
    font-size: clamp(39px, 11vw, 58px) !important;
  }
}

#heroFrame.darkLanding h1.darkLandingTitle {
  font-size: clamp(46px, 4.45vw, 64px) !important;
}

#heroFrame.darkLanding .darkLandingHero__visual {
  margin: 0 !important;
}

#heroFrame.darkLanding .darkLandingHero__image {
  height: auto !important;
}

#heroFrame.darkLanding a.darkLandingButton--primary,
#heroFrame.darkLanding a.darkLandingButton--primary:visited {
  color: var(--landing-inverse) !important;
}

#heroFrame.darkLanding a.darkLandingButton--primary:hover,
#heroFrame.darkLanding a.darkLandingButton--primary:focus-visible {
  color: var(--landing-text) !important;
}

@media (min-width: 901px) {
  .darkLandingHero {
    grid-template-columns: minmax(0, 1.02fr) minmax(500px, .98fr);
    gap: clamp(18px, 2.4vw, 38px);
  }
  #heroFrame.darkLanding h1.darkLandingTitle {
    font-size: clamp(48px, 4.15vw, 60px) !important;
  }
}
