.vta-community {
	--ink: #0A0E17;
	--ink-2: #0c1120;
	--surface: #141B2D;
	--surface-2: #161f37;
	--line: #243049;
	--line-soft: #1b2336;
	--text: #F8FAFC;
	--muted: #94A3B8;
	--muted-2: #6e7a93;
	--cta: #5B5FFF;
	--cta-2: #6B5AF4;
	--cyan: #5BC0BE;
	--violet: #7C4DFF;
	--glow-cta: rgba(91, 95, 255, .55);
	--glow-cyan: rgba(91, 192, 190, .45);
	--sans: "Noto Sans TC", "PingFang TC", sans-serif;
	--latin: "Satoshi", "Inter", "Noto Sans TC", sans-serif;
	--maxw: 1180px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-pill: 999px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	/* Keep free of transform/filter/contain: the fixed cosmic backdrop
	   below would otherwise re-parent to this wrapper and scroll with it. */
	position: relative;
	z-index: 1;
	overflow-x: clip;
	color: var(--text);
	font-family: var(--sans);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

/* Cosmic backdrop: theme body owns the ink base (#0A0E17); these fixed
   layers add the mockup starfield + nebula glow + vignette behind content. */
.vta-community__space {
	position: fixed;
	inset: 0;
	z-index: 0;
	display: block;
	pointer-events: none;
}

.vta-community__atmos,
.vta-community__vignette {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.vta-community__atmos {
	background:
		radial-gradient(50% 45% at 12% 88%, rgba(91, 192, 190, .10), transparent 60%),
		radial-gradient(80% 60% at 50% 120%, rgba(124, 77, 255, .12), transparent 55%);
}

.vta-community__vignette {
	background: radial-gradient(120% 90% at 50% 30%, transparent 55%, rgba(4, 6, 12, .7) 100%);
}

body.vta-community-page .wp-site-blocks > footer.wp-block-template-part {
	position: relative;
	z-index: 3;
	margin-block-start: 0;
	background: #0a0e17;
	isolation: isolate;
}

body.vta-community-page .wp-site-blocks > footer.wp-block-template-part .vta-site-footer {
	position: relative;
	z-index: 1;
	box-shadow: 0 -1px 0 rgba(148, 163, 184, .14), 0 -28px 80px rgba(4, 6, 12, .38);
}

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

.vta-community h1,
.vta-community h2,
.vta-community h3,
.vta-community p {
	color: inherit;
	font-family: var(--sans);
}

.vta-community a {
	text-decoration: none;
}

.vta-community .wrap {
	width: min(var(--maxw), calc(100% - 48px));
	margin-inline: auto;
}

.vta-community .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--latin);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--cyan);
}

.vta-community .eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, var(--cyan), transparent);
}

.vta-community section.block {
	position: relative;
	z-index: 1;
	padding: clamp(80px, 11vh, 140px) 0;
}

.vta-community section.vta-community-hero {
	padding-top: 0;
	padding-bottom: clamp(20px, 4vh, 48px);
}

.vta-community .hero-split {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
	padding: clamp(96px, 14vh, 150px) 0 clamp(56px, 8vh, 90px);
	text-align: left;
}

.vta-community .hero-split h1 {
	margin: 18px 0 0;
	font-weight: 900;
	font-size: clamp(30px, 4.8vw, 56px);
	line-height: 1.1;
	letter-spacing: 0;
	text-shadow: 0 0 70px rgba(91, 95, 255, .18);
}

.vta-community .grad {
	background: linear-gradient(92deg, var(--cyan) 0%, var(--cta) 55%, var(--violet) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vta-community .lede,
.vta-community .hero-split .lede {
	max-width: 560px;
	margin-top: 20px;
	color: var(--muted);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 300;
}

.vta-community .creed {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 22px;
	color: var(--muted-2);
	font-family: var(--latin);
	font-size: 12.5px;
	letter-spacing: .14em;
}

.vta-community .creed span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.vta-community .creed span::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 8px var(--glow-cyan);
}

.vta-community .panel {
	overflow: hidden;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	background: linear-gradient(165deg, rgba(22, 31, 55, .94), rgba(12, 17, 32, .92));
	box-shadow: 0 40px 90px -45px rgba(0, 0, 0, .9), 0 0 0 1px rgba(248, 250, 252, .02) inset;
	backdrop-filter: blur(12px);
}

.vta-community .panel-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-bottom: 1px solid var(--line-soft);
	color: var(--muted-2);
	font-family: var(--latin);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.vta-community .win-dots {
	display: flex;
	gap: 6px;
}

.vta-community .win-dots i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--line);
}

