/*
 * The Final 90 - Deal Tracker
 * Braintree internal product UI (DESIGN-SYSTEM.md section 8.7).
 * Cohort palette (Forest / Grow / Leaf), Rubik type, light treatment.
 * Everything is scoped under .f90-wrap so it never touches the WordPress theme.
 */

/* Bundled variable font (no external CDN). */
@font-face {
	font-family: 'Rubik';
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url('../fonts/rubik.woff2') format('woff2');
}

.f90-wrap {
	/* Cohort tokens */
	--f90-forest: #002E2D;
	--f90-forest-2: #001E1E;
	--f90-grow: #00D59C;
	--f90-grow-2: #00B584;
	--f90-grow-soft: #E6FAF4;
	--f90-leaf: #7AD93B;
	--f90-leaf-soft: #EFFAE3;
	--f90-canvas: #FFFFFF;
	--f90-surface: #F7F9F8;
	--f90-ink: #0A1F19;
	--f90-ink-2: #3F5651;
	--f90-ink-3: #7A8B86;
	--f90-line: #E2E8E5;
	--f90-danger: #D14545;
	--f90-warning: #F4A93B;

	font-family: 'Rubik', system-ui, sans-serif;
	color: var(--f90-ink);
	background: var(--f90-surface);
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 46, 45, 0.06), 0 8px 28px rgba(0, 46, 45, 0.06);
	line-height: 1.4;
}

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

.f90-wrap p {
	margin: 0;
}

/* ---------- Masthead (Forest band, white-greentree logo) ---------- */
.f90-masthead {
	background: var(--f90-forest);
	color: var(--f90-canvas);
	padding: 28px 32px 22px;
}

/* "Back to the hub" link, top of the tracker masthead */
.f90-backlink {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--f90-grow);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	margin: 0 0 16px;
	opacity: 0.92;
	transition: opacity 0.15s, transform 0.15s;
}
.f90-backlink:hover,
.f90-backlink:focus {
	opacity: 1;
	text-decoration: underline;
}
.f90-backlink:hover .f90-backlink-arrow {
	transform: translateX(-3px);
}
.f90-backlink-arrow {
	font-size: 16px;
	line-height: 1;
	transition: transform 0.15s;
}

.f90-masthead-inner {
	display: flex;
	align-items: center;
	gap: 22px;
}

.f90-logo {
	height: 46px;
	width: auto;
	display: block;
	flex: 0 0 auto;
}

.f90-eyebrow {
	color: var(--f90-grow);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 2px;
}

.f90-title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin: 0;
	color: var(--f90-canvas);
}

.f90-window {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	margin-top: 4px;
}

.f90-prizes {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 0;
	padding: 0;
}

.f90-prize-chip {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	padding: 8px 12px;
	min-width: 0;
}

.f90-prize-label {
	font-size: 11px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
}

.f90-prize-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--f90-grow);
}

/* ---------- Tab bar ---------- */
.f90-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	background: var(--f90-canvas);
	border-bottom: 1px solid var(--f90-line);
	padding: 0 16px;
}

.f90-tab {
	appearance: none;
	background: none;
	border: 0;
	border-bottom: 3px solid transparent;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	color: var(--f90-ink-2);
	padding: 16px 16px 13px;
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s;
}

.f90-tab:hover {
	color: var(--f90-forest);
}

.f90-tab.is-active {
	color: var(--f90-forest);
	border-bottom-color: var(--f90-grow);
	font-weight: 600;
}

/* ---------- App body ---------- */
.f90-app {
	padding: 24px 32px 30px;
	background: var(--f90-surface);
}

.f90-view {
	animation: f90-fade 0.18s ease;
}

.f90-view[hidden] {
	display: none;
}

@keyframes f90-fade {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: none; }
}

.f90-loading {
	color: var(--f90-ink-3);
	padding: 40px 0;
	text-align: center;
	font-size: 15px;
}

.f90-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.f90-section-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--f90-forest);
	margin: 0;
}

.f90-section-note {
	font-size: 13px;
	color: var(--f90-ink-3);
}

/* ---------- Cards ---------- */
.f90-card {
	background: var(--f90-canvas);
	border: 1px solid var(--f90-line);
	border-radius: 12px;
	padding: 22px;
}

/* ---------- Tables ---------- */
.f90-tablewrap {
	overflow-x: auto;
	border: 1px solid var(--f90-line);
	border-radius: 12px;
	background: var(--f90-canvas);
}

.f90-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 640px;
}

.f90-table thead th {
	background: var(--f90-forest);
	color: var(--f90-canvas);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.03em;
	text-align: left;
	padding: 12px 14px;
	white-space: nowrap;
}

.f90-table tbody td {
	padding: 12px 14px;
	border-top: 1px solid var(--f90-line);
	color: var(--f90-ink);
	vertical-align: middle;
	overflow-wrap: anywhere;
}

.f90-cell-customer {
	max-width: 280px;
}

.f90-table tbody tr:nth-child(even) td {
	background: var(--f90-surface);
}

.f90-num {
	text-align: right;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.f90-rank {
	font-weight: 700;
	color: var(--f90-ink-2);
	width: 1%;
	white-space: nowrap;
}

.f90-points {
	font-weight: 700;
	color: var(--f90-grow-2);
	font-variant-numeric: tabular-nums;
	text-align: right;
}

/* Leader row: Grow-soft tint + Grow left accent + trophy */
.f90-table tbody tr.is-leader td {
	background: var(--f90-grow-soft);
}

.f90-table tbody tr.is-leader td:first-child {
	box-shadow: inset 3px 0 0 var(--f90-grow);
}

.f90-trophy {
	margin-right: 6px;
}

.f90-rep-cell {
	font-weight: 600;
	color: var(--f90-forest);
}

/* ---------- Badges ---------- */
.f90-badge {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--f90-leaf-soft);
	color: #2f6b1f;
	white-space: nowrap;
}

