/* TelcoBlade home v2 — connectivity skin (ink / signal / violet / edge) */

.tb-is-homepage #inner-wrap {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	overflow-x: hidden;
}

.tb-is-homepage .content-area,
.tb-is-homepage .entry-content-wrap,
.tb-is-homepage .entry-hero,
.tb-is-homepage .entry-header,
.tb-is-homepage .entry-title,
.tb-is-homepage .wp-site-blocks > .entry-content {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
}

.tb-is-homepage .content-container,
.tb-is-homepage .entry-content-wrap {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Kadence header/footer also use .site-container — keep them inset. */
.tb-is-homepage #masthead .site-container,
.tb-is-homepage #colophon .site-container {
	max-width: 1180px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 28px;
	padding-right: 28px;
	box-sizing: border-box;
}

.tb-is-homepage #main,
.tb-is-homepage .content-area,
.tb-is-homepage article.page {
	background: transparent;
}

.tb-home-v2 {
	--ink: #1A2332;
	--signal: #2563A8;
	--violet: #6B4EA3;
	--edge: #2F7D5B;
	--paper: #F4F7FA;
	--line: rgba(26, 35, 50, 0.10);
	--muted: rgba(26, 35, 50, 0.62);
	--dark: #0E1620;
	--grad: linear-gradient(92deg, #2563A8 0%, #6B4EA3 52%, #2F7D5B 100%);
	--radius: 18px;
	--maxw: 1180px;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--paper);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}

.tb-hv2-wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}

/* Hero */
.tb-hv2-hero {
	padding: 96px 0 80px;
	position: relative;
	overflow: hidden;
}

.tb-hv2-arcs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 88% 12%, transparent 70px, rgba(37, 99, 168, 0.07) 71px, transparent 72px),
		radial-gradient(circle at 88% 12%, transparent 120px, rgba(107, 78, 163, 0.08) 121px, transparent 122px),
		radial-gradient(circle at 88% 12%, transparent 180px, rgba(47, 125, 91, 0.07) 181px, transparent 182px),
		radial-gradient(900px 420px at 82% -10%, rgba(37, 99, 168, 0.10), transparent 60%),
		radial-gradient(800px 460px at 8% 0%, rgba(107, 78, 163, 0.08), transparent 55%);
}

.tb-hv2-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 70px;
	align-items: center;
	position: relative;
}

.tb-hv2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--signal);
	border: 1px solid var(--line);
	background: #fff;
	padding: 7px 16px;
	border-radius: 99px;
	margin-bottom: 34px;
}

.tb-hv2-pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--edge);
	box-shadow: 0 0 0 0 rgba(47, 125, 91, 0.5);
	animation: tbHv2Pulse 2.4s infinite;
}

@keyframes tbHv2Pulse {
	0% { box-shadow: 0 0 0 0 rgba(47, 125, 91, 0.45); }
	70% { box-shadow: 0 0 0 9px rgba(47, 125, 91, 0); }
	100% { box-shadow: 0 0 0 0 rgba(47, 125, 91, 0); }
}

.tb-hv2-h1 {
	font-size: clamp(42px, 6.4vw, 76px);
	line-height: 1.03;
	letter-spacing: -0.035em;
	font-weight: 800;
	max-width: 900px;
	margin: 0;
	color: var(--ink);
}

