/* ============================================================
 * band-template-v2.css — shared stylesheet for the Available
 * Spectrum band-page template (v2), extracted from the approved
 * 800 MHz redesign so every band page shares one file.
 * Load order: AFTER /assets/css/main.css + cr-override.css,
 * in the slot where the inline <style> block used to sit.
 * ============================================================ */

:root {
	--fs-hero: 52px;                                 /* hero h1 */
	--fs-title: clamp(28px, 1.55rem + 0.85vw, 34px); /* section titles */
	--fs-numeral: 30px;                              /* stat values, why-list indices */
	--fs-head: 20px;                                 /* card and panel heads */
	--fs-body: 18px;                                 /* all prose */
	--fs-ui: 16px;                                   /* buttons, jump nav, table cells */
	--fs-label: 14px;                                /* eyebrows, labels, captions, table headers */

	--measure: 720px;                                /* ~80 characters at 18px Nunito */
}

.band-page-section {
	padding: 52px 0;
}

.band-container {
	max-width: 1288px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 clamp(20px, 4vw, 44px);
}

.band-alt-bg {
	background: #f6f8fc;
}

/* --- Hero ------------------------------------------------- */
.band-hero-v2 {
	height: auto;
	min-height: 0;
	overflow: visible;
	margin: 0 !important;
	background-color: #0A115E;
	background-image: linear-gradient(100deg, #0A115E 0%, #0A115Ef0 52%, #2c53d9cc 78%, #467FFFa6 100%), url(/assets/images/tower_.webp);
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
}

.band-hero-v2__inner {
	max-width: 1288px;
	margin: 0 auto;
	padding: 44px clamp(20px, 4vw, 44px);
	color: #ffffff;
	box-sizing: border-box;
}

.band-hero-v2__eyebrow {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9fb6ff;
	margin: 0 0 10px 0;
}

.band-hero-v2 h1 {
	font-family: 'Nunito', sans-serif;
	font-weight: 200;
	font-size: 52px;
	line-height: 1.08;
	color: #ffffff;
	margin: 0 0 10px 0;
}

.band-hero-v2__sub {
	padding: 0;
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.45;
	color: #dbe4ff;
	/* FIX: the old 1200px cap never bound — the hero inner clamps to ~1152px
	   first, so the deck ran 116 characters. --measure actually applies. */
	max-width: var(--measure);
	margin: 0 0 20px 0;
}

.band-hero-v2__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 22px 0;
}

.band-hero-v2__stat {
	min-width: 158px;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.band-hero-v2__stat-value {
	display: block;
	font-family: 'Nunito', sans-serif;
	font-weight: 200;
	font-size: 30px;
	line-height: 1.1;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
}

.band-hero-v2__stat-label {
	display: block;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: #dbe4ff;
	margin-top: 4px;
}

.band-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.band-hero-v2__cta {
    display: flex;
    gap: 10px;
}

.band-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	padding: 15px 26px;
	border-radius: 8px;
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.band-btn .material-icons {
	font-size: 18px;
}

.band-btn--primary {
	background: #ffffff;
	color: #0A115E;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.band-btn--primary:hover,
.band-btn--primary:focus-visible {
	background: #1F64FF;
	color: #ffffff;
	transform: translateY(-1px);
}

.band-btn--secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.65);
}

.band-btn--secondary:hover,
.band-btn--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
}

.band-btn--outline {
	background: transparent;
	color: #0A115E;
	border-color: #b9c4e6;
}

.band-btn--outline:hover,
.band-btn--outline:focus-visible {
	background: #eef2ff;
	border-color: #1F64FF;
	color: #1F64FF;
	transform: translateY(-1px);
}

.band-btn--blue {
	background: #1F64FF;
	color: #ffffff;
}

.band-btn--blue:hover,
.band-btn--blue:focus-visible {
	background: #004CF7;
	color: #ffffff;
	transform: translateY(-1px);
}

.band-jump {
	position: static;
	z-index: auto;
	background: #ffffff;
	border-bottom: 1px solid #e3e8f4;
}

.band-jump__inner {
	max-width: 1288px;
	margin: 0 auto;
	padding: 10px clamp(20px, 4vw, 44px);
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.9;
	text-align: center;
	white-space: normal;
	box-sizing: border-box;
}

.band-jump__label {
	color: #555555;
	margin-right: 14px;
}

