.atc-home-command-center,
.atc-home-command-center * {
	box-sizing: border-box;
}

.atc-home-command-center {
	--atc-bg: #02191f;
	--atc-bg-2: #031c22;
	--atc-panel: rgba(7, 30, 36, 0.66);
	--atc-panel-2: rgba(7, 30, 36, 0.58);
	--atc-card: rgba(9, 33, 39, 0.54);
	--atc-card-hover: rgba(11, 45, 52, 0.74);
	--atc-border: rgba(150, 226, 219, 0.18);
	--atc-border-strong: rgba(92, 255, 235, 0.48);
	--atc-text: #f4fffc;
	--atc-soft: #e3f3f0;
	--atc-muted: #b4c9ce;
	--atc-muted-2: #95acb2;
	--atc-accent: #00c9a7;
	--atc-accent-2: #7cf8e7;
	--atc-danger: #ff6b6b;
	--atc-radius-lg: 20px;
	--atc-radius-xl: 28px;
	--atc-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.045),
		0 26px 70px rgba(0, 0, 0, 0.24);
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 0;
	padding: clamp(16px, 2.2vw, 24px) 0 30px;
	overflow-x: clip;
	color: var(--atc-text);
	background:
		radial-gradient(circle at 68% 0%, rgba(0, 201, 167, 0.08), transparent 28rem),
		linear-gradient(180deg, rgba(2, 31, 37, 0.18), rgba(2, 31, 37, 0.08));
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	text-rendering: optimizeLegibility;
}

.atc-home-command-center::before {
	content: "";
	position: absolute;
	inset: 0 -9vw -90px;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(circle at 64% 4%, rgba(0, 201, 167, 0.18), transparent 34rem),
		radial-gradient(circle at 10% 8%, rgba(110, 231, 216, 0.10), transparent 24rem),
		linear-gradient(180deg, rgba(2, 31, 37, 0.78) 0%, rgba(2, 31, 37, 0.88) 18%, rgba(2, 27, 34, 0.88) 82%, rgba(2, 31, 37, 0.54) 100%);
	opacity: 0.98;
}

.atc-home-command-center::after {
	content: "";
	position: absolute;
	inset: 0 -8vw -70px;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(circle, rgba(110, 231, 216, 0.18) 0 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 201, 167, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 201, 167, 0.035) 1px, transparent 1px);
	background-size: 74px 74px, 96px 96px, 96px 96px;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
	opacity: 0.34;
}

.atc-home-command-center a {
	color: inherit;
	text-decoration: none;
}

.atc-home-command-center a:focus-visible,
.atc-home-command-center button:focus-visible {
	outline: 3px solid var(--atc-accent-2);
	outline-offset: 3px;
}

.atc-home-shell,
.atc-home-debug {
	position: relative;
	z-index: 1;
	width: min(1220px, 100%);
	margin-inline: auto;
}

.atc-panel,
.atc-home-panel,
.atc-home-start-panel {
	border: 1px solid var(--atc-border);
	border-radius: var(--atc-radius-xl);
	background:
		radial-gradient(circle at 94% 8%, rgba(0, 201, 167, 0.075), transparent 17rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
		var(--atc-panel);
	box-shadow: var(--atc-shadow);
}

.atc-card,
.atc-card-compact,
.atc-home-route-card,
.atc-home-map-card,
.atc-home-topic-group {
	border: 1px solid var(--atc-border);
	border-radius: var(--atc-radius-lg);
	background:
		radial-gradient(circle at 88% 0%, rgba(0, 201, 167, 0.055), transparent 11rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.010)),
		var(--atc-card);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.atc-kicker,
.atc-home-tabs span,
.atc-home-feed-badge,
.atc-home-feed-item > div > span {
	color: var(--atc-accent);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.atc-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--atc-accent);
	box-shadow: 0 0 14px rgba(0, 201, 167, 0.50);
}

.atc-btn,
.atc-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 13px 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	color: var(--atc-text);
	font-size: 0.94rem;
	font-weight: 950;
	line-height: 1;
	text-shadow: none;
	white-space: nowrap;
}

.atc-btn-primary,
.atc-home-btn-primary {
	border-color: rgba(190, 255, 247, 0.92);
	color: #00120f !important;
	background: linear-gradient(135deg, #20e6ca 0%, #8afff2 100%);
	box-shadow:
		0 16px 34px rgba(0, 201, 167, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.atc-btn-secondary,
.atc-home-btn-secondary {
	border-color: rgba(124, 248, 231, 0.42);
	color: #f7fffd !important;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
		rgba(2, 15, 22, 0.76);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.10),
		0 12px 28px rgba(0, 0, 0, 0.18);
}

.atc-home-actions .atc-home-btn-secondary {
	min-width: 188px;
}

.atc-btn-primary span,
.atc-home-btn-primary span {
	color: #00120f;
}

.atc-btn-secondary span,
.atc-home-btn-secondary span {
	color: #7cf8e7;
}

.atc-section-head h2,
.atc-home-start-panel h2,
.atc-home-section__intro h2,
.atc-home-panel-head h2 {
	margin: 0;
	color: #f8fffd;
	font-size: clamp(1.35rem, 2vw, 1.72rem);
	font-weight: 820;
	line-height: 1.08;
	letter-spacing: 0;
}

.atc-section-head p,
.atc-home-section__intro p,
.atc-home-panel-head p {
	margin: 7px 0 0;
	color: var(--atc-soft);
	font-size: 0.94rem;
	line-height: 1.62;
}

.atc-grid,
.atc-home-route-grid,
.atc-home-map-grid,
.atc-home-signal-row,
.atc-home-utility-row,
.atc-home-topic-grid {
	display: grid;
	gap: 20px;
}

.atc-link-list,
.atc-home-map-card ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.atc-meta,
.atc-home-feed-item time {
	color: var(--atc-muted-2);
	font-size: 0.76rem;
	line-height: 1.45;
}

.atc-home-section {
	margin-top: clamp(20px, 2.2vw, 26px);
}

.atc-home-panel {
	padding: clamp(24px, 3vw, 32px);
}

.atc-home-nav {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 64px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--atc-border);
}

.atc-home-logo {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #ffffff;
	font-size: 1.18rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

.atc-home-logo span {
	font-weight: 700;
}

.atc-home-logo b {
	color: var(--atc-text);
}

.atc-home-nav__links,
.atc-home-nav__actions {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 25px);
}

.atc-home-nav__links {
	justify-content: center;
}

.atc-home-nav__links a {
	color: var(--atc-soft);
	font-size: 0.86rem;
	font-weight: 760;
	white-space: nowrap;
}

.atc-home-search {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
}

.atc-home-search span {
	position: relative;
	display: block;
	width: 17px;
	height: 17px;
	border: 2px solid #ffffff;
	border-radius: 999px;
}

.atc-home-search span::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 8px;
	height: 2px;
	border-radius: 4px;
	background: #ffffff;
	transform: rotate(45deg);
}

.atc-home-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 405px);
	gap: clamp(32px, 5vw, 78px);
	align-items: center;
	min-height: 410px;
	padding: clamp(42px, 5.8vw, 66px) clamp(24px, 4.6vw, 56px);
	overflow: hidden;
	border: 1px solid var(--atc-border);
	border-radius: var(--atc-radius-xl);
	background:
		radial-gradient(circle at 70% 82%, rgba(0, 201, 167, 0.22), transparent 23rem),
		radial-gradient(circle at 18% 12%, rgba(110, 231, 216, 0.085), transparent 18rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.010)),
		var(--atc-panel);
	box-shadow: var(--atc-shadow);
}

.atc-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 42%, rgba(0, 201, 167, 0.11) 42.3%, transparent 43%),
		linear-gradient(25deg, transparent 0 56%, rgba(124, 248, 231, 0.07) 56.2%, transparent 57%),
		radial-gradient(circle at 72% 78%, transparent 0 18%, rgba(124, 248, 231, 0.08) 18.2% 18.6%, transparent 19%);
	opacity: 0.52;
}

.atc-home-globe {
	position: absolute;
	right: 9%;
	bottom: -248px;
	width: min(690px, 78vw);
	aspect-ratio: 1;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.78;
	background:
		radial-gradient(circle at 52% 48%, transparent 0 38%, rgba(0, 201, 167, 0.16) 39% 40%, transparent 41%),
		repeating-radial-gradient(circle at 50% 50%, rgba(0, 201, 167, 0.20) 0 1px, transparent 1px 54px),
		repeating-conic-gradient(from 10deg, rgba(0, 201, 167, 0.28) 0deg 1deg, transparent 1deg 16deg);
	filter: drop-shadow(0 0 48px rgba(0, 201, 167, 0.26));
	mask-image: linear-gradient(to top, #000 0 62%, transparent 88%);
}

.atc-home-globe::before,
.atc-home-globe::after {
	content: "";
	position: absolute;
	inset: 18%;
	border: 1px solid rgba(110, 231, 216, 0.26);
	border-radius: 50%;
}

.atc-home-globe::after {
	inset: 31%;
	border-color: rgba(0, 201, 167, 0.35);
}

.atc-home-hero__main,
.atc-home-start-panel {
	position: relative;
	z-index: 1;
}

.atc-home-hero h1 {
	max-width: 690px;
	margin: 0 0 22px;
	color: #ffffff;
	font-size: clamp(44px, 5.4vw, 66px);
	font-weight: 850;
	line-height: 0.96;
	letter-spacing: 0;
}

.atc-home-hero h1 span {
	color: var(--atc-accent);
}

.atc-home-hero__main > p {
	max-width: 650px;
	margin: 0;
	color: var(--atc-soft);
	font-size: 1rem;
	line-height: 1.72;
}

.atc-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 27px;
}

