/* S*H Business Focus Check — 26-Point lead funnel
 *
 * Palette and type come from the funnel's own design handoff (derived from the
 * client logo + synthesizedhuman.com), NOT from the Organic design system and
 * not from auditform/styles.css. Tokens are scoped to .fc-root so nothing here
 * leaks into other landing surfaces.
 *
 * Sizing is container-query based on purpose: the funnel is embedded at several
 * widths (full page, 402px phone frame, 650px panel). Do not convert the
 * clamp()/cqw values to media queries.
 */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #03060e;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #1e2b3a;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

@keyframes fcIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Shell ─────────────────────────────────────────────────── */

.fc-root {
  --fc-bg: #03060e;
  --fc-surface: #0a1220;
  --fc-surface-2: #0d1726;
  --fc-surface-input: #080e18;
  --fc-surface-email: #070d16;
  --fc-cell-empty: #0e1825;
  --fc-cell-empty-2: #111b28;
  --fc-border: #1b2634;
  --fc-border-subtle: #17212e;
  --fc-border-hair: #131d29;
  --fc-border-dashed: #253747;
  --fc-accent: #4fd6ff;
  --fc-accent-light: #8fe4ff;
  --fc-accent-mid: #3f9dbd;
  --fc-accent-mid-text: #5f93a8;
  --fc-steel: #3d5464;
  --fc-text: #e6f0f7;
  --fc-text-2: #c8d7e2;
  --fc-text-3: #a5b9c7;
  --fc-muted: #8497a6;
  --fc-muted-2: #75879a;
  --fc-muted-3: #6d7f8e;
  --fc-muted-4: #7d8f9e;
  --fc-faint: #5c6f7e;
  --fc-ghost: #4a5c6b;
  --fc-ghost-2: #47586a;
  --fc-ghost-3: #3a4d5e;
  --fc-warn: #ffb27d;
  --fc-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;

  container-type: inline-size;
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--fc-bg);
  color: var(--fc-text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
}

.fc-glow,
.fc-grid {
  position: absolute;
  pointer-events: none;
}

.fc-glow {
  left: 0;
  right: 0;
  top: -18%;
  height: 62%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(79, 214, 255, 0.17), transparent 72%);
}

.fc-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 214, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 214, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(75% 55% at 50% 0%, #000, transparent 78%);
  mask-image: radial-gradient(75% 55% at 50% 0%, #000, transparent 78%);
}

.fc-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: clamp(15px, 3.2cqw, 20px) clamp(18px, 4cqw, 34px);
  border-bottom: 1px solid var(--fc-border-hair);
  flex: none;
}

.fc-mark {
  width: 33px;
  height: 17.5px;
  flex: none;
  display: block;
}

.fc-header-brand {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fc-text-2);
  white-space: nowrap;
}

.fc-header-brand + .fc-header-label::before {
  content: "\00b7";
  margin: 0 0.55em 0 0.4em;
  color: var(--fc-ghost-3);
}

/* Narrow screens keep the name and drop the section label: the hero already
   says which check this is, and a half-truncated "BUSINESS FOCUS \2026" reads
   as breakage rather than brevity. */
@container (max-width: 640px) {
  .fc-header-brand + .fc-header-label,
  .fc-header-brand + .fc-header-label::before {
    display: none;
  }
}

.fc-header-label {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fc-muted-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-header-spacer {
  flex: 1;
}

.fc-header-status {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--fc-accent);
  flex: none;
}

.fc-rail {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 5px;
  padding: 0 clamp(18px, 4cqw, 34px);
  margin-top: 16px;
  flex: none;
}

.fc-rail[hidden] {
  display: none;
}

.fc-seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: #16202c;
  transition: background 0.3s;
}

.fc-seg.is-done {
  background: rgba(79, 214, 255, 0.42);
}

.fc-seg.is-current {
  background: var(--fc-accent);
  box-shadow: 0 0 12px rgba(79, 214, 255, 0.55);
}

.fc-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(22px, 5cqw, 42px) clamp(18px, 4cqw, 34px) clamp(30px, 6cqw, 52px);
}

/* ── Shared primitives ─────────────────────────────────────── */

.fc-eyebrow {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--fc-accent);
}

.fc-section-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-hint {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--fc-muted-3);
}