.f90-badge-muted {
	background: var(--f90-surface);
	color: var(--f90-ink-3);
	border: 1px solid var(--f90-line);
}

.f90-badge-copilot {
	background: var(--f90-grow-soft);
	color: var(--f90-forest);
}

/* ---------- Buttons ---------- */
.f90-btn {
	appearance: none;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	padding: 13px 24px;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.f90-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.f90-btn-forest {
	background: var(--f90-forest);
	color: var(--f90-canvas);
}

.f90-btn-forest:hover:not(:disabled) {
	background: var(--f90-forest-2);
}

.f90-btn-outline {
	background: transparent;
	border-color: var(--f90-forest);
	color: var(--f90-forest);
}

.f90-btn-outline:hover:not(:disabled) {
	background: rgba(0, 46, 45, 0.06);
}

.f90-btn-grow {
	background: var(--f90-grow);
	color: var(--f90-forest);
	border-radius: 999px;
	font-weight: 600;
}

.f90-btn-grow:hover:not(:disabled) {
	background: var(--f90-grow-2);
}

.f90-btn-danger {
	background: transparent;
	border-color: var(--f90-danger);
	color: var(--f90-danger);
}

.f90-btn-danger:hover:not(:disabled) {
	background: rgba(209, 69, 69, 0.08);
}

.f90-btn-sm {
	font-size: 13px;
	padding: 7px 14px;
}

.f90-btn-link {
	background: none;
	border: 0;
	color: var(--f90-grow-2);
	font-weight: 600;
	cursor: pointer;
	padding: 6px 8px;
	font-size: 13px;
}

.f90-btn-link.is-danger {
	color: var(--f90-danger);
}

/* ---------- Forms ---------- */
.f90-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 20px;
}

.f90-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.f90-field.f90-col-span {
	grid-column: 1 / -1;
}

.f90-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--f90-ink-2);
}

.f90-input,
.f90-select {
	font-family: inherit;
	font-size: 15px;
	color: var(--f90-ink);
	background: var(--f90-canvas);
	border: 1px solid var(--f90-line);
	border-radius: 8px;
	padding: 11px 12px;
	width: 100%;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.f90-input:focus,
.f90-select:focus {
	outline: none;
	border-color: var(--f90-grow);
	box-shadow: 0 0 0 3px var(--f90-grow-soft);
}

.f90-input.is-error,
.f90-select.is-error {
	border-color: var(--f90-danger);
}

.f90-error {
	color: var(--f90-danger);
	font-size: 12.5px;
	min-height: 1px;
}

.f90-checks {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	align-items: center;
}

.f90-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--f90-ink);
	cursor: pointer;
}

.f90-check input {
	width: 17px;
	height: 17px;
	accent-color: var(--f90-grow-2);
}

.f90-prefix {
	position: relative;
}

.f90-prefix .f90-input {
	padding-left: 30px;
}

.f90-prefix-mark {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--f90-ink-3);
	font-size: 15px;
	pointer-events: none;
}

/* Live points preview */
.f90-preview {
	grid-column: 1 / -1;
	background: var(--f90-grow-soft);
	border: 1px solid #cdeee3;
	border-radius: 12px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.f90-preview-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--f90-forest);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.f90-preview-breakdown {
	font-size: 13px;
	color: var(--f90-ink-2);
}

.f90-preview-total {
	font-size: 34px;
	font-weight: 800;
	color: var(--f90-grow-2);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.f90-preview-total span {
	font-size: 14px;
	font-weight: 600;
	color: var(--f90-ink-3);
	margin-left: 4px;
}

.f90-form-actions {
	display: flex;
	gap: 12px;
	margin-top: 22px;
	align-items: center;
	flex-wrap: wrap;
}

/* ---------- Toast ---------- */
.f90-toast {
	position: fixed;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%) translateY(20px);
	background: var(--f90-forest);
	color: var(--f90-canvas);
	padding: 13px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 10px 30px rgba(0, 46, 45, 0.25);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s, transform 0.2s;
	z-index: 99999;
	max-width: 90vw;
}

.f90-toast.is-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.f90-toast.is-success {
	background: var(--f90-grow-2);
	color: var(--f90-forest);
}

.f90-toast.is-error {
	background: var(--f90-danger);
}

/* ---------- Modal ---------- */
.f90-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 30, 30, 0.55);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 5vh 16px;
	overflow-y: auto;
	z-index: 99998;
}

.f90-modal-overlay[hidden] {
	display: none;
}

.f90-modal {
	background: var(--f90-canvas);
	border-radius: 16px;
	max-width: 620px;
	width: 100%;
	padding: 26px 28px;
	box-shadow: 0 20px 60px rgba(0, 30, 30, 0.4);
}

.f90-modal-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--f90-forest);
	margin: 0 0 18px;
}

/* ---------- Settings ---------- */
.f90-settings-block {
	margin-bottom: 26px;
}

.f90-settings-block h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--f90-forest);
	margin: 0 0 12px;
}

.f90-roster-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 12px;
	border: 1px solid var(--f90-line);
	border-radius: 8px;
	background: var(--f90-canvas);
	margin-bottom: 8px;
}

.f90-roster-row span:first-child {
	min-width: 0;
	overflow-wrap: anywhere;
}

.f90-mult-row {
	display: grid;
	grid-template-columns: 1fr 120px;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.f90-muted {
	color: var(--f90-ink-3);
	font-size: 13px;
}

/* ---------- Sign-off (Forest) ---------- */
.f90-signoff {
	background: var(--f90-forest);
	color: rgba(255, 255, 255, 0.7);
	padding: 18px 32px 20px;
	text-align: center;
}

.f90-credibility {
	font-style: italic;
	font-size: 13px;
	margin: 0 0 4px;
}

.f90-letsgrow {
	color: var(--f90-grow);
	font-weight: 700;
	font-size: 16px;
	margin: 0;
}

/* ---------- Gate / no-access panels ---------- */
.f90-gate-body {
	padding: 40px 32px;
	text-align: center;
	background: var(--f90-surface);
}

.f90-gate-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--f90-forest);
	margin: 0 0 8px;
}