.atc-home-actions .atc-home-btn-primary {
	color: #00120f !important;
}

.atc-home-actions .atc-home-btn-secondary {
	color: #ffffff !important;
}

.atc-home-actions .atc-home-btn-primary:hover {
	filter: brightness(1.06) saturate(1.04);
}

.atc-home-actions .atc-home-btn-secondary:hover {
	border-color: rgba(124, 248, 231, 0.72);
	background:
		linear-gradient(135deg, rgba(124, 248, 231, 0.13), rgba(255, 255, 255, 0.07)),
		rgba(2, 15, 22, 0.86);
}

.atc-home-start-panel {
	align-self: center;
	width: 100%;
	min-height: 288px;
	padding: 26px;
	background:
		radial-gradient(circle at 90% 0%, rgba(0, 201, 167, 0.075), transparent 13rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
		var(--atc-panel-2);
	backdrop-filter: blur(10px);
}

.atc-home-start-list {
	display: grid;
	margin-top: 17px;
}

.atc-home-start-list a {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 18px;
	gap: 14px;
	align-items: center;
	min-height: 72px;
	border-top: 1px solid var(--atc-border);
	color: #ffffff;
}

.atc-home-start-visual {
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 16px;
	background:
		radial-gradient(circle at 50% 58%, rgba(0, 201, 167, 0.16), transparent 68%),
		transparent;
	box-shadow: none;
	overflow: visible;
}

.at-home-start-icon {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
	transform-origin: center;
	filter: drop-shadow(0 11px 20px rgba(0, 201, 167, 0.28));
	transition: transform 0.28s ease, filter 0.28s ease;
}

.atc-home-start-list .atc-home-icon,
.atc-home-start-visual {
	justify-self: center;
}

.atc-home-start-list b,
.atc-home-start-list small,
.atc-home-tool-row b,
.atc-home-tool-row small {
	display: block;
}

.atc-home-start-list b,
.atc-home-tool-row b {
	overflow: hidden;
	color: #ffffff;
	font-size: 0.95rem;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.atc-home-start-list small,
.atc-home-tool-row small,
.atc-home-route-card p,
.atc-home-map-card p,
.atc-home-feed-item p,
.atc-home-community-actions small,
.atc-home-brief-card small {
	color: var(--atc-muted);
	font-size: 0.84rem;
	line-height: 1.48;
}

.atc-home-start-list i,
.atc-home-panel-link,
.atc-home-route-card em,
.atc-home-tool-row em {
	color: var(--atc-accent);
	font-style: normal;
	font-weight: 850;
}

.atc-home-hero-intel {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 16px;
}

.atc-home-intel-feature-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.atc-home-feature-card {
	--atc-feature-bg-image: none;
	position: relative;
	display: grid;
	min-height: 212px;
	overflow: hidden;
	border: 1px solid rgba(150, 226, 219, 0.14);
	border-radius: 20px;
	background:
		radial-gradient(circle at 86% 0%, rgba(0, 201, 167, 0.08), transparent 13rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.010)),
		rgba(7, 30, 36, 0.48);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.036),
		0 16px 40px rgba(0, 0, 0, 0.16);
}

.atc-home-feature-card::before,
.atc-home-feature-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.atc-home-feature-card::before {
	background-image: var(--atc-feature-bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	filter: saturate(1.08) brightness(1.10) contrast(1.04);
	transform: scale(1.01);
	transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.atc-home-feature-card::after {
	background:
		linear-gradient(90deg, rgba(2, 17, 22, 0.76), rgba(2, 17, 22, 0.52) 56%, rgba(2, 17, 22, 0.34)),
		linear-gradient(180deg, rgba(2, 17, 22, 0.14), rgba(2, 17, 22, 0.62));
	opacity: 0.95;
}

.atc-home-feature-card--has-bg::before {
	opacity: 0.62;
}

.atc-home-feature-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-width: 0;
	min-height: 100%;
	padding: 18px;
}

.atc-home-feature-card h2 {
	display: -webkit-box;
	margin: 8px 0 5px;
	overflow: hidden;
	color: #ffffff;
	font-size: clamp(1.02rem, 1.25vw, 1.24rem);
	font-weight: 860;
	line-height: 1.16;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.56);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-feature-card p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: rgba(240, 250, 250, 0.84);
	font-size: 0.82rem;
	font-weight: 620;
	line-height: 1.42;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-feature-card time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.70);
	font-size: 0.72rem;
	font-weight: 740;
	line-height: 1.2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

.atc-home-feature-card time span {
	color: rgba(124, 248, 231, 0.76);
}

.atc-home-feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	margin-top: 12px;
	color: #7cf8e7;
	font-size: 0.82rem;
	font-weight: 900;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.atc-home-intelligence-layer {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	overflow: hidden;
	border: 1px solid rgba(150, 226, 219, 0.11);
	border-radius: 20px;
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.055), transparent 16rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
		rgba(7, 30, 36, 0.42);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.030),
		0 14px 34px rgba(0, 0, 0, 0.14);
}

.atc-home-intel-pulse,
.atc-home-latest-signal,
.atc-home-trust-strip {
	position: relative;
	overflow: hidden;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.atc-home-intel-pulse {
	display: grid;
	grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 0;
	padding: 20px 22px 8px;
	border-radius: 0;
}

.atc-home-intel-pulse::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(124, 248, 231, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(124, 248, 231, 0.045) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.06;
	mask-image: radial-gradient(circle at 28% 48%, #000 0, transparent 68%);
}

.atc-home-intel-pulse > * {
	position: relative;
	z-index: 1;
}

.atc-home-intel-pulse__head {
	display: grid;
	gap: 8px;
	padding-right: 4px;
}

.atc-home-intel-pulse__head > span:not(.atc-kicker),
.atc-home-latest-signal__top span:not(.atc-kicker):last-child {
	color: #d8eff0;
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1.35;
}

.atc-home-intel-pulse__head p {
	max-width: 28rem;
	margin: 0;
	color: rgba(233, 251, 248, 0.84);
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.52;
}

.atc-home-intel-pulse__head i {
	color: rgba(124, 248, 231, 0.72);
	font-style: normal;
}

.atc-home-intel-pulse__head small,
.atc-home-intel-pulse__head em {
	color: rgba(226, 249, 248, 0.64);
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.35;
}

.atc-home-pulse-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.atc-home-pulse-item {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 4px 8px;
	min-height: 60px;
	padding: 10px 12px;
	overflow: hidden;
	border: 1px solid rgba(185, 241, 233, 0.080);
	border-radius: 13px;
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.048), transparent 6rem),
		rgba(255, 255, 255, 0.012);
}

.atc-home-pulse-dot {
	grid-row: 1 / span 3;
	align-self: center;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--atc-accent);
	box-shadow: 0 0 12px rgba(0, 201, 167, 0.42);
}

.atc-home-pulse-item strong,
.atc-home-pulse-item b,
.atc-home-pulse-item small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: clip;
	white-space: normal;
}

.atc-home-pulse-item strong {
	grid-column: 2;
	color: #f8fffd;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.22;
}

.atc-home-pulse-item b {
	grid-column: 3;
	grid-row: 1 / span 2;
	align-self: center;
	color: rgba(124, 248, 231, 0.78);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0;
	text-align: right;
	text-shadow: none;
}

.atc-home-pulse-item small {
	grid-column: 2 / span 2;
	color: rgba(218, 238, 239, 0.72);
	font-size: 0.74rem;
	font-weight: 650;
	line-height: 1.28;
}

.atc-home-latest-signal {
	--atc-latest-bg-image: none;
	display: grid;
	align-content: center;
	gap: 7px;
	min-height: 128px;
	padding: 18px 20px;
	border-radius: 20px;
}

.atc-home-latest-signal::before,
.atc-home-latest-signal::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.atc-home-latest-signal::before {
	background-image: var(--atc-latest-bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	filter: saturate(1.06) brightness(1.04) contrast(1.03);
	transform: scale(1.01);
	transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.atc-home-latest-signal::after {
	background:
		linear-gradient(90deg, rgba(2, 17, 22, 0.91), rgba(2, 17, 22, 0.72) 62%, rgba(2, 17, 22, 0.52)),
		linear-gradient(180deg, rgba(2, 17, 22, 0.24), rgba(2, 17, 22, 0.74));
	opacity: 0.98;
}

.atc-home-latest-signal--has-bg::before {
	opacity: 0.34;
}

.atc-home-latest-signal > * {
	position: relative;
	z-index: 1;
}

.atc-home-latest-signal__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.atc-home-latest-signal__top span:not(.atc-kicker):last-child {
	padding: 4px 7px;
	border: 1px solid rgba(124, 248, 231, 0.20);
	border-radius: 999px;
	color: #9dfff4;
	background: rgba(0, 201, 167, 0.07);
	font-size: 0.64rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.atc-home-latest-signal h2 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #ffffff;
	font-size: clamp(0.98rem, 1.06vw, 1.08rem);
	font-weight: 840;
	line-height: 1.20;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-latest-signal p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: rgba(234, 247, 247, 0.78);
	font-size: 0.80rem;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-latest-signal__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.2;
}

.atc-home-latest-signal__meta span {
	color: rgba(124, 248, 231, 0.70);
}

.atc-home-latest-signal__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	color: #7cf8e7;
	font-size: 0.82rem;
	font-weight: 900;
}

.atc-home-trust-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px 9px;
	margin: 0;
	padding: 0 22px 18px;
	border-radius: 16px;
}