.fc-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fc-accent);
  color: var(--fc-bg);
  border: none;
  border-radius: 6px;
  padding: 16px 26px;
  font-family: inherit;
  font-size: clamp(15px, 2.2cqw, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.16s, transform 0.16s;
}

.fc-cta:hover {
  background: var(--fc-accent-light);
  transform: translateY(-1px);
}

.fc-cta-glyph {
  font-size: 15px;
}

.fc-ghost-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--fc-muted-3);
  font-family: var(--fc-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.16s;
}

.fc-ghost-btn:hover {
  color: var(--fc-accent);
}

/* The prototype relied on default focus only. Every interactive element gets a
 * visible keyboard ring here — the handoff calls this out as a gap to close. */
.fc-root :focus-visible {
  outline: 2px solid var(--fc-accent);
  outline-offset: 2px;
}

/* ── 1. Landing / hook ─────────────────────────────────────── */

.fc-hook {
  animation: fcIn 0.4s ease both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  max-width: 660px;
  margin: 0 auto;
  gap: clamp(18px, 3.2cqw, 26px);
}

.fc-h1 {
  margin: 0;
  font-size: clamp(31px, 7.3cqw, 54px);
  line-height: 1.03;
  letter-spacing: -0.028em;
  font-weight: 600;
  text-wrap: pretty;
}

.fc-lede {
  margin: 0;
  font-size: clamp(15px, 2.3cqw, 19px);
  line-height: 1.55;
  color: var(--fc-text-3);
  max-width: 33em;
  text-wrap: pretty;
}

.fc-whois {
  margin: 12px 0 0;
  font-size: clamp(13px, 1.9cqw, 15px);
  line-height: 1.6;
  color: var(--fc-muted-4);
  max-width: 40em;
  text-wrap: pretty;
}

.fc-whois strong {
  color: var(--fc-text-2);
  font-weight: 600;
}

.fc-lede-strong {
  color: var(--fc-text);
  font-weight: 500;
}

.fc-hook-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-top: 4px;
}

.fc-fine {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--fc-muted-4);
  max-width: 44em;
}

.fc-stats {
  display: flex;
  border-top: 1px solid var(--fc-border-hair);
  padding-top: 20px;
  margin-top: 6px;
  flex-wrap: wrap;
  gap: 2px;
}

.fc-stat {
  flex: 1;
  min-width: 96px;
  padding-right: 14px;
}

.fc-stat + .fc-stat {
  padding-left: 14px;
  border-left: 1px solid var(--fc-border-hair);
}

.fc-stat-value {
  font-family: var(--fc-mono);
  font-size: clamp(19px, 3.4cqw, 24px);
  color: var(--fc-accent);
  font-weight: 500;
}

.fc-stat-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-muted-3);
  margin-top: 5px;
}

/* ── 2–7. Question screens ─────────────────────────────────── */

.fc-question {
  animation: fcIn 0.3s ease both;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3cqw, 26px);
}

.fc-question-head {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fc-h2 {
  margin: 0;
  font-size: clamp(22px, 4.5cqw, 33px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  font-weight: 600;
  text-wrap: pretty;
}

.fc-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  text-align: left;
  padding: clamp(14px, 3.2cqw, 18px) clamp(15px, 3.2cqw, 20px);
  border-radius: 6px;
  cursor: pointer;
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  color: var(--fc-text);
  font: inherit;
  transition: background 0.16s, border-color 0.16s, transform 0.16s, box-shadow 0.16s;
}

.fc-option:hover {
  border-color: var(--fc-accent);
}

.fc-option.is-picked {
  background: rgba(79, 214, 255, 0.12);
  border-color: var(--fc-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -16px rgba(79, 214, 255, 0.6);
}

.fc-option-badge {
  font-family: var(--fc-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--fc-accent);
  flex: none;
  padding-top: 3px;
  letter-spacing: 0.04em;
  min-width: 19px;
}

.fc-option-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.fc-option-label {
  font-size: clamp(14.5px, 2.3cqw, 16.5px);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.008em;
  text-wrap: pretty;
}

.fc-option-sub {
  font-family: var(--fc-mono);
  font-size: 10px;
  line-height: 1.55;
  color: var(--fc-muted-2);
  letter-spacing: 0.02em;
  text-wrap: pretty;
}

.fc-chevron {
  color: var(--fc-ghost-3);
  font-size: 14px;
  flex: none;
  padding-top: 2px;
}

/* ── 8. Result ─────────────────────────────────────────────── */

.fc-result {
  animation: fcIn 0.38s ease both;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 4cqw, 32px);
}

.fc-result-head {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fc-result-row {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2.4cqw, 18px);
}

.fc-result-num {
  font-family: var(--fc-mono);
  font-size: clamp(36px, 8.4cqw, 62px);
  font-weight: 500;
  color: var(--fc-accent);
  line-height: 0.85;
  letter-spacing: -0.035em;
  flex: none;
}

.fc-result-name {
  margin: 0;
  font-size: clamp(21px, 4.3cqw, 33px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.024em;
  text-wrap: pretty;
}

.fc-result-caption {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 10.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--fc-muted-3);
}

.fc-issue {
  order: 2;
  border-left: 2px solid var(--fc-accent);
  padding: 3px 0 3px clamp(15px, 3cqw, 20px);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-issue-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fc-muted-3);
}

