:root {
	--navy: hsl(214 72% 14%);
	--navy-deep: hsl(214 70% 10%);
	--orange: hsl(22 95% 52%);
	--fg: hsl(214 60% 12%);
	--muted: hsl(214 15% 42%);
	--border: hsl(214 20% 88%);
	--secondary: hsl(214 32% 95%);
	--white: #fff;
	--radius: 0.375rem;
	--max: 80rem;
	--header-h: 4rem;
	--font: Inter, system-ui, sans-serif;
	--display: "Barlow Condensed", Impact, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.toma-site {
	margin: 0;
	font-family: var(--font);
	color: var(--fg);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--display);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 0.95;
	letter-spacing: 0.01em;
	margin: 0;
}

h1 {
	font-size: clamp(2.6rem, 6vw, 4.5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: 1.35rem;
	line-height: 1.15;
}

.container {
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--orange);
	color: var(--white);
	padding: 0.5rem 1rem;
	z-index: 100;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.icon-sm {
	width: 1rem;
	height: 1rem;
}

.icon-lg {
	width: 1.75rem;
	height: 1.75rem;
}

.icon-xl {
	width: 4rem;
	height: 4rem;
}

.accent {
	color: var(--orange);
}

.accent-text {
	color: var(--orange);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--navy);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	background: hsl(214 72% 14% / 0.95);
	backdrop-filter: blur(10px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--white);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--radius);
	background: var(--orange);
}

.brand-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--white);
}

.brand-name {
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-desktop a {
	color: hsl(0 0% 100% / 0.8);
	font-size: 0.95rem;
	font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
	color: var(--white);
}

.nav-toggle {
	background: none;
	border: 0;
	color: var(--white);
	cursor: pointer;
	padding: 0.35rem;
}

.nav-toggle .menu-close,
.nav-toggle[aria-expanded="true"] .menu-open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .menu-close {
	display: block;
}

.nav-mobile {
	border-top: 1px solid hsl(0 0% 100% / 0.1);
	background: var(--navy);
}

.nav-mobile-inner {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 0 1.25rem;
}

.nav-mobile a {
	color: hsl(0 0% 100% / 0.85);
	padding: 0.45rem 0;
}

.nav-mobile .btn {
	margin-top: 0.5rem;
	text-align: center;
}

.nav-desktop {
	gap: 1.1rem;
}

.nav-desktop a {
	font-size: 0.88rem;
}

@media (min-width: 960px) {
	.nav-desktop {
		display: flex;
		gap: 1.35rem;
	}

	.nav-desktop a {
		font-size: 0.95rem;
	}

	.nav-toggle,
	.nav-mobile {
		display: none !important;
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--radius);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 0;
	cursor: pointer;
	transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
	filter: brightness(1.1);
}

.btn:active {
	transform: scale(0.97);
}

.btn-sm {
	padding: 0.65rem 1.25rem;
	font-size: 0.8rem;
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.btn-orange {
	background: var(--orange);
	color: var(--white);
}

.btn-navy {
	background: var(--navy);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	font-size: 0.85rem;
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border: 2px solid hsl(0 0% 100% / 0.3);
}

.btn-ghost:hover {
	border-color: var(--white);
	filter: none;
}

.btn-block {
	width: 100%;
}

/* Hero */
.hero {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy);
	color: var(--white);
}

.hero-img,
.page-hero .hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--navy) 0%, hsl(214 72% 14% / 0.85) 45%, transparent 100%);
}

.hero-copy {
	position: relative;
	padding: 6rem 0;
}

.eyebrow {
	display: inline-block;
	font-family: var(--display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow-light {
	color: hsl(0 0% 100% / 0.85);
}

.lede {
	margin: 1.5rem 0 0;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: hsl(0 0% 100% / 0.8);
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2.25rem;
}

.center-actions {
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.hero-actions {
		flex-direction: row;
	}
}

.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	color: var(--white);
	padding: 6rem 0;
}

.page-hero-plain {
	padding: 5rem 0;
}

.page-hero-shade {
	position: absolute;
	inset: 0;
	background: hsl(214 72% 14% / 0.7);
}

.page-hero .hero-img {
	opacity: 0.25;
}

.page-hero .relative {
	position: relative;
}

.page-hero h1,
.page-hero .lede {
	max-width: 48rem;
}

.badge {
	display: inline-block;
	border-radius: var(--radius);
	background: var(--orange);
	color: var(--white);
	padding: 0.25rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.page-hero h1 {
	margin-top: 1.25rem;
}

.page-hero .lede {
	margin-top: 1.5rem;
}

/* Marquee */
.marquee {
	overflow: hidden;
	border-block: 4px solid var(--orange);
	background: var(--navy);
	padding: 1rem 0;
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 2rem;
	white-space: nowrap;
	animation: toma-marquee 28s linear infinite;
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.7);
}

.marquee .dot {
	color: var(--orange);
}

@keyframes toma-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
	}
}