.atc-home-trust-strip span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 26px;
	padding: 4px 9px;
	border: 1px solid rgba(185, 241, 233, 0.075);
	border-radius: 999px;
	color: rgba(233, 251, 248, 0.82);
	background: rgba(255, 255, 255, 0.012);
	font-size: 0.74rem;
	font-weight: 730;
	line-height: 1.2;
	white-space: nowrap;
}

.atc-home-trust-strip span::before {
	content: "";
	width: 7px;
	height: 10px;
	border-right: 1.5px solid rgba(124, 248, 231, 0.88);
	border-bottom: 1.5px solid rgba(124, 248, 231, 0.88);
	transform: translateY(-1px) rotate(45deg);
}

.atc-icon-box,
.atc-home-icon {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border: 1px solid rgba(0, 201, 167, 0.45);
	border-radius: 13px;
	background: rgba(0, 201, 167, 0.08);
	box-shadow: inset 0 0 18px rgba(0, 201, 167, 0.035);
}

.atc-home-icon::before,
.atc-home-icon::after {
	content: "";
	position: absolute;
	border-color: var(--atc-accent);
}

.atc-home-icon::before {
	width: 18px;
	height: 18px;
	border: 2px solid var(--atc-accent);
	border-radius: 4px;
}

.atc-home-icon::after {
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--atc-accent);
	border-right: 2px solid var(--atc-accent);
	transform: rotate(45deg);
}

.atc-home-icon--tools::before,
.atc-home-icon--workflow::before {
	width: 20px;
	height: 12px;
	border-radius: 999px;
}

.atc-home-icon--book::before,
.atc-home-icon--guides::before {
	border-radius: 2px;
	border-left-width: 6px;
}

.atc-home-icon--chart::before,
.atc-home-icon--markets::before {
	width: 22px;
	height: 16px;
	border-top: 0;
	border-right: 0;
	border-radius: 0;
	transform: skewY(-18deg);
}

.atc-home-icon--news::before {
	border-radius: 2px;
}

.atc-home-icon--news::after {
	width: 14px;
	height: 2px;
	border: 0;
	background: var(--atc-accent);
	box-shadow: 0 6px 0 var(--atc-accent), 0 12px 0 var(--atc-accent);
	transform: none;
}

.atc-home-icon--automation::before {
	width: 18px;
	height: 18px;
	border-radius: 999px;
}

.atc-home-icon--forum::before,
.atc-home-icon--question::before,
.atc-home-icon--profile::before {
	border-radius: 999px;
}

.atc-home-icon--question::after {
	width: 8px;
	height: 8px;
	border: 2px solid var(--atc-accent);
	border-top-color: transparent;
	border-left-color: transparent;
	transform: rotate(-35deg);
}

.atc-home-icon--profile::after {
	width: 18px;
	height: 8px;
	border: 2px solid var(--atc-accent);
	border-top: 0;
	border-radius: 0 0 999px 999px;
	transform: translateY(10px);
}

.atc-home-section__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.atc-home-section__top .atc-home-section__intro {
	margin-bottom: 0;
}

.atc-home-section__top > a,
.atc-home-panel-link,
.atc-home-trust-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--atc-accent);
	font-size: 0.86rem;
	font-weight: 900;
}

.atc-home-section__top > a {
	white-space: nowrap;
}

	.atc-home-section__top > a span,
	.atc-home-panel-link span,
	.atc-home-feature-card__link span,
	.atc-home-route-card em span,
	.atc-home-map-card a i,
.atc-home-latest-signal__link span,
.atc-home-start-list i {
	display: inline-block;
	transition: transform 180ms ease;
}

.atc-home-section__intro {
	max-width: 760px;
	margin-bottom: 22px;
}

.atc-home-section__intro h2 {
	font-size: clamp(28px, 3.2vw, 40px);
}

.atc-home-route-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atc-home-route-card {
	display: flex;
	flex-direction: column;
	min-height: 218px;
	padding: 22px;
}

.atc-home-route-card .atc-home-icon {
	margin-bottom: 20px;
}

.atc-home-command-center .home-card-visual-icon,
.atc-home-command-center .at-home-card-icon-img {
	display: block;
	width: clamp(108px, 8vw, 140px);
	height: clamp(108px, 8vw, 140px);
	margin: -6px auto 30px;
	align-self: center;
	flex: 0 0 auto;
	object-fit: contain;
	transform-origin: center;
	image-rendering: auto;
	backface-visibility: hidden;
	filter: drop-shadow(0 14px 28px rgba(0, 201, 167, 0.32));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.atc-home-command-center .home-card:hover .home-card-visual-icon,
.atc-home-command-center .home-card:hover .at-home-card-icon-img {
	transform: translateY(-4px) scale(1.05);
	filter: drop-shadow(0 20px 38px rgba(0, 201, 167, 0.42));
}

.atc-home-route-card strong,
.atc-home-map-card h3,
.atc-home-topic-group h3 {
	color: #ffffff;
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.atc-home-route-card p {
	display: -webkit-box;
	margin: 10px 0 16px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.atc-home-route-card em {
	margin-top: auto;
	font-size: 0.86rem;
}

.atc-home-route-card--purple .atc-home-icon {
	border-color: rgba(139, 92, 246, 0.56);
	background: rgba(139, 92, 246, 0.17);
}

.atc-home-route-card--blue .atc-home-icon {
	border-color: rgba(45, 126, 255, 0.56);
	background: rgba(45, 126, 255, 0.17);
}

.atc-home-route-card--orange .atc-home-icon {
	border-color: rgba(255, 132, 54, 0.56);
	background: rgba(255, 132, 54, 0.17);
}

.atc-home-map-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
}

.atc-home-map {
	position: relative;
	overflow: hidden;
}

.atc-home-map::before,
.atc-home-map::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.atc-home-map::before {
	background:
		radial-gradient(circle at 50% 52%, rgba(0, 201, 167, 0.16), transparent 0.32rem, transparent 0.34rem),
		repeating-radial-gradient(circle at 50% 52%, rgba(124, 248, 231, 0.08) 0 1px, transparent 1px 88px),
		linear-gradient(90deg, rgba(124, 248, 231, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(124, 248, 231, 0.035) 1px, transparent 1px);
	background-size: auto, auto, 76px 76px, 76px 76px;
	opacity: 0.34;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 86%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 86%, transparent 100%);
}

.atc-home-map::after {
	background:
		linear-gradient(25deg, transparent 0 29%, rgba(0, 201, 167, 0.11) 29.2%, transparent 29.6%),
		linear-gradient(153deg, transparent 0 34%, rgba(124, 248, 231, 0.08) 34.2%, transparent 34.6%),
		linear-gradient(90deg, transparent 0 49.8%, rgba(0, 201, 167, 0.10) 50%, transparent 50.2%);
	opacity: 0.42;
}

.atc-home-map > * {
	position: relative;
	z-index: 1;
}

.atc-home-map-card {
	--at-home-hub-icon-size: 90px;
	position: relative;
	display: grid;
	grid-template-columns: calc(var(--at-home-hub-icon-size) + 2px) minmax(0, 1fr);
	grid-template-rows: auto auto 1fr;
	column-gap: 16px;
	min-height: 0;
	padding: 20px;
	overflow: hidden;
	text-align: left;
}

.atc-home-map-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 24% 24%, rgba(124, 248, 231, 0.10), transparent 5.5rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 45%);
	opacity: 0.62;
}

.atc-home-map-card > * {
	position: relative;
	z-index: 1;
}

.atc-home-map-card .atc-home-icon,
.atc-home-map-card .at-home-hub-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	justify-self: center;
	align-self: start;
}

.atc-home-map-card .atc-home-icon {
	margin: 0;
}

.at-home-hub-icon {
	display: block;
	width: var(--at-home-hub-icon-size);
	height: var(--at-home-hub-icon-size);
	margin: -6px auto 0;
	object-fit: contain;
	transform-origin: center;
	image-rendering: auto;
	backface-visibility: hidden;
	filter: drop-shadow(0 18px 32px rgba(0, 201, 167, 0.22));
	transition:
		transform 0.30s ease,
		filter 0.30s ease;
}

.home-hub-card:hover .at-home-hub-icon {
	transform:
		translateY(-4px)
		scale(1.05);
	filter:
		drop-shadow(0 24px 42px rgba(0, 201, 167, 0.38));
}

.atc-home-map-card h3,
.atc-home-topic-group h3 {
	margin: 0 0 10px;
}

.atc-home-map-card h3 {
	grid-column: 2;
	min-height: 0;
	margin-bottom: 6px;
}

.atc-home-map-card p {
	grid-column: 2;
	min-height: 3.85em;
	margin: 0 0 14px;
	overflow: visible;
}

.atc-home-map-card ul {
	grid-column: 1 / -1;
	margin-top: auto;
	border-top: 1px solid var(--atc-border);
}

.atc-home-map-card li + li,
.atc-home-topic-group a + a {
	border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.atc-home-map-card a,
.atc-home-topic-group a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 32px;
	color: var(--atc-soft);
	font-size: 0.86rem;
	line-height: 1.25;
}

.atc-home-map-card a span,
.atc-home-topic-group a span {
	display: none;
}