.fc-issue-text {
  margin: 0;
  font-size: clamp(16px, 2.7cqw, 20px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: -0.014em;
  text-wrap: pretty;
}

.fc-issue-maps {
  font-family: var(--fc-mono);
  font-size: 10px;
  line-height: 1.6;
  color: var(--fc-muted-2);
}

.fc-panel {
  border: 1px solid var(--fc-border-subtle);
  border-radius: 8px;
  padding: clamp(16px, 3.4cqw, 22px);
  background: rgba(10, 18, 32, 0.55);
}

/* Chosen result order is metrics-first; the map follows. */
.fc-panel--metrics {
  order: 3;
}

.fc-panel--map {
  order: 4;
}

.fc-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.fc-panel-note {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-faint);
}

/* Free Market Snapshot — inbox screen only, shown when a website was given. */
.fc-market-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.fc-market-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.fc-market-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--fc-ghost-3);
}

.fc-market-dot.is-good {
  background: var(--fc-accent);
}

.fc-market-dot.is-watch {
  background: var(--fc-warn);
}

.fc-market-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fc-market-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fc-text-2);
}

.fc-market-detail {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--fc-muted-2);
}

.fc-market-caveat {
  margin-top: 14px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--fc-faint);
}

.fc-market-context-label {
  display: block;
  margin-top: 16px;
}

.fc-market-source {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  word-break: break-all;
}

.fc-market-unavailable {
  font-family: var(--fc-mono);
  font-size: 11px;
  color: var(--fc-faint);
}

.fc-meters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 9px;
  margin-top: 15px;
}

.fc-meter {
  --fc-meter-accent: var(--fc-steel);
  --fc-meter-tag: var(--fc-ghost);
  border: 1px solid var(--fc-border-subtle);
  background: var(--fc-surface);
  border-radius: 6px;
  padding: 15px 16px 14px;
  display: flex;
  flex-direction: column;
}

.fc-meter.is-hot {
  --fc-meter-accent: var(--fc-accent);
  --fc-meter-tag: var(--fc-accent-light);
  border-color: rgba(79, 214, 255, 0.34);
  background: rgba(79, 214, 255, 0.055);
}

.fc-meter.is-automation {
  --fc-meter-accent: var(--fc-accent-mid);
  --fc-meter-tag: var(--fc-accent-mid-text);
}

.fc-meter-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fc-muted);
  line-height: 1.4;
  min-height: 14px;
}

.fc-meter-value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 14px;
}