.band-jump__inner a {
	display: inline-block;
	white-space: nowrap;
	color: #1F64FF;
	text-decoration: none;
	padding: 4px 2px;
	border-bottom: 1px solid #c9d3ec;
	transition: color .18s ease, border-color .18s ease;
	font-size: 16px;
}

.band-jump__inner a:hover,
.band-jump__inner a:focus-visible {
	color: #004CF7;
	border-bottom-color: #1F64FF;
}

.band-jump__sep {
	color: #b9c4e4;
	padding: 0 10px;
}

.band-page-section .section_title {
	padding-top: 0;
	font-size: var(--fs-title);
	line-height: 1.15;
}

.band-page-section .section__divider-line::after {
	margin: 22px auto 30px auto;
}

.band-lede {
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
	max-width: none;
	margin: 0 0 30px;
	text-align: left;
}


.band-lede--short {
	text-align: left;
}

/* --- Availability: map + table ----------------------------- */
.avail-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.avail-grid .wrapper__map-image {
	margin: 0;
}

.avail-grid .wrapper__map-image {
	height: 100%;
}

.avail-grid .wrapper__map-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.band-container > .wrapper__map-image {
	margin: 0 auto 12px;
	max-width: 880px;
}

.map-caption-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 880px;
	margin: 0 auto 6px;
	padding: 4px 2px 0;
}

.map-caption-bar__stats {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #555555;
}

@media only screen and (max-width: 760px) {
	.map-caption-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

.mosaic.mosaic--2 {
	grid-template-columns: 1fr 1fr;
}

.why-list.why-list--3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 0 40px;
}

@media only screen and (max-width: 960px) {
	.why-list.why-list--3 {
		grid-template-columns: 1fr;
	}
}

.band-page-section#RequestAQuote {
	border-top: 1px solid #e3e8f4;
}

.band-container > .wrapper__map-image img {
	width: 100%;
	height: auto;
	display: block;
}

.map-zoom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #ffffff;
	border: 1px solid #e3e8f4;
	border-radius: 10px;
	overflow: hidden;
	cursor: zoom-in;
}

.map-zoom__hint {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(10, 17, 94, 0.78);
	color: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	border-radius: 999px;
	pointer-events: none;
}

.map-zoom__hint .material-icons {
	font-size: 16px;
}

.map-lightbox {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
}

.map-lightbox:target {
	display: block;
}

.map-lightbox__close-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(10, 17, 94, 0.82);
	cursor: zoom-out;
}

.map-lightbox__body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(94vw, 1500px);
	max-height: 92vh;
	margin: 0;
	pointer-events: none;
}

.map-lightbox__body img {
	width: 100%;
	height: auto;
	max-height: 92vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
	background: #ffffff;
}

.map-lightbox__close {
	position: absolute;
	top: -14px;
	right: -14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #ffffff;
	color: #0A115E;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	pointer-events: auto;
	text-decoration: none;
}

/* --- Spectrum Search spotlight ------------------------------ */
.ss-mobile-only {
	display: none;
}

.ss-spotlight {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 30px;
	padding: 22px 26px;
	background: linear-gradient(90deg, #f6f9ff 0%, #eef2fb 100%);
	border: 1px solid #c9d3ec;
	border-left: 4px solid #1F64FF;
	border-radius: 12px;
}

.ss-spotlight__logo {
	width: 54px;
	height: auto;
	flex: 0 0 auto;
}

.ss-spotlight__text {
	flex: 1 1 auto;
	font-family: 'Nunito', sans-serif;
	max-width: var(--measure);
}

.ss-spotlight__text h4 {
	font-weight: 600;
	font-size: 20px;
	color: #0A115E;
	margin: 0 0 4px 0;
}

.ss-spotlight__text p {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	color: #555555;
	margin: 0;
}

.ss-spotlight .band-btn {
	flex: 0 0 auto;
}

@media only screen and (max-width: 960px) {
	.ss-spotlight {
		flex-direction: column;
		text-align: center;
		gap: 14px;
	}
}

.market-table-wrapper {
	overflow-x: auto;
	margin: 0;
	border: 1px solid #e3e8f4;
	border-radius: 10px;
	scrollbar-width: thin;
	scrollbar-color: #b9c4e4 transparent;
	-ms-overflow-style: auto;
	overscroll-behavior-x: contain;
}

.market-table-wrapper::-webkit-scrollbar {
	height: 6px;
	width: auto;
}

.market-table-wrapper::-webkit-scrollbar-thumb {
	background: #b9c4e4;
	border-radius: 3px;
}

.market-table-wrapper::-webkit-scrollbar-track {
	background: transparent;
}

.market-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	color: #555555;
}