/* Sections */
.section {
	padding: 5rem 0;
}

@media (min-width: 768px) {
	.section {
		padding: 7rem 0;
	}
}

.section-alt {
	background: var(--secondary);
}

.section-intro {
	max-width: 36rem;
}

.kicker {
	font-family: var(--display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0;
}

.section-intro h2,
.split h2 {
	margin-top: 0.5rem;
}

.muted {
	color: var(--muted);
	font-size: 1.125rem;
	margin-top: 1rem;
}

.card-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 1px 2px hsl(214 40% 10% / 0.04);
	transition: box-shadow 0.2s ease;
}

.card:hover {
	box-shadow: 0 18px 40px hsl(214 40% 10% / 0.12);
}

.card h3,
.card h2 {
	margin-top: 1.5rem;
	color: var(--navy);
}

.card p {
	margin: 0.75rem 0 0;
	color: var(--muted);
	line-height: 1.7;
}

.icon-box {
	display: grid;
	place-items: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius);
	color: var(--white);
	flex-shrink: 0;
}

.icon-box-navy {
	background: var(--navy);
}

.card:hover .icon-box-navy {
	background: var(--orange);
}

.icon-box-orange {
	background: var(--orange);
}

.split {
	display: grid;
	gap: 3.5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.split {
		grid-template-columns: 1fr 1fr;
	}
}

.split-media {
	position: relative;
}

.split-media img {
	width: 100%;
	border-radius: 0.5rem;
	box-shadow: 0 25px 50px hsl(214 40% 10% / 0.25);
	object-fit: cover;
	min-height: 22rem;
}

.stat-badge {
	position: absolute;
	right: -1rem;
	bottom: -1.5rem;
	display: none;
	border-radius: 0.5rem;
	background: var(--orange);
	color: var(--white);
	padding: 1.25rem 1.75rem;
	box-shadow: 0 20px 40px hsl(22 90% 30% / 0.35);
}

.stat-badge strong {
	font-family: var(--display);
	font-size: 2.25rem;
	font-weight: 800;
	display: block;
	line-height: 1;
}

.stat-badge span {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.9);
}

@media (min-width: 640px) {
	.stat-badge {
		display: block;
	}
}

.reason-list {
	margin-top: 2rem;
	display: grid;
	gap: 1.5rem;
}

.reason {
	display: flex;
	gap: 1rem;
}

.reason .icon-box {
	width: 3rem;
	height: 3rem;
}

.reason h3 {
	color: var(--navy);
}

.reason p {
	margin: 0.25rem 0 0;
	color: var(--muted);
	line-height: 1.7;
}

.cta-band {
	background: var(--navy);
	color: var(--white);
	padding: 5rem 0;
	text-align: center;
}

.cta-band h2 {
	max-width: 48rem;
	margin-inline: auto;
}

.cta-band .lede {
	margin-inline: auto;
}

.center {
	text-align: center;
}

/* Services page */
.service-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.service-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.card-head {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.card-head h2 {
	margin: 0;
	font-size: 1.5rem;
}

.check-list {
	margin-top: 1.25rem;
	display: grid;
	gap: 0.55rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--muted);
}

.steps {
	margin: 2rem 0 2.25rem;
	display: grid;
	gap: 1.5rem;
}

.steps li {
	display: flex;
	gap: 1.25rem;
}

.step-n {
	font-family: var(--display);
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--orange);
	line-height: 1;
}

.steps h3 {
	color: var(--navy);
}

.steps p {
	margin: 0.25rem 0 0;
	color: var(--muted);
}

/* Contact */
.contact-layout {
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.contact-layout {
		grid-template-columns: 1fr 1.4fr;
	}
}