.vta-community .panel-head .on {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-left: auto;
	color: var(--cyan);
	letter-spacing: .12em;
}

.vta-community .panel-head .on::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--glow-cyan);
	animation: vta-community-pulse 2.4s ease-in-out infinite;
}

.vta-community .tier-row {
	padding: 22px 24px;
}

.vta-community .tier-row + .tier-row {
	border-top: 1px solid var(--line-soft);
}

.vta-community .tr-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vta-community .tr-head .name {
	font-size: 17.5px;
	font-weight: 700;
}

.vta-community .tr-head .badge {
	margin-left: auto;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	padding: 3px 11px;
	color: var(--muted);
	font-family: var(--latin);
	font-size: 10.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.vta-community .tier-row .desc {
	margin-top: 8px;
	color: var(--muted);
	font-size: 13.5px;
	line-height: 1.65;
}

.vta-community .tier-row .perks {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.vta-community .tier-row .chip {
	border: 1px solid var(--line-soft);
	border-radius: var(--r-pill);
	padding: 4px 12px;
	background: rgba(10, 14, 23, .5);
	color: var(--muted);
	font-size: 12px;
}

.vta-community .tier-free .badge {
	border-color: rgba(91, 192, 190, .4);
	color: var(--cyan);
}

.vta-community .is-member {
	position: relative;
	background: linear-gradient(140deg, rgba(91, 95, 255, .14), rgba(12, 17, 32, 0) 65%);
}

.vta-community .is-member::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--cta), var(--violet));
}

.vta-community .is-member .tr-head .name {
	background: linear-gradient(92deg, #e3e6ff, #a6acff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vta-community .is-member .badge {
	border-color: rgba(91, 95, 255, .45);
	background: rgba(91, 95, 255, .10);
	color: #aeb4ff;
}

.vta-community .is-member .perks .chip {
	border-color: rgba(91, 95, 255, .28);
	color: #c0c5ff;
}

.vta-community .lock {
	position: relative;
	display: inline-block;
	flex: none;
	width: 12px;
	height: 10px;
	border: 1.5px solid #aeb4ff;
	border-radius: 2px;
}

.vta-community .lock::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 1.5px;
	width: 5px;
	height: 5px;
	border: 1.5px solid #aeb4ff;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
}

.vta-community .panel-foot {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border-top: 1px solid var(--line-soft);
	color: var(--muted-2);
	font-family: var(--latin);
	font-size: 11px;
	letter-spacing: .14em;
}

.vta-community .panel-foot b {
	color: var(--cyan);
	font-weight: 500;
}

.vta-community .panel-foot .arr {
	margin-left: auto;
	color: var(--cta);
	animation: vta-community-nudge 2.6s ease-in-out infinite;
}

@keyframes vta-community-pulse {
	50% {
		opacity: .35;
	}
}

@keyframes vta-community-nudge {
	50% {
		transform: translateX(4px);
	}
}

.vta-community .cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.vta-community .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 15px 30px;
	border-radius: var(--r-pill);
	font-family: var(--sans);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform .25s, box-shadow .35s, background .25s, border-color .25s;
}

.vta-community .btn-primary,
.vta-community .btn-primary:visited,
.vta-community .btn-primary:hover,
.vta-community .btn-primary:focus,
.vta-community .btn-primary:active {
	background: linear-gradient(180deg, var(--cta-2), var(--cta));
	color: #fff;
	box-shadow: 0 10px 34px -8px var(--glow-cta), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.vta-community .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 44px -8px var(--glow-cta);
}