.market-table thead th {
	font-weight: 600;
	font-size: var(--fs-label);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: left;
	background: #eef2fb;
	color: #0A115E;
	border-bottom: 2px solid #0A115E;
	padding: 8px 12px;
}

.market-table tbody th {
	font-weight: 400;
	text-align: left;
	background: none;
	border-bottom: 1px solid #e9edf6;
	padding: 5px 12px;
}

.market-table td {
	border-bottom: 1px solid #e9edf6;
	padding: 5px 12px;
	font-variant-numeric: tabular-nums;
	transition: background-color .18s ease;
}

.market-table td:nth-child(2),
.market-table td:nth-child(3),
.market-table th:nth-child(2),
.market-table th:nth-child(3) {
	text-align: center;
}

.market-table tbody tr:not(.market-table__total):hover td,
.market-table tbody tr:not(.market-table__total):hover th {
	background: #f7f9fe;
}

.market-table tr.market-table__total td,
.market-table tr.market-table__total th {
	font-weight: 600;
	background: #eef2fb;
	border-top: 2px solid #0A115E;
	border-bottom: none;
	color: #0A115E;
}

/* --- Band plan + technical --------------------------------- */
.band-plan-svg {
	max-width: 1080px;
	margin: 0 auto;
}

.band-plan-svg svg {
	display: block;
	width: 100%;
	height: auto;
}

.band-plan-help {
	max-width: 760px;
	margin: 18px auto 0 auto;
	padding: 15px 20px;
	background: #eef2fb;
	border-left: 3px solid #1F64FF;
	border-radius: 8px;
	font-family: 'Nunito', sans-serif;
}

.band-plan-help p {
	margin: 0;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
}

.band-plan-help strong {
	font-weight: 600;
	color: #0A115E;
}

.paired-diagram,
.channels-diagram {
	display: block;
	width: 100%;
	max-width: 560px;
	height: auto;
	margin: 0 auto 14px auto;
}

/* Band plan: tap-to-enlarge viewer (portrait rotates to landscape) */
.bandplan-viewer {
	position: relative;
	display: block;
}

.bandplan-viewer__open {
	display: block;
	cursor: zoom-in;
}

.bandplan-viewer__open svg {
	display: block;
	width: 100%;
	height: auto;
}

.bandplan-viewer__hint {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(10, 17, 94, 0.78);
	color: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	border-radius: 999px;
	pointer-events: none;
}

.bandplan-viewer__hint .material-icons {
	font-size: 16px;
}

.bandplan-viewer__bg,
.bandplan-viewer__close,
.bandplan-viewer__turn {
	display: none;
}

.bandplan-viewer:target {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bandplan-viewer:target .bandplan-viewer__bg {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(10, 17, 94, 0.86);
	cursor: zoom-out;
}

.bandplan-viewer:target .bandplan-viewer__open {
	position: relative;
	z-index: 2;
	cursor: default;
	width: min(94vw, 1400px);
	background: #ffffff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.bandplan-viewer:target .bandplan-viewer__hint {
	display: none;
}

.bandplan-viewer:target .bandplan-viewer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 40px;
	height: 40px;
	background: #ffffff;
	color: #0A115E;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

@media (orientation: portrait) and (max-width: 900px) {
	.bandplan-viewer:target .bandplan-viewer__open {
		transform: rotate(90deg);
		width: 86vh;
		padding: 14px;
	}

	.bandplan-viewer:target .bandplan-viewer__turn {
		display: block;
		position: fixed;
		bottom: 16px;
		left: 0;
		right: 0;
		z-index: 3;
		text-align: center;
		color: #dbe4ff;
		font-family: 'Nunito', sans-serif;
		font-weight: 600;
		font-size: 16px;
		pointer-events: none;
	}
}

.tech-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: none;
	margin: 34px auto 0 auto;
}

.tech-card {
	background: #ffffff;
	border: 1px solid #e3e8f4;
	border-radius: 10px;
	padding: 18px 20px;
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
}

.tech-card strong {
	display: block;
	font-weight: 600;
	color: #0A115E;
	margin-bottom: 6px;
}

.tech-card__icon {
	display: block;
	margin-bottom: 12px;
}

.tech-card__icon svg {
	display: block;
	width: 34px;
	height: 34px;
}

