/* =========================================================================
   Toughness Myth -- fMT Opportunity Assessment
   Palette taken from the fMT diagram: charcoal, brand green, category accents.
   Every selector is namespaced under .tmf so this cannot leak into a theme.
   ========================================================================= */

.tmf
{
	--tmf-ink:        #262b2f;
	--tmf-ink-soft:   #5b6670;
	--tmf-ink-faint:  #8d979f;
	--tmf-line:       #e2e7ea;
	--tmf-card:       #ffffff;
	--tmf-shell:      #f4f6f4;

	--tmf-green:      #7ac143;
	--tmf-green-dk:   #4e8c21;
	--tmf-green-lt:   #a6e05f;
	--tmf-green-wash: #f0f8e8;

	--tmf-thrive:      #4e8c21;
	--tmf-prepare:     #2f7fbf;
	--tmf-activate:    #e8a020;
	--tmf-integration: #3f4a52;

	--tmf-radius:  16px;
	--tmf-shadow:  0 1px 2px rgba(20,30,20,.06), 0 12px 32px -12px rgba(20,30,20,.22);
	--tmf-shadow-lg: 0 2px 4px rgba(20,30,20,.06), 0 28px 60px -20px rgba(20,30,20,.30);

	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	max-width: 880px;
	margin: 0 auto;
	padding: clamp(16px, 4vw, 40px) clamp(12px, 3vw, 24px);
	color: var(--tmf-ink);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.tmf *,
.tmf *::before,
.tmf *::after { box-sizing: inherit; }

/* -------------------------------------------------------------------------
   Backdrop: three slow-drifting blooms behind the cards.
   ------------------------------------------------------------------------- */

.tmf__bg
{
	position: absolute;

	/* Vertical bleed only. A horizontal bleed escapes .tmf and scrolls the whole
	   page sideways once .tmf fills the viewport -- and a plugin must not reach
	   out to body/html to clip it. The blooms inside are clipped by this
	   element's own overflow, so the soft edge survives. */
	inset: -10% 0;

	z-index: -1;
	overflow: hidden;
	border-radius: 32px;
	background:
		radial-gradient(120% 90% at 50% -10%, #ffffff 0%, var(--tmf-shell) 55%, #eaf0e6 100%);
}

.tmf__bg i
{
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(60px);
	opacity: .5;
	animation: tmf-drift 26s ease-in-out infinite;
}

.tmf__bg i:nth-child(1) { width: 46%; padding-bottom: 46%; left: -8%;  top: 4%;   background: var(--tmf-green-lt); }
.tmf__bg i:nth-child(2) { width: 40%; padding-bottom: 40%; right: -6%; top: 26%;  background: #bfe3f5; animation-delay: -9s; }
.tmf__bg i:nth-child(3) { width: 52%; padding-bottom: 52%; left: 18%;  bottom: -12%; background: #d8efc2; animation-delay: -17s; }

@keyframes tmf-drift
{
	0%, 100% { transform: translate3d(0,0,0) scale(1); }
	33%      { transform: translate3d(4%, -3%, 0) scale(1.08); }
	66%      { transform: translate3d(-3%, 4%, 0) scale(.95); }
}

/* -------------------------------------------------------------------------
   Cards and steps
   ------------------------------------------------------------------------- */

.tmf__card
{
	background: var(--tmf-card);
	border: 1px solid var(--tmf-line);
	border-radius: var(--tmf-radius);
	box-shadow: var(--tmf-shadow);
	padding: clamp(20px, 4vw, 40px);
}

.tmf__step { display: none; }

.tmf__step.is-active
{
	display: block;
	animation: tmf-step-in .45s cubic-bezier(.2,.7,.3,1) both;
}

.tmf__step:focus { outline: none; }

@keyframes tmf-step-in
{
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

.tmf__eyebrow
{
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tmf-green-dk);
}

.tmf__title
{
	margin: 0 0 10px;
	font-size: clamp(26px, 4.5vw, 38px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -.02em;
}

.tmf__h2
{
	margin: 0 0 8px;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 750;
	letter-spacing: -.015em;
}

.tmf__sub,
.tmf__body,
.tmf__blurb
{
	margin: 0 0 14px;
	color: var(--tmf-ink-soft);
}

.tmf__blurb
{
	padding: 12px 16px;
	border-left: 3px solid var(--tmf-green);
	background: var(--tmf-green-wash);
	border-radius: 0 10px 10px 0;
	font-size: 15px;
	margin-bottom: 26px;
}

.tmf__fineprint
{
	margin: 14px 0 0;
	font-size: 13px;
	color: var(--tmf-ink-faint);
}

/* Progress rail ---------------------------------------------------------- */

.tmf__rail
{
	height: 5px;
	margin: 0 0 18px;
	border-radius: 999px;
	background: rgba(38,43,47,.10);
	overflow: hidden;
}

.tmf__rail-fill
{
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--tmf-green-dk), var(--tmf-green), var(--tmf-green-lt));
	transition: width .5s cubic-bezier(.2,.7,.3,1);
}

/* Honeypot --------------------------------------------------------------- */

.tmf__hp
{
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

/* -------------------------------------------------------------------------
   Gate form
   ------------------------------------------------------------------------- */

.tmf__fields
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 24px 0 8px;
}

.tmf__field--wide { grid-column: 1 / -1; }

.tmf__field label
{
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 650;
}

.tmf__optional
{
	font-weight: 500;
	font-size: 12px;
	color: var(--tmf-ink-faint);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.tmf__field input,
.tmf__field select
{
	width: 100%;
	padding: 11px 13px;
	font: inherit;
	font-size: 15px;
	color: var(--tmf-ink);
	background: #fff;
	border: 1.5px solid var(--tmf-line);
	border-radius: 10px;
	transition: border-color .15s, box-shadow .15s;
}

.tmf__field input:focus,
.tmf__field select:focus
{
	outline: none;
	border-color: var(--tmf-green);
	box-shadow: 0 0 0 4px rgba(122,193,67,.20);
}

.tmf__field.has-error input,
.tmf__field.has-error select
{
	border-color: #d4483b;
	box-shadow: 0 0 0 4px rgba(212,72,59,.14);
}

.tmf__field-error,
.tmf__error
{
	margin: 6px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: #c0392b;
}

.tmf__error { margin-top: 14px; }

/* Scale key on the intro step ------------------------------------------- */

.tmf__scalekey
{
	margin: 22px 0 4px;
	padding: 18px 20px;
	border: 1px dashed var(--tmf-line);
	border-radius: 12px;
	background: #fbfcfa;
}

.tmf__scalekey-title
{
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--tmf-ink-soft);
}

.tmf__scalekey-list
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 6px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.tmf__scalekey-list li { display: flex; gap: 8px; align-items: baseline; }

.tmf__scalekey-list b
{
	flex: 0 0 22px;
	height: 22px;
	display: grid;
	place-items: center;
	font-size: 12px;
	border-radius: 50%;
	background: var(--tmf-green-wash);
	color: var(--tmf-green-dk);
}

.tmf__scalekey-list span { color: var(--tmf-ink-soft); }

/* -------------------------------------------------------------------------
   Category header
   ------------------------------------------------------------------------- */

.tmf__cathead
{
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.tmf__caticon
{
	flex: 0 0 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--tmf-green-wash);
	color: var(--tmf-green-dk);
	box-shadow: inset 0 0 0 1px rgba(78,140,33,.16);
}

.tmf__caticon .tmf-icon { width: 26px; height: 26px; }

.tmf__cathead--prepare     .tmf__caticon { background: #eaf4fc; color: var(--tmf-prepare);     box-shadow: inset 0 0 0 1px rgba(47,127,191,.18); }
.tmf__cathead--activate    .tmf__caticon { background: #fdf3e0; color: #b87a09;                box-shadow: inset 0 0 0 1px rgba(232,160,32,.24); }
.tmf__cathead--integration .tmf__caticon { background: #eef1f3; color: var(--tmf-integration); box-shadow: inset 0 0 0 1px rgba(63,74,82,.16); }

/* -------------------------------------------------------------------------
   Questions and the 1-7 scale
   ------------------------------------------------------------------------- */

/* Sibling rule rather than :first-of-type -- the questions are plain divs now,
   so which element happens to precede them must not matter. */
.tmf-q { margin: 0; padding: 0 0 18px; }

.tmf-q + .tmf-q
{
	padding-top: 18px;
	border-top: 1px solid var(--tmf-line);
}

.tmf-q.is-missing
{
	padding: 14px;
	border-radius: 12px;
	border-top-color: transparent;
	background: #fff6f5;
	box-shadow: inset 0 0 0 1.5px rgba(212,72,59,.35);
}

.tmf-q__prompt
{
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 550;
	line-height: 1.5;
}

.tmf-q__lead
{
	display: inline-block;
	margin-right: 6px;
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--tmf-green-dk);
	color: #fff;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
	vertical-align: 2px;
}

.tmf-scale
{
	display: flex;
	gap: clamp(4px, 1.6vw, 12px);
	justify-content: space-between;
	max-width: 460px;
}

.tmf-scale__opt { flex: 1 1 0; cursor: pointer; }

.tmf-scale__opt input
{
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.tmf-scale__dot
{
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	width: 100%;
	max-width: 46px;
	margin: 0 auto;
	border: 1.5px solid var(--tmf-line);
	border-radius: 50%;
	background: #fff;
	font-size: 14px;
	font-weight: 650;
	color: var(--tmf-ink-faint);
	transition: transform .16s cubic-bezier(.2,.7,.3,1), background .16s, border-color .16s, color .16s, box-shadow .16s;
}

.tmf-scale__opt:hover .tmf-scale__dot
{
	border-color: var(--tmf-green);
	color: var(--tmf-green-dk);
	transform: translateY(-2px);
}

.tmf-scale__opt input:focus-visible + .tmf-scale__dot
{
	box-shadow: 0 0 0 4px rgba(122,193,67,.30);
	border-color: var(--tmf-green);
}

.tmf-scale__opt input:checked + .tmf-scale__dot
{
	background: linear-gradient(160deg, var(--tmf-green-lt), var(--tmf-green-dk));
	border-color: var(--tmf-green-dk);
	color: #fff;
	transform: translateY(-2px) scale(1.06);
	box-shadow: 0 6px 14px -4px rgba(78,140,33,.55);
}

.tmf-scale__ends
{
	display: flex;
	justify-content: space-between;
	max-width: 460px;
	margin-top: 8px;
	font-size: 12px;
	color: var(--tmf-ink-faint);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.tmf__nav
{
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 28px;
}

.tmf__btn
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	border: 1.5px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s, background .16s, color .16s;
}

.tmf__btn--primary
{
	margin-left: auto;
	color: #fff;
	background: linear-gradient(160deg, var(--tmf-green), var(--tmf-green-dk));
	box-shadow: 0 8px 20px -8px rgba(78,140,33,.75);
}

.tmf__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(78,140,33,.8); }
.tmf__btn--primary:active { transform: translateY(0); }

.tmf__btn--ghost
{
	color: var(--tmf-ink-soft);
	background: transparent;
	border-color: var(--tmf-line);
}

.tmf__btn--ghost:hover { color: var(--tmf-ink); border-color: var(--tmf-ink-faint); }

.tmf__btn:focus-visible
{
	outline: none;
	box-shadow: 0 0 0 4px rgba(122,193,67,.35);
}

.tmf__btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.tmf__btn-arrow { transition: transform .16s; }
.tmf__btn--primary:hover .tmf__btn-arrow { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   Working state
   ------------------------------------------------------------------------- */

.tmf__card--working
{
	display: grid;
	place-items: center;
	gap: 16px;
	padding: 56px 24px;
	text-align: center;
	color: var(--tmf-ink-soft);
}

.tmf__spinner { display: flex; gap: 8px; }

.tmf__spinner i
{
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--tmf-green);
	animation: tmf-pulse 1.1s ease-in-out infinite;
}

.tmf__spinner i:nth-child(2) { animation-delay: .16s; background: var(--tmf-green-dk); }
.tmf__spinner i:nth-child(3) { animation-delay: .32s; background: var(--tmf-green-lt); }

@keyframes tmf-pulse
{
	0%, 100% { transform: scale(.7); opacity: .45; }
	50%      { transform: scale(1.15); opacity: 1; }
}

/* =========================================================================
   Results
   ========================================================================= */

.tmf-res { animation: tmf-step-in .5s cubic-bezier(.2,.7,.3,1) both; }
.tmf__results:focus { outline: none; }

.tmf-res__head { text-align: center; margin-bottom: 24px; }

.tmf-res__title
{
	margin: 0;
	font-size: clamp(22px, 3.6vw, 32px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.tmf-res__h3
{
	margin: 0 0 4px;
	font-size: 19px;
	font-weight: 750;
	letter-spacing: -.01em;
}

.tmf-res__top
{
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
	margin-bottom: 20px;
}

.tmf-gauge,
.tmf-radar,
.tmf-res__bars,
.tmf-res__ops
{
	margin: 0;
	background: var(--tmf-card);
	border: 1px solid var(--tmf-line);
	border-radius: var(--tmf-radius);
	box-shadow: var(--tmf-shadow);
	padding: clamp(18px, 3vw, 28px);
}

.tmf-res__bars,
.tmf-res__ops { margin-bottom: 20px; }

/* Gauge ------------------------------------------------------------------ */

.tmf-gauge { display: flex; flex-direction: column; align-items: center; text-align: center; }

.tmf-gauge__svg { width: min(220px, 68vw); height: auto; transform: rotate(-90deg); }

.tmf-gauge__track
{
	fill: none;
	stroke: #e8edea;
	stroke-width: 16;
}

/* Thin inner highlight that gives the ring a bevelled edge. */
.tmf-gauge__bevel
{
	fill: none;
	stroke: rgba(255,255,255,.9);
	stroke-width: 3;
	transform: scale(.955);
	transform-origin: 90px 90px;
}

.tmf-gauge__fill
{
	fill: none;
	stroke: url(#tmfGaugeGrad);
	stroke-width: 16;
	stroke-linecap: round;
	transition: stroke-dashoffset 1.5s cubic-bezier(.25,.8,.3,1);
}

.tmf-gauge__cap
{
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: -18px;
}

.tmf-gauge__num
{
	font-size: clamp(44px, 8vw, 60px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.03em;
	font-variant-numeric: tabular-nums;
	color: var(--tmf-green-dk);
}

.tmf-gauge__den { font-size: 15px; color: var(--tmf-ink-faint); font-weight: 600; }

.tmf-gauge__band
{
	flex: 0 0 100%;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tmf-green-dk);
}

.tmf-gauge__note
{
	margin: 12px 0 0;
	font-size: 14px;
	color: var(--tmf-ink-soft);
	max-width: 34ch;
}

.tmf-gauge__raw { margin: 8px 0 0; font-size: 12px; color: var(--tmf-ink-faint); }

/* Radar ------------------------------------------------------------------ */

.tmf-radar { display: flex; flex-direction: column; align-items: center; }

/* max-width tracks the padded viewBox (340 plot + 2x80 label gutters) so the
   plotted area keeps roughly its old size on desktop. */
.tmf-radar__svg { width: 100%; max-width: 460px; height: auto; }

.tmf-radar__ring { fill: none; stroke: #e6ebe7; stroke-width: 1; }
.tmf-radar__ring:last-of-type { stroke: #d6ded8; }
.tmf-radar__axis { stroke: #e6ebe7; stroke-width: 1; }

.tmf-radar__depth
{
	fill: var(--tmf-green-dk);
	opacity: .28;
	stroke: none;
}

.tmf-radar__shape
{
	fill: url(#tmfRadarFill);
	stroke: var(--tmf-green-dk);
	stroke-width: 2;
	stroke-linejoin: round;
}

.tmf-radar__depth,
.tmf-radar__shape,
.tmf-radar__node
{
	transform-origin: 170px 170px;
	transform: scale(0);
	transition: transform .9s cubic-bezier(.2,.75,.3,1.1);
}

.tmf-res.is-drawn .tmf-radar__depth,
.tmf-res.is-drawn .tmf-radar__shape,
.tmf-res.is-drawn .tmf-radar__node { transform: scale(1); }

.tmf-radar__node { fill: #fff; stroke: var(--tmf-green-dk); stroke-width: 2.5; }

.tmf-radar__label
{
	font-size: 13px;
	font-weight: 700;
	fill: var(--tmf-ink-soft);
}

.tmf-radar__label.is-low { fill: #c0392b; }

.tmf-radar__label-val { font-weight: 800; fill: var(--tmf-ink); }
.tmf-radar__label.is-low .tmf-radar__label-val { fill: #c0392b; }

.tmf-radar__cap
{
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--tmf-ink-faint);
	text-align: center;
	max-width: 40ch;
}

/* Component bars --------------------------------------------------------- */

.tmf-bar { margin-top: 18px; }

.tmf-bar__label
{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 700;
}

.tmf-bar__icon { display: inline-grid; place-items: center; color: var(--tmf-green-dk); }
.tmf-bar__icon .tmf-icon { width: 18px; height: 18px; }

.tmf-bar--prepare     .tmf-bar__icon { color: var(--tmf-prepare); }
.tmf-bar--activate    .tmf-bar__icon { color: #b87a09; }
.tmf-bar--integration .tmf-bar__icon { color: var(--tmf-integration); }

.tmf-bar__value { margin-left: auto; font-variant-numeric: tabular-nums; }

.tmf-bar__flag
{
	padding: 2px 9px;
	border-radius: 999px;
	background: #fdecea;
	color: #c0392b;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.tmf-bar__track
{
	height: 10px;
	border-radius: 999px;
	background: #eef1ee;
	overflow: hidden;
}

.tmf-bar__fill
{
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--tmf-green-dk), var(--tmf-green));
	transition: width 1.1s cubic-bezier(.25,.8,.3,1);
}

.tmf-bar--prepare     .tmf-bar__fill { background: linear-gradient(90deg, #1f5f92, var(--tmf-prepare)); }
.tmf-bar--activate    .tmf-bar__fill { background: linear-gradient(90deg, #b87a09, var(--tmf-activate)); }
.tmf-bar--integration .tmf-bar__fill { background: linear-gradient(90deg, #262b2f, #66737d); }

.tmf-bar.is-lowest .tmf-bar__track { box-shadow: 0 0 0 2px rgba(192,57,43,.28); }

.tmf-bar__meta { margin: 6px 0 0; font-size: 12px; color: var(--tmf-ink-faint); }

/* Greatest-opportunity callout ------------------------------------------ */

.tmf-res__focus
{
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: clamp(18px, 3vw, 28px);
	border-radius: var(--tmf-radius);
	color: #fff;
	background: linear-gradient(135deg, #2f3a2a, #4e8c21);
	box-shadow: var(--tmf-shadow-lg);
}

.tmf-res__focus--prepare     { background: linear-gradient(135deg, #22303c, #2f7fbf); }
.tmf-res__focus--activate    { background: linear-gradient(135deg, #3a2f18, #d18f14); }
.tmf-res__focus--integration { background: linear-gradient(135deg, #1e2429, #4d5a64); }

.tmf-res__focus .tmf__eyebrow { color: rgba(255,255,255,.75); }

.tmf-res__focus-icon
{
	flex: 0 0 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(255,255,255,.16);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.tmf-res__focus-icon .tmf-icon { width: 28px; height: 28px; }

.tmf-res__focus-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; letter-spacing: -.015em; }
.tmf-res__focus-body  { margin: 0; font-size: 15px; color: rgba(255,255,255,.86); }

/* Opportunity list ------------------------------------------------------- */

.tmf-res__ops-note { margin: 0 0 18px; font-size: 14px; color: var(--tmf-ink-soft); }

.tmf-op-list { list-style: none; margin: 0; padding: 0; }

.tmf-op
{
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid var(--tmf-line);
}

.tmf-op:first-child { border-top: 0; padding-top: 0; }

.tmf-op__rank
{
	flex: 0 0 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tmf-green-wash);
	color: var(--tmf-green-dk);
	font-size: 14px;
	font-weight: 800;
}

.tmf-op--prepare     .tmf-op__rank { background: #eaf4fc; color: var(--tmf-prepare); }
.tmf-op--activate    .tmf-op__rank { background: #fdf3e0; color: #b87a09; }
.tmf-op--integration .tmf-op__rank { background: #eef1f3; color: var(--tmf-integration); }

.tmf-op__body { min-width: 0; }

.tmf-op__cat
{
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--tmf-ink-faint);
}

.tmf-op__icon .tmf-icon { width: 15px; height: 15px; }

.tmf-op__score
{
	margin-left: 4px;
	padding-left: 10px;
	border-left: 1px solid var(--tmf-line);
	letter-spacing: .04em;
	text-transform: none;
	font-weight: 600;
}

.tmf-op__prompt { margin: 0 0 8px; font-size: 16px; font-weight: 600; line-height: 1.45; }

.tmf-op__action
{
	margin: 0;
	padding-left: 14px;
	border-left: 3px solid var(--tmf-green);
	font-size: 15px;
	color: var(--tmf-ink-soft);
}

.tmf-op--prepare     .tmf-op__action { border-left-color: var(--tmf-prepare); }
.tmf-op--activate    .tmf-op__action { border-left-color: var(--tmf-activate); }
.tmf-op--integration .tmf-op__action { border-left-color: var(--tmf-integration); }

/* Footer ----------------------------------------------------------------- */

.tmf-res__foot
{
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
	padding: 4px 4px 0;
	font-size: 13px;
	color: var(--tmf-ink-faint);
}

.tmf-res__foot p { margin: 0; flex: 1 1 320px; }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 720px)
{
	.tmf__fields    { grid-template-columns: 1fr; }
	.tmf-res__top   { grid-template-columns: 1fr; }
	.tmf-scale      { max-width: none; }
	.tmf-scale__ends{ max-width: none; }
	.tmf__nav       { flex-wrap: wrap; }
	.tmf__btn       { flex: 1 1 auto; justify-content: center; }
	.tmf__btn--primary { margin-left: 0; }
	.tmf-res__focus { flex-direction: column; gap: 14px; }
}

@media (max-width: 400px)
{
	.tmf-scale__dot { font-size: 12px; }
	.tmf-op         { gap: 12px; }
}

/* -------------------------------------------------------------------------
   Reduced motion: keep the meaning, drop the movement.
   ------------------------------------------------------------------------- */

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

	.tmf__bg i { animation: none; }
}

/* Print: let people keep their results. ---------------------------------- */

@media print
{
	.tmf__bg,
	.tmf__form,
	.tmf__working,
	.tmf-res__foot .tmf__btn { display: none !important; }

	.tmf { max-width: none; padding: 0; }

	.tmf-gauge, .tmf-radar, .tmf-res__bars, .tmf-res__ops, .tmf-res__focus
	{
		box-shadow: none;
		break-inside: avoid;
	}

	.tmf-res__focus { color: #000; background: none; border: 2px solid #444; }
	.tmf-res__focus .tmf__eyebrow,
	.tmf-res__focus-body { color: #333; }
}