.vta-community .btn-secondary,
.vta-community .btn-secondary:visited,
.vta-community .btn-secondary:hover,
.vta-community .btn-secondary:focus,
.vta-community .btn-secondary:active {
	border: 1px solid rgba(91, 192, 190, .45);
	background: rgba(91, 192, 190, .08);
	color: var(--text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.vta-community .btn-secondary:hover {
	transform: translateY(-2px);
	border-color: var(--cyan);
	background: rgba(91, 192, 190, .14);
	box-shadow: 0 16px 38px -18px rgba(91, 192, 190, .85), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.vta-community .btn-ghost,
.vta-community .btn-ghost:visited,
.vta-community .btn-ghost:hover,
.vta-community .btn-ghost:focus,
.vta-community .btn-ghost:active {
	border: 1px solid var(--line);
	background: rgba(20, 27, 45, .5);
	color: var(--text);
	backdrop-filter: blur(8px);
}

.vta-community .btn-ghost:hover {
	transform: translateY(-2px);
	border-color: var(--cyan);
	box-shadow: 0 10px 30px -12px var(--glow-cyan);
}

.vta-community .btn-ghost .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--glow-cyan);
	animation: vta-community-pulse 2.4s ease-in-out infinite;
}

.vta-community .btn-discord {
	min-width: 168px;
}

.vta-community .reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

.vta-community .reveal.in {
	opacity: 1;
	transform: none;
}

.vta-community .sec-head {
	margin-bottom: clamp(28px, 4vh, 48px);
}

.vta-community .sec-title {
	margin: 14px 0 0;
	font-weight: 900;
	font-size: clamp(26px, 3.6vw, 44px);
	line-height: 1.15;
	letter-spacing: 0;
}

.vta-community .sec-sub {
	max-width: 560px;
	margin: 14px 0 0;
	color: var(--muted);
	font-weight: 300;
	font-size: 17px;
}

.vta-community .grid {
	display: grid;
	gap: 24px;
}

.vta-community .g2 {
	grid-template-columns: repeat(2, 1fr);
}

.vta-community .g3 {
	grid-template-columns: repeat(3, 1fr);
}

.vta-community .card {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px;
	background: linear-gradient(180deg, var(--surface), var(--ink-2));
	transition: transform .35s, border-color .35s, box-shadow .35s;
}

.vta-community .card:hover {
	transform: translateY(-4px);
	border-color: var(--cta-2);
	box-shadow: 0 20px 50px -22px var(--glow-cta);
}

.vta-community .card h3 {
	margin: 0;
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 700;
}

.vta-community .card p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 14.5px;
	font-weight: 300;
}

.vta-community .card .n {
	display: block;
	margin-bottom: 6px;
	font-family: var(--latin);
	font-size: 13px;
	font-weight: 700;
	color: var(--cta-2);
	letter-spacing: .1em;
}

.vta-community .rail {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 46px;
}

.vta-community .rail::before {
	content: "";
	position: absolute;
	top: 23px;
	left: 4%;
	right: 4%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}

.vta-community .node {
	position: relative;
	padding-top: 58px;
}

.vta-community .node .pt {
	position: absolute;
	top: 12px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--ink-2);
	color: var(--cyan);
	font-family: var(--latin);
	font-size: 11px;
	letter-spacing: .08em;
	transition: box-shadow .3s, border-color .3s;
}

.vta-community .node:hover .pt {
	border-color: var(--cyan);
	box-shadow: 0 0 24px -4px var(--glow-cyan);
}

.vta-community .node h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
}

.vta-community .node h3 em {
	display: block;
	margin-bottom: 6px;
	color: var(--cyan);
	font-family: var(--latin);
	font-size: 11px;
	font-style: normal;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.vta-community .node p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14.5px;
}

.vta-community .why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 46px;
}

.vta-community .wcard {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 22px 24px;
	background: linear-gradient(165deg, rgba(22, 31, 55, .82), rgba(12, 17, 32, .88));
	transition: transform .3s, border-color .3s, box-shadow .3s;
}

.vta-community .wcard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--cyan), var(--cta) 60%, transparent);
	opacity: 0;
	transition: opacity .35s;
}

.vta-community .wcard:hover {
	transform: translateY(-4px);
	border-color: rgba(91, 192, 190, .45);
	box-shadow: 0 22px 50px -28px var(--glow-cyan);
}

.vta-community .wcard:hover::before {
	opacity: 1;
}

.vta-community .whead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted-2);
	font-family: var(--latin);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.vta-community .whead .idx {
	color: var(--cyan);
	font-size: 14px;
}

.vta-community .wcard h3 {
	margin: 16px 0 0;
	font-size: 19.5px;
	font-weight: 700;
}