.f90-gate-msg {
	color: var(--f90-ink-2);
	font-size: 15px;
	max-width: 460px;
	margin: 0 auto 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
	.f90-masthead,
	.f90-app,
	.f90-signoff {
		padding-left: 18px;
		padding-right: 18px;
	}

	.f90-masthead-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.f90-title {
		font-size: 28px;
	}

	.f90-form-grid {
		grid-template-columns: 1fr;
	}

	.f90-tab {
		padding: 13px 12px 11px;
		font-size: 14px;
	}

	.f90-prize-chip {
		flex: 1 1 calc(50% - 8px);
	}
}

/* ============================================================
 * Campaign hub ([final90_hub]) - PREMIUM "awards" treatment.
 * Deep Forest + one refined gold accent + warm neutrals.
 * Mint is used sparingly (live cues only). No rainbow, no emoji.
 * Internal hub surface only (Lance directive: class it up).
 * ============================================================ */
.f90hub {
	--lux-forest: #002E2D;
	--lux-forest-2: #001A19;
	--lux-gold: #C2A24C;
	--lux-gold-deep: #8A6F2E;   /* gold text on light grounds (WCAG AA) */
	--lux-gold-light: #E7D4A1;  /* gold on dark grounds */
	--lux-paper: #FAF8F2;
	--lux-line: #ECE7DC;
	--lux-ink: #14241F;
	--lux-ink-2: #5A6B64;
	--m-gold-a: #EBD392;  --m-gold-b: #B8923E;
	--m-silver-a: #E6EAEF; --m-silver-b: #A7B0BA;
	--m-bronze-a: #E6B583; --m-bronze-b: #A86A38;
	max-width: 1080px;
	background: #FFFFFF;
}

/* ---------- Hero ---------- */
.f90hub-hero {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 100% at 50% -12%, #0A4A42 0%, #002E2D 46%, #001A19 100%);
	color: #FFFFFF;
	padding: 60px 32px 52px;
	text-align: center;
}

.f90hub-hero-blobs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 50% 4%, rgba(199, 162, 76, 0.30), transparent 38%),
		radial-gradient(circle at 50% 132%, rgba(0, 213, 156, 0.10), transparent 55%);
	animation: f90hub-glow 9s ease-in-out infinite alternate;
}

@keyframes f90hub-glow {
	from { opacity: 0.72; }
	to { opacity: 1; }
}

.f90hub-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
}

.f90hub-logo {
	height: 38px;
	width: auto;
	display: block;
	margin: 0 auto 22px;
	opacity: 0.96;
}

.f90hub-eyebrow {
	color: var(--lux-gold-light);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 14px;
}

.f90hub-wordmark {
	font-weight: 800;
	font-size: clamp(40px, 9vw, 96px);
	line-height: 0.92;
	letter-spacing: -0.02em;
	margin: 0;
	text-transform: uppercase;
	color: #FFFFFF;
	overflow-wrap: break-word;
}

.f90hub-90 {
	background: linear-gradient(180deg, #F0DDA8 0%, #C2A24C 60%, #9A7C36 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 4px 18px rgba(194, 162, 76, 0.35));
}

.f90hub-tagline {
	font-size: clamp(17px, 2.4vw, 21px);
	font-weight: 500;
	margin: 16px 0 4px;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.01em;
}

.f90hub-window {
	color: rgba(231, 212, 161, 0.85);
	font-size: 14px;
	letter-spacing: 0.04em;
	margin: 0 0 28px;
}

/* Countdown */
.f90hub-countdown {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 0 0 30px;
}

.f90hub-cd-unit {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(231, 212, 161, 0.22);
	border-radius: 12px;
	padding: 16px 12px 12px;
	min-width: 84px;
}

.f90hub-cd-num {
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	color: #FFFFFF;
	font-variant-numeric: tabular-nums;
}

.f90hub-cd-label {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lux-gold-light);
	margin-top: 8px;
	font-weight: 600;
}

.f90hub-countdown-over {
	font-size: 20px;
	font-weight: 700;
	color: var(--lux-gold-light);
	padding: 10px 0;
}

.f90hub-loading {
	color: rgba(255, 255, 255, 0.65);
	padding: 16px 0;
	font-size: 14px;
}

/* Hero prize chips + CTA */
.f90hub-prizechips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
}

.f90hub-prizechips li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(231, 212, 161, 0.18);
	border-radius: 10px;
	padding: 9px 15px;
}

.f90hub-chip-label {
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.f90hub-chip-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--lux-gold-light);
}

.f90hub-cta.f90-btn-grow {
	background: linear-gradient(180deg, #E7D29A, #C2A24C);
	color: #2A2008;
	border: 0;
	font-weight: 700;
	font-size: 16px;
	box-shadow: 0 10px 28px rgba(194, 162, 76, 0.35);
	transition: transform 0.15s, box-shadow 0.15s;
}

.f90hub-cta.f90-btn-grow:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(194, 162, 76, 0.45);
	background: linear-gradient(180deg, #EBD8A6, #C9A954);
}

/* ---------- Sections ---------- */
.f90hub-section {
	padding: 46px 32px;
	background: #FFFFFF;
}

.f90hub-section-alt {
	background: var(--lux-paper);
}

.f90hub-h2 {
	font-size: 25px;
	font-weight: 800;
	color: var(--lux-forest);
	margin: 0 0 26px;
	text-align: center;
	letter-spacing: -0.01em;
}

.f90hub-h2::after {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 2px;
	background: var(--lux-gold);
}

.f90hub-empty {
	text-align: center;
	color: var(--lux-ink-2);
	font-size: 16px;
	background: #FFFFFF;
	border: 1px dashed var(--lux-line);
	border-radius: 14px;
	padding: 38px 20px;
	max-width: 560px;
	margin: 0 auto;
}

/* ---------- Podium ---------- */
.f90hub-podium-row {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 18px;
	flex-wrap: wrap;
}

.f90hub-podium-spot {
	background: #FFFFFF;
	border: 1px solid var(--lux-line);
	border-radius: 18px;
	padding: 26px 20px;
	width: 212px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 46, 45, 0.05);
}