.atc-home-map-card a i {
	color: var(--atc-muted-2);
	font-style: normal;
}

.atc-home-signal-row,
.atc-home-utility-row {
	align-items: stretch;
}

.atc-home-signal-row {
	grid-template-columns: 1fr;
}

.atc-home-utility-row {
	grid-template-columns: 1fr;
	gap: 18px;
}

.atc-home-feed-panel,
.atc-home-tools-panel,
.atc-home-market-panel,
.atc-home-community-card,
.atc-home-brief-card,
.atc-home-trust-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.atc-home-feed-panel {
	border-radius: 24px;
}

.atc-home-panel-head {
	margin-bottom: 18px;
}

.atc-home-feed-panel .atc-home-panel-head,
.atc-home-tools-panel .atc-home-panel-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
	max-width: none;
}

.atc-home-feed-panel .atc-home-panel-head h2,
.atc-home-tools-panel .atc-home-panel-head h2 {
	font-size: clamp(1.38rem, 1.95vw, 1.82rem);
	font-weight: 810;
}

.atc-home-feed-panel .atc-home-panel-head p,
.atc-home-tools-panel .atc-home-panel-head p {
	color: #c3d7d9;
	line-height: 1.48;
}

.atc-home-section-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	justify-self: end;
	padding: 5px 9px;
	border: 1px solid rgba(124, 248, 231, 0.18);
	border-radius: 999px;
	color: #b9fff4;
	background: rgba(0, 201, 167, 0.065);
	font-size: 0.64rem;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.atc-home-section-status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 0 12px rgba(124, 248, 231, 0.45);
	opacity: 0.82;
}

.atc-home-tabs {
	display: flex;
	gap: 18px;
	padding-bottom: 12px;
	margin-bottom: 13px;
	border-bottom: 1px solid var(--atc-border);
}

.atc-home-tabs span + span {
	color: var(--atc-muted);
}

.atc-home-feed-list,
.atc-home-tool-list,
.atc-home-market-list {
	display: grid;
	gap: 12px;
}

.atc-home-tool-list {
	gap: clamp(12px, 1.2vw, 16px);
}

.atc-home-feed-list {
	gap: 12px;
}

.atc-home-market-list {
	gap: clamp(14px, 1.4vw, 18px);
}

.atc-home-signal-row .atc-home-panel {
	padding: clamp(20px, 2.2vw, 28px);
}

.atc-home-signal-row .atc-home-panel-head {
	max-width: 720px;
}

.atc-home-signal-row .atc-home-feed-panel .atc-home-panel-head {
	max-width: none;
}

.atc-home-feed-item {
	--atc-feed-bg-image: none;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: end;
	min-height: 168px;
	padding: 17px;
	overflow: hidden;
	border: 1px solid rgba(185, 241, 233, 0.12);
	border-radius: 16px;
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.055), transparent 8rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.010)),
		var(--atc-card);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.atc-home-feed-item::before,
.atc-home-feed-item::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.atc-home-feed-item::before {
	background-image: var(--atc-feed-bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	filter: saturate(1.08) brightness(1.12) contrast(1.04);
	transform: scale(1.01);
	transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.atc-home-feed-item::after {
	background:
		linear-gradient(90deg, rgba(2, 17, 22, 0.80), rgba(2, 17, 22, 0.56) 58%, rgba(2, 17, 22, 0.34)),
		linear-gradient(180deg, rgba(2, 17, 22, 0.10), rgba(2, 17, 22, 0.64));
	opacity: 0.92;
}

.atc-home-feed-item--has-bg::before {
	opacity: 0.64;
}

.atc-home-feed-item--featured {
	border-color: rgba(124, 248, 231, 0.22);
	background:
		radial-gradient(circle at 88% 0%, rgba(0, 201, 167, 0.10), transparent 9rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.012)),
		var(--atc-card);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 14px 34px rgba(0, 0, 0, 0.16);
}

.atc-home-feed-item--featured.atc-home-feed-item--has-bg::before {
	opacity: 0.70;
}

.atc-home-feed-body {
	position: relative;
	z-index: 1;
	min-width: 0;
	max-width: min(100%, 28rem);
}

.atc-home-feed-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 3px 6px;
	border: 1px solid rgba(124, 248, 231, 0.16);
	border-radius: 7px;
	background: rgba(0, 201, 167, 0.07);
}

.atc-home-feed-item h3 {
	display: -webkit-box;
	margin: 6px 0 3px;
	overflow: hidden;
	color: #ffffff;
	font-size: clamp(0.98rem, 1.05vw, 1.1rem);
	font-weight: 850;
	line-height: 1.14;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-feed-item p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.82rem;
	line-height: 1.36;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.50);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-feed-item time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.76);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.atc-home-panel-link {
	margin-top: auto;
	padding-top: 18px;
}

.atc-home-feed-panel .atc-home-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	color: #7cf8e7;
	font-weight: 900;
	letter-spacing: 0;
	border-bottom: 1px solid rgba(124, 248, 231, 0);
}

.atc-home-feed-panel .atc-home-panel-link span {
	transition: transform 160ms ease;
}

.atc-home-feed-panel .atc-home-panel-link:hover {
	border-bottom-color: rgba(124, 248, 231, 0.42);
}

.atc-home-tool-row,
.atc-home-market-row {
	display: grid;
	align-items: center;
	border: 0;
	border-radius: 12px;
	background: transparent;
}

.atc-home-tool-row {
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	align-content: space-between;
	gap: 14px;
	min-height: 184px;
	padding: 17px;
	border: 1px solid rgba(124, 248, 231, 0.18);
	border-radius: 20px;
	background:
		radial-gradient(circle at 88% 0%, rgba(0, 201, 167, 0.16), transparent 8rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 -1px 0 rgba(0, 201, 167, 0.045),
		0 18px 38px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.atc-home-tool-row::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, transparent 0%, rgba(124, 248, 231, 0.08) 45%, transparent 70%);
	opacity: 0;
	transform: translateX(-28%);
	transition: opacity 180ms ease, transform 260ms ease;
	pointer-events: none;
}

.atc-home-tool-row:hover {
	transform: translateY(-4px);
	border-color: rgba(124, 248, 231, 0.44);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		0 28px 58px rgba(0, 201, 167, 0.15),
		0 20px 46px rgba(0, 0, 0, 0.26);
}

.atc-home-tool-row:hover::before {
	opacity: 1;
	transform: translateX(18%);
}

.atc-home-tool-row__top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.atc-home-tool-title {
	min-width: 0;
}

.atc-home-tools-panel .atc-home-tool-list,
.atc-home-market-panel .atc-home-market-list {
	align-content: start;
}

.atc-home-tool-logo {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(124, 248, 231, 0.26);
	border-radius: 15px;
	color: var(--atc-accent);
	background:
		radial-gradient(circle at 50% 30%, rgba(124, 248, 231, 0.32), transparent 62%),
		linear-gradient(145deg, rgba(0, 201, 167, 0.18), rgba(0, 201, 167, 0.06));
	font-weight: 950;
	box-shadow: 0 14px 32px rgba(0, 201, 167, 0.18);
	overflow: hidden;
}

.atc-home-tool-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 7px;
}

.atc-home-tool-row small {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-tool-row em {
	max-width: 96px;
	padding: 5px 8px;
	border: 1px solid rgba(124, 248, 231, 0.22);
	border-radius: 999px;
	color: #8dfbef;
	background: rgba(0, 201, 167, 0.08);
	font-size: 0.86rem;
	font-style: normal;
	font-weight: 850;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.atc-home-tool-row__metrics {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	padding-top: 2px;
}

.atc-home-tool-rating,
.atc-home-tool-score,
.atc-home-tool-row__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.atc-home-tool-rating {
	min-height: 32px;
	padding: 7px 9px;
	border: 1px solid rgba(124, 248, 231, 0.12);
	border-radius: 13px;
	color: rgba(124, 248, 231, 0.88);
	background: rgba(0, 201, 167, 0.045);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.03em;
}

.atc-home-tool-rating span {
	color: #7cf8e7;
	letter-spacing: 0.06em;
	text-shadow: 0 0 14px rgba(0, 201, 167, 0.30);
}

.atc-home-tool-rating strong {
	color: #ffffff;
	font-size: 0.9rem;
	letter-spacing: 0;
}

.atc-home-tool-score {
	display: grid;
	grid-template-columns: auto minmax(42px, 1fr) auto;
	color: rgba(235, 255, 252, 0.78);
	font-size: 0.78rem;
	font-weight: 850;
	min-width: 0;
}

.atc-home-tool-score__label {
	color: rgba(235, 255, 252, 0.62);
	white-space: nowrap;
}

.atc-home-tool-score__bar {
	position: relative;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.atc-home-tool-score__bar i {
	position: absolute;
	inset: 0 auto 0 0;
	border-radius: inherit;
	background: linear-gradient(90deg, #00c9a7, #7cf8e7);
	box-shadow: 0 0 20px rgba(0, 201, 167, 0.32);
}

.atc-home-tool-score__value {
	color: #f8fffd;
	white-space: nowrap;
}

.atc-home-tool-row__footer {
	position: relative;
	z-index: 1;
	padding-top: 11px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(235, 255, 252, 0.60);
	font-size: 0.78rem;
	font-weight: 850;
	white-space: nowrap;
}

.atc-home-tool-row__footer strong {
	color: #7cf8e7;
	font-size: 0.82rem;
}

.atc-home-tool-row__footer strong span {
	display: inline-block;
	transition: transform 180ms ease;
}

.atc-home-tool-row:hover .atc-home-tool-row__footer strong span {
	transform: translateX(3px);
}

.atc-home-tool-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 201, 167, 0.30);
	border-radius: 18px;
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.135), transparent 12rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
		rgba(6, 27, 33, 0.72);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		0 18px 42px rgba(0, 0, 0, 0.16);
	transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.atc-home-tool-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(124, 248, 231, 0.030) 1px, transparent 1px),
		linear-gradient(180deg, rgba(124, 248, 231, 0.024) 1px, transparent 1px);
	background-size: 38px 38px;
	opacity: 0.36;
}

