/*
 * Counterfirm app.
 *
 * Two rules the whole sheet obeys. A bright colour is either a fill or a
 * text colour, never both, so every hue ships as a pair. And every reset
 * that touches an element the theme also styles is written at zero weight
 * with :where(), so a primary button is never out-specified by a stray
 * link rule in somebody's theme.
 */

.cfct {
	--bg: #0b0e14;
	--panel: #131823;
	--panel2: #1a2030;
	--line: #232b3d;
	--line2: #313b52;
	--text: #e7eaf0;
	--muted: #98a2b6;
	--faint: #6b7589;

	--brand: #2e8bff;
	--brand-text: #86b8ff;
	--brand-deep: #0f4ea8;

	--good: #1fb877;
	--good-text: #58e0a8;
	--bad: #e4484d;
	--bad-text: #ff8a8e;
	--warn: #d99017;
	--warn-text: #f5c563;
	--cool: #8b5cf6;
	--cool-text: #c4b1ff;

	--radius: 10px;
	--shadow: 0 1px 0 rgba(255, 255, 255, .03), 0 8px 28px rgba(0, 0, 0, .35);
	--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

	color: var(--text);
	background: var(--bg);
	font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
	border-radius: var(--radius);
	overflow: hidden;
	contain: paint;
}

@media (prefers-color-scheme: light) {
	.cfct:not([data-theme="dark"]) {
		--bg: #f6f7fa;
		--panel: #ffffff;
		--panel2: #f1f3f8;
		--line: #e2e6ef;
		--line2: #cdd4e2;
		--text: #131823;
		--muted: #5a6479;
		--faint: #8d96a8;
		--brand-text: #0f4ea8;
		--good-text: #0f7a4d;
		--bad-text: #b3282d;
		--warn-text: #8a5a06;
		--cool-text: #5b32c4;
		--shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 8px 24px rgba(16, 24, 40, .08);
	}
}

.cfct *,
.cfct *::before,
.cfct *::after { box-sizing: border-box; }

:where(.cfct a) { color: inherit; text-decoration: none; }
:where(.cfct h1, .cfct h2, .cfct h3, .cfct h4, .cfct p, .cfct ul, .cfct ol, .cfct figure) { margin: 0; }
:where(.cfct ul, .cfct ol) { padding: 0; list-style: none; }
:where(.cfct button, .cfct input, .cfct select, .cfct textarea) { font: inherit; color: inherit; }
:where(.cfct table) { border-collapse: collapse; width: 100%; }

/* ------------------------------------------------------------ shell */

.cfct-shell { display: grid; grid-template-columns: 232px 1fr; min-height: 720px; }
.cfct-side {
	background: var(--panel);
	border-right: 1px solid var(--line);
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.cfct-brand { display: flex; align-items: center; gap: 9px; padding: 2px 6px 8px; }
.cfct-mark {
	width: 24px; height: 24px; border-radius: 7px; flex: none;
	background: linear-gradient(135deg, #2e8bff, #8b5cf6);
	background-color: #2e8bff;
	position: relative;
}
.cfct-mark::after {
	content: ""; position: absolute; inset: 7px 7px auto 7px; height: 2px;
	background: #fff; border-radius: 2px; opacity: .9;
}
.cfct-brand b { font-size: 15px; letter-spacing: -.01em; }
.cfct-brand span { display: block; font-size: 11px; color: var(--faint); letter-spacing: .02em; }

.cfct-nav { display: flex; flex-direction: column; gap: 1px; }
.cfct-nav button {
	display: flex; align-items: center; gap: 9px; width: 100%;
	padding: 8px 10px; border: 0; background: transparent; border-radius: 8px;
	cursor: pointer; text-align: left; color: var(--muted); font-size: 14px;
}
.cfct-nav button:hover { background: var(--panel2); color: var(--text); }
.cfct-nav button[aria-current="true"] { background: var(--panel2); color: var(--text); font-weight: 600; }
.cfct-nav button .cfct-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line2); flex: none; }
.cfct-nav button[aria-current="true"] .cfct-dot { background: var(--brand); }
.cfct-nav .cfct-count { margin-left: auto; font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; }

.cfct-side-foot { margin-top: auto; font-size: 12px; color: var(--faint); padding: 0 6px; }
.cfct-side-foot b { color: var(--muted); font-weight: 600; }