.f90hub-place-1 {
	border-color: var(--lux-gold);
	box-shadow: 0 18px 44px rgba(184, 146, 62, 0.22);
	transform: translateY(-12px);
}

.f90hub-podium-discwrap {
	position: relative;
	width: 72px;
	margin: 0 auto 16px;
}

.f90hub-podium-disc,
.f90hub-stand-disc {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	border-radius: 50%;
	color: #FFFFFF;
}

.f90hub-podium-disc {
	width: 72px;
	height: 72px;
	font-size: 24px;
	margin: 0 auto;
}

.f90hub-place-1 .f90hub-podium-disc {
	background: linear-gradient(145deg, var(--m-gold-a), var(--m-gold-b)) !important;
	color: #3A2E0A !important;
	box-shadow: 0 0 0 4px rgba(194, 162, 76, 0.20);
}
.f90hub-place-2 .f90hub-podium-disc {
	background: linear-gradient(145deg, var(--m-silver-a), var(--m-silver-b)) !important;
	color: #39424C !important;
}
.f90hub-place-3 .f90hub-podium-disc {
	background: linear-gradient(145deg, var(--m-bronze-a), var(--m-bronze-b)) !important;
	color: #FFFFFF !important;
}

.f90hub-podium-rank {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: var(--lux-ink-2);
}
.f90hub-place-1 .f90hub-podium-rank { color: var(--lux-gold-deep); }
.f90hub-place-2 .f90hub-podium-rank { color: #7E8790; }
.f90hub-place-3 .f90hub-podium-rank { color: #A86A38; }

.f90hub-podium-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--lux-forest);
	margin-bottom: 8px;
}

.f90hub-podium-ptsnum {
	font-size: 30px;
	font-weight: 800;
	color: var(--lux-forest);
	font-variant-numeric: tabular-nums;
}

.f90hub-podium-ptslabel {
	font-size: 14px;
	color: var(--lux-ink-2);
	font-weight: 600;
}

.f90hub-podium-deals {
	font-size: 13px;
	color: var(--lux-ink-2);
	margin-top: 4px;
}