.atc-home-tool-card > * {
	position: relative;
	z-index: 1;
}

.atc-home-tool-card:hover {
	transform: translateY(-4px);
	border-color: rgba(124, 248, 231, 0.62);
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.20), transparent 13rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.018)),
		rgba(9, 38, 45, 0.86);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 24px 54px rgba(0, 201, 167, 0.13),
		0 18px 44px rgba(0, 0, 0, 0.20);
}

.atc-home-tool-card__rank-row {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 25px;
	margin-bottom: 12px;
}

.atc-home-tool-card__rank,
.atc-home-tool-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 201, 167, 0.34);
	border-radius: 8px;
	font-size: 0.72rem;
	font-weight: 950;
	line-height: 1;
}

.atc-home-tool-card__rank {
	width: 25px;
	height: 25px;
	color: #032026;
	background: linear-gradient(135deg, rgba(32, 230, 202, 0.96), rgba(138, 255, 242, 0.78));
	box-shadow: 0 12px 24px rgba(0, 201, 167, 0.22);
}

.atc-home-tool-card__badge {
	min-height: 25px;
	padding: 6px 8px;
	color: #8afff2;
	background: rgba(0, 201, 167, 0.105);
	text-transform: uppercase;
	letter-spacing: 0.055em;
}

.atc-home-tool-card__header {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.atc-home-tool-card__logo {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(124, 248, 231, 0.34);
	border-radius: 15px;
	color: #7cf8e7;
	background:
		radial-gradient(circle at 45% 25%, rgba(124, 248, 231, 0.24), transparent 58%),
		rgba(0, 201, 167, 0.10);
	font-size: 0.9rem;
	font-weight: 950;
	box-shadow: 0 14px 28px rgba(0, 201, 167, 0.14);
	overflow: hidden;
}

.atc-home-tool-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.atc-home-tool-card__identity {
	min-width: 0;
}

.atc-home-tool-card__identity h3 {
	margin: 0;
	color: #f5fffd;
	font-size: clamp(1rem, 1.14vw, 1.16rem);
	font-weight: 950;
	line-height: 1.14;
}

.atc-home-tool-card__identity h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-tool-card__identity h3 a:hover {
	color: #7cf8e7;
}

.atc-home-tool-card__identity p {
	margin: 3px 0 0;
	color: #7cf8e7;
	font-size: 0.78rem;
	font-weight: 860;
	line-height: 1.2;
}

.atc-home-tool-card__stars {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 7px;
	color: rgba(235, 255, 252, 0.70);
	font-size: 0.78rem;
	font-weight: 850;
}

.atc-home-tool-stars {
	display: inline-flex;
	gap: 1px;
	color: rgba(217, 239, 236, 0.28);
	line-height: 1;
}

.atc-home-tool-stars span {
	font-size: 0.84rem;
}

.atc-home-tool-stars .is-filled {
	color: #ffd45e;
	text-shadow: 0 0 14px rgba(255, 212, 94, 0.24);
}

.atc-home-tool-card__score {
	display: grid;
	place-items: center;
	min-width: 56px;
	min-height: 56px;
	padding: 8px;
	border: 1px solid rgba(124, 248, 231, 0.40);
	border-radius: 14px;
	background: rgba(0, 201, 167, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.atc-home-tool-card__score strong {
	color: #7cf8e7;
	font-size: 1.55rem;
	font-weight: 950;
	line-height: 0.9;
}

.atc-home-tool-card__score span {
	color: rgba(235, 255, 252, 0.86);
	font-size: 0.68rem;
	font-weight: 850;
}

.atc-home-tool-card__summary {
	display: -webkit-box;
	min-height: 2.75em;
	margin: 13px 0 0;
	overflow: hidden;
	color: rgba(235, 255, 252, 0.88);
	font-size: 0.86rem;
	font-weight: 650;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-tool-card__factors {
	display: grid;
	gap: 7px;
	margin-top: 13px;
	padding-top: 11px;
	border-top: 1px solid rgba(150, 226, 219, 0.13);
}

.atc-home-tool-factor {
	display: grid;
	grid-template-columns: minmax(78px, 1fr) minmax(64px, 86px) 2.1rem;
	gap: 8px;
	align-items: center;
	color: rgba(235, 255, 252, 0.86);
	font-size: 0.71rem;
	font-weight: 820;
	line-height: 1.08;
}

.atc-home-tool-factor__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.atc-home-tool-factor__segments {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 2px;
}

.atc-home-tool-factor__segments i {
	display: block;
	height: 7px;
	border-radius: 2px;
	background: rgba(150, 226, 219, 0.13);
}

.atc-home-tool-factor__segments i.is-active {
	background: linear-gradient(180deg, #7cf8e7, #00c9a7);
	box-shadow: 0 0 10px rgba(0, 201, 167, 0.22);
}

.atc-home-tool-factor__score {
	color: rgba(235, 255, 252, 0.88);
	text-align: right;
	font-size: 0.7rem;
	font-weight: 900;
}

.atc-home-tool-card__best-for {
	display: -webkit-box;
	margin: 12px 0 0;
	overflow: hidden;
	color: #7cf8e7;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.34;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-tool-card__best-for span {
	display: block;
	color: rgba(235, 255, 252, 0.82);
	font-size: 0.72rem;
}

.atc-home-tool-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 11px;
}

.atc-home-tool-card__chips span {
	max-width: 100%;
	padding: 6px 8px;
	overflow: hidden;
	border: 1px solid rgba(0, 201, 167, 0.26);
	border-radius: 999px;
	color: #7cf8e7;
	background: rgba(0, 201, 167, 0.08);
	font-size: 0.69rem;
	font-weight: 850;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.atc-home-tool-card__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: auto;
	padding-top: 15px;
}

.atc-home-tool-card__actions.has-visit-cta {
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
}

.atc-home-tool-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 10px 11px;
	border: 1px solid rgba(124, 248, 231, 0.28);
	border-radius: 11px;
	color: #f5fffd;
	background: rgba(3, 18, 24, 0.62);
	font-size: 0.78rem;
	font-weight: 950;
	line-height: 1.15;
	text-align: center;
	transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.atc-home-tool-card__button--review {
	overflow-wrap: anywhere;
}

.atc-home-tool-card__button--visit {
	border-color: rgba(190, 255, 247, 0.80);
	color: #00120f !important;
	background: linear-gradient(135deg, #20e6ca 0%, #8afff2 100%);
	text-shadow: none;
}

.atc-home-tool-card__button:hover {
	transform: translateY(-2px);
	border-color: rgba(124, 248, 231, 0.62);
	background: rgba(9, 38, 45, 0.86);
}

.atc-home-tool-card__button--visit:hover {
	color: #00120f !important;
	background: linear-gradient(135deg, #6dffed 0%, #cffff8 100%);
}

.atc-home-market-row {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(46px, auto) 82px minmax(0, 1fr);
	gap: 14px;
	min-height: 256px;
	padding: 19px 18px 18px;
	overflow: hidden;
	border: 1px solid rgba(185, 241, 233, 0.14);
	border-radius: 18px;
	color: #18f0d2;
	background:
		radial-gradient(circle at 86% 0%, rgba(0, 201, 167, 0.12), transparent 8.5rem),
		linear-gradient(155deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.014) 46%, rgba(0, 201, 167, 0.030)),
		var(--atc-card);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 18px 44px rgba(0, 0, 0, 0.16);
}

.atc-home-market-row::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.32;
}

.atc-home-market-row__top,
.atc-home-market-row__bottom,
.atc-home-market-sparkline {
	position: relative;
	z-index: 1;
}

.atc-home-market-row__top,
.atc-home-market-row__bottom {
	display: grid;
	align-items: flex-start;
	gap: 10px;
}

.atc-home-market-row__top {
	grid-template-columns: minmax(0, 1fr) auto;
}

.atc-home-market-row__bottom {
	align-self: end;
	grid-template-columns: 1fr;
	gap: 8px;
}

.atc-home-market-row__label {
	color: #f4fffc;
	font-size: clamp(0.95rem, 1vw, 1.08rem);
	font-weight: 850;
	line-height: 1.16;
	text-wrap: balance;
}

.atc-home-market-row__period {
	justify-self: end;
	padding: 5px 8px;
	border: 1px solid rgba(124, 248, 231, 0.22);
	border-radius: 999px;
	color: #8dfbef;
	background: rgba(0, 201, 167, 0.08);
	font-size: 0.66rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.06em;
}

.atc-home-market-row strong {
	color: #31f7dc;
	font-size: clamp(1.08rem, 1.25vw, 1.24rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
	text-shadow: 0 0 18px rgba(0, 201, 167, 0.28);
	text-wrap: balance;
}

.atc-home-market-row small {
	max-width: none;
	color: #d8eff0;
	font-size: clamp(0.76rem, 0.76vw, 0.82rem);
	font-weight: 680;
	line-height: 1.38;
	text-align: left;
}

.atc-home-market-row--negative strong {
	color: var(--atc-danger);
	text-shadow: 0 0 18px rgba(255, 107, 107, 0.24);
}

.atc-home-market-row--negative {
	color: var(--atc-danger);
}

.atc-home-market-row--negative .atc-home-market-row__period {
	border-color: rgba(255, 107, 107, 0.26);
	color: #ff9c9c;
	background: rgba(255, 107, 107, 0.08);
}

.atc-home-market-row--neutral {
	color: #44f4e2;
}

.atc-home-market-row--neutral strong {
	color: #f4fffc;
	font-size: clamp(1.05rem, 1.45vw, 1.22rem);
	text-shadow: 0 0 16px rgba(0, 201, 167, 0.20);
}

.atc-home-market-row--neutral .atc-home-market-row__period {
	color: #b7fff5;
}

.atc-home-market-sparkline {
	display: block;
	width: 100%;
	height: 82px;
	color: currentColor;
	padding: 6px 0;
	border-top: 1px solid rgba(220, 255, 250, 0.075);
	border-bottom: 1px solid rgba(220, 255, 250, 0.075);
	border-radius: 13px;
	background:
		linear-gradient(180deg, rgba(0, 201, 167, 0.055), rgba(0, 201, 167, 0.012)),
		rgba(0, 0, 0, 0.08);
}

.atc-home-market-gridline {
	fill: none;
	stroke: rgba(255, 255, 255, 0.105);
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.atc-home-market-area {
	opacity: 0.9;
}

.atc-home-market-line {
	fill: none;
	stroke: currentColor;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
	filter: drop-shadow(0 0 7px currentColor);
}

.atc-home-market-dot {
	fill: #06151c;
	stroke: currentColor;
	stroke-width: 3;
	vector-effect: non-scaling-stroke;
}

.atc-home-community-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
}

.atc-home-community-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
	gap: 24px;
	align-items: start;
}

.atc-home-community-card .atc-home-panel-head {
	margin-bottom: 0;
}

.atc-home-community-card .atc-home-community-actions {
	margin-top: 0;
	padding-top: 0;
}

.atc-home-community-actions a {
	display: grid;
	justify-items: center;
	gap: 8px;
	min-height: 132px;
	padding: 16px 14px;
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.025);
	text-align: center;
}

.atc-home-community-actions b {
	color: #ffffff;
	font-size: 0.94rem;
	line-height: 1.2;
}

.atc-home-community-actions small {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.atc-home-brief-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px 28px;
	align-items: center;
}

.atc-home-mail-icon {
	display: none;
}

.atc-home-mail-icon::before {
	content: none;
}

.atc-home-brief-card .atc-home-panel-head {
	max-width: 760px;
	margin-bottom: 0;
}

.atc-home-brief-card .atc-home-btn {
	align-self: center;
	justify-self: end;
	margin-top: 0;
	color: #001b16;
	text-shadow: none;
	background: linear-gradient(135deg, #20e6ca 0%, #82fff0 100%);
}

.atc-home-brief-card small {
	display: block;
	grid-column: 1;
	margin-top: 4px;
	color: #d4e8e8;
}

.atc-home-trust-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr) minmax(260px, 0.9fr);
	gap: 22px;
	align-items: start;
}

.atc-home-trust-card .atc-home-panel-head {
	margin-bottom: 0;
}

.atc-home-trust-card ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.atc-home-trust-card li {
	position: relative;
	padding-left: 22px;
	color: var(--atc-soft);
	font-size: 0.92rem;
	line-height: 1.45;
}

.atc-home-trust-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.42em;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--atc-accent);
	border-bottom: 2px solid var(--atc-accent);
	transform: rotate(45deg);
}

