/* LeftOut Security brand system v1.1 — public-site refinement layer */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/Oswald-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #0b0b0d;
  --bg-deep: #050506;
  --surface: #121214;
  --surface-2: #1a1a1d;
  --surface-3: #242429;
  --line: rgba(242, 242, 243, 0.11);
  --line-strong: rgba(242, 242, 243, 0.22);
  --text: #f2f2f3;
  --muted: #b8b8bd;
  --faint: #929298;
  --lime: #c0392b;
  --lime-2: #8f241d;
  --mint: #d6d6d8;
  --red: #ef5b55;
  --amber: #d4a34a;
  --lime-soft: rgba(192, 57, 43, 0.11);
  --mint-soft: rgba(214, 214, 216, 0.07);
  --red-soft: rgba(239, 91, 85, 0.11);
  --amber-soft: rgba(212, 163, 74, 0.1);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "Inter", Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
}

html { color-scheme: dark; background: var(--bg); }
body {
  background:
    radial-gradient(980px 620px at 88% -12%, rgba(192, 57, 43, 0.14), transparent 64%),
    radial-gradient(760px 520px at -12% 16%, rgba(214, 214, 216, 0.035), transparent 60%),
    var(--bg);
  font-family: var(--sans);
  letter-spacing: -0.008em;
}
body::before {
  background-image:
    linear-gradient(rgba(192, 57, 43, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
a { color: #e0574a; }
a:hover { color: #f06c61; }
::selection { color: var(--text); background: var(--lime); }
:focus-visible { outline-color: #e0574a; }

.topbar {
  background: rgba(11, 11, 13, 0.88);
  border-color: rgba(242, 242, 243, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}
.nav { min-height: 76px; }
.brand { gap: 11px; }
.brandmark { width: 42px; height: 42px; flex-basis: 42px; }
.brand b { font-size: 0; white-space: nowrap; }
.brand b::before,
.brand b::after {
  display: inline;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.brand b::before { content: "LeftOut"; color: var(--text); }
.brand b::after { content: " Security"; color: var(--lime); }
.links a { color: #b7b7bc; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; }
.links a:hover, .links a.active { color: var(--text); }
.menu, .mobile { background: rgba(18, 18, 20, 0.98); }

.btn {
  min-height: 48px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.btn.primary {
  color: var(--text);
  background: linear-gradient(180deg, #ce4134, #af2f25);
  border-color: #d24b3f;
  box-shadow: 0 14px 36px rgba(192, 57, 43, 0.2);
}
.btn.primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #df5145, #be382d);
  border-color: #e35c51;
  box-shadow: 0 16px 42px rgba(192, 57, 43, 0.3);
}
.btn.ghost, .btn.dark { background: rgba(242, 242, 243, 0.025); border-color: rgba(242, 242, 243, 0.2); }
.btn.ghost:hover, .btn.dark:hover { background: rgba(242, 242, 243, 0.06); border-color: rgba(192, 57, 43, 0.55); }

.eyebrow, .kicker, .terminal, .miniLabel, .number, .stepnum,
.pathIndex, .impactHead span, .traceSummary span, .tag,
.previewStamp, .crosswalk span, .projectStatus, .footerGroup strong {
  color: #cf4a3e;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.13em;
}
.eyebrow::before { width: 26px; height: 2px; background: var(--lime); }
.h1, .section h2, .pagehead h1, .scopeHeading {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 0.98;
  text-transform: uppercase;
}
.h1 { max-width: 12ch; font-size: clamp(4rem, 8.4vw, 7rem); }
.h1 .accent { color: var(--lime); text-shadow: 0 0 38px rgba(192, 57, 43, 0.2); }
.lead { color: #c7c7cb; }
.sub, .card p, .card li, .policy p, .policy li { color: var(--muted); }
.pill { color: #a6a6ab; font-family: var(--sans); font-weight: 600; }
.pill:not(:last-child)::after { color: rgba(192, 57, 43, 0.55); }

.hero { position: relative; overflow: hidden; padding: 80px 0 92px; }
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.7), transparent);
}
.heroGrid { grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); gap: 58px; }
.campaignTitle { margin-bottom: 18px; }
.campaignTitle span { display: block; }
.campaignTitle .questionWord { color: var(--text); }
.campaignTitle .agentWord { color: var(--lime); }
.corporatePromise {
  max-width: 660px;
  margin: 24px 0 0;
  padding: 18px 20px;
  color: #d8d8da;
  background: linear-gradient(90deg, rgba(192, 57, 43, 0.12), transparent);
  border-left: 3px solid var(--lime);
  font-size: 1.02rem;
  line-height: 1.55;
}
.corporatePromise strong { color: var(--text); }
.brandHero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #09090a;
  border: 1px solid rgba(242, 242, 243, 0.14);
  border-radius: 18px;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.52);
}
.brandHero img { width: 100%; height: 100%; min-height: 620px; display: block; object-fit: cover; object-position: 54% center; filter: grayscale(0.16) contrast(1.08); }
.brandHero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.08), transparent 48%, rgba(11, 11, 13, 0.92)),
    linear-gradient(90deg, rgba(11, 11, 13, 0.22), transparent 55%);
}
.heroSignal {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid rgba(242, 242, 243, 0.15);
  border-left: 3px solid var(--lime);
  backdrop-filter: blur(12px);
}
.heroSignal span, .heroSignal strong { display: block; }
.heroSignal span { color: #e15a4d; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.heroSignal strong { max-width: 28ch; margin-top: 7px; color: var(--text); font-size: 1rem; line-height: 1.4; }

.panel, .card, .package,
.assuranceCard, .reviewCard, .equationCard,
.questionCard, .resultDefinition, .resultDomain, .resultPriority {
  background: linear-gradient(145deg, rgba(28, 28, 31, 0.93), rgba(13, 13, 15, 0.94));
  border-color: rgba(242, 242, 243, 0.12);
}
.card.feature, .package.feature, .deliverablePreview, .previewReportRequest,
.fitCard.good, .equationCard { border-color: rgba(192, 57, 43, 0.45); }
.decisionStrip { border-color: rgba(242, 242, 243, 0.12); }
.decisionItem { background: rgba(18, 18, 20, 0.88); }
.decisionItem b { color: var(--text); }
.decisionItem span { color: #9f9fa5; }
.numberCard .number, .methodCard .number, .stepnum { color: #d64b3f; }
.riskcell { background: rgba(18, 18, 20, 0.9); border-color: rgba(242, 242, 243, 0.12); }
.riskcell::before { color: rgba(192, 57, 43, 0.9); }
.list li::before { background: var(--lime); }
.previewBlock { background: rgba(11, 11, 13, 0.96); }
.previewStamp, .tag { color: #e45a4e; background: rgba(192, 57, 43, 0.1); border-color: rgba(192, 57, 43, 0.32); }
.state.proven { color: #f16a5e; background: rgba(192, 57, 43, 0.11); border-color: rgba(192, 57, 43, 0.35); }
.state.observed { color: #d6d6d8; background: rgba(214, 214, 216, 0.06); border-color: rgba(214, 214, 216, 0.18); }
.decisionStates span { border-left-color: var(--lime); }
.decisionStates span:nth-child(2) { border-left-color: var(--amber); }
.decisionStates span:nth-child(3) { border-left-color: var(--red); }
.reach, .proofchip { background: rgba(18, 18, 20, 0.94); border-color: rgba(242, 242, 243, 0.13); }
.proofchip b, .metric b, .faqitem button span:last-child { color: #df5145; }
.reviewerInitials, .avatar {
  color: var(--text);
  background: linear-gradient(145deg, #c0392b, #8f241d);
  border-color: #d64b3f;
}
.form input, .form textarea, .form select, .choiceBody { background: rgba(8, 8, 9, 0.78); }
.form input:focus, .form textarea:focus, .form select:focus { outline-color: var(--lime); border-color: var(--lime); }
.formHandoff, .modelBoundary { background: rgba(214, 214, 216, 0.045); border-color: rgba(214, 214, 216, 0.16); border-left-color: var(--lime); }
.screenToolbar { background: rgba(11, 11, 13, 0.95); }
.screenToolbar progress::-webkit-progress-value,
.screenToolbar progress::-moz-progress-bar { background: var(--lime); }
.assuranceChoice:hover .choiceBody { border-color: rgba(192, 57, 43, 0.55); }
.assuranceChoice input:checked + .choiceBody { background: rgba(192, 57, 43, 0.12); border-color: var(--lime); }
.assuranceChoice input:checked + .choiceBody strong { color: #f16a5e; }

.scopeHeading { color: var(--lime); }
.safeNotice { max-width: 760px; margin: 0 auto 26px; text-align: left; }
.faqSection { margin: 42px 0 18px; }
.faqSection:first-child { margin-top: 0; }
.projectStatus {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  color: #d6d6d8;
  background: rgba(214, 214, 216, 0.06);
  border: 1px solid rgba(214, 214, 216, 0.16);
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.projectStatus.experimental { color: var(--amber); background: var(--amber-soft); border-color: rgba(212, 163, 74, 0.22); }

/* Readiness screen: keep the bounded application flow in the same brand system. */
.readinessMeta > div,
.resultDefinition,
.resultDomain,
.resultPriority {
  background: linear-gradient(145deg, rgba(28, 28, 31, 0.92), rgba(13, 13, 15, 0.96));
  border-color: rgba(242, 242, 243, 0.12);
}
.readinessMeta strong, .handoffCount { color: #df5145; }
.questionCard {
  background: linear-gradient(145deg, rgba(28, 28, 31, 0.97), rgba(10, 10, 12, 0.97));
  border-color: rgba(242, 242, 243, 0.15);
}
.choiceBody { background: rgba(8, 8, 9, 0.78); }
.assuranceChoice:hover .choiceBody { border-color: rgba(192, 57, 43, 0.55); }
.assuranceChoice input:checked + .choiceBody {
  background: rgba(192, 57, 43, 0.12);
  border-color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(192, 57, 43, 0.2);
}
.resultLoading {
  color: #d6d6d8;
  background: rgba(214, 214, 216, 0.055);
  border-color: rgba(214, 214, 216, 0.18);
}
.previewReportRequest { border-color: rgba(192, 57, 43, 0.42); }

/* Executive report: approved light-background treatment with Alert Red accents. */
.reportSiteHeader { background: rgba(11, 11, 13, 0.96); }
.reportWordmark {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}
.reportWordmark b { color: var(--lime); }
.reportWordmark:hover, .reportWordmark:hover b { color: #e15a4d; }
.reportDocument { color: #1a1a1d; background: #f2f2f3; }
.reportDocument strong { color: #121214; }
.reportDocument a { color: #8f241d; }
.reportDocument :focus-visible { outline-color: #c0392b; }
.reportCover {
  color: #f2f2f3;
  background:
    radial-gradient(620px 420px at 100% 0%, rgba(192, 57, 43, 0.28), transparent 64%),
    linear-gradient(145deg, #121214, #0b0b0d 72%);
}
.reportCover h1 {
  color: #f2f2f3;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.reportCoverLead { color: #c7c7cb; }
.reportCoverMeta { border-top-color: rgba(242, 242, 243, 0.2); }
.reportCoverMeta dt, .reportMetadata dt, .reportOrdinal { color: #8f241d; }
.reportCoverMeta dd { color: #f2f2f3; }
.reportCoverBasis { color: #b8b8bd; }
.reportKicker { color: #c0392b; }
.reportSection + .reportSection,
.reportDefinitionList > div { border-color: #d6d6d8; }
.reportSection h2, .reportSection h3, .reportDefinitionList dt,
.reportTable th, .reportDisclaimer { color: #121214; }
.reportSection p, .reportList, .reportDefinitionList dd,
.reportTable td { color: #4b4b50; }
.reportDisclaimer {
  background: #e7e7e9;
  border-left-color: #c0392b;
}
.reportSummaryCard, .reportCard, .reportPriorityList > li, .reportMetadata > div {
  background: #e9e9eb;
  border-color: #d0d0d3;
}
.reportState {
  color: #8f241d;
  background: rgba(192, 57, 43, 0.1);
}
.reportTable th { background: #e3e3e5; }
.reportTable th, .reportTable td { border-color: #cdcdcf; }
.reportPriorityList > li::before { color: #c0392b; }

.footer { background: #080809; }
.footerBrand .small { max-width: 380px; margin: 14px 0 0; }
.footerNav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footerGroup { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footerGroup strong { margin-bottom: 4px; color: #d2493d; font-size: 0.66rem; text-transform: uppercase; }
.footerGroup a { color: var(--muted); font-size: 0.8rem; line-height: 1.35; }
.footerGroup a:hover { color: var(--text); }
.footerLegal { display: flex; flex-direction: column; gap: 10px; }
.footgrid { grid-template-columns: minmax(210px, 0.85fr) minmax(520px, 1.65fr) minmax(220px, 0.75fr); }

@media (max-width: 1180px) and (min-width: 981px) {
  .links { gap: 16px; }
  .links a { font-size: 0.78rem; }
  .links .btn { padding-inline: 16px; }
}
@media (max-width: 1100px) {
  .footgrid { grid-template-columns: 1fr; }
  .footerNav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .brandHero, .brandHero img { min-height: 520px; }
  .heroGrid { grid-template-columns: 1fr; }
  .h1 { max-width: 10ch; }
}
@media (max-width: 680px) {
  .footerNav { grid-template-columns: 1fr; }
  .brandmark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand b::before, .brand b::after { font-size: 0.94rem; }
  .h1 { font-size: clamp(3.3rem, 18vw, 5rem); }
  .brandHero, .brandHero img { min-height: 430px; }
  .heroSignal { left: 16px; right: 16px; bottom: 16px; }
}