.fc-meter-value {
  font-family: var(--fc-mono);
  font-size: clamp(26px, 5cqw, 34px);
  font-weight: 500;
  color: var(--fc-meter-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fc-meter-unit {
  font-family: var(--fc-mono);
  font-size: 11px;
  color: var(--fc-faint);
}

.fc-meter-cells {
  display: flex;
  gap: 3px;
  margin-top: 13px;
}

.fc-meter-cell {
  flex: 1;
  height: 21px;
  border-radius: 2px;
  background: var(--fc-cell-empty-2);
}

.fc-meter-cell.is-filled {
  background: var(--fc-meter-accent);
}

.fc-meter-tag {
  font-family: var(--fc-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 11px;
  color: var(--fc-meter-tag);
}

.fc-legend {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.fc-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fc-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-muted-3);
}

.fc-swatch {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  display: block;
}

.fc-swatch--focus {
  background: var(--fc-accent);
}

.fc-swatch--related {
  border: 1px solid rgba(79, 214, 255, 0.5);
  background: rgba(79, 214, 255, 0.1);
}

.fc-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: clamp(13px, 2.6cqw, 20px);
  margin-top: 19px;
}

.fc-map-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fc-map-col-head {
  font-family: var(--fc-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fc-muted-3);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--fc-border-subtle);
  line-height: 1.4;
}

.fc-map-cells {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.fc-cell {
  font-family: var(--fc-mono);
  font-size: 10.5px;
  width: 30px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  letter-spacing: 0.02em;
  background: var(--fc-cell-empty);
  color: var(--fc-ghost-2);
  border: 1px solid var(--fc-border-subtle);
}

.fc-cell.is-related {
  background: rgba(79, 214, 255, 0.1);
  color: var(--fc-accent);
  border-color: rgba(79, 214, 255, 0.45);
}

.fc-cell.is-primary {
  background: var(--fc-accent);
  color: var(--fc-bg);
  border-color: var(--fc-accent);
  font-weight: 600;
  box-shadow: 0 0 18px rgba(79, 214, 255, 0.45);
}

.fc-related {
  order: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-related-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fc-related-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--fc-border-subtle);
  border-radius: 6px;
  background: var(--fc-surface);
}

.fc-related-num {
  font-family: var(--fc-mono);
  font-size: 11px;
  color: var(--fc-accent);
  flex: none;
}

.fc-related-name {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.008em;
}

.fc-related-roi {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  color: var(--fc-faint);
  flex: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fc-integrity {
  order: 6;
  margin: 0;
  padding: 15px 17px;
  border: 1px dashed var(--fc-border-dashed);
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--fc-muted);
  text-wrap: pretty;
}

.fc-result-actions {
  order: 7;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.fc-result-actions .fc-cta {
  font-size: clamp(14.5px, 2.2cqw, 16.5px);
}

.fc-result-actions .fc-ghost-btn {
  padding: 4px 0;
}

/* ── 9. Email capture ──────────────────────────────────────── */

.fc-email {
  animation: fcIn 0.35s ease both;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: clamp(20px, 4cqw, 34px);
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.fc-email-value {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.fc-email-h2 {
  margin: 0;
  font-size: clamp(24px, 4.6cqw, 34px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.024em;
  text-wrap: pretty;
}

.fc-email-body {
  margin: 0;
  font-size: clamp(14.5px, 2.2cqw, 17px);
  line-height: 1.5;
  color: var(--fc-text-3);
  text-wrap: pretty;
}

.fc-email-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.fc-email-list-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.fc-email-list-num {
  color: var(--fc-accent);
  font-family: var(--fc-mono);
  font-size: 11px;
  padding-top: 2px;
}

.fc-email-list-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fc-text-2);
}

.fc-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  padding: clamp(18px, 3.4cqw, 24px);
  background: var(--fc-surface);
}

.fc-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fc-field-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-field-optional {
  color: var(--fc-faint);
  letter-spacing: 0.08em;
}

.fc-input {
  background: var(--fc-surface-input);
  border: 1px solid var(--fc-border);
  border-radius: 5px;
  padding: 13px 14px;
  color: var(--fc-text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.16s;
}

.fc-input::placeholder {
  color: var(--fc-ghost);
}

.fc-input:focus {
  border-color: var(--fc-accent);
}

.fc-input.is-invalid {
  border-color: var(--fc-warn);
}

.fc-field-error {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--fc-warn);
}

.fc-field-error[hidden] {
  display: none;
}

.fc-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fc-accent);
  color: var(--fc-bg);
  border: none;
  border-radius: 6px;
  padding: 16px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.16s, opacity 0.16s;
}

.fc-submit:hover:not(:disabled) {
  background: var(--fc-accent-light);
}

.fc-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.fc-form-note {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 9.5px;
  line-height: 1.7;
  color: var(--fc-faint);
  text-align: center;
}