.atc-home-trust-links {
	display: grid;
	gap: 8px;
	margin-top: 0;
	padding-top: 0;
}

.atc-home-trust-links a {
	justify-content: space-between;
	min-height: 32px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.atc-home-topic-layer {
	padding-bottom: 34px;
	background:
		radial-gradient(circle at 88% 0%, rgba(0, 201, 167, 0.075), transparent 18rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
		var(--atc-panel);
}

.atc-home-topic-layer .atc-home-section__intro {
	max-width: 760px;
	margin-bottom: 28px;
}

.atc-home-topic-layer .atc-home-section__intro h2 {
	color: #ffffff;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 860;
	line-height: 1.05;
}

.atc-home-topic-layer .atc-home-section__intro p {
	max-width: 620px;
	color: #d4e8e8;
	font-size: 1rem;
	line-height: 1.55;
}

.atc-home-topic-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 24px;
}

.atc-home-topic-group {
	padding: 22px 24px;
	border-color: rgba(205, 245, 240, 0.15);
	background:
		radial-gradient(circle at 88% 0%, rgba(0, 201, 167, 0.05), transparent 10rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.010)),
		var(--atc-card);
}

.atc-home-topic-group h3 {
	margin-bottom: 14px;
	color: #5af7e4;
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
	font-weight: 840;
	line-height: 1.12;
}

.atc-home-topic-group a {
	min-height: 38px;
	padding: 9px 0;
	color: #eefdf9;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.25;
}

.atc-home-mini-footer {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	min-height: 64px;
	color: var(--atc-muted);
	font-size: 0.80rem;
}

.atc-home-mini-footer nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px 22px;
	flex-wrap: wrap;
}

.atc-home-mini-footer a {
	color: var(--atc-soft);
}

.atc-home-debug {
	margin-top: 20px;
	padding: 16px;
	border: 1px solid var(--atc-border-strong);
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.35);
}

.atc-home-debug pre {
	max-height: 360px;
	overflow: auto;
	white-space: pre-wrap;
}

.atc-home-nav__links a:hover,
.atc-home-panel-link:hover,
.atc-home-map-card a:hover,
.atc-home-topic-group a:hover,
.atc-home-trust-links a:hover,
.atc-home-mini-footer a:hover {
	color: var(--atc-accent-2);
}

@media (hover: hover) and (pointer: fine) {
	.atc-home-hero,
	.atc-home-feature-card,
	.atc-home-intelligence-layer,
	.atc-home-intel-pulse,
	.atc-home-latest-signal,
	.atc-home-trust-strip span,
	.atc-home-pulse-item,
	.atc-home-route-card,
	.atc-home-map-card,
	.atc-home-feed-item,
	.atc-home-panel,
	.atc-home-btn,
	.atc-home-market-row,
	.atc-home-community-actions a,
	.atc-home-topic-group {
		transition: border-color 180ms ease, background 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
		will-change: transform;
	}

	.atc-home-feature-card:hover {
		border-color: rgba(92, 255, 235, 0.26);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.05),
			0 22px 52px rgba(0, 0, 0, 0.22),
			0 0 34px rgba(0, 201, 167, 0.09);
		transform: translateY(-3px);
	}

	.atc-home-feature-card:hover::before {
		opacity: 0.74;
		filter: saturate(1.14) brightness(1.13) contrast(1.05);
		transform: scale(1.045);
	}

	.atc-home-feature-card__link:hover span {
		transform: translateX(3px);
	}

	.atc-home-intelligence-layer:hover {
		border-color: rgba(92, 255, 235, 0.22);
		background:
			radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.075), transparent 15rem),
			linear-gradient(145deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.010)),
			rgba(7, 30, 36, 0.52);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.038),
			0 18px 44px rgba(0, 0, 0, 0.18),
			0 0 32px rgba(0, 201, 167, 0.07);
		transform: translateY(-1px);
	}

	.atc-home-pulse-item:hover,
	.atc-home-trust-strip span:hover {
		border-color: rgba(92, 255, 235, 0.20);
		background: rgba(0, 201, 167, 0.030);
		transform: translateY(-1px);
	}

	.atc-home-hero:hover {
		border-color: rgba(92, 255, 235, 0.36);
		background:
			radial-gradient(circle at 70% 82%, rgba(0, 201, 167, 0.26), transparent 23rem),
			radial-gradient(circle at 18% 12%, rgba(110, 231, 216, 0.10), transparent 18rem),
			linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
			var(--atc-panel);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.06),
			0 34px 86px rgba(0, 0, 0, 0.28),
			0 0 62px rgba(0, 201, 167, 0.11);
		transform: translateY(-2px);
	}

	.atc-home-route-card:hover,
	.atc-home-map-card:hover,
	.atc-home-feed-item:hover,
	.atc-home-market-row:hover,
	.atc-home-community-actions a:hover,
	.atc-home-topic-group:hover {
		border-color: var(--atc-border-strong);
		background:
			radial-gradient(circle at 50% -10%, rgba(0, 201, 167, 0.14), transparent 14rem),
			linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
			var(--atc-card-hover);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.065),
			0 22px 56px rgba(0, 0, 0, 0.24),
			0 0 0 1px rgba(0, 201, 167, 0.10),
			0 0 44px rgba(0, 201, 167, 0.13);
		transform: translateY(-5px);
	}

	.atc-home-panel:hover {
		border-color: rgba(92, 255, 235, 0.34);
		background:
			radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.105), transparent 18rem),
			linear-gradient(145deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.014)),
			var(--atc-panel);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.055),
			0 30px 82px rgba(0, 0, 0, 0.27),
			0 0 52px rgba(0, 201, 167, 0.10);
		transform: translateY(-3px);
	}

	.atc-home-feed-item:hover {
		border-color: rgba(124, 248, 231, 0.28);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.07),
			0 22px 56px rgba(0, 0, 0, 0.24),
			0 0 38px rgba(0, 201, 167, 0.12);
	}

	.atc-home-feed-item:hover::before {
		opacity: 0.76;
		filter: saturate(1.16) brightness(1.16) contrast(1.06);
		transform: scale(1.06);
	}

	.atc-home-latest-signal--has-bg:hover::before {
		opacity: 0.42;
		filter: saturate(1.10) brightness(1.07) contrast(1.04);
		transform: scale(1.035);
	}

	.atc-home-feed-item:hover h3 {
		color: #ffffff;
	}

	.atc-home-start-list a:hover .at-home-start-icon {
		transform: translateY(-3px) scale(1.05);
		filter: drop-shadow(0 15px 28px rgba(0, 201, 167, 0.42));
	}

	.atc-home-feed-panel .atc-home-panel-link:hover span {
		transform: translateX(3px);
	}

	.atc-home-route-card:hover em span,
	.atc-home-map-card a:hover i,
	.atc-home-section__top > a:hover span,
	.atc-home-latest-signal__link:hover span,
	.atc-home-start-list a:hover i {
		transform: translateX(4px);
	}

	.atc-home-market-row:hover {
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.07),
			0 24px 62px rgba(0, 0, 0, 0.24),
			0 0 0 1px rgba(0, 201, 167, 0.10),
			0 0 46px rgba(0, 201, 167, 0.14);
	}

	.atc-home-btn:hover {
		filter: brightness(1.08);
		transform: translateY(-1px);
	}

	.atc-home-command-center .home-hub-card.atc-home-map-card:hover {
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.07),
			0 24px 58px rgba(0, 0, 0, 0.22),
			0 0 46px rgba(0, 201, 167, 0.15);
	}
}

