/* Reference-led landing page theme. Dashboard styles remain in styles.css. */
:root {
  --ref-black: #050706;
  --ref-panel: #090c0a;
  --ref-panel-2: #0c110e;
  --ref-line: rgba(226, 238, 230, 0.14);
  --ref-line-soft: rgba(226, 238, 230, 0.08);
  --ref-ink: #f2f5f3;
  --ref-muted: rgba(226, 238, 230, 0.58);
  --ref-green: #31f889;
  --ref-green-soft: rgba(49, 248, 137, 0.1);
  --ref-max: 1180px;
  --ref-mono: "SFMono-Regular", "Roboto Mono", Menlo, Monaco, Consolas, monospace;
}

body.signed-out {
  background: var(--ref-black);
  color: var(--ref-ink);
}

body.signed-out .main {
  min-width: 0;
  padding: 0;
  background: var(--ref-black);
}

.signed-out .landing-page {
  position: relative;
  overflow: clip;
  background: var(--ref-black);
  color: var(--ref-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.signed-out .landing-page h1,
.signed-out .landing-page h2,
.signed-out .landing-page .eyebrow,
.signed-out .landing-page .button,
.signed-out .landing-page code,
.signed-out .landing-page pre,
.signed-out .landing-page .model-name,
.signed-out .landing-page .landing-wordmark strong,
.signed-out .landing-page .landing-nav-link {
  font-family: var(--ref-mono);
  letter-spacing: 0;
}

.signed-out .landing-page a:focus-visible,
.signed-out .landing-page button:focus-visible,
.signed-out .landing-page summary:focus-visible,
.signed-out .landing-page input:focus-visible,
.signed-out .landing-page select:focus-visible,
.signed-out .landing-page textarea:focus-visible {
  outline: 2px solid var(--ref-green);
  outline-offset: 3px;
}

/* First-funding offer */

.signed-out .landing-page .first-funding-callout {
  position: relative;
  z-index: 41;
  width: 100%;
  border-bottom: 1px solid rgba(49, 248, 137, 0.26);
  background:
    linear-gradient(90deg, rgba(49, 248, 137, 0.045), rgba(49, 248, 137, 0.13), rgba(49, 248, 137, 0.045)),
    #070a08;
}

.signed-out .landing-page .first-funding-callout-inner {
  display: flex;
  width: min(var(--ref-max), calc(100% - 48px));
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-inline: auto;
  padding-block: 8px;
}

.signed-out .landing-page .first-funding-callout-label {
  flex: 0 0 auto;
  border: 1px solid rgba(49, 248, 137, 0.4);
  color: var(--ref-green);
  font-family: var(--ref-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 6px 8px;
  text-transform: uppercase;
}

.signed-out .landing-page .first-funding-callout p {
  margin: 0;
  color: rgba(242, 245, 243, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.signed-out .landing-page .first-funding-callout strong {
  color: var(--ref-ink);
  font-weight: 700;
}

.signed-out .landing-page .first-funding-callout-copy-mobile,
.signed-out .landing-page .first-funding-callout-link-mobile {
  display: none;
}

.signed-out .landing-page .first-funding-callout-link {
  flex: 0 0 auto;
  color: var(--ref-green);
  font-family: var(--ref-mono);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.signed-out .landing-page .first-funding-callout-link:hover {
  color: #74ffad;
}

.signed-out .landing-page .mobile-conversion-dock {
  display: none;
}

/* Navigation */

.signed-out .landing-page .landing-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--ref-line-soft);
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(18px);
}

.signed-out .landing-page .landing-nav-inner {
  width: min(var(--ref-max), calc(100% - 48px));
  min-height: 72px;
  padding: 0;
}

.signed-out .landing-page .landing-wordmark {
  gap: 12px;
}

.signed-out .landing-page .landing-wordmark-home {
  gap: 0;
}

.signed-out .landing-page .landing-wordmark-icon {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(49, 248, 137, 0.52);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(49, 248, 137, 0.12), transparent 48%),
    #070b08;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 0 24px rgba(49, 248, 137, 0.07);
}

.signed-out .landing-page .landing-wordmark-icon::before,
.signed-out .landing-page .landing-wordmark-icon::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--ref-green);
  content: "";
  opacity: 0.72;
}

.signed-out .landing-page .landing-wordmark-icon::before {
  top: 3px;
  left: 3px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.signed-out .landing-page .landing-wordmark-icon::after {
  right: 3px;
  bottom: 3px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.signed-out .landing-page .landing-wordmark-glyph {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.signed-out .landing-page .landing-wordmark-glyph span {
  color: var(--ref-green);
}

.signed-out .landing-page .landing-wordmark-copy {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.signed-out .landing-page .landing-wordmark-name {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.signed-out .landing-page .landing-wordmark-parent {
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.signed-out .landing-page .landing-actions {
  gap: 25px;
}

.signed-out .landing-page .landing-more-panel {
  border-color: var(--ref-line);
  border-radius: 0;
  background: #070a08;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.signed-out .landing-page .landing-more-panel .landing-nav-link {
  border-radius: 0;
}

.signed-out .landing-page .landing-more-panel .landing-nav-link:hover,
.signed-out .landing-page .landing-more-panel .landing-nav-link:focus-visible {
  background: rgba(49, 248, 137, 0.055);
  color: var(--ref-green);
}

.signed-out .landing-page .landing-nav-link {
  color: rgba(242, 245, 243, 0.68);
  font-size: 11px;
  font-weight: 600;
}

.signed-out .landing-page .landing-nav-link:hover,
.signed-out .landing-page .landing-wordmark-name:hover,
.signed-out .landing-page .landing-wordmark-parent:hover {
  color: var(--ref-green);
}

.signed-out .landing-page .landing-nav-cta {
  min-height: 38px;
  padding: 9px 14px;
}

/* Buttons and common type */
.signed-out .landing-page .button {
  min-height: 43px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.signed-out .landing-page .button.primary {
  border-color: var(--ref-green);
  background: var(--ref-green);
  color: #031108;
}

.signed-out .landing-page .button.primary:hover {
  border-color: #74ffad;
  background: #74ffad;
  color: #031108;
  transform: translateY(-1px);
}

.signed-out .landing-page .button.secondary {
  border-color: var(--ref-line);
  background: rgba(5, 7, 6, 0.58);
  color: rgba(242, 245, 243, 0.78);
}

.signed-out .landing-page .button.secondary:hover {
  border-color: rgba(49, 248, 137, 0.5);
  background: var(--ref-green-soft);
  color: var(--ref-green);
  transform: translateY(-1px);
}

.signed-out .landing-page .eyebrow {
  color: var(--ref-green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.signed-out .landing-page .eyebrow::before {
  content: "[";
  margin-right: 4px;
}

.signed-out .landing-page .eyebrow::after {
  content: "]";
  margin-left: 4px;
}

.signed-out .landing-page .section-heading {
  gap: 17px;
}

.signed-out .landing-page .section-heading h2,
.signed-out .landing-page .auth-heading h2 {
  margin: 0;
  color: var(--ref-ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.06;
}

.signed-out .landing-page .section-heading > p:not(.eyebrow),
.signed-out .landing-page .auth-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ref-muted);
  font-size: 17px;
  line-height: 1.65;
}

.signed-out .landing-page .docs-section-link {
  color: var(--ref-green);
  font-weight: 700;
  text-underline-offset: 3px;
}

.signed-out .landing-page .docs-section-link:hover {
  color: #74ffad;
}

/* Hero */
.signed-out .landing-page .conversion-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 720px;
  margin: 0;
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: 90px max(24px, calc((100vw - var(--ref-max)) / 2)) 96px;
}

.signed-out .landing-page .conversion-hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("/static/assets/app/hero-inference-green.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.signed-out .landing-page .conversion-hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.signed-out .landing-page .conversion-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(5, 7, 6, 0.18);
  content: "";
}

.signed-out .landing-page .conversion-hero-copy {
  max-width: 720px;
  gap: 23px;
}

.signed-out .landing-page .conversion-hero h1 {
  max-width: 760px;
  color: var(--ref-ink);
  font-size: clamp(52px, 5.7vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.signed-out .landing-page .hero-headline-line {
  display: block;
}

.signed-out .landing-page .conversion-hero .hero-subheadline {
  max-width: 650px;
  color: rgba(242, 245, 243, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.signed-out .landing-page .conversion-hero .landing-cta {
  align-items: center;
  gap: 11px;
}

.signed-out .landing-page .conversion-hero .landing-cta > .button.primary {
  order: 1;
}

.signed-out .landing-page .conversion-hero .landing-cta .pilot-hero-cta {
  order: 2;
  gap: 8px;
}

.signed-out .landing-page .conversion-hero .landing-cta .button {
  min-height: 45px;
  padding-inline: 17px;
}

.signed-out .landing-page .hero-trust-row {
  display: flex;
  flex: 0 0 100%;
  order: 3;
  gap: 22px;
  color: rgba(242, 245, 243, 0.62);
  font-family: var(--ref-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.signed-out .landing-page .hero-trust-row span:not(:first-child)::before {
  display: none;
  content: none;
}

.signed-out .landing-page .hero-signup {
  position: relative;
}

.signed-out .landing-page .hero-signup::before {
  position: absolute;
  z-index: -1;
  inset: -18px;
  border: 1px solid rgba(49, 248, 137, 0.08);
  content: "";
}

.signed-out .landing-page .hero-signup .auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(49, 248, 137, 0.26);
  border-radius: 0;
  background: rgba(6, 10, 7, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  padding: 26px;
}

.signed-out .landing-page .hero-signup .auth-panel::before {
  display: block;
  margin: -26px -26px 24px;
  border-bottom: 1px solid var(--ref-line-soft);
  color: rgba(49, 248, 137, 0.68);
  content: "●  access.cheaperinference.com";
  font-family: var(--ref-mono);
  font-size: 9px;
  padding: 10px 13px;
}

.signed-out .landing-page .hero-signup .auth-panel-heading h2 {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 25px;
  font-weight: 500;
}

.signed-out .landing-page .hero-signup .auth-panel-heading p:last-child {
  color: var(--ref-muted);
}

.signed-out .landing-page .auth-model-intent {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(49, 248, 137, 0.3);
  background: rgba(49, 248, 137, 0.06);
  padding: 11px 12px;
}

.signed-out .landing-page .auth-model-intent.hidden {
  display: none;
}

.signed-out .landing-page .auth-model-intent span,
.signed-out .landing-page .auth-model-intent small {
  color: rgba(242, 245, 243, 0.58);
  font-family: var(--ref-mono);
  font-size: 9px;
  line-height: 1.45;
}

.signed-out .landing-page .auth-model-intent span {
  color: var(--ref-green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signed-out .landing-page .auth-model-intent strong {
  overflow-wrap: anywhere;
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 14px;
}

.signed-out .landing-page .segmented-control {
  border: 1px solid var(--ref-line-soft);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  padding: 3px;
}

.signed-out .landing-page .segment {
  min-height: 38px;
  border-radius: 0;
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 11px;
}

.signed-out .landing-page .segment.active {
  background: var(--ref-green);
  color: #031108;
  box-shadow: none;
}

.signed-out .landing-page label span {
  color: rgba(242, 245, 243, 0.68);
  font-family: var(--ref-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.signed-out .landing-page input,
.signed-out .landing-page textarea,
.signed-out .landing-page select {
  min-height: 44px;
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.38);
  color: var(--ref-ink);
}

.signed-out .landing-page input:focus,
.signed-out .landing-page textarea:focus,
.signed-out .landing-page select:focus {
  border-color: var(--ref-green);
  box-shadow: 0 0 0 1px var(--ref-green);
}

.signed-out .landing-page input[aria-invalid="true"] {
  border-color: #ff7b7b;
  box-shadow: 0 0 0 1px rgba(255, 123, 123, 0.76);
  outline-color: #ff7b7b;
}

.signed-out .landing-page .auth-password-toggle {
  border-left-color: var(--ref-line);
  color: var(--ref-muted);
  background: rgba(7, 13, 9, 0.96);
  font-family: var(--ref-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.signed-out .landing-page .auth-password-toggle:hover,
.signed-out .landing-page .auth-password-toggle:focus-visible,
.signed-out .landing-page .auth-password-toggle[aria-pressed="true"] {
  color: var(--ref-green);
}

.signed-out .landing-page .auth-password-toggle:focus-visible {
  box-shadow: inset 0 0 0 1px var(--ref-green);
}

.signed-out .landing-page .auth-password-hint {
  color: rgba(242, 245, 243, 0.48);
  font-family: var(--ref-mono);
  font-size: 9px;
}

.signed-out .landing-page .auth-payment-note {
  margin: -5px 0 0;
  color: rgba(242, 245, 243, 0.56);
  font-family: var(--ref-mono);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.signed-out .landing-page .signup-path {
  border-top-color: var(--ref-line-soft);
}

.signed-out .landing-page .signup-path span {
  grid-template-columns: max-content max-content;
  justify-content: center;
  gap: 9px;
  color: rgba(242, 245, 243, 0.42);
  font-family: var(--ref-mono);
  white-space: nowrap;
}

.signed-out .landing-page .signup-path b {
  border-color: rgba(49, 248, 137, 0.36);
  border-radius: 0;
  color: var(--ref-green);
}

@media (min-width: 901px) {
  .signed-out .landing-page .hero-signup .auth-panel.signup-attention {
    animation: ref-signup-attention 900ms ease-out;
  }
}

@keyframes ref-signup-attention {
  0%, 100% {
    border-color: rgba(49, 248, 137, 0.26);
  }
  42% {
    border-color: var(--ref-green);
    box-shadow: 0 0 0 5px rgba(49, 248, 137, 0.1), 0 30px 80px rgba(0, 0, 0, 0.5);
  }
}

/* Shared section framing */
.signed-out .landing-page .landing-assurance-row,
.signed-out .landing-page .landing-pricing-proof,
.signed-out .landing-page .landing-pilot-section,
.signed-out .landing-page .landing-operational-proof,
.signed-out .landing-page .landing-how-section,
.signed-out .landing-page .landing-switch-section,
.signed-out .landing-page .landing-keak-section,
.signed-out .landing-page .savings-section,
.signed-out .landing-page .landing-final-cta,
.signed-out .landing-page .landing-docs-section,
.signed-out .landing-page .landing-footer {
  width: min(var(--ref-max), calc(100% - 48px));
  margin-inline: auto;
}

/* Verifiable platform assurances */
.signed-out .landing-page .landing-assurance-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr 1fr;
  border-top: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
  background: rgba(49, 248, 137, 0.018);
}

.signed-out .landing-page .landing-assurance-row > * {
  display: flex;
  min-width: 0;
  min-height: 68px;
  align-items: center;
  gap: 9px;
  color: rgba(242, 245, 243, 0.62);
  font-family: var(--ref-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  padding: 14px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.signed-out .landing-page .landing-assurance-row > * + * {
  border-left: 1px solid var(--ref-line-soft);
}

.signed-out .landing-page .landing-assurance-row > *::before {
  flex: 0 0 auto;
  color: var(--ref-green);
  content: "+";
}

.signed-out .landing-page .landing-assurance-row a {
  color: var(--ref-green);
}

.signed-out .landing-page .landing-assurance-row a:hover,
.signed-out .landing-page .landing-assurance-row a:focus-visible {
  background: rgba(49, 248, 137, 0.05);
  color: var(--ref-ink);
}

/* Pricing product proof */
.signed-out .landing-page .landing-pricing-proof {
  gap: 34px;
  padding: 122px 0 132px;
  scroll-margin-top: 0;
}

.signed-out .landing-page .pricing-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 3vw, 42px);
  align-items: start;
}

.signed-out .landing-page .pricing-section-intro h2 {
  max-width: 740px;
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 500;
}

.signed-out .landing-page .pricing-model-controls {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(280px, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
  align-items: stretch;
  border-top: 1px solid var(--ref-line-soft);
  padding-top: 28px;
}

.signed-out .landing-page .landing-model-search {
  width: 100%;
  min-width: 0;
}

.signed-out .landing-page .landing-model-search input {
  min-height: 46px;
}

.signed-out .landing-page .pricing-model-filter {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(126px, 1fr));
  flex: 0 0 auto;
  align-self: stretch;
  border: 1px solid var(--ref-line);
  background: rgba(255, 255, 255, 0.02);
  padding: 3px;
}

.signed-out .landing-page .pricing-model-filter button {
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  white-space: nowrap;
}

.signed-out .landing-page .pricing-model-filter button:hover {
  color: var(--ref-ink);
}

.signed-out .landing-page .pricing-model-filter button.active {
  background: var(--ref-green);
  color: #031108;
}

.signed-out .landing-page .hero-pricing-shell,
.signed-out .landing-page .landing-pricing-proof .hero-pricing-shell {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: rgba(8, 12, 9, 0.9);
  box-shadow: 18px 18px 0 rgba(49, 248, 137, 0.025);
  padding: 0;
}

.signed-out .landing-page .hero-terminal-bar {
  min-height: 48px;
  border-bottom: 1px solid var(--ref-line-soft);
  padding: 10px 15px;
}

.signed-out .landing-page .hero-terminal-bar .terminal-dots {
  position: relative;
  width: 86px;
  height: auto;
  border-radius: 0;
  background: none;
}

.signed-out .landing-page .hero-terminal-bar .terminal-dots::after {
  color: var(--ref-green);
  content: "●  market.feed";
  font-family: var(--ref-mono);
  font-size: 9px;
  white-space: nowrap;
}

.signed-out .landing-page .pricing-table-meta span,
.signed-out .landing-page .pricing-table-meta button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(242, 245, 243, 0.46);
  font-family: var(--ref-mono);
  font-size: 9px;
  padding: 0;
}

.signed-out .landing-page .pricing-table-meta span + span::before {
  margin-right: 8px;
  color: rgba(49, 248, 137, 0.55);
  content: "/";
}

.signed-out .landing-page .pricing-table-meta .live-pricing-pill {
  min-height: 44px;
  appearance: none;
  color: var(--ref-green);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.signed-out .landing-page .live-pricing-pill::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ref-green);
  box-shadow: 0 0 12px rgba(49, 248, 137, 0.8);
  content: "";
}

.signed-out .landing-page .live-pricing-pill:hover,
.signed-out .landing-page .live-pricing-pill:focus-visible {
  color: var(--ref-white);
}

.signed-out .landing-page .live-pricing-pill:disabled {
  cursor: wait;
  opacity: 0.72;
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row {
  min-height: 74px;
  border-bottom: 1px solid var(--ref-line-soft);
  background: transparent;
  padding: 14px 18px;
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row.header {
  min-height: 48px;
  background: rgba(49, 248, 137, 0.025);
  color: rgba(242, 245, 243, 0.42);
  font-family: var(--ref-mono);
  font-size: 9px;
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row:not(.header):hover {
  background: rgba(49, 248, 137, 0.035);
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-logo {
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: #eef3ef;
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .model-name,
.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .model-price {
  color: var(--ref-ink);
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-lockup small,
.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .reference-price {
  color: rgba(242, 245, 243, 0.38);
}

.signed-out .landing-page .landing-pricing-proof .hero-pricing-table .discount-badge {
  border: 1px solid rgba(49, 248, 137, 0.3);
  border-radius: 0;
  background: var(--ref-green-soft);
  color: var(--ref-green);
  font-family: var(--ref-mono);
}

.signed-out .landing-page .pricing-table-footer {
  min-height: 58px;
  border-top: 0;
  color: rgba(242, 245, 243, 0.4);
  font-family: var(--ref-mono);
  padding: 10px 16px;
}

.signed-out .landing-page .pricing-table-footer-actions .button {
  display: inline-flex;
  height: 43px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.signed-out .landing-page .pricing-table-footer-actions .pricing-table-cta {
  border-color: var(--ref-green);
  color: #031108;
}

/* Pilot strip */
.signed-out .landing-page .landing-pilot-section {
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) auto;
  gap: 36px;
  border: 0;
  border-top: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 58px 0;
}

.signed-out .landing-page .landing-pilot-copy h2 {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
}

.signed-out .landing-page .landing-pilot-copy p:last-child,
.signed-out .landing-page .landing-pilot-details {
  color: var(--ref-muted);
}

.signed-out .landing-page .landing-pilot-details {
  font-family: var(--ref-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.signed-out .landing-page .landing-pilot-details span::before {
  margin-right: 8px;
  color: var(--ref-green);
  content: "+";
}

/* Operational proof */
.signed-out .landing-page .landing-operational-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 72px;
  border-top: 1px solid var(--ref-line-soft);
  border-bottom: 1px solid var(--ref-line-soft);
  padding: 96px 0;
}

.signed-out .landing-page .landing-operational-proof > .section-heading {
  align-self: start;
}

.signed-out .landing-page .operational-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ref-line);
}

.signed-out .landing-page .operational-proof-grid article {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--ref-line);
  padding: 26px 22px;
}

.signed-out .landing-page .operational-proof-grid article:last-child {
  border-right: 0;
}

.signed-out .landing-page .operational-proof-grid article > span {
  color: var(--ref-green);
  font-family: var(--ref-mono);
  font-size: 10px;
}

.signed-out .landing-page .operational-proof-grid h3 {
  margin: 10px 0 0;
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 17px;
  font-weight: 500;
}

.signed-out .landing-page .operational-proof-grid p {
  margin: 0;
  color: var(--ref-muted);
  font-size: 13px;
  line-height: 1.65;
}

.signed-out .landing-page .operational-proof-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--ref-green);
  font-family: var(--ref-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-underline-offset: 4px;
}

/* Why and implementation */
.signed-out .landing-page .landing-how-section {
  gap: 62px;
  padding: 144px 0 120px;
}

.signed-out .landing-page .landing-how-section > .section-heading {
  max-width: 900px;
}

.signed-out .landing-page .how-steps {
  gap: 0;
  border-top: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
}

.signed-out .landing-page .how-steps article {
  position: relative;
  min-height: 250px;
  border: 0;
  border-right: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 92px 28px 28px;
}

.signed-out .landing-page .how-steps article:last-child {
  border-right: 0;
}

.signed-out .landing-page .how-steps article > span {
  position: absolute;
  top: -16px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--ref-green);
  color: #031108;
  font-family: var(--ref-mono);
  font-size: 11px;
}

.signed-out .landing-page .how-steps h3 {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: 18px;
  font-weight: 500;
}

.signed-out .landing-page .how-steps p {
  color: var(--ref-muted);
  font-size: 14px;
  line-height: 1.65;
}

.signed-out .landing-page .landing-switch-section {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 80px;
  border-top: 1px solid var(--ref-line-soft);
  border-bottom: 1px solid var(--ref-line-soft);
  padding: 116px 0;
}

.signed-out .landing-page .landing-switch-section .section-heading h2 {
  font-size: clamp(34px, 3.8vw, 50px);
}

.signed-out .landing-page .switch-demo {
  gap: 18px;
}

.signed-out .landing-page .endpoint-switch {
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
}

.signed-out .landing-page .endpoint-switch > div {
  min-height: 108px;
  border-color: var(--ref-line-soft);
  background: rgba(255, 255, 255, 0.012);
}

.signed-out .landing-page .endpoint-switch > div.is-after {
  background: var(--ref-green-soft);
}

.signed-out .landing-page .endpoint-switch span {
  border-radius: 0;
  background: rgba(242, 245, 243, 0.08);
  color: rgba(242, 245, 243, 0.52);
  font-family: var(--ref-mono);
}

.signed-out .landing-page .endpoint-switch .is-after span {
  background: var(--ref-green);
  color: #031108;
}

.signed-out .landing-page .endpoint-switch small {
  color: rgba(242, 245, 243, 0.36);
  font-family: var(--ref-mono);
}

.signed-out .landing-page .endpoint-switch code {
  color: var(--ref-ink);
}

.signed-out .landing-page .endpoint-switch .is-after code {
  color: var(--ref-green);
}

.signed-out .landing-page .switch-facts {
  gap: 18px;
  color: rgba(242, 245, 243, 0.5);
  font-family: var(--ref-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.signed-out .landing-page .switch-facts span::before {
  background: var(--ref-green);
  box-shadow: none;
}

/* Team / trust */
.signed-out .landing-page .landing-keak-section {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: center;
  border: 0;
  padding: 144px 0;
}

.signed-out .landing-page .keak-team-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: #090d0b;
  box-shadow: 16px 16px 0 rgba(49, 248, 137, 0.035);
}

.signed-out .landing-page .keak-team-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(49, 248, 137, 0.08);
  content: "";
  pointer-events: none;
}

.signed-out .landing-page .keak-team-visual img {
  filter: saturate(0.65) contrast(1.05);
}

.signed-out .landing-page .keak-team-copy {
  gap: 28px;
}

.signed-out .landing-page .keak-section-actions {
  gap: 10px;
}

/* Calculator */
.signed-out .landing-page .savings-section {
  gap: 50px;
  border-top: 1px solid var(--ref-line-soft);
  padding: 132px 0;
}

.signed-out .landing-page .savings-card {
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  gap: 0;
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.signed-out .landing-page .savings-control {
  gap: 23px;
  border-right: 1px solid var(--ref-line);
  border-radius: 0;
  background: rgba(49, 248, 137, 0.025);
  padding: 34px;
}

.signed-out .landing-page .savings-control label,
.signed-out .landing-page .savings-results span {
  color: rgba(242, 245, 243, 0.46);
  font-family: var(--ref-mono);
}

.signed-out .landing-page .savings-model-field {
  display: grid;
  gap: 10px;
}

.signed-out .landing-page .savings-model-field select {
  width: 100%;
  border: 1px solid var(--ref-line);
  border-radius: 0;
  background: var(--ref-black);
  color: var(--ref-ink);
  font-family: var(--ref-mono);
}

.signed-out .landing-page .savings-assumption {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 11px;
  line-height: 1.55;
}

.signed-out .landing-page .savings-assumption a {
  width: fit-content;
  color: var(--ref-green);
  font-weight: 700;
}

.signed-out .landing-page .savings-input-wrap {
  border: 0;
  border-bottom: 1px solid rgba(49, 248, 137, 0.45);
  border-radius: 0;
  background: transparent;
  padding: 8px 0 14px;
}

.signed-out .landing-page .savings-input-wrap span,
.signed-out .landing-page .savings-results article:first-child strong {
  color: var(--ref-green);
}

.signed-out .landing-page .savings-input-wrap input {
  min-height: 0;
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-weight: 500;
}

.signed-out .landing-page .savings-control input[type="range"] {
  min-height: 20px;
  accent-color: var(--ref-green);
}

.signed-out .landing-page .savings-results {
  gap: 0;
}

.signed-out .landing-page .savings-results article {
  min-height: 210px;
  border: 0;
  border-right: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
  padding: 28px;
}

.signed-out .landing-page .savings-results article:last-child {
  border-right: 0;
}

.signed-out .landing-page .savings-results article:first-child {
  border-color: var(--ref-line);
  background: var(--ref-green-soft);
}

.signed-out .landing-page .savings-results strong {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-weight: 500;
}

.signed-out .landing-page .savings-activation {
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--ref-line);
  padding: 20px 28px;
}

.signed-out .landing-page .savings-activation p {
  margin: 0;
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.signed-out .landing-page .savings-activation .button {
  max-width: 360px;
  min-height: 48px;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

/* Final conversion and docs */
.signed-out .landing-page .landing-final-cta {
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 0;
  border-top: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 72px 0;
}

.signed-out .landing-page .landing-final-cta h2 {
  max-width: 760px;
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 500;
  line-height: 1.02;
}

.signed-out .landing-page .landing-final-cta p:not(.eyebrow) {
  color: var(--ref-muted);
}

.signed-out .landing-page .landing-docs-section {
  gap: 24px;
  border-top: 0;
  padding: 138px 0 110px;
}

.signed-out .landing-page .landing-docs-section > .section-heading {
  margin-bottom: 26px;
}

.signed-out .landing-page .landing-docs-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signed-out .landing-page .landing-docs-reference-details {
  border: 1px solid var(--ref-line);
  background: rgba(49, 248, 137, 0.025);
}

.signed-out .landing-page .landing-docs-reference-details > summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  color: var(--ref-ink);
  cursor: pointer;
  list-style: none;
}

.signed-out .landing-page .landing-docs-reference-details > summary::-webkit-details-marker {
  display: none;
}

.signed-out .landing-page .landing-docs-reference-details > summary:hover {
  background: var(--ref-green-soft);
}

.signed-out .landing-page .landing-docs-reference-summary {
  display: grid;
  gap: 7px;
}

.signed-out .landing-page .landing-docs-reference-summary strong {
  font-family: var(--ref-mono);
  font-size: 15px;
  font-weight: 600;
}

.signed-out .landing-page .landing-docs-reference-summary small {
  color: var(--ref-muted);
  font-size: 13px;
  line-height: 1.5;
}

.signed-out .landing-page .landing-docs-reference-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.signed-out .landing-page .landing-docs-reference-toggle::before,
.signed-out .landing-page .landing-docs-reference-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ref-green);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.signed-out .landing-page .landing-docs-reference-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.signed-out .landing-page .landing-docs-reference-details[open] .landing-docs-reference-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.signed-out .landing-page .landing-docs-reference-content {
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--ref-line);
  padding: 24px;
}

.signed-out .landing-page .doc-block,
.signed-out .landing-page .doc-model-item {
  border: 1px solid var(--ref-line-soft);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.012);
  box-shadow: none;
}

.signed-out .landing-page .doc-block {
  padding: 22px;
}

.signed-out .landing-page .doc-block h4,
.signed-out .landing-page .doc-list strong {
  color: var(--ref-ink);
  font-family: var(--ref-mono);
  font-weight: 500;
}

.signed-out .landing-page .doc-block p,
.signed-out .landing-page .doc-list,
.signed-out .landing-page .doc-steps,
.signed-out .landing-page .doc-model-provider,
.signed-out .landing-page .doc-model-pricing {
  color: var(--ref-muted);
}

.signed-out .landing-page .doc-block code,
.signed-out .landing-page .code-block,
.signed-out .landing-page .key-display {
  border: 1px solid var(--ref-line-soft);
  border-radius: 0;
  background: #030504;
  color: rgba(242, 245, 243, 0.78);
}

.signed-out .landing-page .code-block {
  border-left: 2px solid var(--ref-green);
}

.signed-out .landing-page .doc-model-id {
  color: var(--ref-green);
}

.signed-out .landing-page .landing-footer {
  min-height: 180px;
  border-top: 1px solid var(--ref-line-soft);
  color: var(--ref-muted);
  font-family: var(--ref-mono);
  font-size: 10px;
  padding: 42px 0 66px;
}

.signed-out .landing-page .footer-company a,
.signed-out .landing-page .footer-links a {
  color: rgba(242, 245, 243, 0.56);
}

.signed-out .landing-page .footer-company a:hover,
.signed-out .landing-page .footer-links a:hover {
  color: var(--ref-green);
}

@media (max-width: 1000px) {
  .signed-out .landing-page .conversion-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 40px;
  }

  .signed-out .landing-page .landing-pilot-section {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .signed-out .landing-page .landing-pilot-details {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .signed-out .landing-page .landing-switch-section {
    grid-template-columns: minmax(260px, 0.8fr) minmax(430px, 1.2fr);
    gap: 48px;
  }

  .signed-out .landing-page .landing-keak-section {
    gap: 48px;
  }

  .signed-out .landing-page .savings-card {
    grid-template-columns: 1fr;
  }

  .signed-out .landing-page .savings-control {
    border-right: 0;
    border-bottom: 1px solid var(--ref-line);
  }

  .signed-out .landing-page .savings-activation {
    grid-column: 1;
  }
}

@media (max-width: 1100px) {
  .signed-out .landing-page .landing-nav-inner {
    min-height: 64px;
  }

  .signed-out .landing-page .landing-mobile-menu-toggle {
    border: 1px solid var(--ref-line);
    border-radius: 0;
    background: transparent;
  }

  .signed-out .landing-page .landing-mobile-menu-icon,
  .signed-out .landing-page .landing-mobile-menu-icon::before,
  .signed-out .landing-page .landing-mobile-menu-icon::after {
    background: var(--ref-green);
  }

  .signed-out .landing-page .landing-actions {
    gap: 0;
    border: 1px solid var(--ref-line);
    border-radius: 0;
    background: #070a08;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
    padding: 0;
  }

  .signed-out .landing-page .landing-actions > .landing-nav-link,
  .signed-out .landing-page .landing-actions > .landing-nav-cta,
  .signed-out .landing-page .landing-actions .landing-more-menu > summary {
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid var(--ref-line-soft);
    border-radius: 0;
    background: transparent;
    color: rgba(242, 245, 243, 0.72);
    padding: 13px 15px;
  }

  .signed-out .landing-page .landing-more-menu {
    border-bottom: 1px solid var(--ref-line-soft);
  }

  .signed-out .landing-page .landing-more-menu > summary {
    border-bottom: 0;
  }

  .signed-out .landing-page .landing-more-panel {
    border-left-color: var(--ref-line);
  }

  .signed-out .landing-page .landing-actions > .landing-nav-cta {
    border-bottom: 0;
    background: var(--ref-green);
    color: #031108;
  }
}

@media (max-width: 800px) {
  .signed-out .landing-page .first-funding-callout-inner {
    width: min(100% - 32px, var(--ref-max));
  }

  .signed-out .landing-page .pricing-section-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    justify-content: stretch;
  }

  .signed-out .landing-page .pricing-model-controls {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    border-top: 0;
    justify-content: stretch;
    padding-top: 0;
  }

  .signed-out .landing-page .landing-model-search {
    width: 100%;
    min-width: 0;
  }

  .signed-out .landing-page .landing-nav-inner,
  .signed-out .landing-page .landing-assurance-row,
  .signed-out .landing-page .landing-pricing-proof,
  .signed-out .landing-page .landing-pilot-section,
  .signed-out .landing-page .landing-operational-proof,
  .signed-out .landing-page .landing-how-section,
  .signed-out .landing-page .landing-switch-section,
  .signed-out .landing-page .landing-keak-section,
  .signed-out .landing-page .savings-section,
  .signed-out .landing-page .landing-final-cta,
  .signed-out .landing-page .landing-docs-section,
  .signed-out .landing-page .landing-footer {
    width: min(100% - 32px, var(--ref-max));
  }

  .signed-out .landing-page .landing-assurance-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signed-out .landing-page .landing-assurance-row > * {
    min-height: 58px;
    border-top: 1px solid var(--ref-line-soft);
    border-left: 0;
    padding: 12px 14px;
  }

  .signed-out .landing-page .landing-assurance-row > *:first-child,
  .signed-out .landing-page .landing-assurance-row > *:nth-child(2) {
    border-top: 0;
  }

  .signed-out .landing-page .landing-assurance-row > *:nth-child(even) {
    border-left: 1px solid var(--ref-line-soft);
  }

  .signed-out .landing-page .landing-assurance-row > *:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .signed-out .landing-page .conversion-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 64px 20px 72px;
  }

  .signed-out .landing-page .conversion-hero::before {
    background-position: 62% center;
    opacity: 0.52;
  }

  .signed-out .landing-page .conversion-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 6, 0.78) 0%,
        rgba(5, 7, 6, 0.56) 52%,
        rgba(5, 7, 6, 0.84) 100%
      );
  }

  .signed-out .landing-page .conversion-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .signed-out .landing-page .conversion-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .signed-out .landing-page .conversion-hero .hero-subheadline {
    max-width: 560px;
    color: rgba(242, 245, 243, 0.82);
    font-size: 16px;
  }

  .signed-out .landing-page .conversion-hero .landing-cta,
  .signed-out .landing-page .hero-trust-row {
    justify-content: center;
  }

  .signed-out .landing-page .hero-signup {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .signed-out .landing-page .landing-pricing-proof,
  .signed-out .landing-page .landing-operational-proof,
  .signed-out .landing-page .landing-how-section,
  .signed-out .landing-page .landing-keak-section,
  .signed-out .landing-page .savings-section,
  .signed-out .landing-page .landing-docs-section {
    padding-block: 64px;
  }

  .signed-out .landing-page .landing-pilot-section,
  .signed-out .landing-page .landing-operational-proof,
  .signed-out .landing-page .landing-switch-section,
  .signed-out .landing-page .landing-keak-section,
  .signed-out .landing-page .landing-final-cta {
    grid-template-columns: 1fr;
  }

  .signed-out .landing-page .landing-pilot-section {
    gap: 24px;
    padding-block: 44px;
  }

  .signed-out .landing-page .landing-operational-proof {
    gap: 36px;
  }

  .signed-out .landing-page .operational-proof-grid {
    grid-template-columns: 1fr;
  }

  .signed-out .landing-page .operational-proof-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ref-line);
  }

  .signed-out .landing-page .operational-proof-grid article:last-child {
    border-bottom: 0;
  }

  .signed-out .landing-page .landing-pilot-details {
    grid-column: auto;
    grid-row: auto;
  }

  .signed-out .landing-page .landing-pilot-section > .button {
    justify-self: start;
  }

  .signed-out .landing-page .how-steps {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .signed-out .landing-page .how-steps article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--ref-line);
    padding: 74px 0 28px;
  }

  .signed-out .landing-page .landing-switch-section {
    gap: 42px;
    padding-block: 64px;
  }

  .signed-out .landing-page .landing-keak-section {
    gap: 42px;
  }

  .signed-out .landing-page .keak-team-visual {
    width: min(100%, 560px);
  }

  .signed-out .landing-page .savings-results {
    grid-template-columns: 1fr;
  }

  .signed-out .landing-page .savings-results article,
  .signed-out .landing-page .savings-results article:last-child {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--ref-line);
  }

  .signed-out .landing-page .savings-results article:last-child {
    border-bottom: 0;
  }

  .signed-out .landing-page .savings-activation {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 20px 18px;
  }

  .signed-out .landing-page .savings-activation .button {
    width: 100%;
    max-width: none;
  }

  .signed-out .landing-page .landing-final-cta {
    gap: 36px;
    padding-block: 64px;
  }

  .signed-out .landing-page .landing-final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .signed-out .landing-page .first-funding-callout {
    border-bottom-color: rgba(49, 248, 137, 0.28);
    background: #071009;
  }

  .signed-out .landing-page .first-funding-callout-inner {
    min-height: 52px;
    justify-content: center;
    padding-block: 4px;
  }

  .signed-out .landing-page .first-funding-callout-label,
  .signed-out .landing-page .first-funding-callout p {
    display: none;
  }

  .signed-out .landing-page .first-funding-callout-link-desktop {
    display: none;
  }

  .signed-out .landing-page .first-funding-callout-link-mobile {
    display: inline;
  }

  .signed-out .landing-page .first-funding-callout-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(242, 245, 243, 0.78);
    font-family: var(--ref-sans);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }

  .signed-out .landing-page .first-funding-callout-link strong {
    color: var(--ref-green);
    font: inherit;
    font-weight: 700;
  }

  .signed-out .landing-page .first-funding-callout-link > span[aria-hidden] {
    color: var(--ref-green);
  }

  .signed-out .landing-page .first-funding-callout-link:hover,
  .signed-out .landing-page .first-funding-callout-link:hover strong {
    color: #74ffad;
  }

  .signed-out .landing-page .landing-actions {
    right: -32px;
    width: 100vw;
  }

  .signed-out .landing-page .landing-wordmark-name {
    font-size: 12px;
  }

  .signed-out .landing-page .landing-wordmark-parent {
    display: none;
  }

  .signed-out .landing-page .conversion-hero {
    padding: 56px 16px 36px;
  }

  .signed-out .landing-page .conversion-hero-video {
    display: none;
  }

  .signed-out .landing-page .conversion-hero-copy {
    gap: 18px;
  }

  .signed-out .landing-page .conversion-hero h1 {
    font-size: clamp(34px, 10.6vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .signed-out .landing-page .conversion-hero .landing-cta {
    width: min(100%, 340px);
    gap: 7px;
    flex-direction: column;
  }

  .signed-out .landing-page .conversion-hero .landing-cta > .button.primary {
    min-height: 52px;
  }

  .signed-out .landing-page .conversion-hero .landing-cta .button {
    width: 100%;
  }

  .signed-out .landing-page .conversion-hero .landing-cta .pilot-hero-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 40px;
    order: 3;
    gap: 6px;
    border: 0;
    background: transparent;
    color: rgba(242, 245, 243, 0.72);
    padding: 8px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
  }

  .signed-out .landing-page .conversion-hero .landing-cta .pilot-cta-arrow {
    color: var(--ref-green);
  }

  .signed-out .landing-page .conversion-hero .landing-cta .pilot-hero-cta:hover,
  .signed-out .landing-page .conversion-hero .landing-cta .pilot-hero-cta:focus-visible {
    border: 0;
    background: transparent;
    color: var(--ref-ink);
  }

  .signed-out .landing-page .hero-trust-row {
    width: 100%;
    flex-basis: auto;
    order: 2;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(242, 245, 243, 0.72);
  }

  .signed-out .landing-page .landing-assurance-row > * {
    min-height: 68px;
    color: rgba(242, 245, 243, 0.76);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    padding: 14px 13px;
    text-transform: none;
  }

  .signed-out .landing-page .landing-assurance-row > *:nth-child(3) {
    display: none;
  }

  .signed-out .landing-page .landing-assurance-row > *:nth-child(4) {
    border-left: 0;
  }

  .signed-out .landing-page .landing-assurance-row > *:last-child {
    grid-column: 2;
    border-left: 1px solid var(--ref-line-soft);
  }

  .signed-out .landing-page .landing-pricing-proof {
    padding: 56px 0 64px;
  }

  .signed-out .landing-page .landing-seller-section {
    margin-bottom: 0;
  }

  .signed-out .landing-page .hero-signup::before {
    display: none;
  }

  .signed-out .landing-page .hero-signup .auth-panel {
    padding: 20px;
  }

  .signed-out .landing-page .hero-signup .auth-panel::before {
    margin: -20px -20px 20px;
  }

  .signed-out .landing-page .signup-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 18px;
  }

  .signed-out .landing-page .signup-path span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .signed-out .landing-page .signup-path b {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }

  .signed-out .landing-page .section-heading h2,
  .signed-out .landing-page .auth-heading h2,
  .signed-out .landing-page .pricing-section-intro h2,
  .signed-out .landing-page .landing-final-cta h2 {
    font-size: clamp(30px, 9.2vw, 40px);
  }

  .signed-out .landing-page .section-heading > p:not(.eyebrow),
  .signed-out .landing-page .auth-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .signed-out .landing-page .pricing-model-filter {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
  }

  .signed-out .landing-page .pricing-model-filter button {
    min-width: 0;
  }

  .signed-out .landing-page .hero-terminal-bar {
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-direction: row;
    padding: 10px 13px;
  }

  .signed-out .landing-page .hero-terminal-bar .terminal-dots {
    flex: 0 0 86px;
  }

  .signed-out .landing-page .pricing-table-meta {
    justify-content: flex-end;
    margin-left: auto;
  }

  .signed-out .landing-page .pricing-table-meta span:not(.live-pricing-pill) {
    display: none;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row.header {
    display: none;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row:not(.header) {
    display: grid;
    grid-template-areas:
      "model model model"
      "input cached output";
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 0;
    min-height: 0;
    padding: 16px 14px 14px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-lockup {
    grid-area: model;
    align-self: center;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-lockup-link {
    grid-area: model;
    align-self: center;
    min-width: 0;
    padding-right: 82px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-logo {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .model-name {
    font-size: 15px;
    line-height: 1.2;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .provider-lockup small {
    margin-top: 2px;
    font-size: 11px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-price {
    min-width: 0;
    min-height: 70px;
    justify-self: stretch;
    gap: 4px;
    border: 0;
    border-left: 1px solid var(--ref-line-soft);
    border-radius: 0;
    background: rgba(49, 248, 137, 0.025);
    padding: 10px 8px;
    text-align: left;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-price:nth-child(2) {
    grid-area: input;
    border-left: 0;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-price:nth-child(3) {
    grid-area: cached;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-price:nth-child(4) {
    grid-area: output;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-price small {
    display: block;
    min-height: 22px;
    font-size: 9px;
    line-height: 1.2;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .price-current {
    font-size: 17px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .reference-price {
    margin-top: 1px;
    font-size: 12px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .discount-badge {
    z-index: 1;
    grid-area: model;
    align-self: center;
    justify-self: end;
    padding: 5px 7px;
    font-size: 11px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .landing-model-row.image-model-row:not(.header) {
    grid-template-areas:
      "model model"
      "input cached"
      "output output";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-model-row .provider-lockup {
    grid-area: model;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-model-row .landing-price:nth-child(2) {
    grid-area: input;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-model-row .landing-price:nth-child(3) {
    grid-area: cached;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-model-row .landing-price:nth-child(4) {
    grid-area: output;
    min-height: 0;
    border-top: 1px solid var(--ref-line-soft);
    border-left: 0;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-model-row .discount-badge {
    grid-area: model;
    align-self: center;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-output-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-output-prices > small {
    grid-column: 1 / -1;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-output-prices .price-tier {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    margin-top: 0;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-output-prices .price-tier b {
    white-space: normal;
  }

  .signed-out .landing-page .landing-pricing-proof .hero-pricing-table .image-output-prices .reference-price {
    grid-column: auto;
  }

  .signed-out .landing-page .pricing-table-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 16px 14px;
  }

  .signed-out .landing-page .pricing-table-footer-actions {
    display: grid;
  }

  .signed-out .landing-page .landing-pilot-section > .button,
  .signed-out .landing-page .landing-final-cta .button {
    width: 100%;
    justify-self: stretch;
  }

  .signed-out .landing-page .endpoint-switch > div {
    min-height: 126px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px 14px;
  }

  .signed-out .landing-page .endpoint-switch code {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .signed-out .landing-page .switch-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .signed-out .landing-page .savings-control {
    padding: 24px 18px;
  }

  .signed-out .landing-page .savings-input-wrap input {
    font-size: 29px;
  }

  .signed-out .landing-page .landing-docs-grid {
    grid-template-columns: 1fr;
  }

  .signed-out .landing-page .landing-footer,
  .signed-out .landing-page .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signed-out .landing-page .mobile-conversion-dock {
    transition: none;
  }

  .signed-out .landing-page .conversion-hero-video {
    display: none;
  }

  .signed-out .landing-page *,
  .signed-out .landing-page *::before,
  .signed-out .landing-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .signed-out .landing-page .mobile-conversion-dock {
    position: fixed;
    z-index: 88;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(49, 248, 137, 0.42);
    background: rgba(6, 10, 7, 0.96);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.52);
    opacity: 0;
    padding: 9px 9px 9px 14px;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition:
      opacity 160ms ease,
      transform 180ms ease;
    visibility: hidden;
  }

  .signed-out .landing-page .mobile-conversion-dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .signed-out .landing-page .mobile-conversion-dock-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
  }

  .signed-out .landing-page .mobile-conversion-dock-copy strong {
    overflow: hidden;
    color: var(--ref-ink);
    font-family: var(--ref-mono);
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .signed-out .landing-page .mobile-conversion-dock-copy small {
    color: rgba(242, 245, 243, 0.58);
    font-family: var(--ref-mono);
    font-size: 9px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .signed-out .landing-page .mobile-conversion-dock .button {
    min-width: 118px;
    min-height: 46px;
    flex: 0 0 auto;
    padding-inline: 14px;
  }

  .signed-out.mobile-auth-open .landing-page .mobile-conversion-dock,
  .signed-out .landing-page .landing-nav.mobile-menu-open + .mobile-conversion-dock {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
  }

  .signed-out.mobile-auth-open .landing-page .conversion-hero {
    z-index: 1400;
  }

  .signed-out .landing-page .hero-signup {
    position: fixed;
    width: 100%;
    margin: 0;
  }

  .signed-out .landing-page .hero-signup::before {
    display: none;
  }

  .signed-out .landing-page .hero-signup .auth-panel {
    background: #060a07;
    overflow-y: auto;
  }
}