/* --- Why [band] (typographic, numbered) -------------------- */
.why-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 56px;
	max-width: none;
	margin: 0 auto;
}

.why-item {
	padding: 24px 0;
	border-top: 1px solid #e3e8f4;
	font-family: 'Nunito', sans-serif;
}

.why-item__index {
	display: block;
	font-weight: 200;
	font-size: 30px;
	line-height: 1;
	color: #8400A8;
	font-variant-numeric: tabular-nums;
	margin-bottom: 10px;
}

.why-item h4 {
	font-weight: 600;
	font-size: 20px;
	color: #0A115E;
	margin: 0 0 6px 0;
	text-align:left;
}

.why-item p {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
	margin: 0;
}

/* --- Industries & Applications (definition lists) ----------- */
.band-topline {
	border-top: 1px solid #e3e8f4;
}

.ia-label {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #0A115E;
	margin: 34px 0 4px 0;
}

.ia-label::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 2px;
	background: #8400A8;
	vertical-align: 4px;
	margin-right: 10px;
}

.ia-label a {
	color: #1F64FF;
	text-decoration: none;
	border-bottom: 1px solid #c9d3ec;
	padding-bottom: 2px;
	transition: color .18s ease, border-color .18s ease;
}

.ia-label a:hover,
.ia-label a:focus-visible {
	color: #004CF7;
	border-bottom-color: #1F64FF;
}

.ia-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 56px;
	border-top: 1px solid #e3e8f4;
	margin-top: 12px;
}

.ia-list > li {
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	color: #555555;
	padding: 16px 0;
	border-bottom: 1px solid #e3e8f4;
	list-style: none;
}

.ia-entry {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid #e3e8f4;
	font-family: 'Nunito', sans-serif;
}

.ia-entry__glyph {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	margin-top: 0;
}

svg.ia-entry__glyph {
	stroke: #0A115E;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ia-entry__name {
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.35;
	color: #0A115E;
}

.ia-entry__name a {
	color: #1F64FF;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}

.ia-entry__name a:hover,
.ia-entry__name a:focus-visible {
	color: #004CF7;
	border-bottom-color: #1F64FF;
}

.ia-entry__why {
	display: block;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	color: #555555;
	margin-top: 3px;
}

.band-standards {
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #555555;
	margin-top: 22px;
}

/* --- Industries photo grid ----------------------------------- */
.mosaic {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 214px;
	gap: 14px;
	margin-top: 12px;
}

.mosaic-tile {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	font-family: 'Nunito', sans-serif;
}

.mosaic-tile--w2 {
	grid-column: span 2;
}

.mosaic-tile--photo {
	display: block;
	background: #0A115E;
	border: 1px solid #e3e8f4;
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.mosaic-tile--photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .4s ease-in, transform .3s ease;
}

/* WCAG overlay: navy gradient reaches >=0.55 opacity behind all tile text */
.mosaic-tile__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 17, 94, 0.94) 0%, rgba(10, 17, 94, 0.62) 62%, rgba(10, 17, 94, 0) 92%);
	pointer-events: none;
}

.mosaic-tile__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	padding: 14px 18px 16px 18px;
}

.mosaic-tile__label {
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: #ffffff;
}

.mosaic-tile__caption {
	display: block;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.45;
	color: #dbe4ff;
	margin-top: 3px;
	max-width: 640px;
}

/* Feature tile (Oil, Gas & Pipeline) */
.mosaic-tile--feature .mosaic-tile__label {
	font-size: 20px;
}

.mosaic-tile--feature .mosaic-tile__label::before {
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	background: #E5D2FF;
	margin-bottom: 8px;
}

a.mosaic-tile--photo:hover,
a.mosaic-tile--photo:focus-visible {
	border-color: #1F64FF;
	box-shadow: 0 6px 18px rgba(10, 17, 94, 0.22);
}

a.mosaic-tile--photo:hover img,
a.mosaic-tile--photo:focus-visible img {
	transform: scale(1.045);
}

/* --- Equipment: logo cards (assets already live on /industry-partners) --- */
.eq-logo-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 16px;
	max-width: 980px;
	margin: 0 auto;
}

.eq-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	min-height: 78px;
	padding: 14px 22px;
	background: #ffffff;
	border: 1px solid #e3e8f4;
	border-radius: 10px;
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.eq-logo img {
	max-height: 44px;
	max-width: 150px;
	width: auto;
	height: auto;
}

.eq-logo--text {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #0A115E;
}