.fc-form-error {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 10px;
  line-height: 1.6;
  color: var(--fc-warn);
  text-align: center;
}

.fc-form-error[hidden] {
  display: none;
}

.fc-email-back {
  max-width: 820px;
  margin: 22px auto 0;
}

/* ── 9b. Consultant contact ────────────────────────────────── */

.fc-contact {
  animation: fcIn 0.35s ease both;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3.2cqw, 24px);
}

.fc-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* The whole row is the control, and at least 44px tall — a checkbox on its
   own is a poor thumb target on the phones most of this traffic arrives on. */
.fc-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 2px 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fc-text-2);
  cursor: pointer;
}

.fc-consent input {
  margin: 0;
  accent-color: var(--fc-accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fc-privacy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fc-privacy-link:hover,
.fc-privacy-link:focus-visible {
  color: var(--fc-text-2);
}

.fc-route-error {
  margin-top: 14px;
}

.fc-access-error {
  text-align: left;
  margin-top: 2px;
}

.fc-route[disabled],
.fc-ghost-btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

.fc-contact-skip {
  text-align: center;
}

/* ── 10. Next-step routing ─────────────────────────────────── */

.fc-next {
  animation: fcIn 0.35s ease both;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.4cqw, 28px);
}

.fc-sent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(79, 214, 255, 0.32);
  border-radius: 6px;
  background: rgba(79, 214, 255, 0.07);
}

.fc-tick {
  color: var(--fc-accent);
  font-size: 14px;
  flex: none;
  padding-top: 1px;
}

.fc-sent-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.fc-sent-title {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fc-sent-to {
  font-family: var(--fc-mono);
  font-size: 10px;
  color: var(--fc-accent-light);
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-next-head {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fc-next-h2 {
  margin: 0;
  font-size: clamp(22px, 4.4cqw, 32px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.024em;
  text-wrap: pretty;
}

.fc-routes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-route {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  cursor: pointer;
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  color: var(--fc-text);
  font: inherit;
  transition: border-color 0.16s, background 0.16s, transform 0.16s;
}

.fc-route:hover {
  border-color: var(--fc-accent);
}

.fc-route.is-picked {
  border-color: var(--fc-accent);
  background: rgba(79, 214, 255, 0.1);
  transform: translateY(-2px);
}

.fc-route-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fc-route-letter {
  font-family: var(--fc-mono);
  font-size: 11px;
  color: var(--fc-accent);
  flex: none;
}

.fc-route-title {
  font-size: clamp(14.5px, 2.2cqw, 16.5px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.fc-route .fc-chevron {
  padding-top: 0;
}

.fc-route-msg {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #95a8b6;
  text-wrap: pretty;
}

.fc-route-note {
  font-family: var(--fc-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-accent-mid-text);
}

/* ── 11. The emailed checklist ─────────────────────────────── */

.fc-inbox {
  animation: fcIn 0.35s ease both;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fc-ack {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--fc-border-subtle);
  border-radius: 6px;
  background: var(--fc-surface);
}

.fc-ack .fc-tick {
  font-size: 13px;
  padding-top: 2px;
}

.fc-ack-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fc-text-2);
}

.fc-mailcard {
  border: 1px solid var(--fc-border-subtle);
  border-radius: 8px;
  overflow: hidden;
  background: var(--fc-surface-email);
}

.fc-mail-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--fc-border-hair);
  background: var(--fc-surface);
}

.fc-mail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fc-accent);
  flex: none;
}

.fc-mail-chrome-text {
  font-family: var(--fc-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fc-muted-4);
}

.fc-mail-body {
  padding: clamp(18px, 3.6cqw, 26px);
}

.fc-mail-sender {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fc-border-hair);
}