.cfct-main { min-width: 0; display: flex; flex-direction: column; }
.cfct-top {
	display: flex; align-items: center; gap: 12px; padding: 12px 20px;
	border-bottom: 1px solid var(--line); background: var(--panel);
	position: sticky; top: 0; z-index: 5;
}
.cfct-top h1 { font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.cfct-top .cfct-sub { font-size: 12px; color: var(--faint); }
.cfct-top-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.cfct-body { padding: 20px; display: flex; flex-direction: column; gap: 18px; }

/* ------------------------------------------------------------ bits */

.cfct-btn {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 8px 13px; border-radius: 8px; border: 1px solid var(--line2);
	background: var(--panel2); cursor: pointer; font-size: 13.5px; font-weight: 550;
	white-space: nowrap;
}
.cfct-btn:hover { border-color: var(--faint); }
.cfct-btn:disabled { opacity: .45; cursor: not-allowed; }
.cfct-btn-pri { background: var(--brand); background-color: var(--brand); border-color: var(--brand); color: #fff; }
.cfct-btn-pri:hover { background: #4b9bff; border-color: #4b9bff; }
.cfct-btn-danger { border-color: var(--bad); color: var(--bad-text); background: transparent; }
.cfct-btn-sm { padding: 5px 9px; font-size: 12.5px; border-radius: 7px; }
.cfct-btn-ghost { background: transparent; border-color: transparent; color: var(--muted); }
.cfct-btn-ghost:hover { background: var(--panel2); color: var(--text); }

.cfct-card {
	background: var(--panel); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 16px;
}
.cfct-card h2 { font-size: 14px; font-weight: 650; letter-spacing: -.005em; }
.cfct-card h2 + .cfct-lead { margin-top: 5px; }
.cfct-lead { color: var(--muted); font-size: 13.5px; }
.cfct-grid { display: grid; gap: 14px; }
.cfct-g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cfct-g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cfct-g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cfct-stat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; }
.cfct-stat .l { font-size: 11.5px; color: var(--faint); text-transform: uppercase; letter-spacing: .05em; }
.cfct-stat .v { font-size: 24px; font-weight: 640; letter-spacing: -.02em; margin-top: 3px; }
.cfct-stat .s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.cfct-stat .s.up { color: var(--good-text); }
.cfct-stat .s.down { color: var(--bad-text); }

.cfct-chip {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 2px 8px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
	border: 1px solid var(--line2); color: var(--muted); background: var(--panel2);
}
.cfct-chip.doc { color: var(--good-text); border-color: rgba(31, 184, 119, .35); }
.cfct-chip.user { color: var(--brand-text); border-color: rgba(46, 139, 255, .35); }
.cfct-chip.derived { color: var(--cool-text); border-color: rgba(139, 92, 246, .35); }
.cfct-chip.ai { color: var(--warn-text); border-color: rgba(217, 144, 23, .35); }
.cfct-chip.def { color: var(--bad-text); border-color: rgba(228, 72, 77, .35); }

.cfct-bar { height: 6px; border-radius: 999px; background: var(--panel2); overflow: hidden; }
.cfct-bar i { display: block; height: 100%; background: var(--brand); background-color: var(--brand); }
.cfct-bar.good i { background: var(--good); }
.cfct-bar.warn i { background: var(--warn); }

.cfct-table th {
	text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
	color: var(--faint); font-weight: 600; padding: 7px 10px; border-bottom: 1px solid var(--line);
}
.cfct-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); font-size: 13.5px; vertical-align: top; }
.cfct-table tr:last-child td { border-bottom: 0; }
.cfct-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.cfct-scroll { overflow-x: auto; contain: paint; }

.cfct-field { display: flex; flex-direction: column; gap: 5px; }
.cfct-field label { font-size: 12px; color: var(--muted); font-weight: 550; }
.cfct-field input, .cfct-field select, .cfct-field textarea {
	background: var(--panel2); border: 1px solid var(--line2); border-radius: 8px;
	padding: 8px 10px; font-size: 13.5px; width: 100%;
}
.cfct-field input:focus, .cfct-field select:focus, .cfct-field textarea:focus {
	outline: 2px solid var(--brand); outline-offset: -1px;
}
.cfct-field .hint { font-size: 11.5px; color: var(--faint); }
.cfct-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.cfct-row > * { flex: 1 1 160px; min-width: 0; }
.cfct-row > .none { flex: 0 0 auto; }

.cfct-empty { padding: 34px 20px; text-align: center; color: var(--muted); }
.cfct-empty b { display: block; color: var(--text); font-size: 15px; margin-bottom: 5px; }