.eq-logo:hover,
.eq-logo:focus-visible {
	border-color: #1F64FF;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(10, 17, 94, 0.10);
}

/* --- FAQ: native <details> accordion on tint band ------------ */
.faq-band {
	background: linear-gradient(180deg, #f6f8fc 0%, #eef2fb 100%);
	border-top: 1px solid #e3e8f4;
}

.faq-list {
	max-width: none;
	margin: 0 auto;
	border-top: 1px solid #DDD2FB;
}

.faq-item {
	border-bottom: 1px solid #DDD2FB;
	font-family: 'Nunito', sans-serif;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	position: relative;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	color: #0A115E;
	padding: 18px 44px 18px 0;
	transition: color .18s ease;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 300;
	font-size: 24px;
	line-height: 1;
	color: #0A115E;
}

.faq-item[open] summary::after {
	content: "\2212";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
	color: #1F64FF;
}

.faq-item summary:focus-visible {
	outline: 2px solid #1F64FF;
	outline-offset: 2px;
}

.faq-item p {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
	padding: 0 44px 20px 0;
}

.faq-item a {
	color: #004CF7;
	transition: color .18s ease;
}

.faq-item a:hover,
.faq-item a:focus-visible {
	color: #0A115E;
}

/* --- Learn more: form + contact ----------------------------- */
.learn-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 36px;
	align-items: start;
	max-width: none;
	margin: 0 auto;
}

.learn-form {
	background: #ffffff;
	border: 1px solid #e3e8f4;
	border-top: 3px solid #1F64FF;
	border-radius: 10px;
	padding: 26px 26px 18px 26px;
}

.learn-form .hs-form-frame {
	min-height: 600px;
}