/* ---------- Standings ---------- */
.f90hub-stand-list {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.f90hub-stand-row {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #FFFFFF;
	border: 1px solid var(--lux-line);
	border-radius: 12px;
	padding: 12px 18px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.f90hub-stand-row:hover {
	border-color: #D9D2C2;
	box-shadow: 0 4px 14px rgba(0, 46, 45, 0.05);
}

.f90hub-stand-row.is-leader {
	background: linear-gradient(92deg, #FBF6E7, #FFFFFF);
	border-color: var(--lux-gold);
}

.f90hub-stand-rank {
	font-size: 15px;
	font-weight: 700;
	color: var(--lux-ink-2);
	width: 26px;
	text-align: center;
	flex: 0 0 auto;
}
.f90hub-stand-row.is-leader .f90hub-stand-rank { color: var(--lux-gold-deep); }

.f90hub-stand-disc {
	width: 40px;
	height: 40px;
	font-size: 14px;
	flex: 0 0 auto;
}

.f90hub-stand-name {
	font-weight: 600;
	color: var(--lux-forest);
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.f90hub-stand-deals {
	font-size: 13px;
	color: var(--lux-ink-2);
	flex: 0 0 auto;
}

.f90hub-stand-pts {
	font-weight: 800;
	color: var(--lux-forest);
	font-variant-numeric: tabular-nums;
	flex: 0 0 auto;
}

.f90hub-prizes-lede {
	max-width: 660px;
	margin: 0 auto 22px;
	text-align: left;
	font-size: 15.5px;
	color: var(--lux-ink-2);
}

/* ---------- Prize wall: 3 over 2, full width; refined gold ---------- */
.f90hub-prizewall {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	max-width: 1000px;
	margin: 0 auto;
	align-items: stretch;
}

.f90hub-prizecard {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #FFFFFF;
	border: 1px solid var(--lux-line);
	border-top: 3px solid var(--lux-gold);
	border-radius: 14px;
	padding: 28px 22px;
	text-align: center;
	transition: transform 0.15s, box-shadow 0.15s;
}

.f90hub-prizecard:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 46, 45, 0.10);
}

.f90hub-prizecard:nth-child(4):nth-last-child(2),
.f90hub-prizecard:nth-child(5):nth-last-child(1) {
	grid-column: span 3;
}

.f90hub-prizecard-value {
	font-size: 30px;
	font-weight: 800;
	color: var(--lux-gold-deep);
	letter-spacing: -0.01em;
}

.f90hub-prizecard-label {
	font-size: 15px;
	font-weight: 700;
	color: var(--lux-forest);
	margin: 8px 0 8px;
}

.f90hub-prizecard-crit {
	font-size: 13px;
	color: var(--lux-ink-2);
	line-height: 1.45;
}

/* Grand Prize (first card): elevated dark-Forest treatment */
.f90hub-prizecard:nth-child(1) {
	background: linear-gradient(155deg, #013430, #002E2D);
	border-color: var(--lux-gold);
}
.f90hub-prizecard:nth-child(1) .f90hub-prizecard-value { color: var(--lux-gold-light); }
.f90hub-prizecard:nth-child(1) .f90hub-prizecard-label { color: #FFFFFF; }
.f90hub-prizecard:nth-child(1) .f90hub-prizecard-crit { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 920px) {
	.f90hub-prizewall { grid-template-columns: repeat(2, 1fr); }
	.f90hub-prizecard,
	.f90hub-prizecard:nth-child(4):nth-last-child(2),
	.f90hub-prizecard:nth-child(5):nth-last-child(1) { grid-column: auto; }
}

@media (max-width: 560px) {
	.f90hub-prizewall { grid-template-columns: 1fr; }
}

/* ---------- Deal of the Month spotlight ---------- */
.f90hub-spotlight {
	max-width: 720px;
	margin: 0 auto;
	background: linear-gradient(155deg, #013430, #002E2D);
	border: 1px solid rgba(231, 212, 161, 0.25);
	border-radius: 18px;
	padding: 30px 28px;
	text-align: center;
	color: #FFFFFF;
	box-shadow: inset 3px 0 0 var(--lux-gold), 0 12px 30px rgba(0, 46, 45, 0.12);
}

.f90hub-spotlight-rep {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lux-gold-light);
	font-weight: 700;
	margin-bottom: 10px;
}

.f90hub-spotlight-head {
	font-size: 22px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.f90hub-spotlight-note {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
}

.f90hub-spotlight-empty {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
}

.f90hub-spotlight-edit {
	display: block;
	margin: 16px auto 0;
}

/* ---------- How it works ---------- */
.f90hub-rules-lede {
	max-width: 660px;
	margin: 0 auto 30px;
	text-align: left;
	font-size: 15.5px;
	color: var(--lux-ink-2);
	line-height: 1.65;
	background: var(--lux-paper);
	border: 1px solid var(--lux-line);
	border-left: 4px solid var(--lux-gold);
	border-radius: 10px;
	padding: 16px 20px;
}

.f90hub-rules-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	max-width: 920px;
	margin: 0 auto;
	align-items: stretch;
}

.f90hub-rules-table,
.f90hub-rules-bonuses {
	background: #FFFFFF;
	border: 1px solid var(--lux-line);
	border-radius: 14px;
	padding: 24px 22px 18px;
}

.f90hub-rules-table::before,
.f90hub-rules-bonuses::before {
	display: block;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--lux-gold-deep);
	margin-bottom: 16px;
}
.f90hub-rules-table::before { content: "Category multipliers"; }
.f90hub-rules-bonuses::before { content: "Bonus points"; }

.f90hub-rules-table .f90-table {
	border: 0;
	min-width: 0;
}
.f90hub-rules-table .f90-table thead th {
	background: var(--lux-forest);
	color: #FFFFFF;
}
.f90hub-rules-table .f90-table thead th:first-child { border-radius: 8px 0 0 8px; }
.f90hub-rules-table .f90-table thead th:last-child { border-radius: 0 8px 8px 0; }
.f90hub-rules-table .f90-table tbody tr:last-child td { border-bottom: 0; }

.f90hub-rules-table tbody td.f90-num { font-weight: 800; font-size: 15px; }
.f90hub-rules-table tbody tr:nth-child(1) td.f90-num { color: var(--lux-gold-deep); }
.f90hub-rules-table tbody tr:nth-child(2) td.f90-num,
.f90hub-rules-table tbody tr:nth-child(3) td.f90-num { color: var(--lux-forest); }
.f90hub-rules-table tbody tr:nth-child(4) td.f90-num,
.f90hub-rules-table tbody tr:nth-child(5) td.f90-num { color: var(--lux-ink-2); }

.f90hub-bonus {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--lux-line);
	font-size: 15px;
	color: var(--lux-ink);
}
.f90hub-rules-bonuses .f90hub-bonus:nth-child(3) { border-bottom: 0; }

.f90hub-bonus-pts {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 34px;
	border-radius: 8px;
	background: var(--lux-forest);
	color: #FFFFFF;
	font-weight: 800;
	font-size: 15px;
	line-height: 1;
	flex: 0 0 auto;
}

.f90hub-rules-fine {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--lux-line);
	font-size: 13px;
	color: var(--lux-ink-2);
	line-height: 1.55;
}

/* ---------- CTA band ---------- */
.f90hub-ctaband {
	background: radial-gradient(120% 140% at 50% -20%, #0A4A42, #002E2D 55%, #001A19);
	text-align: center;
	padding: 48px 32px;
}

.f90hub-ctaband-title {
	color: #FFFFFF;
	font-size: 25px;
	font-weight: 800;
	margin: 0 0 22px;
	letter-spacing: -0.01em;
}

.f90hub-ctaband .f90-btn-grow {
	background: linear-gradient(180deg, #E7D29A, #C2A24C);
	color: #2A2008;
	border: 0;
	font-weight: 700;
	box-shadow: 0 10px 28px rgba(194, 162, 76, 0.30);
	transition: transform 0.15s, box-shadow 0.15s;
}
.f90hub-ctaband .f90-btn-grow:hover {
	transform: translateY(-2px);
	background: linear-gradient(180deg, #EBD8A6, #C9A954);
}

/* ---------- Hub responsive ---------- */
@media (max-width: 700px) {
	.f90hub-hero,
	.f90hub-section,
	.f90hub-ctaband {
		padding-left: 18px;
		padding-right: 18px;
	}
	.f90hub-rules-grid { grid-template-columns: 1fr; }
	.f90hub-podium-row { flex-direction: column; align-items: stretch; }
	.f90hub-place-1 { transform: none; order: -1; }
	.f90hub-podium-spot { width: auto; }
	.f90hub-cd-unit { min-width: 68px; }
}

@media (prefers-reduced-motion: reduce) {
	.f90hub-hero-blobs { animation: none !important; }
}

/* ---------- Confetti (tracker, on a logged deal) ---------- */
.f90-confetti {
	position: fixed;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 99997;
}

.f90-confetti-piece {
	position: absolute;
	top: -16px;
	width: 9px;
	height: 13px;
	border-radius: 2px;
	opacity: 0.92;
	animation: f90-confetti-fall 2.2s ease-in forwards;
}

@keyframes f90-confetti-fall {
	0% { top: -16px; opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.f90-confetti { display: none; }
}

@media (max-width: 560px) {
	.f90hub-wordmark { font-size: 42px; }
	.f90hub-90 { display: block; }
	.f90hub-eyebrow { letter-spacing: 0.12em; font-size: 11px; }
	.f90hub-cd-unit { min-width: 60px; padding: 12px 8px 9px; }
	.f90hub-cd-num { font-size: 34px; }
	.f90hub-prizechips { display: none; }
}

/* ===== What you're selling (playbook) ===== */
.f90hub-playbook-lede {
	max-width: 660px;
	margin: 0 auto 30px;
	text-align: left;
	font-size: 15.5px;
	color: var(--lux-ink-2);
	line-height: 1.65;
	background: var(--lux-paper);
	border: 1px solid var(--lux-line);
	border-left: 4px solid var(--lux-gold);
	border-radius: 10px;
	padding: 16px 20px;
}
.f90hub-playgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.f90hub-playcard { background:#fff; border:1px solid var(--lux-line); border-radius:14px; padding:22px 22px 20px; display:flex; flex-direction:column; transition: transform .15s, box-shadow .15s; }
.f90hub-playcard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,46,45,.10); }
.f90hub-playcard-head { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.f90hub-playicon { width:52px; height:52px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; background:#fff; border:1px solid var(--lux-line); border-radius:12px; }
.f90hub-playicon img { width:32px; height:32px; display:block; }
.f90hub-playicon.is-wordmark { width:auto; min-width:52px; padding:0 12px; }
.f90hub-playicon.is-wordmark img { width:auto; height:17px; }
.f90hub-playcard-headtext { min-width:0; }
.f90hub-playcard-title { font-size:16px; font-weight:800; color:var(--lux-forest); margin:0 0 6px; line-height:1.15; }
.f90hub-mult { display:inline-block; font-size:12px; font-weight:800; color:#3A2E0A; background:linear-gradient(180deg,#EBD8A6,#C2A24C); padding:3px 11px; border-radius:999px; }
.f90hub-mult-haas { display:inline-block; font-size:12px; font-weight:700; color:var(--lux-gold-deep); border:1.5px solid var(--lux-gold); padding:2px 10px; border-radius:999px; }
.f90hub-playcard-what { font-size:14px; color:var(--lux-ink); line-height:1.5; margin:0 0 10px; }
.f90hub-playcard-who { font-size:13px; color:var(--lux-ink-2); line-height:1.45; margin:0 0 13px; }
.f90hub-playcard-who span { font-weight:700; color:var(--lux-forest); text-transform:uppercase; letter-spacing:.06em; font-size:11px; margin-right:5px; }
.f90hub-playcard-points { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.f90hub-playcard-points li { position:relative; padding-left:22px; font-size:13.5px; color:var(--lux-ink); line-height:1.4; }
.f90hub-playcard-points li::before { content:""; position:absolute; left:2px; top:4px; width:11px; height:6px; border-left:2px solid var(--lux-gold); border-bottom:2px solid var(--lux-gold); transform:rotate(-45deg); }
.f90hub-playcard.is-haas { border-color:var(--lux-gold); box-shadow: inset 0 3px 0 var(--lux-gold); }
.f90hub-playcard-foot { margin:14px 0 0; padding-top:12px; border-top:1px solid var(--lux-line); font-size:12px; color:var(--lux-ink-2); line-height:1.5; }
.f90hub-playcard-foot a { color:var(--lux-gold-deep); font-weight:700; text-decoration:none; }
/* co-brand strip */
.f90hub-msbar { max-width:1000px; margin:26px auto 0; display:flex; align-items:center; gap:22px; background:#fff; border:1px solid var(--lux-line); border-radius:14px; padding:18px 24px; }
.f90hub-msbadge { height:62px; width:auto; flex:0 0 auto; }
.f90hub-msbar-text { font-size:14px; color:var(--lux-ink-2); line-height:1.55; margin:0; }
.f90hub-msbar-text strong { color:var(--lux-forest); font-weight:700; }
/* in partnership with Microsoft (Forest footer) */
.f90hub-inpartnership { display:flex; align-items:center; justify-content:center; gap:10px; margin:0 0 16px; }
.f90hub-inpartnership span { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(231,212,161,.65); }
.f90hub-inpartnership img { height:17px; width:auto; opacity:.95; }
@media (max-width:920px){ .f90hub-playgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px){ .f90hub-playgrid { grid-template-columns: 1fr; } .f90hub-msbar { flex-direction:column; text-align:center; gap:14px; } }

/* ===== Theme-override armour =====
   braintree.co.za (Hello Elementor + a site-wide custom button style) bleeds a
   maroon <button>/<input> treatment onto the plugin UI - it rendered the tracker
   tabs as cheap maroon pill-buttons. Every interactive element is re-asserted
   here and flagged !important so no host rule can reach in. The selectors use a
   DOUBLED ".f90-wrap.f90-wrap" (specificity 0,3,0) so they also outrank host
   rules that use attribute selectors, e.g. ".elementor-kit-xxx input[type=email]"
   or "button[type=submit]" (0,2,1). This block is intentionally last in the file. */
.f90-wrap button,
.f90-wrap input,
.f90-wrap select,
.f90-wrap textarea,
.f90-wrap a.f90-btn {
	-webkit-appearance: none;
	appearance: none;
	text-shadow: none;
	font-family: 'Rubik', system-ui, -apple-system, sans-serif;
}
/* Tabs */
.f90-wrap.f90-wrap .f90-tab {
	background: none !important;
	border: 0 !important;
	border-bottom: 3px solid transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--f90-ink-2) !important;
	padding: 16px 18px 13px !important;
	margin: 0 !important;
	min-height: 0 !important;
	width: auto !important;
	font-weight: 500 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}
.f90-wrap.f90-wrap .f90-tab:hover { color: var(--f90-forest) !important; }
.f90-wrap.f90-wrap .f90-tab.is-active {
	color: var(--f90-forest) !important;
	border-bottom: 3px solid var(--f90-grow) !important;
	background: none !important;
	font-weight: 700 !important;
}
/* Buttons - all variants */
.f90-wrap.f90-wrap .f90-btn {
	border: 2px solid transparent !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	min-height: 0 !important;
	width: auto !important;
}
.f90-wrap.f90-wrap .f90-btn-forest { background: var(--f90-forest) !important; color: #fff !important; border-color: var(--f90-forest) !important; }
.f90-wrap.f90-wrap .f90-btn-forest:hover:not(:disabled) { background: var(--f90-forest-2) !important; }
.f90-wrap.f90-wrap .f90-btn-outline { background: transparent !important; border-color: var(--f90-forest) !important; color: var(--f90-forest) !important; }
.f90-wrap.f90-wrap .f90-btn-outline:hover:not(:disabled) { background: rgba(0,46,45,.06) !important; }
.f90-wrap.f90-wrap .f90-btn-grow { background: var(--f90-grow) !important; color: var(--f90-forest) !important; border-color: var(--f90-grow) !important; border-radius: 999px !important; }
.f90-wrap.f90-wrap .f90-btn-grow:hover:not(:disabled) { background: var(--f90-grow-2) !important; border-color: var(--f90-grow-2) !important; }
.f90-wrap.f90-wrap .f90-btn-danger { background: transparent !important; border-color: var(--f90-danger) !important; color: var(--f90-danger) !important; }
.f90-wrap.f90-wrap .f90-btn-danger:hover:not(:disabled) { background: rgba(209,69,69,.08) !important; }
/* Inputs / selects / textareas */
.f90-wrap.f90-wrap .f90-input,
.f90-wrap.f90-wrap .f90-select,
.f90-wrap.f90-wrap textarea.f90-input {
	background: var(--f90-canvas) !important;
	border: 1px solid var(--f90-line) !important;
	border-radius: 8px !important;
	color: var(--f90-ink) !important;
	box-shadow: none !important;
}
.f90-wrap.f90-wrap .f90-input:focus,
.f90-wrap.f90-wrap .f90-select:focus {
	border-color: var(--f90-grow) !important;
	box-shadow: 0 0 0 3px var(--f90-grow-soft) !important;
	outline: none !important;
}
/* Masthead back-link (host could recolour bare <a>) */
.f90-wrap.f90-wrap .f90-backlink { color: var(--f90-grow) !important; background: none !important; text-decoration: none !important; }
.f90-wrap.f90-wrap .f90-backlink:hover { color: var(--f90-grow-2) !important; text-decoration: underline !important; }

/* ===== Registration / one-click-join gate ===== */
.f90-reg .f90-gate-body { max-width: 540px; }
.f90-reg-form { margin: 20px auto 0; text-align: left; }
.f90-label-hint { font-size: 12px; color: var(--f90-ink-3); }
.f90-reg-error { margin-top: 14px; background: #FBE9E7; border: 1px solid #F1B0A8; color: #8A2A1E; padding: 10px 13px; border-radius: 8px; font-size: 14px; line-height: 1.45; }
.f90-reg-submit { width: 100%; margin-top: 18px; }
.f90-reg .f90-reg-join { margin-top: 6px; }
.f90-reg-signin { margin-top: 16px; text-align: center; font-size: 14px; color: var(--f90-ink-2); }
.f90-reg-signin a { color: var(--f90-forest); font-weight: 600; text-decoration: none; }
.f90-reg-signin a:hover { text-decoration: underline; }
/* Honeypot: off-screen, never shown to humans, never tabbable. */
.f90-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width:600px){ .f90-reg .f90-form-grid { grid-template-columns: 1fr; } }

/* ===== Headline prize: Springbok tickets banner (hub) ===== */

/* ===== Image armour (v1.6.1) =====
   Elementor's frontend.min.css is enqueued AFTER this file and carries
   ".elementor img { height:auto; max-width:100% }" (specificity 0,1,1). It
   outranks every single-class image rule here (".f90-logo", ".f90hub-msbadge"
   = 0,1,0) and wins the tie against the 0,1,1 ones on source order. Only the
   HEIGHT was hijacked - our width rules survived because Elementor sets no
   width - so "height:Npx; width:auto" degraded to height:auto + width:auto,
   i.e. the image's NATURAL size: the hub hero logo blew up to 380px, the
   Solutions Partner badge to 925px (crushing its caption into a 68px column),
   and the footer Microsoft logo to 994px. The square play icons only looked
   right by luck (width:32px held; ms-defender still rendered 33.59px, not 32).
   Re-assert every image size with a doubled ".f90-wrap.f90-wrap" (0,3,x) plus
   !important, matching the button armour above. Keep this block last. */
.f90-wrap.f90-wrap .f90-logo { height:46px !important; width:auto !important; }
.f90-wrap.f90-wrap .f90hub-logo { height:38px !important; width:auto !important; }
.f90-wrap.f90-wrap .f90hub-msbadge { height:62px !important; width:auto !important; }
.f90-wrap.f90-wrap .f90hub-inpartnership img { height:17px !important; width:auto !important; }
.f90-wrap.f90-wrap .f90hub-playicon img { width:32px !important; height:32px !important; }
.f90-wrap.f90-wrap .f90hub-playicon.is-wordmark img { width:auto !important; height:17px !important; }
/* Both prize-card heroes. aspect-ratio+object-fit already survive Elementor's
   height:auto, but assert them anyway: this is the one file where an image
   rule has silently lost to .elementor img before (v1.6.1). */
.f90-wrap.f90-wrap .f90hub-pcard-img { width:100% !important; height:auto !important; aspect-ratio:16/9 !important; object-fit:cover !important; }
/* Added with the Surface announcement (v1.7.3). ms-surface.svg is 300x39, so
   without this Elementor's height:auto renders it 300px wide and wrecks the
   panel head - the exact v1.6.1 failure. Armour every new image on sight. */
.f90-wrap.f90-wrap .f90hub-surface-logo { height:20px !important; width:auto !important; }

/* The two headline-prize sections now sit back to back straight under the hero.
   The stock 46px top+bottom would put 92px of dead air between them and push the
   board further down for no reason, so tighten the stack: full space above the
   first, a slim gap between, full space below the last. */
.f90hub-section-prize { padding-top: 30px; padding-bottom: 0; }
.f90hub-section-prize + .f90hub-section-prize { padding-top: 18px; padding-bottom: 30px; }

/* ===== Hub: the two headline prizes, as a matched pair of cards =====
   Same shape for both so they read as equal prizes, not banner + afterthought.
   Light paper + gold, mirroring the hub's premium palette (gold-led, ZERO Grow).
   Both heroes are 16:9 and share one fixed aspect box, so the images line up
   exactly no matter which card is taller. */
.f90hub-prizegrid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;          /* equal-height cards; the taller one sets it */
}
.f90hub-pcard {
	display: flex;
	flex-direction: column;
	background: var(--lux-paper);
	border: 1px solid var(--lux-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 16px 38px rgba(0,46,45,.10);
}
.f90hub-pcard-surface { border-left: 4px solid var(--lux-gold); }
.f90hub-pcard-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #fff;
}
.f90hub-pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.f90hub-pcard-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--lux-gold-deep); margin: 0 0 7px; }
.f90hub-pcard-h { font-size: 22px; font-weight: 800; color: var(--lux-forest); margin: 0 0 9px; letter-spacing: -0.2px; line-height: 1.15; }
.f90hub-pcard-p { font-size: 14.5px; color: var(--lux-ink-2); line-height: 1.6; margin: 0 0 12px; }
.f90hub-pcard-p strong { color: var(--lux-forest); font-weight: 700; }
.f90hub-pcard-list { list-style: none; margin: 0 0 12px; padding: 0; }
.f90hub-pcard-list li { font-size: 13.5px; color: var(--lux-ink); padding: 5px 0; border-bottom: 1px solid var(--lux-line); }
.f90hub-pcard-list li:last-child { border-bottom: 0; }
.f90hub-pcard-list strong { color: var(--lux-gold-deep); margin-right: 8px; }
.f90hub-pcard-hero { font-size: 15px; font-weight: 800; color: var(--lux-forest); line-height: 1.45; margin: 0 0 8px; }
/* mt-auto: pin the footnote to the card bottom so both cards' feet line up */
.f90hub-pcard-foot { font-size: 12.5px; color: var(--lux-ink-2); line-height: 1.55; margin: auto 0 0; padding-top: 12px; border-top: 1px solid var(--lux-line); }
.f90hub-pcard-foot strong { color: var(--lux-forest); }
/* tier chips (Surface card) */
.f90hub-surface-tiers { list-style: none; display: flex; gap: 10px; margin: 0 0 12px; padding: 0; }
.f90hub-surface-tier { flex: 1 1 0; display: flex; align-items: baseline; gap: 6px; background: #FFFFFF; border: 1px solid var(--lux-line); border-radius: 10px; padding: 11px 12px; }
.f90hub-surface-tier.is-top { border-color: var(--lux-gold); box-shadow: 0 6px 18px rgba(194,162,76,.16); }
.f90hub-surface-tier-n { font-size: 22px; font-weight: 800; line-height: 1; color: var(--lux-gold-deep); }
.f90hub-surface-tier.is-top .f90hub-surface-tier-n { color: var(--lux-forest); }
.f90hub-surface-tier-l { font-size: 11px; font-weight: 600; color: var(--lux-ink-2); flex: 1 1 auto; }
.f90hub-surface-tier-c { font-size: 16px; font-weight: 800; color: var(--lux-forest); white-space: nowrap; }
@media (max-width: 860px) {
	.f90hub-prizegrid { grid-template-columns: 1fr; }
}

/* ===== Surface bonus progress (CORE + Microsoft Surface) =====
   The rep's own count for the CURRENT month. A threshold, not a race, so it
   shows your number only and ranks nobody. Doubled ".f90-wrap.f90-wrap" for the
   same reason as the image armour above: Elementor's frontend.min.css loads
   after this file and outranks single-class rules. Gold literal (not a token):
   the tracker's cohort palette has no gold, it arrives with this partner block. */
.f90-wrap.f90-wrap .f90-sbonus {
	background: var(--f90-forest);
	border-left: 4px solid #C2A24C;
	border-radius: 14px;
	padding: 16px 18px;
	margin: 0 0 18px;
}
.f90-wrap.f90-wrap .f90-sbonus.is-hit { border-left-color: var(--f90-grow); }
.f90-wrap.f90-wrap .f90-sbonus-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.f90-wrap.f90-wrap .f90-sbonus-eyebrow {
	color: #E7D4A1;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
.f90-wrap.f90-wrap .f90-sbonus-count {
	color: #FFFFFF;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}
.f90-wrap.f90-wrap .f90-sbonus-count span {
	color: #BFD9D2;
	font-size: 14px;
	font-weight: 600;
}
.f90-wrap.f90-wrap .f90-sbonus-bar {
	display: block;
	height: 8px;
	border-radius: 999px;
	background: var(--f90-forest-2);
	margin: 12px 0 10px;
	overflow: hidden;
}
.f90-wrap.f90-wrap .f90-sbonus-bar span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var(--f90-grow);
	transition: width .4s ease;
}
.f90-wrap.f90-wrap .f90-sbonus-line {
	color: var(--f90-grow);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}
.f90-wrap.f90-wrap .f90-sbonus-foot {
	color: #BFD9D2;
	font-size: 12px;
	line-height: 1.5;
	margin: 4px 0 0;
}