.fc-mail-avatar {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: var(--fc-surface-2);
  border: 1px solid var(--fc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.fc-mail-avatar svg {
  width: 19px;
  height: 10px;
  display: block;
}

.fc-mail-sender-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.fc-mail-from {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.008em;
}

.fc-mail-to {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  color: var(--fc-muted-3);
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-mail-subject {
  margin: 18px 0 0;
  font-size: clamp(17px, 3cqw, 22px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

.fc-mail-greeting {
  margin: 16px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fc-text-3);
}

.fc-recap {
  margin-top: 18px;
  border: 1px solid rgba(79, 214, 255, 0.26);
  border-radius: 6px;
  padding: 16px;
  background: rgba(79, 214, 255, 0.05);
}

.fc-recap-label {
  font-family: var(--fc-mono);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fc-accent-light);
}

.fc-recap-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 9px;
}

.fc-recap-num {
  font-family: var(--fc-mono);
  font-size: 22px;
  color: var(--fc-accent);
  font-weight: 500;
  line-height: 1;
}

.fc-recap-name {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.fc-recap-issue {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fc-text-2);
}

.fc-recap-metrics {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(79, 214, 255, 0.16);
  flex-wrap: wrap;
}

.fc-recap-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-recap-metric-label {
  font-family: var(--fc-mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-muted-4);
}

.fc-recap-metric-value {
  font-family: var(--fc-mono);
  font-size: 15px;
  color: var(--fc-accent);
  font-weight: 500;
}

.fc-checklist-label {
  margin: 20px 0 0;
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}

.fc-checklist-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-checklist-group-name {
  font-family: var(--fc-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-faint);
}

.fc-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid transparent;
}

.fc-check-row.is-focus {
  background: rgba(79, 214, 255, 0.09);
  border-color: rgba(79, 214, 255, 0.3);
}

.fc-check-box {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex: none;
  border: 1px solid #26384a;
  background: transparent;
}

.fc-check-row.is-focus .fc-check-box {
  border-color: var(--fc-accent);
  background: var(--fc-accent);
}

.fc-check-num {
  font-family: var(--fc-mono);
  font-size: 10px;
  color: var(--fc-muted-3);
  flex: none;
}

.fc-check-name {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--fc-text-3);
}

.fc-check-row.is-focus .fc-check-name {
  color: var(--fc-text);
  font-weight: 600;
}

.fc-check-row.is-related {
  background: rgba(79, 214, 255, 0.05);
  border-color: rgba(79, 214, 255, 0.22);
}

.fc-check-row.is-related .fc-check-box {
  border-color: rgba(79, 214, 255, 0.45);
}

.fc-check-row.is-related .fc-check-name {
  color: var(--fc-text-2);
}

.fc-recap-related {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fc-muted-3);
}

.fc-mail-audit-link {
  color: var(--fc-muted-3);
  text-decoration: underline;
}

.fc-mail-audit-link:hover {
  color: var(--fc-text-3);
}

.fc-mail-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--fc-border-hair);
}

.fc-mail-footer-label {
  font-family: var(--fc-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.fc-pill {
  background: var(--fc-accent);
  color: var(--fc-bg);
  border-radius: 5px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fc-pill--ghost {
  background: none;
  border: 1px solid #26384a;
  color: var(--fc-text-2);
  font-weight: 500;
}

.fc-mail-note {
  margin: 12px 0 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--fc-muted-3);
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  .fc-root *,
  .fc-root *::before,
  .fc-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fc-option.is-picked,
  .fc-route.is-picked {
    transform: none;
  }

  .fc-cta:hover {
    transform: none;
  }
}

/* ── Request access — the funnel's one commercial ask ──────────────────── */
.fc-access {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid var(--fc-border);
  border-radius: 14px;
  background: var(--fc-surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-access.is-done {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  border-color: var(--fc-accent-mid);
}
.fc-access-label {
  margin: 0;
  font-family: var(--fc-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-accent);
}
.fc-access-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--fc-text);
}
.fc-access-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fc-text-3);
}
.fc-access-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.fc-access-field-label {
  font-size: 13px;
  color: var(--fc-muted);
}
.fc-access-optional {
  font-family: var(--fc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-faint);
  margin-left: 6px;
}
.fc-access-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--fc-border);
  background: var(--fc-surface-input);
  color: var(--fc-text);
  font: inherit;
  font-size: 14px;
}
.fc-access-input:focus {
  outline: 2px solid var(--fc-accent);
  outline-offset: 1px;
}
.fc-access-btn {
  align-self: flex-start;
  margin-top: 4px;
}
.fc-access-btn[disabled] {
  opacity: 0.6;
  cursor: default;
}
.fc-access-fine {
  margin: 0;
  font-size: 12px;
  color: var(--fc-faint);
}