@media (prefers-reduced-motion: reduce) {
	.atc-home-command-center,
	.atc-home-command-center *,
	.atc-home-command-center *::before,
	.atc-home-command-center *::after {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

@media (min-width: 1380px) {
	.atc-home-shell,
	.atc-home-debug {
		width: min(1280px, 100%);
	}
}

@media (min-width: 1121px) {
	.atc-home-map-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.atc-home-map-card {
		min-height: 0;
	}

	.atc-home-map-card h3 {
		max-width: 20rem;
	}

	.atc-home-feed-panel .atc-home-feed-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.atc-home-feed-panel .atc-home-feed-item {
		grid-template-columns: minmax(0, 1fr);
		min-height: 176px;
		padding: 17px;
		border: 1px solid rgba(185, 241, 233, 0.12);
		border-radius: 16px;
		background:
			radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.055), transparent 8rem),
			linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
			var(--atc-card);
	}

	.atc-home-feed-panel .atc-home-feed-item--featured {
		min-height: 184px;
	}

	.atc-home-tools-panel .atc-home-tool-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.atc-home-tools-panel .atc-home-tool-card {
		min-height: 430px;
	}

	.atc-home-tools-panel .atc-home-tool-row {
		min-height: 190px;
	}

	.atc-home-market-panel .atc-home-market-list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.atc-home-market-panel .atc-home-market-row {
		min-height: 260px;
	}

	.atc-home-market-panel .atc-home-market-row strong {
		font-size: clamp(1.08rem, 1.1vw, 1.22rem);
	}
}