.vta-community .wcard .wsub {
	margin-top: 2px;
	color: var(--cyan);
	font-size: 13px;
	font-weight: 500;
}

.vta-community .wcard p {
	flex: 1;
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 14.5px;
}

.vta-community .wfoot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line-soft);
	color: var(--muted-2);
	font-family: var(--latin);
	font-size: 10.5px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.vta-community .wfoot .tick {
	color: var(--cyan);
}

.vta-community .cta-eyebrow {
	display: block;
	text-align: center;
	margin-bottom: 18px;
}

.vta-community .cta-band {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(40px, 7vw, 72px);
	text-align: center;
	background: linear-gradient(160deg, rgba(124, 77, 255, .10), rgba(91, 192, 190, .05));
}

.vta-community .cta-band::after {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	left: 50%;
	top: -120px;
	transform: translateX(-50%);
	background: radial-gradient(circle, var(--glow-cta), transparent 70%);
	filter: blur(14px);
	pointer-events: none;
}

.vta-community .cta-band > * {
	position: relative;
	z-index: 1;
}

.vta-community .cta-band h2 {
	margin: 0;
	font-size: clamp(26px, 4vw, 46px);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.vta-community .cta-band .lede {
	margin: 18px auto 0;
	font-size: 16px;
	line-height: 1.7;
}

.vta-community .cta-band .cta-row {
	justify-content: center;
	margin-top: 30px;
}

/* ===== member ===== */
.vta-community .member-top {
	padding-top: calc(96px + clamp(40px, 7vh, 72px));
	padding-bottom: 0;
}

.vta-community section.member-discord {
	padding-top: clamp(40px, 6vh, 72px);
}

.vta-community .member-discord .cta-band .eyebrow {
	display: block;
	max-width: 260px;
	min-height: 40.8px;
	margin: 0 auto 14px;
	line-height: 20.4px;
}

.vta-community .status-banner {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 18px;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 22px 26px;
	background: linear-gradient(160deg, rgba(91, 192, 190, .10), rgba(10, 14, 23, .4));
}

.vta-community .banner-lead {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1 1 100%;
	min-width: 0;
}

.vta-community .banner-lead h2 {
	margin: 0;
	font-size: clamp(18px, 2.4vw, 24px);
	font-weight: 700;
	line-height: 1.3;
}

.vta-community .pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.vta-community .pill {
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	padding: 5px 12px;
	font-family: var(--latin);
	font-size: 12px;
	letter-spacing: .08em;
	color: var(--cyan);
}

.vta-community .status-dot {
	width: 10px;
	height: 10px;
	flex: none;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 12px 2px rgba(91, 192, 190, .7);
}

.vta-community .status-note {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 300;
}

.vta-community .member-discord {
	padding-top: clamp(40px, 6vh, 72px);
}

.vta-community .member-discord__linked {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	padding: 8px 16px;
	font-family: var(--latin);
	font-size: 13px;
	letter-spacing: .08em;
	color: var(--cyan);
}

.vta-community .member-discord__rebind {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 4px;
	color: rgba(233, 240, 255, .72);
	font-size: 13px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-color: rgba(91, 192, 190, .42);
}

.vta-community .member-discord__rebind:hover,
.vta-community .member-discord__rebind:focus-visible {
	color: var(--cyan);
	text-decoration-color: currentColor;
}

.vta-community .member-rules {
	padding-top: clamp(20px, 4vh, 60px);
}

.vta-community .member-rules .sec-sub {
	max-width: 760px;
}

.vta-community .state-card.done {
	border-color: rgba(91, 192, 190, .4);
}

.vta-community .state-card.done .n {
	color: var(--cyan);
}

@media (max-width: 880px) {
	.vta-community .hero-split,
	.vta-community .rail,
	.vta-community .why-grid,
	.vta-community .g2,
	.vta-community .g3 {
		grid-template-columns: 1fr;
	}

	.vta-community .hero-split {
		gap: 32px;
	}

	/* mobile: let the visitor title flow to full width instead of forced 3-line breaks */
	.vta-community .hero-split h1 br {
		display: none;
	}

	.vta-community .rail {
		gap: 34px;
	}

	.vta-community .rail::before {
		display: none;
	}

	.vta-community .cta-row {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vta-community .card,
	.vta-community .wcard,
	.vta-community .btn {
		transition: none;
	}
}