.contact-card {
	background: linear-gradient(160deg, #0A115E 0%, #133991 100%);
	border: 1px solid #0A115E;
	border-radius: 10px;
	padding: 26px;
	font-family: 'Nunito', sans-serif;
	color: #dbe4ff;
}

.contact-card h4 {
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
	margin: 0 0 6px 0;
}

.contact-card p {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 10px 0;
}

.contact-card .set__bold {
	color: #ffffff;
}

.contact-card a {
	color: #ffffff;
}

.contact-card .material-icons {
	font-size: 16px;
	vertical-align: -4px;
	margin-right: 8px;
	color: #9fb6ff;
}

.contact-card .band-btn {
	margin-top: 8px;
}

.learn-form__eyebrow {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1F64FF;
	margin: 0 0 6px 0;
}

.learn-form__title {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #0A115E;
	margin: 0 0 14px 0;
}

/* --- Utilities --------------------------------------------- */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.section-grey:has(#New-Listings:empty) {
	display: none;
}

/* --- Scroll reveal (active only when JS adds html.js) -------- */
html.js .rv {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .2s ease, transform .2s ease;
}

html.js .rv.rv-in {
	opacity: 1;
	transform: none;
}

.band-page-section {
	scroll-margin-top: 134px;
}

.section-container__content a:focus-visible,
.section__wrapper a:focus-visible,
.ia-label a:focus-visible,
.ia-entry__name a:focus-visible,
a.eq-logo:focus-visible,
.map-zoom:focus-visible,
.map-lightbox__close:focus-visible,
.bandplan-viewer__open:focus-visible,
.bandplan-viewer__close:focus-visible,
.faq-item a:focus-visible,
.band-jump__inner a:focus-visible,
.band-btn:focus-visible,
a.mosaic-tile--photo:focus-visible,
.market-table-wrapper:focus-visible {
	outline: 2px solid #1F64FF;
	outline-offset: 2px;
}

.band-hero-v2 .band-btn:focus-visible {
	outline-color: #ffffff;
	outline-offset: 3px;
}

/* --- Responsive -------------------------------------------- */
@media only screen and (max-width: 960px) {
	.band-hero-v2 {
		background-image: linear-gradient(160deg, #0A115E 0%, #0A115Ef0 55%, #2c53d9d9 82%, #467FFFa6 100%), url(/assets/images/tower_.webp);
	}

	.band-hero-v2__inner {
		padding-top: 36px;
	}

	.band-hero-v2 h1 {
		font-size: 36px;
	}

	.avail-grid,
	.tech-grid,
	.learn-grid,
	.why-list,
	.ia-list {
		grid-template-columns: 1fr;
	}

	.map-zoom {
		height: auto;
	}

	.avail-grid .wrapper__map-image img {
		height: auto;
	}

	.why-list {
		gap: 0;
	}

	.mosaic {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 200px;
	}

	.mosaic-tile--w2 {
		grid-column: 1 / -1;
	}

	.ia-label a,
	.ia-entry__name a {
		display: inline-block;
		padding-top: 12px;
		padding-bottom: 12px;
		margin: -12px 0;
	}

	.ia-label a {
		padding-top: 15.5px;
		padding-bottom: 15.5px;
		margin: -15.5px 0;
	}

	.band-page-section {
		scroll-margin-top: 96px;
	}
}

@media only screen and (max-width: 640px) {
	.band-hero-v2__stats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.band-hero-v2__stat {
		min-width: 0;
		padding: 12px 12px;
	}

	.band-hero-v2__stat-value {
		font-size: 26px;
	}

	.band-btn {
		width: 100%;
		justify-content: center;
	}

	.market-table {
		font-size: 16px;
	}

	.market-table thead th {
		white-space: normal;
		padding: 8px 10px;
	}

	.market-table tbody th,
	.market-table td {
		padding: 8px 10px;
	}

	.mosaic {
		grid-template-columns: 1fr;
		grid-auto-rows: 196px;
		gap: 12px;
	}

	.mosaic-tile--w2 {
		grid-column: auto;
	}

	/* Equipment: stacked left-aligned rows on phones (matches the Applications list) */
	.eq-logo-row {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-width: 460px;
		border-top: 1px solid #e3e8f4;
	}

	.eq-logo {
		min-width: 0;
		min-height: 0;
		justify-content: flex-start;
		padding: 16px 8px;
		background: none;
		border: none;
		border-bottom: 1px solid #e3e8f4;
		border-radius: 0;
	}

	.eq-logo img {
		max-height: 38px;
		max-width: 150px;
	}

	.eq-logo:hover,
	.eq-logo:focus-visible {
		transform: none;
		box-shadow: none;
		background: #f7f9fe;
	}

	/* Spectrum Search doesn't work on mobile — remove all references on phones */
	.ss-spotlight,
	.ss-mobile-hide {
		display: none;
	}

	.ss-mobile-only {
		display: inline;
	}

	#cl-footer .product-list li:has(> a[href="/spectrum-search"]) {
		display: none;
	}

	/* Copy-depth rule: hide trailing blurb sentences on phones */
	.blurb-more {
		display: none;
	}

	.band-jump__inner {
		padding: 10px 16px;
	}

	.band-jump__label {
		margin-right: 10px;
	}

	.band-jump__sep {
		padding: 0 7px;
	}
}

/* --- Print ------------------------------------------------- */
@media print {
	.market-table-wrapper,
	.band-plan-svg {
		overflow: visible;
	}

	.band-plan-svg svg {
		min-width: 0;
	}

	.band-cta-row,
	.band-jump,
	.map-zoom__hint,
	.map-lightbox,
	.bandplan-viewer__hint,
	.bandplan-viewer__close,
	.bandplan-viewer__turn,
	.section-grey:has(#RequestAQuote),
	#RequestAQuote,
	.search-page {
		display: none;
	}

	.band-hero-v2 {
		background: #ffffff;
	}

	.band-hero-v2 h1,
	.band-hero-v2__sub,
	.band-hero-v2__stat-value,
	.band-hero-v2__stat-label,
	.band-hero-v2__eyebrow {
		color: #000000;
	}

	.faq-band {
		background: #ffffff;
	}

	.tech-card,
	.why-item,
	.ia-entry,
	.faq-item,
	.mosaic-tile--photo {
		border-color: #999999;
	}
}

/* --- Reduced motion (final block) --------------------------- */
@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto;
	}

	.band-btn,
	.ia-label a,
	.ia-entry__name a,
	.eq-logo,
	.faq-item a,
	.faq-item summary,
	.band-jump__inner a,
	.mosaic-tile--photo,
	.mosaic-tile--photo img,
	.market-table td {
		transition: none;
	}

	.band-btn--primary:hover,
	.band-btn--blue:hover {
		transform: none;
	}

	a.mosaic-tile--photo:hover img,
	a.mosaic-tile--photo:focus-visible img {
		transform: none;
	}

	/* No reveal offsets: content is always visible, no motion */
	html.js .rv {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --- New Listings: suppress the duplicate card stack ---------------------*/
.list-container.owl-carousel > .card-container {
	display: none;
}

/* --- Available Spectrum index: band cards -------------------------------- */
.band-index-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 26px;
	margin-top: 34px;
}

.band-index-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e3e8f4;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(10, 17, 94, .07), 0 10px 24px rgba(10, 17, 94, .06);
	transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.band-index-card:hover,
.band-index-card:focus-within {
	border-color: #c7d4f5;
	box-shadow: 0 4px 10px rgba(10, 17, 94, .10), 0 18px 40px rgba(10, 17, 94, .13);
	transform: translateY(-3px);
}

/* the map is the primary click target: give it the full card width, a real
   aspect box, and visible hover feedback */
.band-index-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #f4f6fa;
	border-bottom: 1px solid #eef1f7;
	cursor: pointer;
}