.contact-layout h2 {
	color: var(--navy);
	font-size: 1.9rem;
}

.contact-details {
	margin-top: 2rem;
	display: grid;
	gap: 1.5rem;
}

.contact-details li {
	display: flex;
	gap: 1rem;
}

.detail-label {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0;
}

.contact-details a,
.contact-details p {
	margin: 0;
	color: var(--muted);
}

.contact-details a:hover {
	color: var(--orange);
}

.form-card {
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: 0.5rem;
	padding: 1.5rem;
	box-shadow: 0 16px 40px hsl(214 40% 10% / 0.08);
}

@media (min-width: 640px) {
	.form-card {
		padding: 2.25rem;
	}
}

.contact-form {
	display: grid;
	gap: 1.25rem;
}

.form-grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.field label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.75rem 1rem;
	font: inherit;
	color: var(--navy);
	background: var(--white);
	outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 3px hsl(22 95% 52% / 0.3);
}

.field-error {
	color: hsl(0 84% 50%);
	font-size: 0.85rem;
}

.form-error-banner {
	background: hsl(0 84% 96%);
	color: hsl(0 70% 35%);
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	margin: 0 0 1rem;
}

.form-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3rem 1rem;
}

.form-success h3 {
	margin-top: 1.25rem;
	color: var(--navy);
	font-size: 1.9rem;
}

.form-success p {
	margin-top: 0.75rem;
	max-width: 22rem;
	color: var(--muted);
}

.form-success .btn {
	margin-top: 1.5rem;
}

.hp {
	position: absolute;
	left: -9999px;
}

.prose {
	max-width: 46rem;
}

.prose h1 {
	color: var(--navy);
	margin-bottom: 1rem;
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: hsl(0 0% 100% / 0.8);
}

.footer-grid {
	display: grid;
	gap: 2.5rem;
	padding: 3.5rem 0;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
}

.footer-blurb {
	margin-top: 1rem;
	max-width: 20rem;
	font-size: 0.9rem;
	line-height: 1.7;
	color: hsl(0 0% 100% / 0.7);
}

.site-footer h4 {
	color: var(--white);
	font-size: 1.1rem;
}

.footer-links {
	margin-top: 1rem;
	display: grid;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: var(--orange);
}

.footer-contact {
	margin-top: 1rem;
	display: grid;
	gap: 0.75rem;
	font-size: 0.9rem;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-cta {
	margin-top: 1.25rem;
}

.footer-bottom {
	border-top: 1px solid hsl(0 0% 100% / 0.1);
}

.footer-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 1.25rem 0;
	font-size: 0.75rem;
	color: hsl(0 0% 100% / 0.6);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

@media (min-width: 768px) {
	.footer-bottom-inner {
		flex-direction: row;
		text-align: left;
	}
}

/* WP admin bar */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* Live market tape */
.live-dot {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 0 rgb(34 197 94 / 0.7);
	animation: toma-pulse 1.6s ease-out infinite;
	margin-right: 0.4rem;
	vertical-align: middle;
}

@keyframes toma-pulse {
	0% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0.55); }
	70% { box-shadow: 0 0 0 8px rgb(34 197 94 / 0); }
	100% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0); }
}

.market-tape {
	position: sticky;
	top: var(--header-h);
	z-index: 40;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: hsl(214 70% 10%);
	color: hsl(0 0% 100% / 0.85);
	border-bottom: 1px solid hsl(0 0% 100% / 0.08);
	padding: 0.4rem 0.75rem;
	min-height: 2.4rem;
}

.admin-bar .market-tape {
	top: calc(var(--header-h) + 32px);
}

@media (max-width: 782px) {
	.admin-bar .market-tape {
		top: calc(var(--header-h) + 46px);
	}
}

