/* ==========================================================================
   Bluefox Affiliates — single-page site (dark theme)
   ========================================================================== */

:root {
	/* Core dark palette — deep black shades */
	--color-bg: #04060b;          /* page base — near black */
	--color-bg-alt: #070a12;      /* alternate section band */
	--color-bg-elev: #0b101d;     /* elevated surface / cards */
	--color-bg-elev-2: #121a2d;   /* hover / nested surface */
	--color-bg-deep: #020308;     /* header / footer band */
	--color-line: rgba(255, 255, 255, 0.07);

	/* Brand accent — Bluefox cyan + brand red */
	--color-accent: #16b8f3;
	--color-accent-2: #0a8fd0;
	--color-accent-soft: rgba(22, 184, 243, 0.14);
	--color-red: #e00c1b;

	/* Text */
	--color-heading: #f4f7ff;
	--color-text: #9aa4c4;
	--color-text-dim: #6b7494;

	--shadow-card: 0 18px 44px rgba(0, 0, 0, 0.55);
	--shadow-glow: 0 0 0 1px rgba(22, 184, 243, 0.25), 0 12px 40px rgba(22, 184, 243, 0.16);
	--radius: 18px;
	--container: 1200px;
	--font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
	font-family: var(--font);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(22, 184, 243, 0.35); color: #fff; }

/* Slim dark scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-deep); }
::-webkit-scrollbar-thumb {
	background: var(--color-bg-elev-2);
	border-radius: 8px;
	border: 2px solid var(--color-bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-accent-2); }

a:focus-visible, button:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Shared keyframes ===== */
@keyframes rise-in {
	from { opacity: 0; transform: translateY(32px); }
	to   { opacity: 1; transform: none; }
}
@keyframes float-a {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes float-b {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(-50px, 24px) scale(0.94); }
}
@keyframes gradient-pan {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* ===== Reveal-on-scroll animation ===== */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
/* directional variants */
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal.visible { opacity: 1; transform: none; }

/* editor-content elements animated on scroll (class added by main.js) */
.anim { opacity: 0; }
.anim.visible { animation: rise-in 0.6s ease both; }
.entry-content > .col-md-4.anim.visible:nth-child(3n+2) { animation-delay: 0.1s; }
.entry-content > .col-md-4.anim.visible:nth-child(3n) { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal, .reveal-left, .reveal-right, .anim {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}
	.brands-visual img, .brand-card, .award-card, .benefit-card, .join-orb, .tier-bar span,
	.page-hero .section-eyebrow, .page-hero .page-title { animation: none !important; opacity: 1 !important; }
	.hero-left > *, .hero-award, .hero-steps { animation: none !important; opacity: 1 !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 16px 0;
	background: transparent;
	transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}
.site-header.scrolled {
	padding: 10px 0;
	background: rgba(2, 3, 8, 0.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: var(--color-line);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.brand-logo img { height: 44px; width: auto; }

.main-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}
.nav-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0.3px;
	position: relative;
	padding: 4px 0;
	transition: color 0.25s ease;
}
.nav-link::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background: var(--color-accent);
	box-shadow: 0 0 8px var(--color-accent);
	transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-login {
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 40px;
	padding: 8px 22px;
}
.nav-login::after { display: none; }
.nav-login:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: var(--color-accent-soft);
}

.nav-cta {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
	color: #041019;
	text-decoration: none;
	font-weight: 700;
	font-size: 14.5px;
	padding: 10px 24px;
	border-radius: 40px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(22, 184, 243, 0.4); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	/* never let scroll/entrance animations touch the hamburger */
	opacity: 1 !important;
	visibility: visible !important;
}
.nav-toggle span {
	width: 26px; height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 110px 0; position: relative; }

.section-eyebrow {
	text-align: center;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-title {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--color-heading);
	text-align: center;
	margin-bottom: 46px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.section-title span { position: relative; padding-bottom: 14px; }
.section-title span::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 72px; height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
	box-shadow: 0 0 14px rgba(22, 184, 243, 0.6);
}
.section-title.light { color: #fff; }

/* underline grows in once the title reveals */
.section-title.reveal span::after { width: 0; transition: width 0.6s ease 0.25s; }
.section-title.reveal.visible span::after { width: 72px; }

.section-text {
	max-width: 900px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: 17px;
	color: var(--color-text);
}

.gradient-text {
	background: linear-gradient(90deg, var(--color-accent), #7fd6ff, var(--color-accent));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradient-pan 6s linear infinite;
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 38px;
	border-radius: 40px;
	transition: all 0.25s ease;
}
.btn-primary {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
	color: #041019;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(22, 184, 243, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(22, 184, 243, 0.5); }
.btn-ghost {
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-soft); }
.btn-outline {
	color: var(--color-accent);
	border: 2px solid rgba(22, 184, 243, 0.5);
	padding: 10px 30px;
	font-size: 15px;
	background: transparent;
}
.btn-outline:hover { background: var(--color-accent); color: #041019; box-shadow: 0 8px 22px rgba(22, 184, 243, 0.35); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 110px 0 0;
	overflow: hidden;
	background: var(--color-bg);
}
/* temple scene — character stays centered, content flanks both sides.
   The background-image itself is injected inline from the Media Library
   (see bluefox_enqueue_assets in functions.php). */
.hero-bg {
	position: absolute;
	inset: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(4, 6, 11, 0.95) 0%, rgba(4, 6, 11, 0.75) 25%, rgba(4, 6, 11, 0.15) 45%, rgba(4, 6, 11, 0.15) 55%, rgba(4, 6, 11, 0.7) 78%, rgba(4, 6, 11, 0.9) 100%),
		linear-gradient(to top, var(--color-bg) 0%, transparent 26%),
		linear-gradient(to bottom, rgba(4, 6, 11, 0.7) 0%, transparent 18%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	flex: 1;
	display: grid;
	grid-template-columns: 1.2fr 1.1fr 0.85fr;
	gap: 36px;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 44px;
	max-width: 1300px;   /* wider than the default container so copy clears the centered character */
}
.hero-left > * { animation: rise-in 0.8s ease both; }
.hero-eyebrow {
	display: inline-block;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 8px 18px;
	border: 1px solid rgba(22, 184, 243, 0.35);
	border-radius: 40px;
	background: var(--color-accent-soft);
	margin-bottom: 26px;
	animation-delay: 0.1s;
}
.hero-title {
	color: var(--color-heading);
	font-size: clamp(40px, 4.6vw, 48px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
	animation-delay: 0.2s;
}
.hero-tagline {
	color: #dfe6f5;
	font-size: clamp(17px, 1.8vw, 24px);
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 18px;
	animation-delay: 0.28s;
}
.hero-sub {
	font-size: 16px;
	max-width: 470px;
	margin-bottom: 34px;
	color: #ccd5ea;
	animation-delay: 0.36s;
}
.hero-left .btn-join {
	animation-delay: 0.44s;
	font-size: 16px;
	padding: 15px 52px;
}

/* EGR award panel — right of the character */
.hero-award {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	justify-self: center;
	animation: rise-in 0.8s ease 0.5s both;
}
.egr-brand {
	color: #c9d2e8;
	font-size: 20px;
	font-weight: 700;
	/* letter-spacing: 8px; */
	line-height: 1.2;
}
.egr-title {
	color: #fff;
	font-size: clamp(26px, 2.6vw, 38px);
	font-weight: 800;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.egr-title em { font-style: normal; color: #ffd400; }
.egr-shortlist {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
	color: #041019;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 16px;
	transform: skewX(-6deg);
	box-shadow: 0 8px 22px rgba(22, 184, 243, 0.3);
}
.egr-category {
	background: linear-gradient(135deg, #ff2434, #d40716);
	color: #fff;
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 800;
	line-height: 1.25;
	padding: 12px 18px;
	box-shadow: 0 8px 24px rgba(224, 12, 27, 0.3);
}

/* Join / Promote / Earn strip */
.hero-steps {
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--color-line);
	background: rgba(2, 3, 8, 0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	animation: rise-in 0.8s ease 0.6s both;
}
.hero-steps-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	padding-top: 24px;
	padding-bottom: 24px;
}
.hero-step { display: flex; align-items: flex-start; gap: 15px; }
.hero-step svg {
	width: 40px; height: 40px;
	color: var(--color-accent);
	flex-shrink: 0;
	margin-top: 3px;
}
.hero-step h3 {
	color: var(--color-heading);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.4px;
}
.hero-step p { font-size: 13.5px; color: var(--color-text-dim); line-height: 1.55; }

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-section {
	background:
		radial-gradient(ellipse at 85% 20%, rgba(22, 184, 243, 0.05), transparent 55%),
		var(--color-bg-alt);
}

.brands-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: center;
}
.brands-list { display: flex; flex-direction: column; gap: 26px; }
.brand-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 26px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
/* shine sweep on hover */
.brand-card::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0; left: -80%;
	width: 50%;
	transform: skewX(-20deg);
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
	transition: left 0.6s ease;
	pointer-events: none;
}
.brand-card:hover {
	transform: translateY(-5px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}
.brand-card:hover::after { left: 130%; }
.brand-card-info { display: flex; flex-direction: column; gap: 8px; }
.brand-card img { max-height: 56px; width: auto; max-width: 180px; object-fit: contain; }
.brand-tag {
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--color-text-dim);
}

/* staggered entrance — animation-based so hover transitions stay instant */
.brands-list.reveal .brand-card { opacity: 0; }
.brands-list.visible .brand-card { animation: rise-in 0.6s ease both; }
.brands-list.visible .brand-card:nth-child(2) { animation-delay: 0.12s; }
.brands-list.visible .brand-card:nth-child(3) { animation-delay: 0.24s; }

.brands-visual { position: relative; }
.brands-visual::before {
	content: "";
	position: absolute;
	inset: 10% 6%;
	background: radial-gradient(ellipse, rgba(22, 184, 243, 0.16), transparent 70%);
	filter: blur(40px);
	pointer-events: none;
}
.brands-visual img {
	position: relative;
	margin: 0 auto;
	max-height: 560px;
	width: auto;
}

/* the composite artwork carries a lot of empty space at its top —
   tighten the run-up from the section title to the content */
.brands-section .section-title { margin-bottom: 20px; }
.brands-grid { margin-top: -30px; }

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits-section {
	background:
		radial-gradient(ellipse at 50% -10%, rgba(22, 184, 243, 0.08), transparent 55%),
		var(--color-bg);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.benefit-card {
	position: relative;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 42px 30px 36px;
	text-align: center;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%; height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.benefit-card::after {
	content: "";
	position: absolute;
	inset: auto -40px -60px;
	height: 140px;
	background: radial-gradient(circle at 50% 100%, var(--color-accent-soft), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.benefit-card:hover {
	transform: translateY(-8px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}
.benefit-card:hover::before,
.benefit-card:hover::after { opacity: 1; }

/* staggered reveal — animation-based so hover transitions stay instant */
.benefit-card.reveal { transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.benefit-card.visible { animation: rise-in 0.7s ease both; }
.benefit-card:nth-child(2).visible { animation-delay: 0.1s; }
.benefit-card:nth-child(3).visible { animation-delay: 0.2s; }
.benefit-card:nth-child(4).visible { animation-delay: 0.1s; }
.benefit-card:nth-child(5).visible { animation-delay: 0.2s; }
.benefit-card:nth-child(6).visible { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
	.benefit-card.visible { animation: none; }
}

.benefit-icon {
	width: 92px; height: 92px;
	margin: 0 auto 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 26px;
	color: var(--color-accent);
	background: var(--color-accent-soft);
	border: 1px solid rgba(22, 184, 243, 0.3);
	box-shadow: 0 0 24px rgba(22, 184, 243, 0.18), inset 0 0 18px rgba(22, 184, 243, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-icon svg { width: 48px; height: 48px; }
.benefit-card:hover .benefit-icon {
	transform: scale(1.08) rotate(-3deg);
	box-shadow: 0 0 34px rgba(22, 184, 243, 0.35), inset 0 0 22px rgba(22, 184, 243, 0.12);
}

.benefit-title {
	color: var(--color-heading);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.3px;
	margin-bottom: 12px;
}
.benefit-text {
	font-size: 15px;
	color: var(--color-text);
	max-width: 320px;
	margin: 0 auto;
}

/* ==========================================================================
   Commission
   ========================================================================== */
.commission-section {
	background:
		radial-gradient(ellipse at 15% 80%, rgba(22, 184, 243, 0.05), transparent 55%),
		var(--color-bg-alt);
}

.commission-tiers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 16px;
}
.tier-caption {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    padding: 0 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #adadad;
    text-align: center;
    max-width: 190px;
}
.tier-hex {
	position: relative;
	width: 290px;
	aspect-ratio: 1.14 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
	filter: drop-shadow(0 12px 28px rgba(22, 184, 243, 0.3));
	transition: transform 0.3s ease, filter 0.3s ease;
}
.tier-hex::before {
	content: "";
	position: absolute;
	inset: 5px;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg) 100%);
}
.tier-hex::after {
	content: "";
	position: absolute;
	inset: 5px;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: radial-gradient(circle at 50% 115%, rgba(22, 184, 243, 0.35), transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.tier-hex > span {
	position: relative;
	z-index: 1;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 1;
	color: var(--color-heading);
	text-shadow: 0 0 18px rgba(22, 184, 243, 0.45);
}
.tier-hex:hover {
	transform: translateY(-8px) scale(1.04);
	filter: drop-shadow(0 18px 38px rgba(22, 184, 243, 0.5));
}
.tier-hex:hover::after { opacity: 1; }

/* staggered reveal — animation-based so hover transitions stay instant */
.commission-tiers.reveal .tier-hex { opacity: 0; }
.commission-tiers.visible .tier-hex { animation: rise-in 0.6s ease both; }
.commission-tiers.visible .tier-hex:nth-child(2) { animation-delay: 0.1s; }
.commission-tiers.visible .tier-hex:nth-child(3) { animation-delay: 0.2s; }
.commission-tiers.visible .tier-hex:nth-child(4) { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
	.commission-tiers.reveal .tier-hex { opacity: 1; animation: none; }
}

/* ===== Commission plan cards ===== */
.commission-plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 940px;
	margin: 16px auto 0;
}
.commission-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 38px 34px 34px;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.commission-plan::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%; height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.commission-plan:hover {
	transform: translateY(-8px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}
.commission-plan:hover::before { opacity: 1; }

.plan-badge {
	display: inline-block;
	padding: 7px 18px;
	border: 1px solid rgba(22, 184, 243, 0.35);
	border-radius: 40px;
	background: var(--color-accent-soft);
	color: var(--color-accent);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.plan-rate {
	font-size: clamp(44px, 5vw, 62px);
	font-weight: 800;
	line-height: 1.05;
	background: linear-gradient(90deg, var(--color-accent), #7fd6ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 34px rgba(22, 184, 243, 0.25);
}
.plan-label {
	color: var(--color-heading);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
	margin: 6px 0 22px;
}
.plan-points {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	width: 100%;
	text-align: left;
}
.plan-points li {
	position: relative;
	padding: 10px 0 10px 32px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-line);
}
.plan-points li:last-child { border-bottom: none; }
.plan-points li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 11px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-accent-soft);
	border: 1px solid rgba(22, 184, 243, 0.4);
	color: var(--color-accent);
	font-size: 11px;
	font-weight: 700;
}
.plan-points li strong { color: var(--color-heading); font-weight: 700; }
.commission-plan .btn-join { margin-top: auto; }

/* tier breakdown — stat tiles with meters below the plan cards */
.tier-meters {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 940px;
	margin: 28px auto 0;
}
.tier-meter {
	text-align: center;
	padding: 26px 26px 28px;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tier-meter:hover {
	transform: translateY(-5px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}
.tier-meter.tier-top { border-color: rgba(22, 184, 243, 0.35); }

.tier-percent {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	background: linear-gradient(90deg, var(--color-accent), #7fd6ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.tier-range {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--color-heading);
	margin: 6px 0 16px;
}
.tier-bar {
	height: 8px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.07);
	overflow: hidden;
}
.tier-bar span {
	display: block;
	height: 100%;
	border-radius: 6px;
	background: linear-gradient(90deg, var(--color-accent-2), var(--color-accent));
	box-shadow: 0 0 12px rgba(22, 184, 243, 0.5);
	transform-origin: left;
}
/* meters sweep in once the tile row scrolls into view (AOS adds .aos-animate) */
.tier-meters.aos-animate .tier-bar span { animation: meter-fill 0.9s ease 0.25s both; }
@keyframes meter-fill {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

.tier-note {
	max-width: 940px;
	margin: 18px auto 0;
	text-align: center;
	font-size: 13.5px;
	color: var(--color-text-dim);
}

/* ==========================================================================
   Awards
   ========================================================================== */
.awards-section {
	background:
		radial-gradient(circle at 50% 0%, rgba(22, 184, 243, 0.1), transparent 60%),
		var(--color-bg);
}
.awards-row {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 16px;
}
.award-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px 44px;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.award-card:hover {
	transform: translateY(-6px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}
.award-card img {
	max-width: 260px;
	border-radius: 10px;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* staggered entrance */
.awards-row.reveal .award-card { opacity: 0; }
.awards-row.visible .award-card { animation: rise-in 0.6s ease both; }
.awards-row.visible .award-card:nth-child(2) { animation-delay: 0.15s; }

/* ==========================================================================
   Join / Offer
   ========================================================================== */
.join-section { background: var(--color-bg-alt); }
.join-cta {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	max-width: 1040px;
	margin: 0 auto;
	padding: 70px 48px 64px;
	border-radius: var(--radius);
	overflow: hidden;
	text-align: center;
	background:
		radial-gradient(ellipse at 50% 130%, rgba(22, 184, 243, 0.12), transparent 60%),
		linear-gradient(160deg, #050810 0%, #090d1a 100%);
	border: 1px solid var(--color-line);
	box-shadow: var(--shadow-card);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.join-cta:hover {
	border-color: rgba(22, 184, 243, 0.35);
	box-shadow: var(--shadow-glow);
}

/* ambient glow orbs inside the banner */
.join-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}
.join-orb-a {
	width: 280px; height: 280px;
	top: -100px; left: 12%;
	background: rgba(22, 184, 243, 0.13);
	animation: float-a 12s ease-in-out infinite;
}
.join-orb-b {
	width: 240px; height: 240px;
	bottom: -90px; right: 10%;
	background: rgba(224, 12, 27, 0.1);
	animation: float-b 15s ease-in-out infinite;
}

.join-eyebrow {
	position: relative;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.join-sub {
	position: relative;
	max-width: 560px;
	font-size: 16px;
	color: var(--color-text);
}
.join-perks {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 8px 0 12px;
}
.join-perk {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--color-line);
	border-radius: 40px;
	background: rgba(11, 16, 29, 0.6);
	font-size: 13.5px;
	color: var(--color-text);
	transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.join-perk svg { width: 15px; height: 15px; color: var(--color-accent); flex-shrink: 0; }
.join-perk:hover {
	border-color: rgba(22, 184, 243, 0.4);
	color: var(--color-heading);
	transform: translateY(-2px);
}
.join-actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* faint chevron accents, echoing the fox-arrow motif */
.join-chevron {
	position: absolute;
	top: 50%; left: -30px;
	width: 150px; height: 150px;
	transform: translateY(-50%);
	clip-path: polygon(0 0, 55% 0, 100% 50%, 55% 100%, 0 100%, 45% 50%);
	background: rgba(255, 255, 255, 0.03);
	pointer-events: none;
	transition: background 0.3s ease;
}
.join-chevron-right {
	left: auto; right: -30px;
	transform: translateY(-50%) rotate(180deg);
}
.join-cta:hover .join-chevron { background: rgba(22, 184, 243, 0.07); }

.join-title {
	position: relative;
	color: var(--color-heading);
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 800;
	letter-spacing: 0.4px;
}

.btn-join {
	background: linear-gradient(135deg, #ff2434, #d40716);
	color: #fff;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 14px;
	padding: 13px 42px;
	box-shadow: 0 10px 28px rgba(224, 12, 27, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-join:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(224, 12, 27, 0.5);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--color-bg-deep);
	color: var(--color-text);
	border-top: 1px solid var(--color-line);
	position: relative;
}
.site-footer::before {
	content: "";
	position: absolute;
	top: -1px; left: 50%;
	transform: translateX(-50%);
	width: min(520px, 70%);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	opacity: 0.6;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 48px;
	padding: 72px 24px 50px;
}
.footer-logo { height: 50px; width: auto; margin-bottom: 18px; }
.footer-blurb { font-size: 14px; max-width: 320px; color: var(--color-text-dim); }

.footer-col h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: 0.4px;
}
.footer-col a {
	display: block;
	color: var(--color-text);
	text-decoration: none;
	font-size: 15px;
	margin-bottom: 12px;
	transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-email {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: var(--color-text);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
	word-break: break-word;
	transition: color 0.25s ease;
}
.footer-email:hover { color: var(--color-accent); padding-left: 0; }
.footer-email svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
    position: relative;
    top: 5px;
    margin: 0 4px 0 0;
}

.social-icons { display: flex; gap: 14px; }
.social-icons a {
	margin-bottom: 0;
	width: 42px; height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-elev);
	border: 1px solid var(--color-line);
	border-radius: 50%;
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-icons a:hover {
	transform: translateY(-4px);
	border-color: var(--color-accent);
	background: var(--color-accent-soft);
}
.social-icons img { width: 20px; height: 20px; object-fit: contain; }

.footer-bottom {
	border-top: 1px solid var(--color-line);
	padding: 22px 0;
	text-align: center;
	font-size: 13px;
	color: var(--color-text-dim);
}

/* ==========================================================================
   Inner pages (page.php — FAQ, Compliance, Testimonials, T&C)
   ========================================================================== */
.page-hero {
	padding: 170px 0 64px;
	text-align: center;
	background:
		radial-gradient(ellipse at 50% -20%, rgba(22, 184, 243, 0.14), transparent 60%),
		var(--color-bg-alt);
	border-bottom: 1px solid var(--color-line);
}
.page-hero .section-eyebrow { animation: rise-in 0.7s ease both; }
.page-hero .page-title { animation: rise-in 0.7s ease 0.12s both; }
.page-title {
	color: var(--color-heading);
	font-size: clamp(30px, 4.2vw, 50px);
	font-weight: 800;
	letter-spacing: 0.5px;
	line-height: 1.15;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}
.page-title::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 72px; height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
	box-shadow: 0 0 14px rgba(22, 184, 243, 0.6);
}

.page-body { background: var(--color-bg); padding: 70px 0 110px; }

/* ===== Editor content typography ===== */
.entry-content {
	max-width: 860px;
	margin: 0 auto;
	font-size: 16px;
	color: var(--color-text);
}
.entry-content > * + * { margin-top: 1.15em; }

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--color-heading);
	font-weight: 700;
	line-height: 1.3;
	margin-top: 1.8em;
}
.entry-content h2 {
	font-size: 26px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-line);
}
.entry-content h3 { font-size: 21px; }
.entry-content h4 { font-size: 17px; }

.entry-content a {
	color: var(--color-accent);
	text-decoration: none;
	border-bottom: 1px solid rgba(22, 184, 243, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.entry-content a:hover { color: #7fd6ff; border-bottom-color: #7fd6ff; }

.entry-content strong { color: var(--color-heading); font-weight: 600; }

.entry-content ul,
.entry-content ol { padding-left: 26px; }
.entry-content li { margin-bottom: 10px; }
.entry-content ul li::marker { color: var(--color-accent); }
.entry-content ol li::marker { color: var(--color-accent); font-weight: 600; }

.entry-content blockquote {
	border-left: 3px solid var(--color-accent);
	background: var(--color-bg-elev);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 20px 26px;
	font-style: italic;
	color: var(--color-heading);
}
.entry-content blockquote cite {
	display: block;
	margin-top: 10px;
	font-style: normal;
	font-size: 14px;
	color: var(--color-text-dim);
}

.entry-content hr {
	border: none;
	height: 1px;
	background: var(--color-line);
	margin: 2.2em 0;
}

.entry-content img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-bg-elev);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: 15px;
}
.entry-content th,
.entry-content td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--color-line);
}
.entry-content th {
	background: var(--color-bg-elev-2);
	color: var(--color-heading);
	font-weight: 600;
	letter-spacing: 0.4px;
}
.entry-content tr:last-child td { border-bottom: none; }

/* The page hero already renders the title — hide a duplicate leading H1
   pasted into the page content (e.g. the Compliance page). */
.entry-content > h1:first-child { display: none; }

/* ===== Legal section headings — paragraphs that are entirely <strong>
   (tagged .content-heading by main.js on the T&C page) ===== */
.entry-content .content-heading {
	margin-top: 2.6em;
	border-left: 3px solid var(--color-accent);
	padding-left: 14px;
}
.entry-content .content-heading strong {
	display: block;
	color: var(--color-heading);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.6px;
}

/* ===== Guideline rows — bare <li> items placed directly in page content
   (Compliance page) become check-marked cards ===== */
.entry-content > li {
	list-style: none;
	position: relative;
	padding: 16px 22px 16px 56px;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	font-size: 15px;
	line-height: 1.65;
	transition: border-color 0.25s ease, transform 0.25s ease;
}
.entry-content > li + li { margin-top: 12px; }
.entry-content > li:hover {
	border-color: rgba(22, 184, 243, 0.35);
	transform: translateX(4px);
}
.entry-content > li::before {
	content: "\2713";
	position: absolute;
	left: 18px;
	top: 15px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-accent-soft);
	border: 1px solid rgba(22, 184, 243, 0.4);
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 700;
}

/* ===== Testimonials grid (.col-md-4 cards from the page editor) ===== */
.entry-content:has(> .col-md-4) {
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: stretch;
}
.entry-content:has(> .col-md-4) > * { margin-top: 0; }

.entry-content .col-md-4 {
	display: flex;
	flex-direction: column;
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 30px 26px 26px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.entry-content .col-md-4:hover {
	transform: translateY(-6px);
	border-color: rgba(22, 184, 243, 0.4);
	box-shadow: var(--shadow-glow);
}

/* neutralise the legacy float layout inside each card */
.entry-content .col-md-4 figure.wp-block-image {
	float: none;
	margin: 0 auto 20px;
}
.entry-content .col-md-4 figure.wp-block-image img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.entry-content .col-md-4 > div {
	float: none !important;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* quote — flat inside cards, overriding the generic blockquote chrome */
.entry-content .col-md-4 blockquote {
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	font-style: normal;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--color-text);
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
}
.entry-content .col-md-4 blockquote::before {
	content: "\201C";
	display: block;
	font-size: 44px;
	line-height: 1;
	font-weight: 800;
	color: var(--color-accent);
	opacity: 0.6;
	margin-bottom: 8px;
}

/* mobile Load More batching (button injected by main.js) */
.tcard-hidden { display: none !important; }
.load-more-wrap {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 10px;
}
button.load-more {
	font-family: var(--font);
	background: transparent;
	cursor: pointer;
}

/* inline links inside a quote keep a simple underline */
.entry-content .col-md-4 blockquote a {
	border-bottom: none;
	text-decoration: underline;
	text-decoration-color: rgba(22, 184, 243, 0.5);
	text-underline-offset: 3px;
}

/* the trailing partner link becomes a badge pinned to the card bottom */
.entry-content .col-md-4 blockquote > a:last-child {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 16px;
	border-bottom: none;
	text-decoration: none;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.3px;
	color: var(--color-accent);
	word-break: break-all;
}
.entry-content .col-md-4 blockquote > a:last-child::before {
	content: "\2192\00a0";
}
.entry-content .col-md-4 blockquote > a:last-child:hover { color: #7fd6ff; }

/* FAQ accordions — the page-faq.php .faq-item markup and any
   core details block used inside page content */
.faq-list {
	max-width: 860px;
	margin: 0 auto;
}
.faq-extra { margin-top: 40px; }

.entry-content details,
.faq-item {
	background: linear-gradient(160deg, var(--color-bg-elev) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 0;
	overflow: hidden;
	transition: border-color 0.25s ease;
}
.entry-content details + details,
.faq-item + .faq-item { margin-top: 14px; }
.entry-content details[open],
.faq-item[open] { border-color: rgba(22, 184, 243, 0.4); }
.entry-content summary,
.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 52px 18px 24px;
	color: var(--color-heading);
	font-weight: 600;
	font-size: 16px;
	position: relative;
	transition: color 0.2s ease;
}
.entry-content summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.entry-content summary::after,
.faq-item summary::after {
	content: "";
	position: absolute;
	right: 24px; top: 50%;
	width: 10px; height: 10px;
	border-right: 2px solid var(--color-accent);
	border-bottom: 2px solid var(--color-accent);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.25s ease;
}
.entry-content details[open] summary::after,
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.entry-content summary:hover,
.faq-item summary:hover { color: var(--color-accent); }
.entry-content details > *:not(summary),
.faq-item > *:not(summary) { padding: 0 24px; }
.entry-content details > *:not(summary):last-child,
.faq-item > *:not(summary):last-child { padding-bottom: 20px; }
.faq-answer {
	color: var(--color-text);
	font-size: 15px;
	line-height: 1.7;
}
.faq-answer p + p { margin-top: 0.9em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	.main-nav { gap: 20px; }
	.nav-link { font-size: 14px; }
}

@media (max-width: 991px) {
	.hero-grid { grid-template-columns: 1fr; text-align: center; }
	.hero-left { display: flex; flex-direction: column; align-items: center; }
	.hero-sub { max-width: 600px; }
	.hero-award { grid-column: auto; align-items: center; text-align: center; }
	/* keep the character visible behind the stacked content */
	.hero-bg { background-position: 66% center; }
	.hero-section::before {
		background:
			linear-gradient(180deg, rgba(4, 6, 11, 0.97) 0%, rgba(4, 6, 11, 0.9) 40%, rgba(4, 6, 11, 0.82) 70%, rgba(4, 6, 11, 0.9) 100%),
			linear-gradient(to top, var(--color-bg) 0%, transparent 22%);
	}

	.brands-grid { grid-template-columns: 1fr; margin-top: 0; }
	.benefits-grid { grid-template-columns: 1fr 1fr; }
	.entry-content:has(> .col-md-4) { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.nav-toggle { display: flex; }
	.main-nav {
		position: fixed;
		top: 68px; right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		background: rgba(2, 3, 8, 0.98);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-left: 1px solid var(--color-line);
		width: min(78vw, 320px);
		height: calc(100vh - 68px);
		padding: 32px 28px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}
	.main-nav.open { transform: translateX(0); }
	.nav-link { font-size: 17px; padding: 10px 0; }
	.nav-login {
		width: 100%;
		text-align: center;
		padding: 12px 22px;
		margin-top: 12px;
	}
	.nav-cta {
		width: 100%;
		text-align: center;
		margin-top: 12px;
	}
}

@media (max-width: 767px) {
	.section { padding: 54px 0; }
	.section-title { margin-bottom: 34px; }
	.hero-section { padding: 100px 0 0; }
	.hero-eyebrow {
		font-size: 10.5px;
		letter-spacing: 1.5px;
		padding: 7px 14px;
		white-space: nowrap;
	}
	.hero-steps-inner { grid-template-columns: 1fr; gap: 18px; }
	.hero-step { text-align: left; }
	.brands-grid { gap: 30px; }

	.page-hero { padding: 130px 0 48px; }
	.page-body { padding: 50px 0 80px; }
	.entry-content { font-size: 15px; }
	.entry-content th, .entry-content td { padding: 11px 14px; }
	.entry-content:has(> .col-md-4) { grid-template-columns: 1fr; gap: 20px; }

	.brand-card { flex-direction: column; text-align: center; }
	.brand-card-info { align-items: center; }
	.benefits-grid { grid-template-columns: 1fr; gap: 22px; }
	.benefit-card { padding: 36px 24px 32px; }
	.commission-tiers { gap: 20px; }
	.tier-hex { width: 250px; }
	.tier-hex > span { font-size: 44px; }
	.tier-caption { font-size: 13px; max-width: 160px; }
	.commission-plans { grid-template-columns: 1fr; gap: 22px; }
	.commission-plan { padding: 32px 24px 28px; }
	.tier-meters { grid-template-columns: 1fr; gap: 16px; }
	.award-card { padding: 28px 30px; }
	.award-card img { max-width: 210px; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.awards-row { gap: 24px; }
}