.tb-hv2-accent {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.tb-hv2-hero-sub {
	margin-top: 30px;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	color: var(--muted);
	max-width: 640px;
	font-weight: 400;
}

.tb-hv2-ctas {
	margin-top: 44px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.tb-hv2-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 30px;
	border-radius: 99px;
	font-size: 15.5px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none !important;
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.tb-hv2-btn--primary {
	background: var(--ink);
	color: #fff !important;
	box-shadow: 0 6px 24px rgba(26, 35, 50, 0.22);
}

.tb-hv2-btn--primary:hover {
	background: var(--signal);
	transform: translateY(-2px);
	color: #fff !important;
}

.tb-hv2-btn--ghost {
	background: #fff;
	border: 1px solid var(--line);
	color: var(--ink) !important;
}

.tb-hv2-btn--ghost:hover {
	border-color: rgba(26, 35, 50, 0.3);
	transform: translateY(-2px);
	color: var(--ink) !important;
}

.tb-hv2-btn:hover .tb-hv2-arr {
	transform: translateX(3px);
}

.tb-hv2-arr {
	display: inline-block;
	transition: transform 0.18s;
}

/* Spectrum + triage deck */
.tb-hv2-deck {
	background: var(--dark);
	border-radius: var(--radius);
	box-shadow: 0 30px 80px rgba(14, 22, 32, 0.38);
	overflow: hidden;
	transform: rotate(-0.5deg);
}

.tb-hv2-deck-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tb-hv2-deck-bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.tb-hv2-deck-bar span:nth-child(1) { background: #E15B41; }
.tb-hv2-deck-bar span:nth-child(2) { background: #d9a441; }
.tb-hv2-deck-bar span:nth-child(3) { background: #2F7D5B; }

.tb-hv2-deck-bar em {
	margin-left: auto;
	font-style: normal;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.38);
}

.tb-hv2-bands {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 18px 18px 8px;
}

.tb-hv2-band {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 12px 10px 14px;
	text-align: center;
}

.tb-hv2-band-ghz {
	display: block;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.03em;
}

.tb-hv2-rssi {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 3px;
	height: 28px;
	margin: 10px 0 8px;
}

.tb-hv2-rssi i {
	display: block;
	width: 5px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.16);
}

.tb-hv2-rssi i:nth-child(1) { height: 8px; }
.tb-hv2-rssi i:nth-child(2) { height: 14px; }
.tb-hv2-rssi i:nth-child(3) { height: 20px; }
.tb-hv2-rssi i:nth-child(4) { height: 26px; }

.tb-hv2-band--hot .tb-hv2-rssi i { background: #e8c268; }
.tb-hv2-band--ok .tb-hv2-rssi i:nth-child(-n+3) { background: #4fce8d; }
.tb-hv2-band--idle .tb-hv2-rssi i:nth-child(1) { background: rgba(255, 255, 255, 0.28); }

.tb-hv2-band-state {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 9.5px;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
}

.tb-hv2-band--hot .tb-hv2-band-state { color: #e8c268; }
.tb-hv2-band--ok .tb-hv2-band-state { color: #4fce8d; }

.tb-hv2-term {
	padding: 14px 22px 22px;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12.4px;
	line-height: 1.85;
	color: #c9d7e4;
}

.tb-hv2-term .c { color: #5f7d99; }
.tb-hv2-term .g { color: #4fce8d; }
.tb-hv2-term .r { color: #ff8a70; }
.tb-hv2-term .y { color: #e8c268; }

.tb-hv2-cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background: #4fce8d;
	vertical-align: -2px;
	animation: tbHv2Blink 1.1s steps(1) infinite;
}

@keyframes tbHv2Blink {
	50% { opacity: 0; }
}

@media (max-width: 960px) {
	.tb-hv2-hero-grid {
		grid-template-columns: 1fr;
	}

	.tb-hv2-deck {
		display: none;
	}

	.tb-hv2-hero {
		padding: 64px 0 56px;
	}
}

/* Stats */
.tb-hv2-stats {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.tb-hv2-stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-top: 34px;
	padding-bottom: 34px;
}

.tb-hv2-stat-n {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.tb-hv2-stat-n em {
	font-style: normal;
	color: var(--signal);
}

.tb-hv2-stat-l {
	font-size: 13.5px;
	color: var(--muted);
	margin-top: 3px;
}

@media (max-width: 860px) {
	.tb-hv2-stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Sections */
.tb-hv2-protocol,
.tb-hv2-guides,
.tb-hv2-split,
.tb-hv2-news {
	padding: 100px 0;
}

.tb-hv2-sec-eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--signal);
	margin-bottom: 16px;
}

.tb-hv2-h2 {
	font-size: clamp(30px, 4vw, 46px);
	letter-spacing: -0.03em;
	line-height: 1.1;
	font-weight: 800;
	max-width: 760px;
	margin: 0;
	color: var(--ink);
}

.tb-hv2-sec-sub {
	margin-top: 18px;
	font-size: 17.5px;
	color: var(--muted);
	max-width: 620px;
	line-height: 1.6;
}

/* Protocol */
.tb-hv2-protocol {
	background: var(--dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.tb-hv2-protocol::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(1000px 500px at 90% 110%, rgba(37, 99, 168, 0.22), transparent 55%),
		radial-gradient(700px 400px at 0% -10%, rgba(107, 78, 163, 0.28), transparent 60%);
}

.tb-hv2-protocol .tb-hv2-wrap {
	position: relative;
}

.tb-hv2-protocol .tb-hv2-h2 {
	color: #fff;
}

.tb-hv2-protocol .tb-hv2-sec-sub {
	color: rgba(255, 255, 255, 0.62);
}

.tb-hv2-protocol .tb-hv2-sec-eyebrow {
	color: #7eb3e4;
}

.tb-hv2-proto-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tb-hv2-proto-card {
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius);
	padding: 30px 26px;
	transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.tb-hv2-proto-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.18);
}

.tb-hv2-proto-num {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12.5px;
	color: #7eb3e4;
	letter-spacing: 0.05em;
	margin-bottom: 18px;
}

.tb-hv2-proto-card h3 {
	font-size: 18.5px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 0 0 11px;
	color: #fff;
}

.tb-hv2-proto-card p {
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

@media (max-width: 1020px) {
	.tb-hv2-proto-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.tb-hv2-proto-grid {
		grid-template-columns: 1fr;
	}
}

/* Guides */
.tb-hv2-guides-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.tb-hv2-see-all {
	font-size: 15px;
	font-weight: 600;
	color: var(--signal) !important;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	text-decoration: none !important;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s;
}

.tb-hv2-see-all:hover {
	border-color: var(--signal);
	color: var(--signal) !important;
}

.tb-hv2-guide-grid {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.tb-hv2-guide-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	min-height: 250px;
	text-decoration: none !important;
	color: inherit !important;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.tb-hv2-guide-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 50px rgba(26, 35, 50, 0.12);
	border-color: rgba(26, 35, 50, 0.18);
	color: inherit !important;
}

.tb-hv2-guide-tag {
	align-self: flex-start;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	padding: 5px 12px;
	border-radius: 99px;
	margin-bottom: 20px;
	background: rgba(37, 99, 168, 0.08);
	color: var(--signal);
}

.tb-hv2-guide-tag--signal {
	background: rgba(37, 99, 168, 0.09);
	color: var(--signal);
}

.tb-hv2-guide-tag--violet {
	background: rgba(107, 78, 163, 0.10);
	color: var(--violet);
}

.tb-hv2-guide-tag--edge {
	background: rgba(47, 125, 91, 0.10);
	color: var(--edge);
}

.tb-hv2-guide-card h3 {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.32;
	margin: 0 0 12px;
	color: var(--ink);
}

.tb-hv2-guide-card p {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.6;
	flex: 1;
	margin: 0;
}

.tb-hv2-guide-foot {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.tb-hv2-read {
	font-size: 14px;
	font-weight: 600;
	color: var(--signal);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tb-hv2-guide-card:hover .tb-hv2-read {
	color: var(--violet);
}

.tb-hv2-guide-updated {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.03em;
	color: rgba(26, 35, 50, 0.42);
	white-space: nowrap;
}

.tb-hv2-clusters {
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.tb-hv2-clusters-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted);
	margin-right: 6px;
}

.tb-hv2-cluster-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	border-radius: 99px;
	border: 1px solid var(--line);
	background: #fff;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink) !important;
	text-decoration: none !important;
	transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.tb-hv2-cluster-pill:hover {
	border-color: rgba(26, 35, 50, 0.3);
	transform: translateY(-2px);
}

.tb-hv2-cluster-count {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	color: var(--muted);
	background: rgba(37, 99, 168, 0.07);
	padding: 2px 8px;
	border-radius: 99px;
}

.tb-hv2-cluster-pill--all {
	background: var(--ink);
	color: #fff !important;
	border-color: var(--ink);
}

.tb-hv2-cluster-pill--all:hover {
	background: var(--signal);
	border-color: var(--signal);
}

@media (max-width: 1020px) {
	.tb-hv2-guide-grid {
		grid-template-columns: 1fr;
	}
}

/* Audience split */
.tb-hv2-split {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.tb-hv2-split-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.tb-hv2-split-card {
	border-radius: var(--radius);
	padding: 42px 38px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}

.tb-hv2-split-card--a {
	background: linear-gradient(160deg, #EAF2F9 0%, #fff 70%);
}

.tb-hv2-split-card--b {
	background: linear-gradient(160deg, #EEE8F6 0%, #fff 70%);
}

.tb-hv2-split-card h3 {
	font-size: 23px;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	color: var(--ink);
}

.tb-hv2-split-card > p {
	font-size: 15.5px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0 0 24px;
}

.tb-hv2-split-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tb-hv2-split-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--ink);
}

.tb-hv2-tick {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	margin-top: 1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	background: var(--signal);
}

.tb-hv2-split-card--b .tb-hv2-tick {
	background: var(--violet);
}

.tb-hv2-start {
	margin-top: auto;
	padding-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tb-hv2-start-label {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.tb-hv2-start-primary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 14px;
	background: var(--ink);
	color: #fff !important;
	text-decoration: none !important;
	box-shadow: 0 10px 28px rgba(26, 35, 50, 0.18);
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.tb-hv2-start-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(26, 35, 50, 0.24);
	color: #fff !important;
	background: var(--signal);
}

.tb-hv2-split-card--b .tb-hv2-start-primary {
	background: var(--violet);
	box-shadow: 0 10px 28px rgba(107, 78, 163, 0.22);
}

.tb-hv2-split-card--b .tb-hv2-start-primary:hover {
	background: #58408a;
	box-shadow: 0 16px 34px rgba(107, 78, 163, 0.28);
}

.tb-hv2-start-kicker {
	flex-shrink: 0;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.92);
}

.tb-hv2-start-title {
	flex: 1;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.tb-hv2-start-arr {
	flex-shrink: 0;
	font-size: 16px;
	transition: transform 0.18s;
}

.tb-hv2-start-primary:hover .tb-hv2-start-arr {
	transform: translateX(3px);
}

.tb-hv2-start-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 10px 14px;
	border-radius: 99px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.72);
	color: var(--signal) !important;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: border-color 0.18s, transform 0.18s, background 0.18s, color 0.18s;
}

.tb-hv2-start-secondary:hover {
	border-color: rgba(26, 35, 50, 0.28);
	transform: translateY(-1px);
	color: var(--ink) !important;
	background: #fff;
}

.tb-hv2-split-card--b .tb-hv2-start-secondary {
	color: var(--violet) !important;
}

.tb-hv2-split-card--b .tb-hv2-start-secondary:hover {
	color: var(--ink) !important;
}

@media (max-width: 860px) {
	.tb-hv2-split-grid {
		grid-template-columns: 1fr;
	}
}

/* Newsletter */
.tb-hv2-news {
	background: var(--dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.tb-hv2-news::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 400px at 50% 120%, rgba(37, 99, 168, 0.28), transparent 60%);
	pointer-events: none;
}

.tb-hv2-news-inner {
	position: relative;
	text-align: center;
	max-width: 720px;
}

.tb-hv2-news .tb-hv2-h2 {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
}

.tb-hv2-news-inner > p {
	margin: 20px auto 38px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 17px;
	max-width: 520px;
}

.tb-hv2-news-form {
	max-width: 520px;
	margin: 0 auto;
}

.tb-hv2-news-form .aff-nl-wrap {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}

.tb-hv2-news-form .aff-nl-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: stretch;
}

.tb-hv2-news-form .aff-nl-field {
	flex: 1 1 240px;
	margin: 0;
}

.tb-hv2-news-form .aff-nl-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 99px !important;
	padding: 15px 24px !important;
	color: #fff !important;
	font-size: 15px !important;
	height: auto !important;
	min-height: 52px;
}

.tb-hv2-news-form .aff-nl-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.tb-hv2-news-form .aff-nl-input:focus {
	border-color: rgba(255, 255, 255, 0.4) !important;
	box-shadow: none !important;
	outline: none;
}

.tb-hv2-news-form .aff-nl-btn {
	background: var(--signal) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 99px !important;
	padding: 15px 32px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	min-height: 52px;
	box-shadow: none !important;
	white-space: nowrap;
}

.tb-hv2-news-form .aff-nl-btn:hover:not(:disabled) {
	background: #1d4e86 !important;
	transform: translateY(-2px);
}

.tb-hv2-news-form .aff-nl-turnstile {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.tb-hv2-news-form .aff-nl-msg {
	margin-bottom: 14px;
}

.tb-hv2-news-note {
	margin-top: 18px !important;
	font-size: 13px !important;
	color: rgba(255, 255, 255, 0.42) !important;
}

/* Reveal */
.tb-hv2-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.tb-hv2-reveal.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.tb-hv2-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.tb-hv2-pulse,
	.tb-hv2-cursor {
		animation: none;
	}
}