.band-index-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s ease;
}

.band-index-card__media::after {
	content: "View band";
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 5px 11px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background: rgba(10, 17, 94, .82);
	border-radius: 999px;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}

.band-index-card:hover .band-index-card__media::after,
.band-index-card__media:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.band-index-card:hover .band-index-card__media img {
	transform: scale(1.03);
}

.band-index-card__media:focus-visible {
	outline: 3px solid #1F64FF;
	outline-offset: -3px;
}

.band-index-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 18px 20px 20px;
}

.band-index-card__title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
}

.band-index-card__title a {
	color: #0A115E;
	text-decoration: none;
}

.band-index-card__title a:hover {
	color: #1F64FF;
	text-decoration: underline;
}

.band-index-card__desc {
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
	flex: 1 1 auto;
}

.band-index-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
}

.band-index-card__links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 600;
	color: #1F64FF;
	text-decoration: none;
}

.band-index-card__links a:hover {
	text-decoration: underline;
}

.band-index-card__links .material-icons {
	font-size: 16px;
}

@media only screen and (max-width: 640px) {
	.band-index-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* --- Homepage: primary calls to action directly beneath the video hero --- */
.home-hero-cta {
	background: #ffffff;
	border-bottom: 1px solid #e9edf6;
	padding: 22px 20px;
}

.home-hero-cta .band-container {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: center;
}

.home-hero-cta .band-btn {
	margin: 0;
}

@media only screen and (max-width: 640px) {
	.home-hero-cta .band-container {
		flex-direction: column;
		align-items: stretch;
	}

	.home-hero-cta .band-btn {
		justify-content: center;
	}
}

/* --- Homepage: hero sits flush under the announcement bar ----------------*/
.hero-section {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.home-hero-cta {
	padding: 16px 20px;
}

/* --- sub-heading inside a band section (SIM library etc.) --- */
.band-subheading {
	margin: 34px 0 6px;
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #333333;
}

.band-btn--outline {
	background: #ffffff;
	color: #1F64FF;
	border: 1.5px solid #1F64FF;
}

.band-btn--outline:hover {
	background: #eef3ff;
}

/* --- raster band plans: keep large source images at a sane display size --- */
.band-plan-svg > img {
	display: block;
	width: 100%;
	max-width: 860px;
	height: auto;
	margin: 0 auto;
}

/* ============================================================
   Small-screen corrections for the Option A scale.
   Loaded last so it wins over the earlier @media blocks.
   ============================================================ */
@media only screen and (max-width: 640px) {
	.band-container,
	.band-hero-v2__inner,
	.band-jump__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.band-lede,
	.band-hero-v2__sub,
	.tech-card,
	.faq-item p,
	.why-item p,
	.ss-spotlight__text p,
	.contact-card p,
	.band-plan-help p,
	.band-standards,
	.ia-entry__why,
	.ia-list > li,
	.band-index-card__desc {
		font-size: 17px;
	}

	/* Heads follow prose down by 1px so the head/body ratio holds. */
	.ss-spotlight__text h4,
	.contact-card h4,
	.why-item h4,
	.ia-entry__name,
	.mosaic-tile__label,
	.faq-item summary,
	.band-index-card__title,
	.learn-form__title,
	.band-subheading {
		font-size: 19px;
	}

	.why-item__index {
		font-size: 26px;
	}

	.band-jump__inner a {
		padding: 11px 4px;
	}

	.band-hero-v2__cta {
   flex-direction: column;
   gap:20px;
    }
}

/* ============================================================
   2.5 GHz valuation page (services/consulting/2-5-ghz-valuation)
   Added 2026-08-11. "What Drives Value" and "How We Approach a
   Valuation" both rendered as a numbered .why-list, so two
   identical components sat back to back and the page read as
   repetitive. The parallel value drivers become unnumbered cards
   (.tech-grid--3); the method keeps its numerals and gains a
   connector rail (.process-steps) so it reads as ordered steps.
   Nothing here changes the existing .why-list, which the band
   pages still use.
   ============================================================ */

/* Three-up card grid. Compound selector for the same reason
   .mosaic--2 uses one: the base .tech-grid rule sits earlier in
   the file and a bare modifier would tie on specificity. */
.tech-grid.tech-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

/* .tech-card was written around a <strong> lead-in; these cards
   carry a real heading so the document outline survives. */
.tech-card h4 {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: #0A115E;
	margin: 0 0 6px 0;
}

.tech-card p {
	margin: 0;
}

/* --- Sequential process (numbered, with a connector rail) ----- */
.process-steps {
	list-style: none;
	margin: 34px 0 0 0;
	padding: 0;
}

.process-step {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 0 20px;
	padding: 0 0 26px 0;
	font-family: 'Nunito', sans-serif;
}

/* The rail is what separates this from the card grid above: it
   ties 01 through 05 into one path instead of five peers. */
.process-step::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 56px;
	bottom: 0;
	width: 2px;
	background: #e3e8f4;
}

.process-step:last-child {
	padding-bottom: 0;
}

.process-step:last-child::before {
	display: none;
}

.process-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 56px;
	height: 56px;
	border: 2px solid #8400A8;
	border-radius: 50%;
	background: #ffffff;
	font-weight: 200;
	font-size: 30px;
	line-height: 1;
	color: #8400A8;
	font-variant-numeric: tabular-nums;
}