.cfct-boot { padding: 60px 20px; text-align: center; color: var(--muted); }
.cfct-spin {
	display: inline-block; width: 13px; height: 13px; border-radius: 50%;
	border: 2px solid var(--line2); border-top-color: var(--brand);
	animation: cfct-spin .7s linear infinite; vertical-align: -2px; margin-right: 6px;
}
@keyframes cfct-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .cfct-spin { animation-duration: 2.4s; } }

.cfct-note {
	border-left: 2px solid var(--line2); padding: 6px 0 6px 11px;
	color: var(--muted); font-size: 13px;
}
.cfct-note.warn { border-left-color: var(--warn); }
.cfct-note.bad { border-left-color: var(--bad); }

/* ------------------------------------------------------------ gate */

.cfct-gate { padding: 64px 24px; text-align: center; }
.cfct-gate-in { max-width: 520px; margin: 0 auto; }
.cfct-gate h2 { font-size: 22px; font-weight: 650; margin-bottom: 8px; letter-spacing: -.02em; }
.cfct-gate p { color: var(--muted); }
.cfct-gate-links { margin-top: 18px; display: flex; gap: 10px; justify-content: center; }

/* ------------------------------------------------------------ graph */

.cfct-graph { width: 100%; height: 480px; display: block; background: var(--panel2); border-radius: var(--radius); }
.cfct-graph .edge { stroke: var(--line2); }
.cfct-graph .node-label { font-size: 10px; fill: var(--muted); }
.cfct-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; font-size: 12px; color: var(--muted); }
.cfct-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; margin-right: 5px; vertical-align: -1px; }

/* ------------------------------------------------------------ agents */

.cfct-agents { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.cfct-agent {
	background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 13px; cursor: pointer; text-align: left; width: 100%;
}
.cfct-agent:hover { border-color: var(--line2); }
.cfct-agent .top { display: flex; align-items: center; gap: 8px; }
.cfct-agent .nm { font-weight: 620; font-size: 14px; }
.cfct-agent .rl { font-size: 12px; color: var(--faint); }
.cfct-agent .sm { font-size: 12.5px; color: var(--muted); margin-top: 7px; }
.cfct-traits { display: flex; gap: 3px; margin-top: 10px; }
.cfct-traits i { flex: 1; height: 4px; border-radius: 2px; background: var(--line2); position: relative; overflow: hidden; }
.cfct-traits i b { position: absolute; inset: 0 auto 0 0; background: var(--cool); display: block; }

.cfct-drawer {
	position: fixed; inset: 0; background: rgba(4, 6, 11, .6); z-index: 9999;
	display: flex; justify-content: flex-end;
}
.cfct-drawer-in {
	width: min(560px, 100%); background: var(--panel); height: 100%; overflow-y: auto;
	border-left: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; gap: 14px;
}
.cfct-drawer h3 { font-size: 17px; font-weight: 650; letter-spacing: -.01em; }
.cfct-kv { display: grid; grid-template-columns: 130px 1fr; gap: 6px 12px; font-size: 13.5px; }
.cfct-kv dt { color: var(--faint); font-size: 12.5px; }

/* ------------------------------------------------------------ scenarios */

.cfct-scn { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cfct-scn-card {
	background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 14px; display: flex; flex-direction: column; gap: 9px;
}
.cfct-scn-card .q { font-size: 13px; color: var(--muted); }
.cfct-scn-card .nm { font-weight: 620; font-size: 14.5px; }
.cfct-levers { display: flex; flex-wrap: wrap; gap: 5px; }
.cfct-lever-chip {
	font-size: 11.5px; padding: 2px 7px; border-radius: 6px;
	background: var(--panel2); border: 1px solid var(--line2); color: var(--muted);
	font-family: var(--mono);
}
.cfct-scn-foot { margin-top: auto; display: flex; gap: 7px; align-items: center; }
.cfct-delta { font-size: 12.5px; font-weight: 600; }
.cfct-delta.up { color: var(--good-text); }
.cfct-delta.down { color: var(--bad-text); }

/* ------------------------------------------------------------ report */

.cfct-brief { display: flex; flex-direction: column; gap: 16px; }
.cfct-brief h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); font-weight: 650; }
.cfct-brief .answer { font-size: 17px; line-height: 1.5; letter-spacing: -.005em; }
.cfct-timeline { display: flex; flex-direction: column; gap: 0; }
.cfct-tl {
	display: grid; grid-template-columns: 62px 1fr; gap: 12px;
	padding: 11px 0; border-bottom: 1px solid var(--line);
}
.cfct-tl:last-child { border-bottom: 0; }
.cfct-tl .when { font-size: 12px; color: var(--faint); font-variant-numeric: tabular-nums; }
.cfct-tl .hd { font-weight: 600; font-size: 13.5px; }
.cfct-tl .dt { font-size: 13px; color: var(--muted); margin-top: 3px; }
.cfct-freq { font-size: 11px; color: var(--faint); font-family: var(--mono); }