@media (max-width: 1120px) {
	.atc-home-nav {
		grid-template-columns: 1fr;
		padding: 14px 0;
	}

	.atc-home-nav__links,
	.atc-home-nav__actions {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.atc-home-hero {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.atc-home-start-panel {
		max-width: 620px;
	}

	.atc-home-hero-intel {
		grid-template-columns: 1fr;
	}

	.atc-home-intel-feature-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.atc-home-intel-feature-row .atc-home-feature-card:nth-child(3) {
		grid-column: 1 / -1;
	}

	.atc-home-intel-pulse {
		grid-template-columns: 1fr;
	}

	.atc-home-intel-pulse__head {
		padding-right: 0;
		padding-bottom: 12px;
		border-right: 0;
		border-bottom: 1px solid rgba(150, 226, 219, 0.10);
	}

	.atc-home-pulse-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.atc-home-route-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.atc-home-map-card {
		--at-home-hub-icon-size: 78px;
	}

	.atc-home-map-grid,
	.atc-home-topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.atc-home-signal-row,
	.atc-home-utility-row {
		grid-template-columns: 1fr;
	}

	.atc-home-feed-panel,
	.atc-home-tools-panel,
	.atc-home-market-panel,
	.atc-home-community-card,
	.atc-home-brief-card,
	.atc-home-trust-card {
		min-height: 0;
	}

	.atc-home-feed-panel .atc-home-panel-head,
	.atc-home-tools-panel .atc-home-panel-head {
		grid-template-columns: 1fr;
	}

	.atc-home-section-status {
		justify-self: start;
	}

	.atc-home-trust-card {
		grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
	}

	.atc-home-trust-links {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.atc-home-command-center {
		padding: 12px 12px 24px;
	}

	.atc-home-hero {
		min-height: 0;
		padding: 30px 20px 22px;
		border-radius: 22px;
	}

	.atc-home-hero h1 {
		font-size: clamp(38px, 12vw, 46px);
		line-height: 0.98;
	}

	.atc-home-hero__main > p {
		font-size: 0.96rem;
		line-height: 1.62;
	}

	.atc-home-globe {
		right: -28%;
		bottom: -180px;
		width: 560px;
		opacity: 0.42;
	}

	.atc-home-actions,
	.atc-home-btn,
	.atc-home-nav__actions .atc-home-btn {
		width: 100%;
	}

	.atc-home-start-panel,
	.atc-home-panel {
		border-radius: 20px;
		padding: 20px;
	}

	.atc-home-start-list a {
		grid-template-columns: 48px minmax(0, 1fr) 18px;
		min-height: 68px;
	}

	.atc-home-start-visual {
		width: 48px;
		height: 48px;
	}

	.at-home-start-icon {
		width: 44px;
		height: 44px;
	}

	.atc-home-hero-intel {
		gap: 12px;
		margin-top: 12px;
	}

	.atc-home-intel-feature-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.atc-home-intel-feature-row .atc-home-feature-card:nth-child(3) {
		grid-column: auto;
	}

	.atc-home-feature-card {
		min-height: 188px;
		border-radius: 18px;
	}

	.atc-home-feature-card__body {
		padding: 16px;
	}

	.atc-home-intel-pulse,
	.atc-home-latest-signal {
		min-height: 0;
		border-radius: 18px;
	}

	.atc-home-intelligence-layer {
		border-radius: 18px;
	}

	.atc-home-intel-pulse {
		padding: 16px 16px 8px;
	}

	.atc-home-pulse-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.atc-home-pulse-item {
		min-height: 54px;
	}

	.atc-home-pulse-item b {
		font-size: 1.05rem;
	}

	.atc-home-trust-strip {
		justify-content: flex-start;
		padding: 0 16px 16px;
	}

	.atc-home-trust-strip span {
		white-space: normal;
	}

	.atc-home-route-grid,
	.atc-home-map-grid,
	.atc-home-topic-grid,
	.atc-home-community-actions {
		grid-template-columns: 1fr;
	}

	.atc-home-map-card {
		--at-home-hub-icon-size: 68px;
	}

	.atc-home-map-card p {
		min-height: 0;
	}

	.atc-home-community-card,
	.atc-home-brief-card,
	.atc-home-trust-card {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.atc-home-community-card .atc-home-panel-head,
	.atc-home-brief-card .atc-home-panel-head,
	.atc-home-trust-card .atc-home-panel-head {
		margin-bottom: 0;
	}

	.atc-home-route-card,
	.atc-home-map-card {
		min-height: 0;
	}

	.atc-home-section__top {
		display: block;
	}

	.atc-home-section__top > a {
		margin-top: 12px;
	}

	.atc-home-feed-item {
		grid-template-columns: minmax(0, 1fr);
		min-height: 156px;
		padding: 15px;
	}

	.atc-home-feed-item h3 {
		font-size: 1rem;
	}

	.atc-home-feed-item p {
		font-size: 0.82rem;
	}

	.atc-home-tools-panel .atc-home-tool-row {
		min-height: 0;
		padding: 15px;
		border-radius: 18px;
	}

	.atc-home-tools-panel .atc-home-tool-card {
		padding: 15px;
		border-radius: 18px;
	}

	.atc-home-tool-card__header {
		grid-template-columns: 48px minmax(0, 1fr) 54px;
		gap: 10px;
	}

	.atc-home-tool-card__logo {
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}

	.atc-home-tool-card__identity h3 {
		font-size: 1rem;
	}

	.atc-home-tool-card__score {
		min-width: 50px;
		min-height: 50px;
	}

	.atc-home-tool-card__score strong {
		font-size: 1.35rem;
	}

	.atc-home-tool-card__actions.has-visit-cta {
		grid-template-columns: 1fr;
	}

	.atc-home-tool-factor {
		grid-template-columns: minmax(0, 1fr) minmax(58px, 80px) 2rem;
	}

	.atc-home-tool-row__top {
		grid-template-columns: 46px minmax(0, 1fr);
		align-items: start;
	}

	.atc-home-tool-logo {
		width: 46px;
		height: 46px;
	}

	.atc-home-tool-row__top em {
		grid-column: 1 / -1;
		justify-self: start;
		max-width: 100%;
	}

	.atc-home-tool-score {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.atc-home-tool-score__label {
		grid-column: 1 / -1;
	}

	.atc-home-market-row {
		grid-template-columns: 1fr;
		grid-template-rows: auto 78px auto;
		min-height: 0;
	}

	.atc-home-brief-card .atc-home-panel-head {
		max-width: 100%;
		padding-right: 0;
	}

	.atc-home-mail-icon {
		display: none;
	}

	.atc-home-brief-card small {
		margin-top: -2px;
	}

	.atc-home-mail-icon::before {
		content: none;
	}

	.atc-home-mini-footer {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-top: 4px;
	}

	.atc-home-mini-footer nav {
		justify-content: flex-start;
		gap: 10px 16px;
	}
}

/* Shared homepage surface: Header Engine, command center and Footer Engine. */
body.atc-homepage-active {
	margin: 0;
	overflow-x: clip;
	color: #f4fffc;
	background: #020711 !important;
}

body.atc-homepage-active .wp-site-blocks {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	row-gap: 0 !important;
	background: transparent !important;
}

body.atc-homepage-active main,
body.atc-homepage-active .wp-block-post-content,
body.atc-homepage-active .entry-content {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	background: transparent !important;
}

body.atc-homepage-active .wp-site-blocks > main {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	padding-block: 0 !important;
	row-gap: 0 !important;
}

body.atc-homepage-active .wp-site-blocks > main > .wp-block-group.alignfull {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	padding-block: 0 !important;
}

body.atc-homepage-active .wp-block-post-title,
body.atc-homepage-active main .entry-title {
	display: none !important;
}

body.atc-homepage-active .at-header-engine {
	display: flow-root;
	padding: 14px 0 10px;
	border-bottom: 1px solid rgba(92, 255, 235, 0.14);
	background: linear-gradient(180deg, #020914 0%, #02171d 100%) !important;
	box-shadow: none;
}

body.atc-homepage-active .at-header-engine .at-header-shell {
	width: min(1360px, calc(100% - 40px));
	max-width: calc(100% - 40px);
	margin-top: 0;
	border-color: rgba(92, 255, 235, 0.30);
	background: rgba(4, 22, 29, 0.82);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

body.atc-homepage-active .atc-home-command-center {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin: 0;
	transform: translateX(-50%);
	padding-top: 10px;
	padding-bottom: clamp(46px, 5vw, 72px);
	background: linear-gradient(180deg, #02171d 0%, #02191f 18%, #03161c 72%, #020711 100%);
}

body.atc-homepage-active .atc-home-command-center--fragment {
	background: #02191f;
}

body.atc-homepage-active .atc-home-command-center::before {
	inset: 0;
	background:
		radial-gradient(circle at 68% 3%, rgba(0, 201, 167, 0.14), transparent 34rem),
		linear-gradient(180deg, rgba(2, 31, 37, 0.36), transparent 24%, transparent 78%, rgba(2, 7, 17, 0.56));
}

body.atc-homepage-active .atc-home-command-center::after {
	inset: 0;
}

body.atc-homepage-active .atc-home-shell,
body.atc-homepage-active .atc-home-debug {
	width: min(1360px, calc(100% - 40px));
	max-width: calc(100% - 40px);
}

body.atc-homepage-active .atc-home-hero {
	margin-top: 0;
}

body.atc-homepage-active .at-footer-engine {
	margin-top: 0;
	border-top-color: rgba(92, 255, 235, 0.16);
	background: #020711;
}

body.atc-homepage-active .at-footer-engine::before {
	opacity: 0.16;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 100%);
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 100%);
}

body.atc-homepage-active .at-footer-shell {
	width: min(1360px, calc(100% - 40px));
	max-width: calc(100% - 40px);
	padding-top: 48px;
}

@media (max-width: 900px) {
	body.atc-homepage-active .at-header-engine {
		padding: 8px 0;
	}

	body.atc-homepage-active .at-header-engine .at-header-shell,
	body.atc-homepage-active .atc-home-shell,
	body.atc-homepage-active .atc-home-debug {
		width: calc(100% - 24px);
		max-width: calc(100% - 24px);
	}

	body.atc-homepage-active .at-footer-shell {
		width: calc(100% - 32px);
		max-width: calc(100% - 32px);
		padding-top: 32px;
	}
}

@media (max-width: 420px) {
	body.atc-homepage-active .at-header-engine .at-header-shell,
	body.atc-homepage-active .atc-home-shell,
	body.atc-homepage-active .atc-home-debug {
		width: calc(100% - 16px);
		max-width: calc(100% - 16px);
	}
}

/* Mobile Visual Library icon clarity: avoid blurry filters and fractional scaling on touch screens. */
@media (max-width: 720px) {
	.atc-home-command-center .home-card-visual-icon,
	.atc-home-command-center .at-home-card-icon-img {
		width: 128px;
		height: 128px;
		margin: -4px auto 24px;
		filter: drop-shadow(0 10px 18px rgba(0, 201, 167, 0.24));
		transform: translateZ(0);
	}

	.at-home-hub-icon {
		filter: drop-shadow(0 10px 18px rgba(0, 201, 167, 0.18));
		transform: translateZ(0);
	}

	.home-hub-card:hover .at-home-hub-icon,
	.atc-home-command-center .home-card:hover .home-card-visual-icon,
	.atc-home-command-center .home-card:hover .at-home-card-icon-img {
		transform: translateZ(0);
	}

	.at-home-start-icon {
		width: 48px;
		height: 48px;
		object-fit: contain;
		filter: drop-shadow(0 6px 12px rgba(0, 201, 167, 0.20));
	}
}

@media (max-width: 420px) {
	.atc-home-command-center .home-card-visual-icon,
	.atc-home-command-center .at-home-card-icon-img {
		width: 118px;
		height: 118px;
	}
}

/* Final homepage journey overrides. Keep these last so older section rules stay compatible. */
.atc-home-command-center .atc-home-hero {
	grid-template-columns: minmax(0, 760px);
	justify-content: start;
	min-height: 345px;
	padding: clamp(38px, 5.2vw, 58px) clamp(24px, 4.8vw, 58px);
}

.atc-home-command-center .atc-home-hero h1 {
	max-width: 760px;
	font-size: clamp(42px, 5.2vw, 64px);
	line-height: 0.98;
}

.atc-home-command-center .atc-home-hero h1 span {
	display: block;
}

.atc-home-command-center .atc-home-hero-text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 46px;
	padding-inline: 6px;
	color: #82fff0;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1;
}

.atc-home-command-center .atc-home-hero-text-link:hover,
.atc-home-command-center .atc-home-hero-text-link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.atc-home-command-center .atc-home-intelligence-layer {
	gap: 0;
}

.atc-home-command-center .atc-home-intelligence-layer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
	gap: 12px;
	padding: 14px;
}

.atc-home-command-center .atc-home-intel-pulse,
.atc-home-command-center .atc-home-latest-signal {
	border: 1px solid rgba(185, 241, 233, 0.075);
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.045), transparent 13rem),
		rgba(255, 255, 255, 0.010);
}

.atc-home-command-center .atc-home-intel-pulse {
	grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
	padding: 18px;
	border-radius: 18px;
}

.atc-home-command-center .atc-home-latest-signal {
	padding: 18px;
	border-radius: 18px;
}

.atc-home-command-center .atc-home-trust-strip {
	padding: 0 14px 14px;
}

.atc-home-command-center .atc-home-intelligence-dashboard {
	padding: clamp(24px, 3vw, 32px);
	border: 1px solid var(--atc-border);
	border-radius: var(--atc-radius-xl);
	background:
		radial-gradient(circle at 92% 0%, rgba(0, 201, 167, 0.075), transparent 21rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
		var(--atc-panel);
	box-shadow: var(--atc-shadow);
}

.atc-home-command-center .atc-home-intelligence-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-panel {
	padding: clamp(18px, 2vw, 24px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-feed-panel .atc-home-feed-list,
.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-tools-panel .atc-home-tool-list,
.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-market-panel .atc-home-market-list {
	grid-template-columns: 1fr;
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-feed-item {
	min-height: 142px;
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-tool-row {
	min-height: 132px;
	gap: 10px;
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-market-row {
	grid-template-rows: minmax(38px, auto) 54px minmax(0, 1fr);
	min-height: 146px;
	gap: 9px;
}

.atc-home-command-center .atc-home-intelligence-dashboard .atc-home-market-sparkline {
	height: 54px;
}

.atc-home-command-center .atc-home-map-card__cta {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	margin-top: 13px;
	color: #7cf8e7;
	font-size: 0.86rem;
	font-weight: 900;
}

.atc-home-command-center .atc-home-map-card__cta:hover,
.atc-home-command-center .atc-home-map-card__cta:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 1120px) {
	.atc-home-command-center .atc-home-intelligence-layer__main,
	.atc-home-command-center .atc-home-intelligence-dashboard-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.atc-home-command-center .atc-home-hero {
		min-height: 0;
		padding: 30px 20px 24px;
	}

	.atc-home-command-center .atc-home-hero h1 {
		font-size: clamp(36px, 11vw, 44px);
	}

	.atc-home-command-center .atc-home-hero-text-link {
		justify-content: center;
		width: 100%;
	}

	.atc-home-command-center .atc-home-intelligence-layer__main {
		padding: 12px;
	}

	.atc-home-command-center .atc-home-intel-pulse {
		grid-template-columns: 1fr;
	}

	.atc-home-command-center .atc-home-intelligence-dashboard {
		padding: 20px;
		border-radius: 22px;
	}
}