/* Optical centering of the heading against the 56px badge. */
.process-step__body {
	padding-top: 14px;
}

.process-step h4 {
	font-weight: 600;
	font-size: 20px;
	color: #0A115E;
	margin: 0 0 6px 0;
	text-align:left;
}

.process-step p {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.55;
	color: #555555;
	margin: 0;
}


.ia-list.ia-list--cards {
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	border-top: 0;
	margin-top: 20px;
}

.ia-entry--card {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 22px;
	background: #f6f8fc;
	border: 1px solid #e3e8f4;
	border-radius: 10px;
}

.ia-entry--card .ia-entry__glyph {
	width: 34px;
	height: 34px;
}

.mosaic-tile--plain {
	display: flex;
	align-items: center;
	background: linear-gradient(160deg, #0A115E 0%, #133991 100%);
	border: 1px solid #0A115E;
}

.mosaic-tile--plain .mosaic-tile__text {
	position: static;
	padding: 22px 24px;
}

.mosaic-tile--plain .mosaic-tile__label::before {
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	background: #E5D2FF;
	margin-bottom: 8px;
}

@media only screen and (max-width: 960px) {
	/* The base .tech-grid / .ia-list rules drop to one column here,
	   but the compound modifiers outrank them, so restate. */
	.tech-grid.tech-grid--3,
	.ia-list.ia-list--cards {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 640px) {
	.process-step {
		grid-template-columns: 44px 1fr;
		gap: 0 14px;
		padding-bottom: 22px;
	}

	.process-step::before {
		left: 21px;
		top: 44px;
	}

	.process-step__num {
		width: 44px;
		height: 44px;
		font-size: 24px;
	}

	.process-step__body {
		padding-top: 8px;
	}

	.process-step h4,
	.tech-card h4 {
		font-size: 19px;
	}

	.process-step p {
		font-size: 17px;
	}
}

@media print {
	.tech-card,
	.ia-entry--card {
		border-color: #999999;
	}

	.process-step__num {
		border-color: #999999;
		color: #000000;
	}
}

/* Regional map row (28 GHz): CONUS map above, then one map per non-contiguous
   region. Added 2026-08-18 when the AK/HI/AS inset panels were split out into
   standalone maps for the web (the all-in-one inset version stays in the PDF). */
.map-region-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 880px;
	margin: 0 auto 12px;
}

.map-region-grid figure {
	margin: 0;
}

.map-region-grid .map-zoom {
	border: 1px solid #e2e5ee;
	border-radius: 6px;
	overflow: hidden;
}

.map-region-grid img {
	width: 100%;
	height: auto;
	display: block;
}

.map-region-grid figcaption {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #555555;
	text-align: center;
}

.map-region-grid figcaption b {
	color: #0A115E;
}

@media (max-width: 780px) {
	.map-region-grid {
		grid-template-columns: 1fr;
	}
}
