:root {
  --color-bg-base: #0f0e0d;
  --color-bg-elevated: #1a1916;
  --color-bg-overlay: #232119;
  --color-bg-inset: #141312;
  --color-bg-light: #f3f0ea;
  --color-bg-paper: #f0ede8;
  --color-text-primary: #f0ede8;
  --color-text-secondary: #a09b92;
  --color-text-disabled: #5c584f;
  --color-ink: #0f0e0d;
  --color-ink-soft: #5f584e;
  --color-amber: #d4820a;
  --color-amber-hover: #e8a030;
  --color-amber-muted: #2a1e08;
  --color-amber-border: #4a3010;
  --color-border-subtle: #1e1c18;
  --color-border-default: #302c25;
  --color-border-strong: #4a4540;
  --color-border-focus: #d4820a;
  --color-error: #c0392b;
  --color-error-bg: #2a0a08;
  --color-success: #2d7a4f;
  --color-success-bg: #0a1f14;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --content-xs: 480px;
  --content-sm: 640px;
  --content-md: 760px;
  --content-lg: 1100px;
  --content-xl: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg-base);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 16px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-paper);
  color: var(--color-ink);
  transform: translateY(-140%);
  transition: transform 120ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-border-focus);
  outline-offset: 3px;
}

.page--light {
  background: var(--color-bg-paper);
  color: var(--color-ink);
}

.page--light .section-label,
.page--light .eyebrow {
  color: var(--color-amber);
}

.brand--ink {
  color: var(--color-ink);
}

.container {
  width: min(calc(100% - 40px), var(--content-lg));
  margin: 0 auto;
}