/* The missing document list. It used to borrow the timeline row, whose first
   column is 62px wide for a month number, so a document name wrapped to five
   lines. It gets its own row now. */
.cfct-gap {
	display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
	padding: 11px 0; border-bottom: 1px solid var(--line);
}
.cfct-gap:last-of-type { border-bottom: 0; }
.cfct-gap .hd { font-weight: 600; font-size: 13.5px; }
.cfct-gap .dt { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* A bar and its number on one line, so the figure does not sit under the bar
   and crowd the row below it. */
.cfct-meter { display: flex; align-items: center; gap: 9px; }
.cfct-meter .cfct-lead { font-variant-numeric: tabular-nums; }

.cfct-sev-1 { border-left: 2px solid var(--line2); padding-left: 10px; }
.cfct-sev-2 { border-left: 2px solid var(--brand); padding-left: 10px; }
.cfct-sev-3 { border-left: 2px solid var(--warn); padding-left: 10px; }
.cfct-sev-4, .cfct-sev-5 { border-left: 2px solid var(--bad); padding-left: 10px; }

.cfct-said { background: var(--panel2); border-radius: 8px; padding: 10px 12px; font-size: 13.5px; }
.cfct-said .who { font-size: 12px; color: var(--faint); margin-bottom: 3px; }
.cfct-said .why { font-size: 12px; color: var(--faint); margin-top: 5px; font-style: italic; }

/* ------------------------------------------------------------ ask */

.cfct-ask { display: flex; flex-direction: column; gap: 12px; }
.cfct-qa { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.cfct-qa .q { font-weight: 620; margin-bottom: 7px; }
.cfct-qa .a { white-space: pre-wrap; font-size: 13.8px; color: var(--text); }
.cfct-cites { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }

/* ------------------------------------------------------------ dropzone */

.cfct-drop {
	border: 1.5px dashed var(--line2); border-radius: var(--radius);
	padding: 26px; text-align: center; color: var(--muted); cursor: pointer;
	background: var(--panel);
}
.cfct-drop.over { border-color: var(--brand); color: var(--brand-text); }
.cfct-drop b { display: block; color: var(--text); margin-bottom: 4px; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 900px) {
	.cfct-shell { grid-template-columns: 1fr; }
	.cfct-side { flex-direction: row; align-items: center; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 10px; gap: 8px; }
	.cfct-brand { padding: 0 6px 0 2px; }
	.cfct-brand span { display: none; }
	.cfct-nav { flex-direction: row; gap: 4px; }
	.cfct-nav button { padding: 6px 10px; white-space: nowrap; }
	.cfct-nav .cfct-count, .cfct-nav .cfct-dot { display: none; }
	.cfct-side-foot { display: none; }
	.cfct-g2, .cfct-g3, .cfct-g4 { grid-template-columns: 1fr; }
	.cfct-body { padding: 14px; }
	.cfct-top { padding: 11px 14px; }
	.cfct-kv { grid-template-columns: 1fr; gap: 2px 0; }
	.cfct-kv dd { margin: 0 0 8px; }
}
@media (max-width: 1180px) and (min-width: 901px) {
	.cfct-g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ------------------------------------------------------------ v2 motion
 *
 * All of this is additive. With the script blocked or motion reduced, the
 * same page renders, static, in the same place. Nothing here is required
 * to read a number.
 */

.cfct-rise { opacity: 0; transform: translateY(8px); }
.cfct-rise.in { opacity: 1; transform: none; transition: opacity .38s ease, transform .38s cubic-bezier(.2, .7, .3, 1); }
@media (prefers-reduced-motion: reduce) {
	.cfct-rise, .cfct-rise.in { opacity: 1; transform: none; transition: none; }
}

.cfct-bar i { transition: width .7s cubic-bezier(.2, .7, .3, 1); }
@media (prefers-reduced-motion: reduce) { .cfct-bar i { transition: none; } }

.cfct-nav button { position: relative; transition: background .15s ease, color .15s ease; }
.cfct-nav button[aria-current="true"]::before {
	content: ""; position: absolute; left: 0; top: 7px; bottom: 7px; width: 2px;
	border-radius: 2px; background: var(--brand);
}

.cfct-btn { transition: border-color .15s ease, background .15s ease, transform .12s ease; }
.cfct-btn:active { transform: translateY(1px); }

.cfct-flash { animation: cfct-flash 1.4s ease; }
@keyframes cfct-flash {
	0%, 100% { box-shadow: 0 0 0 0 rgba(46, 139, 255, 0); }
	20% { box-shadow: 0 0 0 4px rgba(46, 139, 255, .35); }
}
@media (prefers-reduced-motion: reduce) { .cfct-flash { animation: none; } }

/* ------------------------------------------------------------ v2 layout */

.cfct-g5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cfct-h { font-size: 15px; font-weight: 660; letter-spacing: -.01em; margin-bottom: 4px; }

.cfct-hero-card {
	background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 20px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
}
.cfct-hero-card > div:first-child { flex: 1 1 340px; min-width: 0; }
.cfct-hero-card h2 { font-size: 17px; font-weight: 660; letter-spacing: -.015em; margin-bottom: 6px; }

.cfct-ring {
	--p: 0;
	width: 128px; height: 128px; flex: none; border-radius: 50%;
	display: grid; place-items: center; position: relative;
	background:
		radial-gradient(closest-side, var(--panel) 79%, transparent 80% 100%),
		conic-gradient(var(--brand) calc(var(--p) * 1%), var(--line) 0);
	background-color: var(--panel);
}
.cfct-ring span { font-size: 27px; font-weight: 680; letter-spacing: -.03em; }
.cfct-ring span i { font-style: normal; font-size: 14px; color: var(--muted); }
.cfct-ring .cfct-lead { position: absolute; bottom: -26px; width: 160px; left: -16px; font-size: 11.5px; }

.cfct-intake-card { display: flex; flex-direction: column; gap: 10px; }
.cfct-rank {
	width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center;
	background: var(--brand); background-color: var(--brand); color: #fff;
	font-size: 13px; font-weight: 700;
}

.cfct-det { border-top: 1px solid var(--line); padding-top: 10px; }
.cfct-det summary { cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--brand-text); }
.cfct-det[open] summary { margin-bottom: 8px; }
.cfct-ul { list-style: disc; padding-left: 18px; color: var(--muted); font-size: 13px; }
.cfct-ul li { margin: 3px 0; }
.cfct-pre {
	background: var(--panel2); border: 1px solid var(--line); border-radius: 8px;
	padding: 10px 12px; font-family: var(--mono); font-size: 11.5px; color: var(--muted);
	overflow-x: auto; contain: paint; margin-top: 10px; white-space: pre;
}

/* ------------------------------------------------------------ v2 evidence */

.cfct-sub {
	font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
	color: var(--faint); font-weight: 650; margin: 18px 0 8px;
}
.cfct-input { border-top: 1px solid var(--line); padding: 11px 0; font-size: 13.5px; }
.cfct-input:first-of-type { border-top: 0; }
.cfct-cite {
	background: var(--panel2); border-left: 2px solid var(--good);
	border-radius: 0 8px 8px 0; padding: 9px 12px; margin-top: 8px;
}
.cfct-cite-h { font-size: 12px; font-weight: 640; font-family: var(--mono); }
.cfct-cite blockquote {
	margin: 6px 0 0; font-size: 12.5px; color: var(--muted); font-style: italic;
	border: 0; padding: 0;
}
.cfct-up { color: var(--bad-text); font-weight: 600; }
.cfct-down { color: var(--good-text); font-weight: 600; }
.cfct-why { margin-top: 9px; padding: 3px 8px; font-size: 11.5px; }
.cfct-stat .cfct-why { position: absolute; top: 10px; right: 10px; margin: 0; opacity: 0; }
.cfct-stat { position: relative; }
.cfct-stat:hover .cfct-why, .cfct-stat:focus-within .cfct-why { opacity: 1; }
.cfct-agent .cfct-why { opacity: .55; }
.cfct-agent:hover .cfct-why { opacity: 1; }

@media (max-width: 1180px) {
	.cfct-g5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.cfct-g5 { grid-template-columns: 1fr; }
	.cfct-ring { width: 104px; height: 104px; }
	.cfct-hero-card { padding: 16px; gap: 18px; }
	.cfct-stat .cfct-why { position: static; opacity: 1; display: inline-flex; margin-top: 8px; }
}