.market-tape-label {
	flex-shrink: 0;
	font-family: var(--display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #86efac;
}

.market-tape-viewport {
	overflow: hidden;
	flex: 1;
	min-width: 0;
}

.market-tape-track {
	display: flex;
	width: max-content;
	gap: 1.75rem;
	animation: toma-marquee 58s linear infinite;
	font-size: 0.8rem;
	white-space: nowrap;
}

.tape-item em {
	font-style: normal;
	font-weight: 700;
	color: var(--orange);
	margin-left: 0.35rem;
}

.tape-item.theme-reefer em { color: #22d3ee; }
.tape-item.theme-flatbed em { color: #f59e0b; }
.tape-item.theme-step em { color: #fb7185; }
.tape-item.theme-power em { color: #a78bfa; }
.tape-item.theme-box em { color: #34d399; }
.tape-item.theme-van em { color: #60a5fa; }

.market-tape-link {
	flex-shrink: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
}

.market-tape-link + .market-tape-link {
	padding-left: 0.65rem;
	border-left: 1px solid hsl(0 0% 100% / 0.18);
}

.market-source {
	margin-top: 1.1rem;
	padding: 0.95rem 1.05rem;
	border: 1px solid hsl(0 0% 100% / 0.16);
	border-radius: 0.75rem;
	background: hsl(0 0% 100% / 0.06);
	max-width: 42rem;
}

.market-source p {
	margin: 0;
	color: hsl(0 0% 100% / 0.82);
	font-size: 0.92rem;
	line-height: 1.5;
}

.market-source-kicker {
	display: block;
	margin: 0 0 0.35rem;
	font-family: var(--display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--orange);
}

.market-source-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin-top: 0.7rem !important;
}

.market-source-link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: #fdba74;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.market-source-link:hover {
	color: #fff;
}

.market-source-link .icon {
	width: 0.9rem;
	height: 0.9rem;
	flex-shrink: 0;
}

.market-source-compact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin-top: 1rem;
	padding: 0.55rem 0.8rem;
	font-size: 0.85rem;
	color: hsl(0 0% 100% / 0.8);
}

.market-source-compact .market-source-kicker {
	margin: 0;
}

.market-source-sep {
	opacity: 0.45;
}

.split-intro .market-source {
	margin-top: 1rem;
}

.hero-actions .market-source,
.section-market .market-source {
	margin-top: 1.5rem;
	max-width: none;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
	color: hsl(0 0% 100% / 0.85);
	font-size: 0.9rem;
}

.hero-trust li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.trust-strip {
	background: var(--navy);
	color: var(--white);
	padding: 1.75rem 0;
	border-top: 1px solid hsl(0 0% 100% / 0.08);
}

.trust-strip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	text-align: center;
}

.trust-strip strong {
	display: block;
	font-family: var(--display);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--orange);
}

.trust-strip span {
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.7);
}

@media (min-width: 768px) {
	.trust-strip-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card-grid-4 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.card-grid-4 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.card-grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.split-intro {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.split-intro > div {
	max-width: 40rem;
}

.section-market-home,
.section-market {
	background:
		radial-gradient(1200px 400px at 10% -10%, rgb(245 130 32 / 0.12), transparent 50%),
		var(--navy-deep);
	color: var(--white);
}

.section-market-home .muted,
.section-market .muted,
.market-hero .lede {
	color: hsl(0 0% 100% / 0.75);
}

.section-market-home h2,
.section-market h2 {
	color: var(--white);
}

.rate-eq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}

@media (min-width: 900px) {
	.rate-eq-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.rate-eq-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.rate-eq-card {
	display: block;
	border: 1px solid hsl(0 0% 100% / 0.1);
	background: hsl(214 50% 16% / 0.7);
	border-radius: 0.5rem;
	padding: 1rem 1.05rem 1.1rem;
	color: var(--white);
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.rate-eq-card:hover {
	transform: translateY(-2px);
	border-color: var(--eq, var(--orange));
}

.rate-eq-top {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--display);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.95rem;
}

.eq-icon {
	display: grid;
	place-items: center;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 0.3rem;
	background: var(--eq, var(--orange));
	color: var(--navy);
}

.rate-eq-card .rpm {
	font-family: var(--display);
	font-size: 2rem;
	font-weight: 800;
	margin: 0.65rem 0 0;
	line-height: 1;
}

.rpm-label {
	margin: 0.3rem 0 0;
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.55);
}

.rate-eq-foot {
	display: flex;
	justify-content: space-between;
	margin-top: 0.75rem;
	font-size: 0.78rem;
}

.chg.up { color: #86efac; }
.chg.down { color: #fca5a5; }

.theme-van { --eq: #60a5fa; }
.theme-reefer { --eq: #22d3ee; }
.theme-flatbed { --eq: #f59e0b; }
.theme-step { --eq: #fb7185; }
.theme-power { --eq: #a78bfa; }
.theme-box { --eq: #34d399; }

.section-market-home[data-market-theme="reefer"],
[data-market-theme="reefer"].market-page .section-market {
	background:
		radial-gradient(1000px 380px at 80% -20%, rgb(34 211 238 / 0.18), transparent 55%),
		var(--navy-deep);
}

.section-market-home[data-market-theme="flatbed"],
[data-market-theme="flatbed"].market-page .section-market {
	background:
		radial-gradient(1000px 380px at 80% -20%, rgb(245 158 11 / 0.18), transparent 55%),
		var(--navy-deep);
}

.section-market-home[data-market-theme="van"],
[data-market-theme="van"].market-page .section-market {
	background:
		radial-gradient(1000px 380px at 80% -20%, rgb(96 165 250 / 0.18), transparent 55%),
		var(--navy-deep);
}

.trailer-home-grid {
	display: grid;
	gap: 1rem;
	margin-top: 2.5rem;
}

@media (min-width: 768px) {
	.trailer-home-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.trailer-home-card {
	display: block;
	border: 1px solid var(--border);
	border-top: 4px solid var(--eq, var(--orange));
	border-radius: 0.5rem;
	padding: 1.4rem 1.5rem 1.5rem;
	background: var(--white);
	transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.trailer-home-card:hover {
	box-shadow: 0 16px 36px hsl(214 40% 10% / 0.1);
	transform: translateY(-2px);
}

.trailer-home-card h3 {
	margin-top: 0.85rem;
	color: var(--navy);
}

.trailer-home-card p {
	margin: 0.5rem 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.trailer-home-card .more {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--orange);
}

.theme-switch,
.trailer-jump-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.theme-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid hsl(0 0% 100% / 0.18);
	background: hsl(0 0% 100% / 0.06);
	color: var(--white);
	border-radius: 999px;
	padding: 0.4rem 0.85rem;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
}

.theme-chip.is-active,
.theme-chip:hover {
	border-color: var(--eq, var(--orange));
	background: rgb(245 130 32 / 0.15);
}

.trailer-jump {
	background: var(--navy);
	padding: 0.85rem 0;
	position: sticky;
	top: calc(var(--header-h) + 2.4rem);
	z-index: 30;
}

.trailer-jump .theme-chip {
	text-decoration: none;
}

.rate-table-wrap {
	overflow-x: auto;
	margin-top: 2rem;
	border: 1px solid hsl(0 0% 100% / 0.1);
	border-radius: 0.5rem;
}

.rate-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	min-width: 640px;
}

.rate-table th,
.rate-table td {
	text-align: left;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid hsl(0 0% 100% / 0.08);
}

.rate-table th {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: hsl(0 0% 100% / 0.55);
}

.rate-table .num {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
}

.eq-pill {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.08);
	border: 1px solid var(--eq, hsl(0 0% 100% / 0.2));
	font-size: 0.78rem;
}

.lane-arrow {
	opacity: 0.5;
	margin: 0 0.3rem;
}

.market-note,
.market-meta {
	color: hsl(0 0% 100% / 0.65);
	font-size: 0.9rem;
}

.market-meta {
	margin-top: 1rem;
}

.live-badge {
	display: inline-flex;
	align-items: center;
}

.section-market .hero-actions {
	margin-top: 1.5rem;
}

.market-page .page-hero-plain {
	background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.trailer-block {
	border-top: 1px solid var(--border);
}

.trailer-block:nth-of-type(odd) {
	background: var(--secondary);
}

.trailer-layout {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 900px) {
	.trailer-layout {
		grid-template-columns: 1.1fr 1fr;
		align-items: start;
	}
}

.trailer-live {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.trailer-live strong {
	font-family: var(--display);
	font-size: 1.4rem;
	color: var(--eq, var(--orange));
}

.spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.spec {
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
}

.spec span {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.spec strong {
	display: block;
	margin-top: 0.25rem;
	color: var(--navy);
}

.subhead {
	margin: 1.5rem 0 0.75rem;
	color: var(--navy);
	font-size: 1.05rem;
}

.trailer-block .btn {
	margin-top: 1.25rem;
}

.is-filtered-out {
	display: none !important;
}