.container--reading {
  width: min(calc(100% - 40px), var(--content-md));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand--lockup {
  gap: 0;
  line-height: 1;
}

.brand__lockup {
  display: block;
  width: clamp(188px, 13vw, 244px);
  height: auto;
}

.brand--compact-lockup .brand__lockup {
  width: min(260px, 100%);
}

.brand__mark {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background-image: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.page--light .brand__mark {
  background-image: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n");
}

.brand__mark::before,
.brand__mark::after {
  content: none;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 14, 13, 0.88);
  backdrop-filter: blur(12px);
}

.page--light .topbar {
  background: rgba(240, 237, 232, 0.92);
  border-bottom-color: rgba(15, 14, 13, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.page--light .topbar__nav {
  color: var(--color-ink-soft);
}

.topbar__nav a:hover {
  color: var(--color-text-primary);
}

.page--light .topbar__nav a:hover {
  color: var(--color-ink);
}

.topbar__mobile-label {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.button:disabled:hover,
.button[disabled]:hover {
  transform: none;
}

.button--primary {
  background: var(--color-amber);
  color: var(--color-bg-base);
}

.button--primary:hover {
  background: var(--color-amber-hover);
  color: var(--color-bg-base);
}

.topbar__nav a.button--primary:hover,
.page--light .topbar__nav a.button--primary:hover {
  color: var(--color-bg-base);
}

.button--secondary {
  border-color: var(--color-border-default);
  color: var(--color-text-primary);
  background: transparent;
}

.button--secondary:hover {
  border-color: var(--color-amber);
  color: var(--color-amber-hover);
}

.button--secondary-warning {
  border-color: #8f5f58;
  color: #e4b5ae;
}

.button--secondary-warning:hover,
.button--secondary-warning:focus-visible {
  border-color: #b27d74;
  color: #f1c3bb;
}

.page--light .button--secondary {
  color: var(--color-ink);
}

.button--ghost {
  padding-inline: 0;
  min-height: auto;
  border: 0;
  color: var(--color-amber);
  background: transparent;
}

.button--ghost:hover {
  color: var(--color-amber-hover);
}

.button--compact {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.button--ghost-warning {
  color: #e4b5ae;
}

.button--ghost-warning:hover,
.button--ghost-warning:focus-visible {
  color: #f1c3bb;
}

.hero {
  padding: 76px 0 60px;
}

.hero > .container {
  width: min(calc(100% - 48px), 1220px);
}

.hero__grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title,
.section-title,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero__title {
  font-size: clamp(2.8rem, 5.2vw, 4.55rem);
}

.hero__title em {
  color: var(--color-amber);
  font-style: italic;
  font-weight: 400;
}

.hero__lead,
.section-lead {
  margin: 18px 0 0;
  color: var(--color-text-secondary);
  font-size: 1.08rem;
  max-width: 60ch;
}

.page--light .hero__lead,
.page--light .section-lead,
.page--light .muted {
  color: var(--color-ink-soft);
}

.cta-cluster {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__nowrap {
  white-space: nowrap;
}

.hero__support,
.hero__privacy-note,
.section-followup {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-disabled);
}

.hero__support a,
.hero__privacy-note a,
.section-followup a {
  color: var(--color-text-secondary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero__support a:hover,
.hero__support a:focus-visible,
.hero__privacy-note a:hover,
.hero__privacy-note a:focus-visible,
.section-followup a:hover,
.section-followup a:focus-visible {
  color: var(--color-text-primary);
}

.section-followup {
  margin-top: 16px;
}

.hero__form-kicker {
  display: grid;
  gap: 4px;
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--color-text-disabled);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero__form-kicker strong {
  color: var(--color-text-primary);
  font-size: 0.98rem;
}

.hero__workspace {
  margin-top: 30px;
  max-width: 610px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero__form-kicker + .hero__workspace {
  margin-top: 14px;
}

.hero__workspace--lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) auto;
  gap: 6px;
  align-items: stretch;
}

.hero__workspace .input,
.hero__workspace .button {
  min-height: 50px;
}

.hero__workspace .input {
  border: 0;
  background: transparent;
}

.hero__workspace .input:focus {
  border: 0;
  box-shadow: none;
}

.hero__workspace .button {
  min-width: 132px;
  white-space: nowrap;
}

.hero__turnstile,
.hero__form-status {
  grid-column: 1 / -1;
}

.hero__form-status {
  margin: 6px 10px 4px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.hero__form-status.is-error {
  color: #ffb3a7;
}

.hero__form-status.is-success {
  color: #d9f7c6;
  font-weight: 650;
}

.hero__workspace.is-submitted .hero__turnstile {
  display: none;
}

.hero__preview {
  min-width: 0;
}

.hero-sample-link {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-primary);
}

.hero-sample-link:hover,
.hero-sample-link:focus-visible {
  border-color: rgba(212, 130, 10, 0.5);
  background: rgba(212, 130, 10, 0.08);
}

.hero-sample-link span {
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-sample-link strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.page--light .hero__preview,
.page--light .panel,
.page--light .pricing-card,
.page--light .brief-preview,
.page--light .sample-gate {
  background: #fff;
  border-color: rgba(34, 31, 26, 0.08);
  color: var(--color-ink);
}

.preview-label,
.section-label {
  margin: 0 0 14px;
  color: var(--color-amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-preview {
  background: var(--color-bg-overlay);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.hero-proof {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 24%, rgba(240, 237, 232, 0.08), transparent 30%),
    radial-gradient(circle at 36% 70%, rgba(212, 130, 10, 0.16), transparent 34%);
}

.source-artifact {
  position: absolute;
  z-index: 1;
  --artifact-rotate: 0deg;
  width: min(245px, 42%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(26, 24, 21, 0.86);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  color: var(--color-text-primary);
}

.source-artifact strong,
.source-artifact span {
  display: block;
}

.source-artifact__type {
  margin-bottom: 8px;
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-artifact strong {
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.source-artifact p {
  margin: 8px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  line-height: 1.45;
}

.source-artifact--web {
  --artifact-rotate: -3deg;
  left: 0;
  top: 74px;
  transform: rotate(var(--artifact-rotate));
}

.source-artifact--note {
  --artifact-rotate: 2deg;
  left: 42px;
  top: 208px;
  transform: rotate(var(--artifact-rotate));
}

.source-artifact--comp {
  --artifact-rotate: -1deg;
  left: 8px;
  bottom: 52px;
  transform: rotate(var(--artifact-rotate));
}

.hero-brief-card {
  position: absolute;
  z-index: 2;
  --artifact-rotate: 0deg;
  right: 0;
  top: 36px;
  width: min(400px, 68%);
  min-height: 448px;
  padding: 28px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-md);
  background: #f1ede6;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
  color: var(--color-ink);
}

.hero-brief-card__top,
.hero-brief-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.hero-brief-card__top > span:first-child,
.hero-brief-card__footer span {
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-output-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(34, 31, 26, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-ink-soft);
  background: rgba(34, 31, 26, 0.035);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-brief-card h2 {
  margin: 20px 0 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.98;
}

.hero-brief-card__summary {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(34, 31, 26, 0.12);
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  line-height: 1.52;
}

.hero-brief-card__section {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(34, 31, 26, 0.08);
}

.hero-brief-card__section > span {
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-brief-card__section h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-brief-card__section p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-brief-card__footer {
  justify-content: flex-start;
  margin-top: 18px;
}

.hero-output-stamp {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.34;
  background-image: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .source-artifact,
  .hero-brief-card {
    animation: heroProofArrive 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .source-artifact--web {
    animation-delay: 80ms;
  }

  .source-artifact--note {
    animation-delay: 160ms;
  }

  .source-artifact--comp {
    animation-delay: 240ms;
  }

  .hero-brief-card {
    animation-delay: 320ms;
  }
}

@keyframes heroProofArrive {
  from {
    opacity: 0;
    transform: translateY(10px) rotate(var(--artifact-rotate)) scale(0.98);
  }
  to {
    opacity: 1;
    transform: rotate(var(--artifact-rotate));
  }
}

.brief-preview__company {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.brief-preview__title {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brief-preview__meta,
.detail-meta,
.mono {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--color-text-secondary);
}

.page--light .brief-preview__meta,
.page--light .detail-meta,
.page--light .mono {
  color: var(--color-ink-soft);
}

.brief-preview__section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page--light .brief-preview__section {
  border-top-color: rgba(34, 31, 26, 0.08);
}

.brief-preview__section h3,
.brief-section h2,
.pricing-card__title,
.panel-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brief-preview__section p,
.brief-section p,
.brief-section li,
.panel p {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
}

.page--light .brief-preview__section p,
.page--light .brief-section p,
.page--light .brief-section li,
.page--light .panel p {
  color: var(--color-ink-soft);
}

.insight-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 3px solid var(--color-amber);
  border-radius: var(--radius-sm);
  background: var(--color-amber-muted);
}

.page--light .insight-box {
  background: rgba(212, 130, 10, 0.08);
}

.value-bar,
.section-grid,
.pricing-grid,
.dashboard-grid,
.use-case-grid {
  display: grid;
  gap: 20px;
}

.value-bar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.value-card,
.feature-card,
.pricing-card,
.panel,
.use-case-card {
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.value-card h3,
.feature-card h3,
.use-case-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.value-card p,
.feature-card p,
.use-case-card p {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
}

.page-section {
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 96px;
}

.page--light .page-section {
  border-top-color: rgba(34, 31, 26, 0.08);
}

.page-section--tight {
  padding: 56px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(2rem, 4.8vw, 3rem);
}

.section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-list {
  display: grid;
  gap: 18px;
}

.proof-panel {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(255, 255, 255, 0.02));
}

.page--light .proof-panel {
  border-color: rgba(34, 31, 26, 0.08);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(34, 31, 26, 0.02));
}

.proof-panel__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.intent-hero {
  padding: 74px 0 52px;
}

.intent-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: start;
}

.intent-hero__copy {
  max-width: 720px;
}

.intent-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}

.intent-hero__lead {
  margin: 18px 0 0;
  max-width: 66ch;
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}

.intent-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.intent-hero__proof li {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(34, 31, 26, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(34, 31, 26, 0.035);
  color: var(--color-ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.sample-request-panel {
  border: 1px solid rgba(34, 31, 26, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(34, 31, 26, 0.08);
}

.sample-request-panel h2 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.sample-request-panel p {
  margin: 8px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.sample-request-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sample-request-form label {
  display: grid;
  gap: 6px;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.sample-request-form .input {
  background: #fbf8f1;
  color: var(--color-ink);
}

.sample-request-form textarea.input {
  min-height: 118px;
  padding: 12px 14px;
}

.sample-request-form__hint {
  margin: -4px 0 2px;
  color: var(--color-ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.sample-request-form .button {
  width: 100%;
}

.sample-request-form__turnstile,
.sample-request-form__status {
  margin: 0;
}

.sample-request-form__turnstile:not([hidden]) {
  display: flex;
  align-items: center;
  min-height: 65px;
}

.sample-request-form__turnstile.is-invisible,
.turnstile-box.is-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.sample-request-form__status {
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}

.sample-request-form__status.is-error {
  color: var(--color-error);
}

.sample-request-form__status.is-success {
  color: var(--color-success);
  font-weight: 700;
}

.intent-section {
  padding: 58px 0;
  border-top: 1px solid rgba(34, 31, 26, 0.08);
}

.intent-section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.intent-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.intent-section__lead {
  margin: 14px 0 0;
  color: var(--color-ink-soft);
  max-width: 68ch;
}

.intent-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intent-card {
  padding: 20px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(34, 31, 26, 0.03);
}

.intent-card span {
  display: block;
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-card h3 {
  margin: 10px 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.intent-card p,
.intent-card li {
  margin-top: 9px;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

.intent-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.intent-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.intent-proof__brief {
  padding: 24px;
  border: 1px solid rgba(34, 31, 26, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 46px rgba(34, 31, 26, 0.07);
}

.intent-proof__brief h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.intent-proof__brief p {
  color: var(--color-ink-soft);
}

.intent-proof__brief dl {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.intent-proof__brief dt {
  color: var(--color-amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-proof__brief dd {
  margin: 5px 0 0;
  color: var(--color-ink-soft);
}

.intent-cta-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(212, 130, 10, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.1), rgba(34, 31, 26, 0.025));
}

.intent-cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.intent-cta-panel p {
  margin: 0;
  color: var(--color-ink-soft);
}

.intent-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-grid,
.fit-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-point,
.fit-card,
.faq-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.page--light .proof-point,
.page--light .fit-card,
.page--light .faq-card {
  border-color: rgba(34, 31, 26, 0.08);
  background: rgba(34, 31, 26, 0.03);
}

.proof-point h3,
.fit-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.proof-point p,
.fit-card p,
.fit-card li,
.faq-card p {
  margin-top: 10px;
  color: var(--color-text-secondary);
}

.page--light .proof-point p,
.page--light .fit-card p,
.page--light .fit-card li,
.page--light .faq-card p {
  color: var(--color-ink-soft);
}

.fit-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.fit-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.fit-card li + li {
  margin-top: 8px;
}

.fit-card--origin {
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(255, 255, 255, 0.02));
}

.page--light .fit-card--origin {
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(34, 31, 26, 0.03));
}

.quote {
  padding: 22px;
  border-left: 2px solid var(--color-amber);
  background: rgba(255, 255, 255, 0.02);
}

.page--light .quote {
  background: rgba(34, 31, 26, 0.03);
}

.quote p {
  margin: 0;
  font-size: 1.02rem;
}

.quote footer {
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step__number {
  color: var(--color-amber);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card--featured {
  border-color: rgba(212, 130, 10, 0.5);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(212, 130, 10, 0.01)) var(--color-bg-elevated);
}

.pricing-card__price {
  margin: 16px 0 0;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-card__tax {
  margin: 8px 0 0;
  color: var(--color-text-disabled);
  font-size: 0.86rem;
}

.pricing-card__description,
.pricing-faq p {
  margin-top: 10px;
  color: var(--color-text-secondary);
}

.pricing-anchor {
  margin: 18px 0 0;
  max-width: 66ch;
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.page--light .pricing-anchor {
  color: var(--color-ink-soft);
}

.pricing-card ul,
.brief-section ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.pricing-card li,
.brief-section li {
  margin-top: 8px;
}

.pricing-faq {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.pricing-faq > div,
.policy-stack > section {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.page--light .pricing-faq > div,
.page--light .policy-stack > section {
  border-color: rgba(34, 31, 26, 0.08);
  background: rgba(34, 31, 26, 0.03);
}

.pricing-faq h3 {
  margin: 0;
  font-size: 1rem;
}

.policy-stack {
  display: grid;
  gap: 18px;
}

.policy-stack h2,
.policy-stack h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.policy-stack p,
.policy-stack li {
  color: var(--color-text-secondary);
}

.page--light .policy-stack p,
.page--light .policy-stack li {
  color: var(--color-ink-soft);
}

.policy-stack ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-stack li + li {
  margin-top: 8px;
}

.legal-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--color-amber);
  border-radius: var(--radius-sm);
  background: rgba(212, 130, 10, 0.08);
}

.page--light .legal-callout {
  background: rgba(212, 130, 10, 0.08);
}

.inline-input {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.dashboard-analysis-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.dashboard-analysis-form .input--textarea {
  grid-column: 1 / -1;
  min-height: 110px;
}

.input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-sm);
  background: var(--color-bg-inset);
  color: var(--color-text-primary);
}

.page--light .input,
.auth-card .input {
  background: #fff;
  color: var(--color-ink);
}

.input::placeholder {
  color: var(--color-text-disabled);
}

.input--select {
  min-height: 42px;
  padding-right: 40px;
}

.input--textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.45;
}

.share-label-control,
.share-expiry-control {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.share-label-control span,
.share-expiry-control span {
  color: var(--color-text-disabled);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.input--date {
  color-scheme: dark;
}

.page--light .input--date,
.auth-card .input--date {
  color-scheme: light;
}

.share-audit {
  margin-top: 18px;
}

.share-links {
  margin-top: 18px;
}

.share-links__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-links__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.share-links__list strong,
.share-links__list small {
  display: block;
}

.share-links__list strong {
  color: var(--color-text-primary);
}

.share-links__list small {
  margin-top: 3px;
  color: var(--color-text-disabled);
  line-height: 1.35;
}

.share-links__actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.share-engagement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.share-engagement__item,
.share-engagement__empty {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.share-engagement__item {
  display: grid;
  gap: 3px;
}

.share-engagement__item--wide,
.share-engagement__empty {
  grid-column: 1 / -1;
}

.share-engagement__item span {
  color: var(--color-text-primary);
  font-weight: 800;
}

.share-engagement__item small,
.share-engagement__empty {
  color: var(--color-text-disabled);
  font-size: 0.82rem;
  line-height: 1.35;
}

.share-audit__label {
  margin: 0 0 10px;
  color: var(--color-text-disabled);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.share-audit__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-audit__list li {
  display: grid;
  gap: 3px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-audit__list span {
  color: var(--color-text-primary);
  font-weight: 700;
}

.share-audit__list small,
.share-audit__list em {
  color: var(--color-text-disabled);
  font-style: normal;
  line-height: 1.45;
}

.app-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.app-sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #141311;
}

.app-main {
  padding: 28px 28px 40px;
}

.app-nav {
  visibility: hidden;
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

body.app-ready .app-nav {
  visibility: visible;
}

.app-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
}

.app-nav a.is-active,
.app-nav a:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.app-nav__badge {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  color: var(--color-amber-hover);
  background: rgba(212, 130, 10, 0.14);
}

.app-account {
  margin-top: auto;
  padding-top: 32px;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.app-page--launch-report {
  color-scheme: light;
  background:
    radial-gradient(circle at 20% 8%, rgba(212, 130, 10, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f1e8 0%, #ede5d8 100%);
  color: var(--color-ink);
}

.app-page--launch-report::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(15, 14, 13, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 14, 13, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.app-page--launch-report .app-layout {
  position: relative;
}

.app-page--launch-report .app-sidebar {
  background: rgba(246, 241, 232, 0.78);
  border-right-color: rgba(15, 14, 13, 0.12);
  backdrop-filter: blur(16px);
}

.app-page--launch-report .brand,
.app-page--launch-report .app-nav a.is-active,
.app-page--launch-report .app-nav a:hover {
  color: var(--color-ink);
}

.app-page--launch-report .app-nav a,
.app-page--launch-report .app-account,
.app-page--launch-report .section-lead,
.app-page--launch-report .panel p,
.app-page--launch-report .citation {
  color: var(--color-ink-soft);
}

.app-page--launch-report .app-nav a.is-active,
.app-page--launch-report .app-nav a:hover {
  background: rgba(15, 14, 13, 0.06);
}

.app-page--launch-report .panel {
  background: rgba(255, 251, 243, 0.82);
  border-color: rgba(15, 14, 13, 0.12);
  box-shadow: 0 24px 70px rgba(58, 44, 24, 0.12);
}

.app-page--launch-report .input {
  background: rgba(255, 251, 243, 0.78);
  color: var(--color-ink);
  border-color: rgba(15, 14, 13, 0.18);
}

.app-page--launch-report .button--secondary,
.app-page--launch-report .button--ghost {
  color: var(--color-ink);
  border-color: rgba(15, 14, 13, 0.18);
}

.launch-report-header {
  align-items: flex-start;
}

.launch-report-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  margin-top: 28px;
}

.launch-report-primary {
  min-height: 520px;
}

.launch-report-notice {
  margin: 24px 0 0;
}

.launch-report-notice--success,
.app-page--launch-report .launch-report-notice--success {
  border-color: rgba(45, 122, 79, 0.28);
  background: rgba(45, 122, 79, 0.08);
}

.launch-report-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: var(--radius-full);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
  font-weight: 800;
}

.launch-report-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-amber);
}

.launch-report-status--paid span {
  background: var(--color-success);
}

.launch-report-status--refunded span {
  background: var(--color-error);
}

.launch-report-url {
  display: inline-flex;
  margin-top: 10px;
  color: #a33b2b;
  font-weight: 800;
}

.launch-report-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.launch-report-steps article {
  padding: 18px;
  border: 1px solid rgba(15, 14, 13, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
}

.launch-report-steps span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(198, 62, 45, 0.44);
  border-radius: 50%;
  color: #b53b2f;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.launch-report-steps h3 {
  margin: 0;
  font-size: 1rem;
}

.launch-report-steps p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.launch-report-side .cta-cluster {
  margin-top: 18px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.page-title {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
}

.page-title--compact {
  font-size: 2.2rem;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.8fr);
  margin-top: 32px;
}

.dashboard-grid--product {
  align-items: start;
}

.panel--primary-action .dashboard-analysis-form {
  margin-top: 18px;
}

.billing-gate-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(184, 58, 46, 0.22);
  border-radius: var(--radius-md);
  background: rgba(184, 58, 46, 0.06);
}

.billing-gate-note p {
  margin: 8px 0 14px;
}

.product-brief-recent {
  margin-top: 24px;
}

.brief-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.8fr);
  gap: 24px;
  margin-top: 32px;
}

.dashboard-meta {
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.brief-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.brief-list__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.brief-list__item:hover {
  border-color: rgba(212, 130, 10, 0.5);
}

.brief-list__meta h3 {
  margin: 0;
  font-size: 1rem;
}

.brief-list__meta p {
  margin: 6px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.dashboard-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.dashboard-section-head .citation {
  margin: 0;
  max-width: 28ch;
  text-align: right;
}

.follow-up-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.follow-up-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.follow-up-item--due {
  border-color: rgba(212, 130, 10, 0.4);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(255, 255, 255, 0.02));
}

.follow-up-item__body {
  min-width: 0;
}

.follow-up-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.follow-up-item__contact,
.follow-up-item__note,
.follow-up-empty {
  color: var(--color-text-secondary);
}

.follow-up-item__contact {
  margin: 10px 0 0;
}

.follow-up-item__note {
  margin: 8px 0 0;
}

.follow-up-item__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.follow-up-empty {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.request-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.request-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.request-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
}

.request-card__header-copy {
  min-width: 0;
}

.request-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.request-card__title {
  margin: 0;
  font-size: 1rem;
}

.request-card .mono {
  margin: 8px 0 0;
}

.request-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.request-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.request-card__facts div {
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.request-card__facts dt {
  margin: 0 0 6px;
  color: var(--color-text-disabled);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.request-card__facts dd {
  margin: 0;
  color: var(--color-text-secondary);
  word-break: break-word;
}

.request-card__facts a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-card__goal,
.request-empty,
.request-notes__list {
  color: var(--color-text-secondary);
}

.request-card__goal {
  margin: 0;
  line-height: 1.55;
}

.request-card__note {
  margin: 0;
  color: var(--color-text-disabled);
  line-height: 1.5;
}

.request-provision {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(212, 130, 10, 0.25);
  border-radius: var(--radius-md);
  background: rgba(212, 130, 10, 0.08);
}

.request-provision__copy {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.request-provision__code {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(11, 11, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}

.request-provision__code code {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--color-text-primary);
}

.request-provision__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-empty {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.request-empty h3 {
  margin: 0 0 8px;
  color: var(--color-text-primary);
}

.request-notes__list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.request-notes__list li + li {
  margin-top: 10px;
}

.request-card--skeleton {
  gap: 12px;
}

.request-skeleton {
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  background-size: 200% 100%;
  animation: request-skeleton 1.4s ease-in-out infinite;
}

.request-skeleton--short {
  width: 120px;
  height: 18px;
}

.request-skeleton--title {
  width: 42%;
  max-width: 280px;
  height: 28px;
}

.request-skeleton--row {
  width: 100%;
  height: 48px;
}

@keyframes request-skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.signal-tag--due {
  color: var(--color-amber-hover);
  background: rgba(212, 130, 10, 0.18);
}

.signal-tag--scheduled {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.signal-tag--stage-open {
  color: var(--color-text-primary);
  background: rgba(97, 142, 94, 0.16);
}

.signal-tag--stage-draft {
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.06);
}

.signal-tag--stage-won {
  color: #9ee3b6;
  background: rgba(45, 122, 79, 0.18);
}

.signal-tag--stage-closed {
  color: #e4b5ae;
  background: rgba(192, 57, 43, 0.16);
}

.brief-worklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.brief-work-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.brief-work-item--due {
  border-color: rgba(212, 130, 10, 0.4);
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.08), rgba(255, 255, 255, 0.02));
}

.brief-work-item__body {
  min-width: 0;
}

.brief-work-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.brief-work-item__contact,
.brief-work-item__summary {
  color: var(--color-text-secondary);
}

.brief-work-item__contact {
  margin: 10px 0 0;
}

.brief-work-item__summary {
  margin: 8px 0 0;
}

.brief-work-item__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.usage-meter {
  margin-top: 14px;
}

.usage-meter__bar {
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.usage-meter__fill {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--color-amber);
}

.processing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.processing__panel {
  width: min(100%, var(--content-xs));
  text-align: center;
}

.processing__status {
  margin-top: 28px;
  color: var(--color-text-secondary);
  min-height: 24px;
}

.processing__bar {
  margin-top: 24px;
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.processing__bar::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--color-amber);
  animation: process-progress 4s ease-in-out forwards;
}

.processing__messages {
  position: relative;
  margin-top: 18px;
  height: 24px;
}

.processing__messages span {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: rotate-status 8s linear infinite;
}

.processing__messages span:nth-child(2) {
  animation-delay: 2s;
}

.processing__messages span:nth-child(3) {
  animation-delay: 4s;
}

.processing__messages span:nth-child(4) {
  animation-delay: 6s;
}

.processing__hint {
  margin-top: 18px;
  color: var(--color-text-disabled);
  font-size: 0.92rem;
}

.page--print {
  min-height: 100vh;
  background: var(--color-bg-paper);
  color: var(--color-ink);
}

.page--share {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212, 130, 10, 0.08), transparent 34%),
    linear-gradient(180deg, #f8f4ed 0%, #f4efe8 100%);
  color: var(--color-ink);
}

.share-shell {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 32px 0 64px;
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.share-header__actions {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.share-main {
  display: grid;
  gap: 24px;
}

.share-placeholder {
  padding: 48px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.share-brief {
  padding: 32px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: 20px;
  background: rgba(252, 250, 246, 0.92);
  box-shadow: 0 18px 40px rgba(34, 31, 26, 0.08);
}

.share-brief__lead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(34, 31, 26, 0.08);
}

.share-brief__actions {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.share-brief__intro {
  margin: 24px 0 32px;
  max-width: 70ch;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.share-brief__expiry {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
}

.share-brief__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.68fr);
  gap: 24px;
}

.panel--share {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 238, 231, 0.92));
  border-color: rgba(34, 31, 26, 0.08);
}

.share-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: 18px;
  background: rgba(252, 250, 246, 0.82);
  box-shadow: var(--shadow-sm);
}

.share-footer__copy {
  margin: 8px 0 0;
  max-width: 64ch;
  color: var(--color-ink-soft);
}

.share-footer__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.print-shell {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 32px 0 48px;
}

.print-placeholder {
  padding: 48px 0;
}

.print-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.print-brief {
  padding: 28px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
}

.print-brief__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(34, 31, 26, 0.08);
}

.print-brief__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.print-brief__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 24px;
  margin-top: 24px;
}

.print-brief__content,
.print-brief__side {
  display: grid;
  gap: 18px;
}

.brief-section--print,
.panel--print {
  background: #fff;
  border-color: rgba(34, 31, 26, 0.08);
}

.brief-page {
  display: grid;
  gap: 32px;
}

.brief-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.brief-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brief-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
}

.brief-content {
  display: grid;
  gap: 18px;
}

.brief-section {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.brief-side {
  display: grid;
  gap: 18px;
  align-self: start;
}

.app-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
}

.chip:hover {
  border-color: rgba(212, 130, 10, 0.32);
  color: var(--color-text-primary);
}

.chip:focus-visible {
  outline: 2px solid rgba(212, 130, 10, 0.65);
  outline-offset: 2px;
}

.chip--active {
  color: var(--color-text-primary);
  border-color: rgba(212, 130, 10, 0.45);
  background: rgba(212, 130, 10, 0.1);
}

.signal-feed,
.movers-list,
.snapshot-list,
.week-brief {
  display: grid;
  gap: 18px;
}

.signal-card__meta,
.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.client-tag,
.signal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-amber-hover);
  background: rgba(212, 130, 10, 0.12);
}

.signal-tag--muted {
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

.signal-tag--warning {
  color: #e4b5ae;
  background: rgba(192, 57, 43, 0.16);
}

.mover__name,
.signal-card__title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.mover__excerpt,
.signal-card__excerpt,
.week-brief p,
.snapshot-list p {
  color: var(--color-text-secondary);
}

.signal-meter {
  height: 4px;
  border-radius: var(--radius-full);
  background:
    linear-gradient(90deg,
      rgba(212, 130, 10, 0.95) 0%,
      rgba(212, 130, 10, 0.7) 24%,
      rgba(212, 130, 10, 0.25) 42%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(255, 255, 255, 0.08) 100%);
}

.signal-meter--busy {
  background:
    linear-gradient(90deg,
      rgba(212, 130, 10, 0.95) 0%,
      rgba(212, 130, 10, 0.7) 40%,
      rgba(212, 130, 10, 0.45) 65%,
      rgba(255, 255, 255, 0.08) 65%,
      rgba(255, 255, 255, 0.08) 100%);
}

.signal-meter--quiet {
  background:
    linear-gradient(90deg,
      rgba(212, 130, 10, 0.7) 0%,
      rgba(212, 130, 10, 0.28) 18%,
      rgba(255, 255, 255, 0.08) 18%,
      rgba(255, 255, 255, 0.08) 100%);
}

.sync-failure-note {
  margin: 0;
  color: #e4b5ae;
  line-height: 1.45;
  max-width: 30ch;
}

.mover {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mover:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mover__name {
  font-size: 1.15rem;
}

.mover__meta,
.citation,
.snapshot-list li {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.mover__meta {
  margin-top: 6px;
}

.company-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.company-domain {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.company-sync-failure {
  margin: 12px 0 0;
  max-width: 64ch;
  color: #e4b5ae;
  line-height: 1.5;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 24px;
  margin-top: 28px;
}

.signal-day {
  display: grid;
  gap: 14px;
}

.signal-day__label {
  margin: 0;
  color: var(--color-amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.signal-card__title {
  font-size: 1.35rem;
}

.signal-card__meta {
  margin-top: 10px;
}

.citation {
  margin-top: 12px;
}

.sync-failure-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.sync-failure-list li {
  display: grid;
  gap: 3px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sync-failure-list span,
.sync-failure-list a {
  color: var(--color-text-primary);
  font-weight: 700;
}

.sync-failure-list a:hover,
.sync-failure-list a:focus-visible {
  color: var(--color-accent);
}

.sync-failure-list small {
  color: var(--color-text-disabled);
  line-height: 1.45;
}

.signal-card__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.dismissed-signals {
  margin-top: 24px;
}

.dismissed-signal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dismissed-signal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.dismissed-signal__body {
  min-width: 0;
}

.dismissed-signal__title,
.dismissed-signal__excerpt {
  margin: 0;
}

.dismissed-signal__title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.dismissed-signal__excerpt {
  margin-top: 8px;
  color: var(--color-text-secondary);
}

.snapshot-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.snapshot-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.snapshot-list strong {
  color: var(--color-text-primary);
}

.week-brief {
  margin-top: 24px;
}

.week-brief .panel {
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.05), rgba(212, 130, 10, 0.01)) var(--color-bg-elevated);
}

.sample-gate {
  position: relative;
  margin-top: 32px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 31, 26, 0.08);
  background: #fff;
  overflow: hidden;
}

.sample-gate__blur {
  filter: blur(6px);
  pointer-events: none;
}

.sample-gate__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(252, 250, 246, 0.86);
  text-align: center;
}

.sample-gate__overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.sample-gate__overlay p {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: radial-gradient(circle at top, rgba(212, 130, 10, 0.08), transparent 35%), var(--color-bg-base);
}

.auth-card {
  width: min(100%, 420px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-bg-elevated);
}

.auth-card form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.auth-card label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.optional-fields {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.optional-fields summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  list-style: none;
}

.optional-fields summary::-webkit-details-marker {
  display: none;
}

.optional-fields summary::after {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-amber);
  font-weight: 700;
  line-height: 1;
}

.optional-fields[open] summary::after {
  content: "-";
}

.optional-fields__body {
  display: grid;
  gap: 14px;
  padding: 0 14px 14px;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 4px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.consent-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--color-amber);
}

.consent-check span {
  display: block;
}

.auth-card p {
  color: var(--color-text-secondary);
}

.field-hint {
  color: var(--color-text-disabled);
  font-size: 0.82rem;
}

.turnstile-box {
  min-height: 65px;
}

.access-code-box {
  margin: 18px 0 8px;
  padding: 18px;
  border: 1px solid rgba(212, 130, 10, 0.42);
  border-radius: var(--radius-md);
  background: rgba(212, 130, 10, 0.08);
  overflow-wrap: anywhere;
}

.access-code-box code {
  font-family: var(--font-mono);
  color: var(--color-text-primary);
  font-size: clamp(1.05rem, 3.8vw, 1.45rem);
  letter-spacing: 0.04em;
}

.access-code-warning {
  color: var(--color-amber-hover) !important;
  font-size: 0.92rem;
}

.workspace-summary {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.workspace-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.workspace-summary dt {
  color: var(--color-text-disabled);
}

.workspace-summary dd {
  margin: 0;
  color: var(--color-text-primary);
  text-align: right;
}

.billing-next-step {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.page--light .footer {
  border-top-color: rgba(34, 31, 26, 0.08);
  color: var(--color-ink-soft);
}

.page--light .follow-up-item__contact,
.page--light .follow-up-item__note,
.page--light .follow-up-empty {
  color: var(--color-ink-soft);
}

.page--light .brief-work-item__contact,
.page--light .brief-work-item__summary {
  color: var(--color-ink-soft);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__brand {
  display: grid;
  gap: 8px;
}

.footer__product-note {
  max-width: 62ch;
  margin: 0;
  color: inherit;
}

.footer__links,
.footer__trust {
  max-width: 54ch;
}

.footer__trust {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  color: var(--color-text-muted);
}

.page--light .footer__trust {
  color: var(--color-ink-soft);
}

.footer__trust > span {
  display: grid;
  gap: 3px;
}

.footer__trust strong {
  color: inherit;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__trust a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-page .topbar__nav {
  color: var(--color-ink-soft);
}

.docs-page .topbar__nav a:hover,
.docs-page .topbar__nav a:focus-visible {
  color: var(--color-ink);
}

.docs-hero {
  padding-top: 72px;
}

.docs-hero__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.docs-highlight {
  background: linear-gradient(180deg, rgba(212, 130, 10, 0.07), rgba(212, 130, 10, 0.01)), #fff;
}

.docs-link-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-link-list li {
  display: grid;
  gap: 4px;
}

.docs-link-list strong {
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: 0.86rem;
}

.docs-link-list span {
  color: var(--color-ink-soft);
}

.docs-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-card {
  padding: 24px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
}

.docs-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.docs-card p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
}

.docs-card .button {
  margin-top: 18px;
}

.docs-shell {
  display: grid;
  gap: 28px;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.docs-sidebar__nav,
.docs-sidebar__panel {
  padding: 18px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
}

.docs-sidebar__nav {
  display: grid;
  gap: 8px;
}

.docs-sidebar__nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-ink-soft);
}

.docs-sidebar__nav a:hover,
.docs-sidebar__nav a:focus-visible {
  color: var(--color-ink);
  background: rgba(212, 130, 10, 0.08);
}

.docs-sidebar__nav a.is-active {
  color: var(--color-ink);
  background: rgba(212, 130, 10, 0.12);
  font-weight: 600;
}

.docs-sidebar__panel p:last-child {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.docs-article {
  min-width: 0;
}

.docs-article section + section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(34, 31, 26, 0.08);
}

.docs-article h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.docs-article p,
.docs-article li {
  color: var(--color-ink-soft);
}

.docs-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.docs-list li + li {
  margin-top: 8px;
}

.docs-step-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.docs-step {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(34, 31, 26, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
}

.docs-step strong {
  color: var(--color-ink);
}

.docs-callout {
  padding: 22px;
  border: 1px solid rgba(212, 130, 10, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(212, 130, 10, 0.08);
}

.docs-callout--muted {
  border-color: rgba(34, 31, 26, 0.08);
  background: rgba(34, 31, 26, 0.03);
}

.docs-callout h2,
.docs-callout .panel-title {
  margin: 0;
}

.docs-callout p:last-child,
.docs-callout ul:last-child {
  margin-bottom: 0;
}

body[data-page="dashboard"],
body[data-page="brief"],
body[data-page="watchlist"],
body[data-page="company"],
body[data-page="workspace-requests"],
body[data-page="workspace-directory"],
body[data-page="processing"] {
  color-scheme: light;
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 130, 10, 0.11), transparent 31%),
    linear-gradient(180deg, #f7f1e8 0%, #ede4d6 100%);
  color: var(--color-ink);
}

.app-layout {
  --color-text-primary: var(--color-ink);
  --color-text-secondary: var(--color-ink-soft);
  --color-text-disabled: #8a7d6c;
  --color-border-subtle: rgba(15, 14, 13, 0.1);
  --color-border-default: rgba(15, 14, 13, 0.16);
  --color-border-strong: rgba(15, 14, 13, 0.24);
  --color-bg-elevated: #fff8eb;
  --color-bg-overlay: #f8f0e2;
  --color-bg-inset: rgba(15, 14, 13, 0.04);
  position: relative;
  isolation: isolate;
  color: var(--color-ink);
  background: transparent;
}

.app-layout::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(15, 14, 13, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 14, 13, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
}

.app-sidebar {
  position: relative;
  z-index: 1;
  border-right-color: rgba(15, 14, 13, 0.12);
  background: rgba(246, 241, 232, 0.82);
  box-shadow: 18px 0 70px rgba(58, 44, 24, 0.08);
  backdrop-filter: blur(16px);
}

.app-main {
  position: relative;
  z-index: 1;
}

.app-layout .brand,
.app-layout .brand__word,
.app-layout .page-title,
.app-layout .panel-title,
.app-layout h1,
.app-layout h2,
.app-layout h3,
.app-layout strong {
  color: var(--color-ink);
}

.app-layout .eyebrow,
.app-layout .preview-label,
.app-layout .section-label {
  color: var(--color-amber);
}

.app-layout .section-lead,
.app-layout .dashboard-meta,
.app-layout .detail-meta,
.app-layout .mono,
.app-layout .citation,
.app-layout p,
.app-layout li,
.app-layout label {
  color: var(--color-ink-soft);
}

.app-nav a {
  color: var(--color-ink-soft);
}

.app-nav a.is-active,
.app-nav a:hover,
.app-nav a:focus-visible {
  color: var(--color-ink);
  background: rgba(15, 14, 13, 0.06);
}

.app-account {
  color: var(--color-ink-soft);
}

.app-layout .panel,
.app-layout .brief-section,
.app-layout .brief-list__item,
.app-layout .follow-up-item,
.app-layout .brief-work-item,
.app-layout .request-card,
.app-layout .request-empty,
.app-layout .follow-up-empty,
.app-layout .signal-card,
.app-layout .mover,
.app-layout .snapshot-card,
.app-layout .company-hero,
.app-layout .week-brief,
.app-layout .insight-box {
  border-color: rgba(15, 14, 13, 0.1);
  background: rgba(255, 251, 243, 0.82);
  box-shadow: 0 24px 70px rgba(58, 44, 24, 0.1);
}

.app-layout .panel:hover,
.app-layout .brief-list__item:hover,
.app-layout .brief-work-item:hover,
.app-layout .follow-up-item:hover,
.app-layout .request-card:hover {
  border-color: rgba(184, 58, 46, 0.24);
}

.app-layout .button--primary {
  color: #fff8eb;
  background: var(--color-ink);
  box-shadow: 0 12px 28px rgba(15, 14, 13, 0.16);
}

.app-layout .button {
  white-space: nowrap;
}

.app-layout .button--primary:hover {
  background: #1d1a16;
}

.app-layout .button--secondary,
.app-layout .button--ghost {
  color: var(--color-ink);
  border-color: rgba(15, 14, 13, 0.16);
  background: rgba(255, 251, 243, 0.64);
}

.app-layout .button--secondary:hover,
.app-layout .button--ghost:hover {
  border-color: rgba(184, 58, 46, 0.26);
  background: rgba(255, 251, 243, 0.95);
}

.app-layout .input,
.app-layout select,
.app-layout textarea {
  color: var(--color-ink);
  border-color: rgba(15, 14, 13, 0.16);
  background: rgba(255, 251, 243, 0.88);
}

.app-layout .input:focus,
.app-layout select:focus,
.app-layout textarea:focus {
  border-color: rgba(184, 58, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 58, 46, 0.08);
}

.app-layout .chip {
  color: var(--color-ink-soft);
  border-color: rgba(15, 14, 13, 0.12);
  background: rgba(255, 251, 243, 0.64);
}

.app-layout .chip:hover,
.app-layout .chip--active {
  color: var(--color-ink);
  border-color: rgba(212, 130, 10, 0.48);
  background: rgba(212, 130, 10, 0.1);
}

.app-layout .client-tag {
  color: #8b4e05;
  background: rgba(212, 130, 10, 0.13);
}

.app-layout .signal-tag {
  color: #9f342a;
  background: rgba(184, 58, 46, 0.1);
}

.app-layout .signal-tag--muted,
.app-layout .signal-tag--stage-draft,
.app-layout .signal-tag--scheduled {
  color: var(--color-ink-soft);
  background: rgba(15, 14, 13, 0.06);
}

.app-layout .signal-tag--warning,
.app-layout .signal-tag--stage-closed {
  color: #9f342a;
  background: rgba(184, 58, 46, 0.12);
}

.app-layout .signal-tag--stage-won {
  color: #1d6f45;
  background: rgba(45, 122, 79, 0.12);
}

.app-layout .usage-meter__bar,
.app-layout .signal-meter {
  background:
    linear-gradient(90deg,
      rgba(212, 130, 10, 0.95) 0%,
      rgba(212, 130, 10, 0.7) 38%,
      rgba(15, 14, 13, 0.08) 38%,
      rgba(15, 14, 13, 0.08) 100%);
}

.app-layout .usage-meter__fill {
  background: var(--color-amber);
}

.app-layout hr {
  border-top-color: rgba(15, 14, 13, 0.1) !important;
}

.app-layout .brief-section ul,
.app-layout .request-card__facts div,
.app-layout .request-provision,
.app-layout .access-code-box,
.app-layout .billing-next-step,
.app-layout .workspace-summary div {
  border-color: rgba(15, 14, 13, 0.1);
  background: rgba(15, 14, 13, 0.035);
}

.app-layout .request-provision__code {
  border-color: rgba(15, 14, 13, 0.1);
  background: rgba(255, 251, 243, 0.82);
}

.app-boot-panel {
  width: min(100%, 760px);
  margin: clamp(48px, 11vh, 120px) auto 0;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(15, 14, 13, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 243, 0.86);
  box-shadow: 0 28px 90px rgba(58, 44, 24, 0.14);
}

.app-boot-panel::after {
  content: "";
  display: block;
  width: 180px;
  height: 5px;
  margin-top: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-amber), rgba(184, 58, 46, 0.9), transparent);
  animation: app-boot-progress 1.2s ease-in-out infinite;
}

.app-boot-skeleton {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.skeleton-line,
.skeleton-grid span {
  display: block;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(15, 14, 13, 0.07), rgba(212, 130, 10, 0.13), rgba(15, 14, 13, 0.07));
  background-size: 220% 100%;
  animation: skeleton-sheen 1.4s ease-in-out infinite;
}

.skeleton-line {
  width: 100%;
  height: 14px;
}

.skeleton-line--title {
  width: 58%;
  height: 24px;
}

.skeleton-line--short {
  width: 42%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.skeleton-grid--brief {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.skeleton-grid span {
  min-height: 96px;
  border-radius: var(--radius-md);
}

.processing__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  counter-reset: processing-step;
}

.processing__steps li {
  counter-increment: processing-step;
  padding: 12px;
  border: 1px solid rgba(15, 14, 13, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 243, 0.72);
  color: var(--home-ink-soft);
  font-size: 0.82rem;
}

.processing__steps li::before {
  content: counter(processing-step, decimal-leading-zero);
  display: block;
  margin-bottom: 6px;
  color: var(--home-red);
  font-family: var(--font-mono);
  font-weight: 800;
}

@keyframes skeleton-sheen {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@media (max-width: 720px) {
  .skeleton-grid,
  .skeleton-grid--brief,
  .processing__steps {
    grid-template-columns: 1fr;
  }
}

@keyframes app-boot-progress {
  0% {
    transform: scaleX(0.45);
    transform-origin: left;
    opacity: 0.6;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
  100% {
    transform: scaleX(0.45);
    transform-origin: right;
    opacity: 0.6;
  }
}

@keyframes process-progress {
  from {
    transform: translateX(-100%);
    width: 30%;
  }
  to {
    transform: translateX(180%);
    width: 40%;
  }
}

@keyframes rotate-status {
  0%,
  18% {
    opacity: 0;
    transform: translateY(4px);
  }
  25%,
  43% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .brief-layout,
  .dashboard-grid,
  .brief-index-grid,
  .company-layout,
  .print-brief__grid,
  .share-brief__grid,
  .pricing-grid,
  .section-grid,
  .intent-hero__grid,
  .intent-card-grid,
  .intent-proof,
    .value-bar,
    .proof-grid,
    .fit-grid,
    .faq-grid,
    .docs-hero__grid,
  .docs-card-grid,
  .docs-shell {
    grid-template-columns: 1fr;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .docs-sidebar {
    position: static;
    top: auto;
  }

  .hero-proof {
    max-width: 680px;
    margin: 0 auto;
  }

  .intent-hero__grid {
    gap: 28px;
  }

  .launch-report-dashboard,
  .launch-report-steps {
    grid-template-columns: 1fr;
  }
}

@page {
  size: A4;
  margin: 18mm 16mm 20mm;
}

@media print {
  body.page--print {
    background: var(--color-bg-paper);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .print-shell {
    width: 100%;
    padding: 0;
  }

  .print-toolbar {
    display: none;
  }

  .print-brief {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: var(--color-bg-paper);
  }

  .print-brief__header {
    padding-bottom: 18px;
  }

  .brief-section--print,
  .panel--print {
    background: #fffaf5;
    break-inside: avoid;
    box-shadow: none;
  }
}

@media (max-width: 720px) {
  .share-shell,
  .print-shell {
    width: min(calc(100% - 32px), 1160px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 64px;
    padding: 12px 0;
  }

  .topbar__nav {
    display: flex;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .topbar__nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .topbar__nav .button {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .topbar__primary-cta {
    order: -1;
  }

  .topbar__mobile-optional {
    display: none;
  }

  .topbar__desktop-label {
    display: none;
  }

  .topbar__mobile-label {
    display: inline;
  }

  .dashboard-analysis-form {
    grid-template-columns: 1fr;
  }

  .inline-input,
  .product-family-strip,
  .hero__workspace--lead,
  .brief-toolbar,
  .footer__inner,
  .dashboard-header,
  .dashboard-section-head,
  .company-hero,
  .share-header,
  .share-brief__lead,
  .share-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .share-header__actions,
  .share-brief__actions,
  .share-footer__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .footer__trust {
    grid-template-columns: 1fr;
  }

  .dashboard-section-head .citation {
    max-width: none;
    text-align: left;
  }

  .dismissed-signal {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero > .container {
    width: min(calc(100% - 40px), var(--content-lg));
  }

  .hero__title {
    font-size: 2.9rem;
  }

  .intent-hero {
    padding-top: 56px;
  }

  .intent-hero__title {
    font-size: 2.4rem;
  }

  .intent-card,
  .sample-request-panel,
  .intent-proof__brief,
  .intent-cta-panel {
    padding: 18px;
  }

  .hero__workspace--lead {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
    min-height: auto;
    background: transparent;
  }

  .source-artifact,
  .hero-brief-card {
    position: relative;
    inset: auto;
    --artifact-rotate: 0deg;
    width: 100%;
    transform: none;
  }

  .source-artifact--comp {
    display: none;
  }

  .hero-brief-card {
    min-height: auto;
    padding: 24px;
  }

  .hero-brief-card h2 {
    font-size: 1.7rem;
  }

  .app-main {
    padding: 24px 20px 32px;
  }

  .share-placeholder,
  .share-brief,
  .share-footer {
    padding: 24px;
  }

  .follow-up-item {
    grid-template-columns: 1fr;
  }

  .follow-up-item__actions {
    justify-items: start;
  }

  .request-card__header,
  .request-card__facts {
    grid-template-columns: 1fr;
  }

  .request-card__actions {
    justify-content: flex-start;
  }

  .request-provision__actions {
    justify-content: flex-start;
  }

  .brief-work-item {
    grid-template-columns: 1fr;
  }

  .brief-work-item__actions {
    justify-items: start;
  }

}

body.marketing-home {
  --home-paper: #f4efe4;
  --home-paper-soft: #fbf6ec;
  --home-paper-card: #fffaf0;
  --home-paper-shadow: rgba(62, 44, 24, 0.16);
  --home-ink: #0f0e0d;
  --home-ink-soft: #5f584e;
  --home-rule: rgba(18, 16, 13, 0.14);
  --home-rule-strong: rgba(18, 16, 13, 0.28);
  --home-red: #b83a2e;
  --home-amber: #d4820a;
  background:
    linear-gradient(180deg, #f5efe3 0%, #fbf6ec 44%, #f1e6d4 100%);
  color: var(--home-ink);
}

body.marketing-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 16, 13, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 16, 13, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(18, 16, 13, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(18, 16, 13, 0.04) 0 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px, 19px 17px, 23px 29px;
  opacity: 0.82;
}

.marketing-home .topbar {
  border-bottom-color: var(--home-rule);
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: blur(18px);
}

.marketing-home .topbar__inner {
  width: min(calc(100% - 84px), 1780px);
  min-height: 96px;
}

.marketing-home .brand {
  gap: 14px;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-weight: 700;
}

.marketing-home .brand--lockup {
  gap: 0;
}

.marketing-home .brand__lockup {
  width: clamp(210px, 16vw, 286px);
  max-height: 76px;
}

.marketing-home .brand__mark {
  width: 46px;
  height: 46px;
}

.marketing-home .brand__word {
  font-size: clamp(1.55rem, 1.8vw, 2.1rem);
  font-weight: 700;
}

.marketing-home .topbar__nav {
  gap: clamp(22px, 2.5vw, 42px);
  color: var(--home-ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 650;
}

.marketing-home .topbar__nav a:not(.button) {
  position: relative;
}

.marketing-home .topbar__nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--home-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.marketing-home .topbar__nav a:not(.button):hover,
.marketing-home .topbar__nav a:not(.button):focus-visible {
  color: var(--home-ink);
}

.marketing-home .topbar__nav a:not(.button):hover::after,
.marketing-home .topbar__nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.marketing-home .button--primary {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fffaf0;
  box-shadow: 0 18px 44px rgba(18, 16, 13, 0.18);
}

.marketing-home .button--primary:hover,
.marketing-home .button--primary:focus-visible,
.marketing-home .topbar__nav a.button--primary:hover,
.marketing-home .topbar__nav a.button--primary:focus-visible {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fffaf0;
}

.marketing-home .button--secondary,
.marketing-home .button--ghost {
  border-color: var(--home-rule);
  background: rgba(255, 250, 240, 0.5);
  color: var(--home-ink);
}

.marketing-home .hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: clamp(58px, 5vw, 92px) 0 42px;
  overflow: hidden;
}

.marketing-home .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 44px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(18, 16, 13, 0.08) 39% 42%, transparent 43% 100%) 0 100% / 74px 18px repeat-x;
  opacity: 0.42;
}

.marketing-home .hero > .container {
  width: min(calc(100% - 96px), 1740px);
}

.marketing-home .hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(610px, 1.12fr);
  gap: clamp(42px, 4.6vw, 104px);
}

.marketing-home .hero__content {
  max-width: 700px;
}

.marketing-home .eyebrow,
.marketing-home .preview-label {
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.marketing-home .hero__title {
  max-width: 700px;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.95vw, 7.25rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.marketing-home .hero__title::after {
  content: "";
  display: block;
  width: min(390px, 78%);
  height: 4px;
  margin: 22px 0 0 auto;
  background: var(--home-red);
  transform: rotate(-0.8deg);
}

.marketing-home .hero__lead {
  max-width: 680px;
  color: var(--home-ink-soft);
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  line-height: 1.48;
}

.marketing-home .inline-input {
  max-width: 680px;
  margin-top: 32px;
  gap: 0;
  padding: 5px;
  border: 1px solid var(--home-rule-strong);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 16px 38px rgba(62, 44, 24, 0.08);
}

.marketing-home .inline-input .input {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--home-ink);
}

.marketing-home .inline-input .input:focus {
  box-shadow: none;
}

.marketing-home .inline-input .button {
  min-width: 166px;
  min-height: 58px;
  white-space: nowrap;
}

.marketing-home .hero__support {
  max-width: 650px;
  color: var(--home-ink-soft);
  font-size: 0.96rem;
}

.marketing-home .hero__support a {
  color: var(--home-red);
}

.marketing-home .product-family-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 16px;
}

.marketing-home .product-family-strip a,
.marketing-home .product-family-strip span {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid var(--home-rule);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.56);
  color: var(--home-ink);
}

.marketing-home .product-family-strip a:hover,
.marketing-home .product-family-strip a:focus-visible {
  border-color: rgba(184, 58, 46, 0.45);
  background: rgba(255, 250, 240, 0.82);
}

.marketing-home .product-family-strip strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.05;
}

.marketing-home .product-family-strip small {
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.marketing-home .hero__preview {
  min-width: 0;
  border: 0;
  background: transparent;
}

.brief-desk {
  position: relative;
  min-height: clamp(590px, 37vw, 720px);
}

.source-page {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 1;
  width: 91%;
  min-height: 430px;
  border: 5px solid var(--home-ink);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 30px 80px var(--home-paper-shadow);
  transform: rotate(-1.2deg);
  overflow: hidden;
}

.source-page::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 58, 46, 0.82), transparent);
  opacity: 0;
  transform: translateY(0);
}

.source-page__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid var(--home-rule);
  background: rgba(255, 250, 240, 0.78);
}

.source-page__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 16, 13, 0.28);
}

.source-page__bar strong {
  margin-left: 16px;
  padding: 8px 14px;
  border: 1px solid var(--home-rule);
  border-radius: 6px;
  color: var(--home-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.source-page__site {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(190px, 0.58fr);
  gap: 26px;
  align-items: center;
  min-height: 340px;
  margin: 38px 44px;
  padding: 42px 48px;
  border: 1px solid var(--home-rule);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.source-page__site p {
  margin: 0 0 18px;
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.source-page__site h2 {
  max-width: 360px;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 2.95vw, 4rem);
  line-height: 0.95;
}

.source-page__signals {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--home-ink-soft);
  font-size: 0.82rem;
}

.source-page__signals li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.source-page__signals li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid var(--home-red);
  border-radius: 999px;
}

.source-page__shape {
  min-height: 210px;
  clip-path: polygon(12% 76%, 52% 15%, 96% 86%, 0 92%);
  background:
    linear-gradient(135deg, rgba(83, 101, 120, 0.14), rgba(83, 101, 120, 0.42)),
    repeating-linear-gradient(135deg, rgba(18, 16, 13, 0.12) 0 1px, transparent 1px 28px);
}

.red-note {
  position: absolute;
  color: var(--home-red);
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 760;
  letter-spacing: 0.01em;
  font-size: 1.22rem;
  line-height: 1;
}

.red-note::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 86px;
  height: 48px;
  border-left: 3px solid var(--home-red);
  border-bottom: 3px solid var(--home-red);
  border-radius: 0 0 0 38px;
  transform: rotate(-34deg);
}

.red-note--one {
  left: 52px;
  top: 190px;
  transform: rotate(-8deg);
}

.red-note--two {
  right: 72px;
  top: 210px;
  transform: rotate(7deg);
}

.brief-dossier,
.build-plan {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--home-rule);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 28px 70px var(--home-paper-shadow);
}

.brief-dossier {
  left: -8px;
  bottom: 58px;
  width: min(402px, 48%);
  padding: 24px 26px;
}

.brief-dossier header,
.build-plan header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--home-rule);
}

.brief-dossier header span,
.build-plan header span {
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
}

.brief-dossier header strong {
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.brief-dossier ol {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.brief-dossier li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}

.brief-dossier li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--home-red);
  color: #fffaf0;
  font-weight: 800;
  font-size: 0.74rem;
}

.brief-dossier strong {
  display: block;
  color: var(--home-ink);
  font-size: 0.92rem;
}

.brief-dossier p {
  margin: 4px 0 0;
  color: var(--home-ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.brief-dossier a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--home-red);
  font-size: 0.9rem;
  font-weight: 800;
}

.build-plan {
  right: 8px;
  bottom: 18px;
  width: min(520px, 58%);
  padding: 24px;
  transform: rotate(0.8deg);
}

.build-plan__tape {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 86px;
  height: 34px;
  background: rgba(210, 187, 142, 0.46);
  transform: translateX(-50%) rotate(-7deg);
}

.build-plan button {
  padding: 8px 12px;
  border: 1px solid var(--home-rule);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--home-ink-soft);
}

.build-plan pre {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--home-rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--home-ink);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  line-height: 1.58;
  white-space: pre-wrap;
}

@media (prefers-reduced-motion: no-preference) {
  .marketing-home .hero__content {
    animation: owly-rise 520ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .source-page {
    animation: owly-paper-settle 540ms 60ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .source-page::after {
    animation: owly-scan 4.8s 950ms ease-in-out infinite;
  }

  .brief-dossier {
    animation: owly-card-in 480ms 180ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .build-plan {
    animation: owly-card-in 480ms 260ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .marketing-home .hero__title::after {
    transform-origin: right;
    animation: owly-underline 700ms 260ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .red-note::after {
    animation: owly-red-mark 760ms 780ms ease-out both;
  }
}

@keyframes owly-rise {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes owly-paper-settle {
  from {
    opacity: 0.94;
    transform: translateY(18px) rotate(-2.2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.2deg);
  }
}

@keyframes owly-card-in {
  from {
    opacity: 1;
    transform: translateY(18px) rotate(0deg) scale(0.98);
  }
  to {
    opacity: 1;
  }
}

@keyframes owly-underline {
  from {
    opacity: 0.6;
    transform: scaleX(0) rotate(-0.8deg);
  }
  to {
    opacity: 1;
    transform: scaleX(1) rotate(-0.8deg);
  }
}

@keyframes owly-red-mark {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}

@keyframes owly-scan {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  8%,
  54% {
    opacity: 1;
  }
  62% {
    opacity: 0;
    transform: translateY(286px);
  }
}

.marketing-home .value-bar {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.marketing-home .value-card,
.marketing-home .feature-card,
.marketing-home .proof-panel,
.marketing-home .proof-point,
.marketing-home .fit-card,
.marketing-home .use-case-card,
.marketing-home .pricing-card,
.marketing-home .pricing-faq > div,
.marketing-home .panel {
  border-color: var(--home-rule);
  background: rgba(255, 250, 240, 0.64);
  color: var(--home-ink);
  box-shadow: 0 16px 44px rgba(62, 44, 24, 0.06);
}

.marketing-home .value-card h3,
.marketing-home .feature-card h3,
.marketing-home .proof-point h3,
.marketing-home .fit-card h3,
.marketing-home .use-case-card h3,
.marketing-home .pricing-card__title {
  color: var(--home-ink);
}

.marketing-home .value-card p,
.marketing-home .feature-card p,
.marketing-home .proof-point p,
.marketing-home .fit-card p,
.marketing-home .fit-card li,
.marketing-home .use-case-card p,
.marketing-home .pricing-card__description,
.marketing-home .pricing-card li,
.marketing-home .pricing-card__tax,
.marketing-home .pricing-anchor {
  color: var(--home-ink-soft);
}

.marketing-home .pricing-trust-line {
  margin: 24px 0 0;
  color: var(--home-ink-soft);
  font-size: 0.875rem;
  text-align: center;
}

.launch-check-card {
  margin-top: 22px;
}

.launch-check-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(680px, 100%);
  padding: 18px 22px;
  border: 1px solid var(--home-rule);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--home-ink-soft);
  box-shadow: 0 16px 44px rgba(62, 44, 24, 0.06);
}

.launch-check-card__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n") center / contain no-repeat;
}

.launch-check-card strong {
  display: block;
  color: var(--home-ink);
}

.marketing-home .page-section {
  border-top-color: var(--home-rule);
}

.marketing-home .section-title {
  color: var(--home-ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.marketing-home .section-lead {
  color: var(--home-ink-soft);
}

.marketing-home .footer {
  border-top-color: var(--home-rule);
  background: rgba(18, 16, 13, 0.04);
  color: var(--home-ink-soft);
}

.page--pricing .page-section {
  padding-top: clamp(74px, 7vw, 118px);
}

.page--pricing .section-header {
  position: relative;
  max-width: 1080px;
}

.page--pricing .section-header::after {
  content: "checked";
  position: absolute;
  right: clamp(0px, 7vw, 90px);
  top: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(184, 58, 46, 0.8);
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.page--pricing .pricing-grid {
  align-items: stretch;
}

.page--pricing .pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.page--pricing .pricing-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 62px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 58, 46, 0.45), transparent);
  opacity: 0.7;
}

.page--pricing .pricing-card--featured::before {
  content: "best fit";
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid rgba(184, 58, 46, 0.75);
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.auth-page .auth-wrap {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(48px, 11vh, 112px) 20px clamp(36px, 6vw, 72px);
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(18, 16, 13, 0.045) 39% 42%, transparent 43% 100%) 0 100% / 74px 18px repeat-x,
    transparent;
  overflow: hidden;
}

.auth-page .auth-wrap::before,
.auth-page .auth-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.auth-page .auth-wrap::before {
  right: -90px;
  top: 10%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184, 58, 46, 0.18);
  border-radius: 999px;
}

.auth-page .auth-wrap::after {
  left: clamp(16px, 8vw, 150px);
  bottom: clamp(18px, 8vw, 100px);
  width: 190px;
  height: 64px;
  border-top: 3px solid rgba(184, 58, 46, 0.7);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.auth-page .auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(28px, 4vw, 42px);
  border-color: var(--home-rule);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 28px 80px rgba(62, 44, 24, 0.13);
  color: var(--home-ink);
}

.auth-page--login .auth-card {
  width: min(100%, 500px);
}

.auth-page--signup .auth-card {
  width: min(100%, 560px);
}

.auth-page .auth-card::before {
  content: "brief desk";
  position: absolute;
  right: 24px;
  top: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(184, 58, 46, 0.7);
  background: rgba(255, 250, 240, 0.9);
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.auth-page--login .auth-card::before {
  content: "backup access";
}

.auth-page .auth-card .brand {
  display: inline-flex;
  color: var(--home-ink);
}

.auth-page .brand--compact-lockup .brand__lockup {
  width: min(220px, 78vw);
}

.auth-page .auth-card .brand__mark {
  width: 34px;
  height: 34px;
}

.auth-page .auth-card .brand__word,
.auth-page .page-title,
.auth-page .panel-title {
  color: var(--home-ink);
  font-family: var(--font-display);
}

.auth-page .page-title {
  max-width: 9.5em;
  font-size: clamp(2.15rem, 5vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

/* Premium public sample report */
.page--sample .sample-page {
  background:
    linear-gradient(rgba(15, 14, 13, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 14, 13, 0.024) 1px, transparent 1px),
    var(--home-paper, #f4efe4);
  background-size: 42px 42px;
}

.page--sample .sample-hero {
  padding: clamp(40px, 5vw, 68px) 0 clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(15, 14, 13, 0.08);
}

.page--sample .sample-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.page--sample .sample-hero__copy {
  align-self: center;
  min-width: 0;
}

.page--sample .sample-hero .page-title {
  max-width: 12em;
  font-size: clamp(2.75rem, 5.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page--sample .sample-hero .section-lead {
  max-width: 64ch;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.page--sample .sample-product-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
  margin: 0 0 26px;
  max-width: 460px;
}

.page--sample .sample-product-strip a {
  padding: 16px 18px;
  border: 1px solid rgba(15, 14, 13, 0.13);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--home-ink);
  text-decoration: none;
}

.page--sample .sample-product-strip span {
  display: block;
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-product-strip strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.page--sample .sample-cover,
.page--sample .sample-card,
.page--sample .sample-rail,
.page--sample .sample-workspace-preview,
.page--sample .sample-cta,
.page--sample .sample-receive,
.page--sample .sample-transform,
.page--sample .sample-fit article {
  border: 1px solid rgba(15, 14, 13, 0.12);
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 26px 80px rgba(61, 45, 26, 0.1);
}

.page--sample .sample-cover {
  position: relative;
  min-height: 360px;
  min-width: 0;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page--sample .sample-cover__mark,
.page--sample .sample-kicker {
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page--sample .sample-cover h2 {
  margin: 28px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.2vw, 3.05rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page--sample .sample-cover dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.page--sample .sample-cover dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(15, 14, 13, 0.12);
}

.page--sample .sample-cover dt {
  color: var(--color-ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-cover dd {
  margin: 6px 0 0;
  color: var(--home-ink);
  overflow-wrap: anywhere;
}

.page--sample .sample-stamp {
  margin-top: auto;
  width: fit-content;
  transform: rotate(-2deg);
  border: 1px solid rgba(212, 130, 10, 0.78);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-report-shell {
  padding: 10px 0 clamp(70px, 10vw, 130px);
}

.page--sample .sample-report-grid {
  display: grid;
  grid-template-columns: minmax(200px, 248px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.page--sample .sample-rail {
  position: sticky;
  top: 96px;
  min-width: 0;
  border-radius: 20px;
  padding: 20px;
}

.page--sample .sample-rail__block + .sample-rail__block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 14, 13, 0.12);
}

.page--sample .sample-rail a {
  display: block;
  margin-top: 10px;
  color: var(--home-ink);
  text-decoration: none;
}

.page--sample .sample-rail p,
.page--sample .sample-rail__block--mono {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page--sample .sample-rail__block--mono {
  font-family: var(--font-mono);
}

.page--sample .sample-report {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.page--sample .sample-card,
.page--sample .sample-workspace-preview,
.page--sample .sample-cta,
.page--sample .sample-receive,
.page--sample .sample-transform,
.page--sample .sample-fit article {
  border-radius: 24px;
  padding: clamp(24px, 3.4vw, 36px);
}

.page--sample .sample-card h2,
.page--sample .sample-workspace-preview h2,
.page--sample .sample-cta h2,
.page--sample .sample-receive h2,
.page--sample .sample-fit h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page--sample .sample-card p,
.page--sample .sample-workspace-preview p,
.page--sample .sample-receive p,
.page--sample .sample-fit p {
  color: var(--color-ink-soft);
  line-height: 1.62;
}

.page--sample .sample-receive {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 28px;
  align-items: center;
}

.page--sample .sample-receive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page--sample .sample-receive__grid span {
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 16px;
  background: rgba(244, 239, 228, 0.68);
  font-weight: 800;
}

.page--sample .sample-transform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: rgba(255, 250, 240, 0.72);
}

.page--sample .sample-transform__input,
.page--sample .sample-transform__output {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 18px;
  background: var(--home-paper);
}

.page--sample .sample-transform strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.page--sample .sample-transform span {
  display: block;
  margin-top: 12px;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.page--sample .sample-transform__arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-bg-paper);
  font-size: 1.4rem;
  font-weight: 800;
}

.page--sample .sample-card--lead blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--color-amber);
  background: rgba(212, 130, 10, 0.08);
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.page--sample .sample-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page--sample .sample-decision-grid article {
  min-width: 0;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.7);
}

.page--sample .sample-decision-grid span,
.page--sample .sample-score span,
.page--sample .sample-workspace-card span {
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-decision-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.page--sample .sample-decision-grid p {
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.page--sample .sample-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.page--sample .sample-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page--sample .sample-score {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(15, 14, 13, 0.1);
  border-radius: 18px;
  background: rgba(244, 239, 228, 0.58);
}

.page--sample .sample-score strong {
  display: block;
  margin-top: 8px;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.page--sample .sample-meter {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(15, 14, 13, 0.12);
  overflow: hidden;
}

.page--sample .sample-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-amber);
}

.page--sample .sample-meter--red i {
  background: var(--color-error);
}

.page--sample .sample-axis {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(15, 14, 13, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(rgba(15, 14, 13, 0.1), rgba(15, 14, 13, 0.1)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(15, 14, 13, 0.1), rgba(15, 14, 13, 0.1)) 0 50% / 100% 1px no-repeat,
    rgba(255, 250, 240, 0.68);
}

.page--sample .sample-axis__label {
  position: absolute;
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-axis__label--top {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.page--sample .sample-axis__label--right {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.page--sample .sample-axis__label--bottom {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.page--sample .sample-axis__label--left {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.page--sample .sample-axis__dot {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(61, 45, 26, 0.12);
}

.page--sample .sample-axis__dot--primary {
  left: 23%;
  top: 24%;
  border: 2px solid var(--color-error);
  color: var(--color-error);
  background: rgba(255, 250, 240, 0.94);
}

.page--sample .sample-axis__dot--muted {
  border: 1px solid rgba(15, 14, 13, 0.12);
  color: var(--color-ink-soft);
  background: rgba(244, 239, 228, 0.86);
}

.page--sample .sample-axis__dot--a {
  right: 13%;
  bottom: 20%;
}

.page--sample .sample-axis__dot--b {
  right: 19%;
  top: 28%;
}

.page--sample .sample-axis__dot--c {
  left: 18%;
  bottom: 22%;
}

.page--sample .sample-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--color-error);
  background: rgba(184, 58, 46, 0.07);
}

.page--sample .sample-ledger {
  display: grid;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.page--sample .sample-ledger div {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.65);
}

.page--sample .sample-ledger div + div {
  border-top: 1px solid rgba(15, 14, 13, 0.1);
}

.page--sample .sample-ledger span {
  color: var(--color-ink-soft);
}

.page--sample .sample-ledger em {
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.page--sample .sample-risk-list {
  display: grid;
  gap: 14px;
}

.page--sample .sample-risk-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(184, 58, 46, 0.18);
  border-radius: 18px;
  background: rgba(184, 58, 46, 0.055);
}

.page--sample .sample-risk-list article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-error);
  color: var(--home-paper);
  font-family: var(--font-mono);
  font-weight: 800;
}

.page--sample .sample-risk-list p {
  margin-bottom: 0;
}

.page--sample .sample-card--next {
  border-color: rgba(212, 130, 10, 0.28);
  background: rgba(255, 250, 240, 0.92);
}

.page--sample .sample-next-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 24px;
}

.page--sample .sample-next-list li {
  color: var(--color-ink-soft);
  line-height: 1.58;
}

.page--sample .sample-workspace-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.page--sample .sample-workspace-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 20px;
  background: var(--home-paper);
}

.page--sample .sample-workspace-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.25rem;
  line-height: 1.28;
}

.page--sample .sample-workspace-card i {
  display: block;
  height: 9px;
  width: 82%;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-amber), var(--color-error));
}

.page--sample .sample-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page--sample .sample-kicker--red {
  color: var(--color-error);
}

.page--sample .sample-cta {
  text-align: center;
}

.page--sample .sample-cta .cta-cluster {
  justify-content: center;
}

@media (min-width: 1320px) {
  .page--sample .sample-decision-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .page--sample .sample-hero__grid,
  .page--sample .sample-report-grid,
  .page--sample .sample-workspace-preview,
  .page--sample .sample-receive,
  .page--sample .sample-transform,
  .page--sample .sample-fit {
    grid-template-columns: 1fr;
  }

  .page--sample .sample-rail {
    position: static;
    order: 2;
  }

  .page--sample .sample-report {
    order: 1;
  }

  .page--sample .sample-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page--sample .sample-hero {
    padding-top: 30px;
  }

  .page--sample .sample-hero__grid {
    gap: 20px;
  }

  .page--sample .sample-hero .page-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .page--sample .sample-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }

  .page--sample .sample-product-strip a {
    padding: 12px 10px;
  }

  .page--sample .sample-product-strip span {
    font-size: 0.64rem;
  }

  .page--sample .sample-product-strip strong {
    font-size: 1.05rem;
  }

  .page--sample .sample-cover {
    min-height: 0;
    padding: 18px;
  }

  .page--sample .sample-cover h2 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .page--sample .sample-cover dl {
    gap: 8px;
  }

  .page--sample .sample-cover dl div {
    padding-top: 8px;
  }

  .page--sample .sample-cover dl div:nth-child(2),
  .page--sample .sample-cover dl div:nth-child(4) {
    display: none;
  }

  .page--sample .sample-cover dt {
    font-size: 0.72rem;
  }

  .page--sample .sample-cover dd {
    margin-top: 3px;
    font-size: 0.94rem;
  }

  .page--sample .sample-stamp {
    margin-top: 16px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .page--sample .sample-rail {
    display: none;
  }

  .page--sample .sample-decision-grid,
  .page--sample .sample-score-grid,
  .page--sample .sample-receive__grid {
    grid-template-columns: 1fr;
  }

  .page--sample .sample-ledger div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page--sample .sample-axis {
    min-height: 360px;
  }

  .page--sample .sample-axis__dot {
    min-width: 92px;
    font-size: 0.75rem;
  }

  .page--sample .sample-card--lead blockquote {
    padding: 18px;
    font-size: clamp(1.35rem, 8vw, 1.85rem);
  }
}

.page--sample .sample-card,
.page--sample .sample-decision-grid,
.page--sample .sample-ledger,
.page--sample .sample-workspace-card {
  overflow-wrap: anywhere;
}

.auth-page .auth-card p,
.auth-page .auth-card label,
.auth-page .field-hint,
.auth-page .citation {
  color: var(--home-ink-soft);
}

.auth-page .auth-card a:not(.button) {
  color: var(--home-red);
  font-weight: 750;
}

.auth-page .auth-card .input {
  border-color: var(--home-rule);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-ink);
}

.auth-page .auth-card .input:focus {
  border-color: rgba(184, 58, 46, 0.6);
  box-shadow: 0 0 0 3px rgba(184, 58, 46, 0.12);
}

.auth-page .auth-recovery {
  margin-top: 22px;
}

.auth-page .auth-recovery .button {
  width: 100%;
}

.auth-page .auth-recovery .citation {
  margin: 0;
}

.auth-page .access-code-details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--home-rule);
}

.auth-page .access-code-details summary {
  cursor: pointer;
  color: var(--home-ink);
  font-weight: 800;
}

.auth-page .access-code-details form {
  margin-top: 14px;
}

.auth-page .input--mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.signup-billing-note {
  margin-top: -6px !important;
}

.auth-page .optional-fields {
  border-color: var(--home-rule);
  background: rgba(255, 255, 255, 0.28);
}

.auth-page .optional-fields summary {
  color: var(--home-ink);
}

.auth-page .optional-fields summary::after {
  border-color: var(--home-rule);
  color: var(--home-red);
}

.auth-page .consent-check {
  color: var(--home-ink-soft);
}

.auth-page .consent-check input {
  accent-color: var(--home-red);
}

.analytics-consent {
  position: fixed;
  left: clamp(14px, 3vw, 32px);
  right: auto;
  bottom: clamp(14px, 3vw, 32px);
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: min(620px, calc(100vw - 28px));
  padding: 14px;
  color: var(--home-ink);
  background: rgba(255, 251, 243, 0.96);
  border: 1px solid rgba(15, 14, 13, 0.16);
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(15, 14, 13, 0.16);
  backdrop-filter: blur(18px);
}

.analytics-consent strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.analytics-consent p {
  margin: 3px 0 0;
  color: var(--home-ink-soft);
  font-size: 0.84rem;
  line-height: 1.32;
}

.analytics-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.analytics-consent__actions button {
  min-height: 38px;
  padding: 0 13px;
  font: 800 0.88rem var(--font-sans);
  color: var(--home-ink);
  background: rgba(255, 251, 243, 0.72);
  border: 1px solid rgba(15, 14, 13, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.analytics-consent__actions button[data-analytics-consent="granted"] {
  color: #fff;
  background: var(--home-red);
  border-color: var(--home-red);
  box-shadow: 0 10px 24px rgba(184, 58, 46, 0.18);
}

@media (max-width: 720px) {
  .analytics-consent {
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    max-width: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .analytics-consent strong {
    font-size: 0.9rem;
  }

  .analytics-consent p {
    display: none;
  }

  .analytics-consent__actions {
    width: 100%;
    gap: 8px;
  }

  .analytics-consent__actions button {
    flex: 1 1 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.8rem;
  }
}

.auth-page .turnstile-box {
  min-height: 1px;
}

.auth-page .turnstile-box.is-invisible {
  min-height: 0;
}

.auth-sibling-link,
.auth-footlinks {
  font-size: 0.92rem;
}

.auth-sibling-link {
  margin: 2px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--home-rule);
  font-family: var(--font-mono);
  color: var(--home-ink-soft);
}

.auth-footlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 22px 0 0;
  color: var(--home-ink-soft);
}

.auth-footlinks span {
  color: rgba(39, 34, 27, 0.32);
}

.auth-page .access-code-box {
  border-color: rgba(184, 58, 46, 0.4);
  background: rgba(184, 58, 46, 0.08);
}

.auth-page .access-code-box code,
.auth-page .workspace-summary dd {
  color: var(--home-ink);
}

.auth-page .workspace-summary div,
.auth-page .billing-next-step {
  border-top-color: var(--home-rule);
}

.intent-page .intent-hero {
  padding: clamp(70px, 7vw, 116px) 0 clamp(50px, 5vw, 78px);
}

.intent-page .intent-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.intent-page .intent-hero__copy {
  max-width: 780px;
}

.intent-page .intent-hero__title,
.intent-page .intent-section__title,
.intent-page .intent-proof__brief h3,
.intent-page .intent-cta-panel h2 {
  color: var(--home-ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.intent-page .intent-hero__title {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.8vw, 6.8rem);
  line-height: 0.94;
}

.intent-page .intent-hero__title::after {
  content: "";
  display: block;
  width: min(360px, 62%);
  height: 4px;
  margin: 22px 0 0 auto;
  background: var(--home-red);
  transform: rotate(-0.8deg);
}

.intent-page .intent-hero__lead,
.intent-page .intent-section__lead,
.intent-page .intent-card p,
.intent-page .intent-card li,
.intent-page .intent-proof__brief p,
.intent-page .intent-proof__brief dd,
.intent-page .intent-cta-panel p,
.intent-page .sample-request-panel p {
  color: var(--home-ink-soft);
}

.intent-page .intent-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.intent-page .intent-hero__actions .button {
  min-height: 46px;
}

.intent-page .intent-hero__proof li,
.intent-page .intent-card,
.intent-page .intent-proof__brief,
.intent-page .intent-cta-panel,
.intent-page .sample-request-panel {
  border-color: var(--home-rule);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 18px 54px rgba(62, 44, 24, 0.06);
}

.intent-page .sample-request-panel {
  position: relative;
  padding: 28px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 30px 90px rgba(62, 44, 24, 0.13);
}

.intent-page .sample-request-panel::before {
  content: "reviewed";
  position: absolute;
  right: 24px;
  top: -16px;
  padding: 7px 11px;
  border: 1px solid rgba(184, 58, 46, 0.75);
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(2deg);
  background: var(--home-paper-soft);
}

.intent-page .sample-request-panel h2 {
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.intent-page .sample-request-panel__paid {
  display: grid;
  gap: 6px;
  margin: 16px 0 20px;
  padding: 14px;
  border: 1px solid rgba(184, 58, 46, 0.24);
  border-radius: 8px;
  background: rgba(184, 58, 46, 0.055);
}

.intent-page .sample-request-panel__paid strong {
  color: var(--home-ink);
  font-size: 0.93rem;
}

.intent-page .sample-request-panel__paid span {
  color: var(--home-ink-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

.intent-page .sample-request-panel__paid a {
  width: fit-content;
  border-bottom: 1px solid var(--home-red);
  color: var(--home-ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.intent-page .sample-request-panel__paid a:hover,
.intent-page .sample-request-panel__paid a:focus-visible {
  color: var(--home-red);
}

.intent-page .sample-request-form label {
  color: var(--home-ink);
}

.intent-page .sample-request-form .input {
  border-color: var(--home-rule);
  background: rgba(255, 255, 255, 0.52);
  color: var(--home-ink);
}

.intent-page .intent-hero__excerpt {
  margin: 26px 0 0;
  padding: 18px 20px 16px;
  border: 1px solid var(--home-rule);
  border-left: 3px solid var(--home-red);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.55);
  box-shadow: 0 12px 36px rgba(62, 44, 24, 0.05);
}

.intent-page .intent-hero__excerpt figcaption {
  color: var(--home-red);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intent-page .intent-hero__excerpt dl {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.intent-page .intent-hero__excerpt dt {
  color: var(--home-ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-page .intent-hero__excerpt dd {
  margin: 4px 0 0;
  color: var(--home-ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.intent-page .intent-hero__excerpt-link {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--home-red);
  color: var(--home-ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.intent-page .intent-hero__excerpt-link:hover,
.intent-page .intent-hero__excerpt-link:focus-visible {
  color: var(--home-red);
}

.intent-page .intent-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--home-rule);
  color: var(--home-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.intent-page .intent-hero__trust strong {
  color: var(--home-ink);
  font-weight: 700;
}

.intent-page .sample-request-form__commit {
  margin: 2px 0 0;
  color: var(--home-ink-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.intent-page .intent-section {
  border-top-color: var(--home-rule);
}

.intent-page .intent-launch-aside {
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  background: rgba(34, 31, 26, 0.025);
}

.intent-page .intent-launch-aside p {
  margin: 0;
  padding: 16px 0;
  color: var(--home-ink-soft);
  font-size: 0.94rem;
}

.intent-page .intent-launch-aside strong {
  margin-right: 6px;
  color: var(--home-ink);
  font-weight: 700;
}

.intent-page .intent-launch-aside a {
  border-bottom: 1px solid var(--home-red);
  color: var(--home-ink);
}

.intent-page .intent-launch-aside a:hover,
.intent-page .intent-launch-aside a:focus-visible {
  color: var(--home-red);
}

@media (prefers-reduced-motion: no-preference) {
  .auth-page .auth-card,
  .page--pricing .pricing-card,
  .intent-page .sample-request-panel {
    animation: owly-rise 520ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }
}

@media (max-width: 1180px) {
  .marketing-home .topbar__inner,
  .marketing-home .hero > .container {
    width: min(calc(100% - 40px), 1080px);
  }

  .marketing-home .hero__grid {
    grid-template-columns: 1fr;
  }

  .marketing-home .hero__content {
    max-width: 860px;
  }

  .marketing-home .hero__preview {
    max-width: 920px;
  }
}

@media (max-width: 720px) {
  .marketing-home .topbar__inner {
    align-items: center;
    flex-wrap: nowrap;
    min-height: 68px;
    padding: 10px 0;
  }

  .marketing-home .brand {
    gap: 9px;
  }

  .marketing-home .brand__lockup {
    width: min(47vw, 182px);
  }

  .marketing-home .brand__mark {
    width: 30px;
    height: 30px;
  }

  .marketing-home .brand__word {
    font-size: 1.22rem;
  }

  .marketing-home .topbar__nav {
    width: auto;
    padding: 0;
    overflow: visible;
  }

  .marketing-home .topbar__nav a:not(.button) {
    display: none;
  }

  .marketing-home .topbar__nav .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .intent-page .intent-hero {
    padding: 30px 0 38px;
  }

  .intent-page .intent-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .intent-page .intent-hero__copy {
    max-width: none;
  }

  .intent-page .intent-hero__title {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 3.12rem);
    line-height: 0.94;
  }

  .intent-page .intent-hero__title::after {
    width: 62%;
    margin-top: 14px;
  }

  .intent-page .intent-hero__lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .intent-page .intent-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .intent-page .intent-hero__actions .button {
    width: 100%;
  }

  .intent-page .intent-hero__excerpt {
    margin-top: 20px;
    padding: 16px 16px 14px;
  }

  .intent-page .intent-hero__excerpt dd {
    font-size: 0.94rem;
  }

  .intent-page .intent-hero__trust {
    gap: 6px 16px;
    margin-top: 22px;
    padding-top: 14px;
  }

  .intent-page .intent-hero__proof {
    gap: 8px;
    margin-top: 18px;
  }

  .intent-page .sample-request-panel {
    padding: 22px;
  }

  .marketing-home .hero {
    min-height: auto;
    padding: 38px 0 34px;
  }

  .marketing-home .hero__grid {
    gap: 28px;
  }

  .marketing-home .hero__title {
    font-size: clamp(2.95rem, 13.2vw, 3.72rem);
    letter-spacing: -0.06em;
  }

  .marketing-home .hero__title::after {
    width: 72%;
    margin-top: 14px;
  }

  .marketing-home .inline-input {
    display: grid;
    padding: 0;
    overflow: hidden;
  }

  .marketing-home .product-family-strip {
    grid-template-columns: 1fr;
  }

  .marketing-home .inline-input .input {
    min-height: 70px;
    padding-inline: 18px;
  }

  .marketing-home .inline-input .button {
    width: 100%;
    min-height: 58px;
    border-radius: 0;
  }

  .marketing-home .hero__lead {
    font-size: 1.02rem;
  }

  .marketing-home .hero__actions {
    display: none;
  }

  .brief-desk {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .source-page,
  .brief-dossier,
  .build-plan {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .source-page {
    min-height: 360px;
    border-width: 4px;
  }

  .source-page__site {
    grid-template-columns: 1fr;
    min-height: 260px;
    margin: 24px 18px;
    padding: 24px;
  }

  .source-page__site h2 {
    font-size: 2.25rem;
  }

  .source-page__shape {
    display: none;
  }

  .red-note {
    font-size: 1rem;
    pointer-events: none;
  }

  .red-note--one {
    display: none;
  }

  .red-note--two {
    right: 22px;
    top: 108px;
  }

  .build-plan pre {
    max-height: 270px;
    overflow: auto;
  }

  .launch-check-card a {
    align-items: flex-start;
  }
}
