/**
 * Main theme styles.
 *
 * @package TAB_Premium_Theme
 */

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
	--tab-bg:         #060f24;
	--tab-bg-card:    rgba(8, 18, 52, 0.76);
	--tab-text:       #e8f0fe;
	--tab-muted:      #8babd4;
	--tab-cyan:       #08d9f6;
	--tab-blue:       #1479ff;
	--tab-violet:     #7c3cff;
	--tab-pink:       #ec2ca0;
	--tab-orange:     #ff7b1a;
	--tab-border:     rgba(8, 217, 246, 0.15);
	--tab-shadow:     0 20px 60px rgba(2, 11, 34, 0.5);
	--tab-radius:     16px;
	--tab-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);

	/* ── Typographic scale (Major Third) ── */
	--fs-xs:   11px;
	--fs-sm:   13px;
	--fs-base: 15px;
	--fs-md:   17px;
	--fs-lg:   20px;
	--fs-xl:   24px;
	--fs-2xl:  clamp(26px, 2.8vw, 36px);
	--fs-3xl:  clamp(36px, 4.8vw, 58px);
	--lh-tight: 1.15;
	--lh-snug:  1.35;
	--lh-base:  1.65;
	--lh-loose: 1.8;
}

/* ═══════════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	max-width: 100%;
}

/* Prevent page-wide horizontal overflow without blocking child scroll containers */
.site-header,
.site-main,
.site-footer {
	overflow-x: clip;
}

/* Carousels must scroll freely */
.tab-category-grid,
.tab-featured-grid,
.tab-plan-grid {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
}

body {
	background: var(--tab-bg);
	color: var(--tab-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: var(--fs-base);
	line-height: var(--lh-base);
	margin: 0;
}

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

img, svg, canvas {
	max-width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

/* ═══════════════════════════════════════════════════════
   FULL-PAGE BACKGROUND CANVAS
═══════════════════════════════════════════════════════ */
.tab-bg-canvas {
	height: 100%;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 0;
}

.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	background: rgba(2, 11, 34, 0.88);
	border-bottom: 1px solid rgba(8, 217, 246, 0.14);
	color: #ffffff;
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 80;
}

.tab-header-inner {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1400px;
	min-height: 76px;
	padding: 0 clamp(16px, 3.5vw, 48px);
	width: 100%;
}

/* Brand */
.tab-brand {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	gap: 12px;
	min-width: 0;
}

.tab-brand-mark {
	align-items: center;
	background: transparent;
	display: inline-flex;
	flex-shrink: 0;
	height: 54px;
	justify-content: center;
	width: 54px;
}

.tab-logo-svg {
	display: block;
	filter: drop-shadow(0 0 12px rgba(8, 217, 246, 0.28));
	height: 100%;
	overflow: visible;
	width: 100%;
}

.tab-logo-svg path {
	fill: none;
	stroke: rgba(255, 255, 255, 0.78);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 7;
}

.tab-logo-svg .node {
	stroke: rgba(255, 255, 255, 0.9);
	stroke-width: 2;
}

.tab-logo-svg .node-cyan  { fill: #14c8cb; }
.tab-logo-svg .node-blue  { fill: var(--tab-blue); }
.tab-logo-svg .node-orange { fill: var(--tab-orange); }
.tab-logo-svg .node-pink  { fill: var(--tab-pink); }

.tab-brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.tab-brand-text strong {
	color: #ffffff;
	font-size: clamp(13px, 1.3vw, 16px);
	font-weight: 900;
	line-height: var(--lh-tight);
	text-transform: uppercase;
	white-space: nowrap;
}

.tab-brand-text small {
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--fs-xs);
	font-weight: 600;
	white-space: nowrap;
}

/* Nav */
.tab-primary-nav {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: flex-end;
	min-width: 0;
}

.tab-primary-nav ul {
	align-items: center;
	display: flex;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tab-primary-nav a {
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.82);
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 700;
	padding: 10px 11px;
	transition: color var(--tab-transition), background var(--tab-transition);
	white-space: nowrap;
}

.tab-primary-nav a:hover,
.tab-primary-nav a:focus {
	background: rgba(8, 217, 246, 0.09);
	color: #ffffff;
}

.tab-header-actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 8px;
}

.tab-login-link,
.tab-header-cta {
	align-items: center;
	border-radius: 10px;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 800;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	transition: background var(--tab-transition), color var(--tab-transition), box-shadow var(--tab-transition);
	white-space: nowrap;
}

.tab-login-link {
	background: transparent;
	border: 1px solid rgba(8, 217, 246, 0.48);
	color: var(--tab-cyan) !important;
}

.tab-login-link:hover {
	background: rgba(8, 217, 246, 0.1);
	color: #ffffff !important;
}

.tab-header-cta {
	background: var(--tab-cyan);
	border: 1px solid rgba(8, 217, 246, 0.8);
	box-shadow: 0 8px 28px rgba(8, 217, 246, 0.26);
	color: #021027 !important;
}

.tab-header-cta:hover {
	background: #ffffff;
	box-shadow: 0 10px 32px rgba(255, 255, 255, 0.2);
	color: #021027 !important;
}

/* Hamburger toggle */
.tab-menu-toggle {
	background: transparent;
	border: 1px solid rgba(8, 217, 246, 0.28);
	border-radius: 8px;
	cursor: pointer;
	display: none;
	height: 42px;
	padding: 10px;
	position: relative;
	width: 44px;
	z-index: 90;
}

.tab-hamburger-bar {
	background: var(--tab-cyan);
	border-radius: 2px;
	display: block;
	height: 2px;
	transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
	width: 22px;
}

.tab-hamburger-bar:nth-child(2) { width: 16px; }

.tab-menu-toggle:hover .tab-hamburger-bar:nth-child(2) { width: 22px; }

.tab-mobile-menu-open .tab-hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tab-mobile-menu-open .tab-hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
.tab-mobile-menu-open .tab-hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Home page: header overlays hero */
body.home .site-header {
	background: transparent;
	border-bottom: 0;
	box-shadow: none;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 90;
}

body.home .site-header::before {
	background: linear-gradient(180deg, rgba(2, 8, 23, 0.72) 0%, rgba(2, 8, 23, 0) 100%);
	content: "";
	height: 120px;
	inset: 0 0 auto;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

body.admin-bar.home .site-header {
	top: 32px;
}

/* ═══════════════════════════════════════════════════════
   BOTTOM NAV (mobile only — always hidden on desktop)
═══════════════════════════════════════════════════════ */
.tab-bottom-nav {
	display: none;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.tab-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 12px;
	cursor: pointer;
	display: inline-flex;
	font-size: var(--fs-base);
	font-weight: 800;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	transition: transform var(--tab-transition), box-shadow var(--tab-transition), background var(--tab-transition), border-color var(--tab-transition);
	white-space: nowrap;
}

.tab-button:hover {
	transform: translateY(-2px);
}

.tab-button-gold {
	background: var(--tab-cyan);
	border-color: rgba(8, 217, 246, 0.8);
	box-shadow: 0 10px 28px rgba(8, 217, 246, 0.28);
	color: #021027 !important;
}

.tab-button-gold:hover {
	background: #ffffff;
	box-shadow: 0 14px 36px rgba(255, 255, 255, 0.2);
	color: #021027 !important;
}

.tab-button-ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(8, 217, 246, 0.48);
	color: var(--tab-cyan) !important;
}

.tab-button-ghost:hover {
	background: rgba(8, 217, 246, 0.1);
	border-color: var(--tab-cyan);
	color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.tab-home {
	background: transparent;
}

.tab-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 40%, rgba(2, 8, 23, 0.18) 70%, rgba(2, 8, 23, 0.5) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.6)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	color: #ffffff;
	overflow: hidden;
	position: relative;
}

.tab-hero::after {
	background: linear-gradient(180deg, transparent 60%, rgba(6, 15, 36, 0.95) 100%);
	bottom: 0;
	content: "";
	height: 200px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.tab-network-canvas {
	height: 100%;
	inset: 0;
	opacity: 0.72;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

.tab-hero-inner,
.tab-section-inner {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 clamp(16px, 3.5vw, 48px);
	position: relative;
	width: 100%;
	z-index: 1;
}

.tab-hero-inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
	min-height: 680px;
	padding-bottom: 80px;
	padding-top: 60px;
}

body.home .tab-hero-inner {
	padding-top: 110px;
}

.tab-eyebrow {
	background: rgba(8, 217, 246, 0.1);
	border: 1px solid rgba(8, 217, 246, 0.28);
	border-radius: 999px;
	color: var(--tab-cyan);
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
	padding: 5px 14px;
	text-transform: uppercase;
}

.tab-hero h1 {
	color: #ffffff;
	font-size: var(--fs-3xl);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: var(--lh-tight);
	margin: 0 0 14px;
}

.tab-hero h1 span {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(100deg, var(--tab-cyan), var(--tab-violet), var(--tab-pink), var(--tab-orange));
	-webkit-background-clip: text;
	background-clip: text;
	display: block;
}

.tab-hero-tagline {
	color: rgba(255, 255, 255, 0.58);
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.tab-hero-copy {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--fs-md);
	line-height: var(--lh-loose);
	margin: 0;
	max-width: 580px;
}

.tab-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.tab-hero-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.tab-hero-trust-strip span {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(8, 217, 246, 0.22);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--fs-sm);
	font-weight: 600;
	padding: 7px 14px;
}

/* ─── Ring box ─── */
.tab-hero-orbit,
.tab-ring-box {
	align-items: center;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	justify-self: center;
	max-width: 420px;
	position: relative;
	width: 100%;
}

.tab-ring-box .ring,
.tab-ring-box .arc-1,
.tab-ring-box .arc-2 {
	border-radius: 50%;
	pointer-events: none;
	position: absolute;
}

.tab-ring-box .ring-1 {
	animation: tab-ring-spin 7s linear infinite;
	border: 2px solid transparent;
	border-bottom-color: rgba(0, 226, 255, 0.18);
	border-right-color: rgba(0, 226, 255, 0.65);
	border-top-color: rgba(0, 226, 255, 1);
	box-shadow: 0 0 18px rgba(0, 226, 255, 0.55);
	height: 52%;
	width: 52%;
}

.tab-ring-box .ring-2 {
	animation: tab-ring-spin-reverse 11s linear infinite;
	border: 1px solid transparent;
	border-bottom-color: rgba(0, 226, 255, 0.32);
	border-left-color: rgba(0, 226, 255, 0.55);
	height: 59%;
	width: 59%;
}

.tab-ring-box .ring-3 {
	animation: tab-ring-spin 16s linear infinite;
	border: 1px dashed transparent;
	border-right-color: rgba(255, 62, 165, 0.2);
	border-top-color: rgba(255, 62, 165, 0.78);
	height: 67%;
	width: 67%;
}

.tab-ring-box .ring-4 {
	animation: tab-ring-spin-reverse 24s linear infinite;
	border: 1px dotted rgba(134, 95, 255, 0.38);
	border-left-color: rgba(134, 95, 255, 0.7);
	height: 75%;
	width: 75%;
}

.tab-ring-box .arc-1 {
	animation: tab-ring-spin 20s linear infinite;
	background: conic-gradient(from 40deg, transparent 0deg, rgba(0, 226, 255, 0.85) 28deg, transparent 62deg, transparent 135deg, rgba(255, 62, 165, 0.7) 166deg, transparent 205deg, transparent 260deg, rgba(134, 95, 255, 0.55) 290deg, transparent 330deg);
	height: 82%;
	-webkit-mask: radial-gradient(circle, transparent 68%, #000 69%, #000 70%, transparent 71%);
	mask: radial-gradient(circle, transparent 68%, #000 69%, #000 70%, transparent 71%);
	opacity: 0.9;
	width: 82%;
}

.tab-ring-box .arc-2 {
	animation: tab-ring-spin-reverse 31s linear infinite;
	background: conic-gradient(from 160deg, transparent 0deg, rgba(0, 226, 255, 0.45) 35deg, transparent 75deg, rgba(255, 62, 165, 0.35) 150deg, transparent 210deg, rgba(134, 95, 255, 0.45) 285deg, transparent 340deg);
	height: 88%;
	-webkit-mask: radial-gradient(circle, transparent 70%, #000 71%, #000 72%, transparent 73%);
	mask: radial-gradient(circle, transparent 70%, #000 71%, #000 72%, transparent 73%);
	opacity: 0.55;
	width: 88%;
}

.tab-ring-box .tab-center {
	align-items: center;
	background:
		radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 30%),
		linear-gradient(145deg, #10284f 0%, #06172e 65%, #020815 100%);
	border: 2px solid rgba(0, 226, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 226, 255, 0.85), 0 0 55px rgba(0, 226, 255, 0.28), inset 0 0 25px rgba(0, 226, 255, 0.16);
	display: flex;
	flex-direction: column;
	height: 43%;
	justify-content: center;
	position: relative;
	text-align: center;
	width: 43%;
}

.tab-ring-box .tab-center::before {
	border: 1px solid rgba(0, 226, 255, 0.2);
	border-radius: 50%;
	content: "";
	inset: 8px;
	position: absolute;
}

.tab-ring-box .tab-center h2 {
	color: #ffffff;
	font-size: clamp(26px, 5vw, 54px);
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1;
	margin: 0;
}

.tab-ring-box .tab-center h3 {
	color: #ffffff;
	font-size: clamp(6px, 1.1vw, 11px);
	font-weight: 800;
	letter-spacing: 0.3px;
	line-height: 1.2;
	margin: 4px 0 0;
	text-transform: uppercase;
}

.tab-ring-box .tab-center p {
	color: #9defff;
	font-size: clamp(5px, 0.9vw, 9px);
	font-weight: 600;
	margin: 4px 0 0;
}

@keyframes tab-ring-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes tab-ring-spin-reverse {
	from { transform: rotate(360deg); }
	to   { transform: rotate(0deg); }
}

/* ═══════════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════════ */
.tab-hero-search-section {
	margin-top: -70px;
	padding: 0 clamp(16px, 3vw, 40px);
	position: relative;
	z-index: 4;
}

.tab-home-search {
	align-items: end;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(5, 15, 40, 0.90);
	border: 1px solid rgba(8, 217, 246, 0.22);
	border-radius: 18px;
	box-shadow: 0 28px 72px rgba(2, 11, 34, 0.42);
	box-sizing: border-box;
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 0.86fr 0.86fr auto;
	margin: 0 auto;
	max-width: 1120px;
	padding: 22px 24px;
	width: 100%;
}

.tab-home-search p {
	margin: 0;
}

.tab-home-search label {
	color: rgba(255, 255, 255, 0.72);
	display: block;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.tab-home-search input,
.tab-home-search select {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	box-sizing: border-box;
	color: #ffffff;
	font: inherit;
	min-height: 50px;
	padding: 0 14px;
	transition: border-color var(--tab-transition);
	width: 100%;
}

.tab-home-search input:focus,
.tab-home-search select:focus {
	border-color: rgba(8, 217, 246, 0.5);
	outline: none;
}

.tab-home-search input::placeholder { color: rgba(255, 255, 255, 0.44); }
.tab-home-search select option     { color: #071426; }

.tab-home-search button {
	align-self: end;
	background: var(--tab-cyan);
	border: 0;
	border-radius: 11px;
	color: #021027;
	cursor: pointer;
	font: inherit;
	font-size: var(--fs-sm);
	font-weight: 900;
	letter-spacing: 0.05em;
	min-height: 50px;
	min-width: 120px;
	padding: 0 20px;
	text-transform: uppercase;
	transition: background var(--tab-transition), box-shadow var(--tab-transition), transform var(--tab-transition);
	white-space: nowrap;
}

.tab-home-search button:hover {
	background: #ffffff;
	box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════ */
.tab-section {
	background: transparent;
	padding: 96px 0;
}

.tab-section + .tab-section {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tab-section-heading {
	margin-bottom: 52px;
	max-width: 780px;
}

.tab-section-kicker {
	background: rgba(8, 217, 246, 0.08);
	border: 1px solid rgba(8, 217, 246, 0.22);
	border-radius: 999px;
	color: var(--tab-cyan);
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 16px;
	padding: 6px 16px;
	text-transform: uppercase;
}

.tab-section h2 {
	color: #ffffff;
	font-size: var(--fs-2xl);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: var(--lh-snug);
	margin: 0 0 16px;
}

.tab-section p {
	color: var(--tab-muted);
	font-size: var(--fs-base);
	line-height: var(--lh-loose);
	margin: 0;
}

.tab-two-column {
	align-items: start;
	display: grid;
	gap: 72px;
	grid-template-columns: 0.82fr 1.18fr;
}

/* Left column decorative accent on two-column sections */
.tab-two-column > div:first-child {
	position: relative;
}

.tab-two-column > div:first-child::after {
	background: linear-gradient(180deg, var(--tab-cyan), transparent);
	border-radius: 999px;
	content: "";
	height: 60%;
	left: -28px;
	opacity: 0.18;
	pointer-events: none;
	position: absolute;
	top: 20%;
	width: 2px;
}

/* ─── Stats ─── */
.tab-stats {
	margin-top: 24px;
	padding: 0 0 96px;
	position: relative;
	z-index: 2;
}

.tab-stat-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tab-stat-card {
	align-items: center;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: linear-gradient(145deg, rgba(8, 24, 64, 0.82), rgba(4, 12, 36, 0.9));
	border: 1px solid rgba(8, 217, 246, 0.14);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;
	padding: 28px 22px 24px;
	position: relative;
	text-align: center;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-stat-card::before {
	background: linear-gradient(90deg, transparent, rgba(8, 217, 246, 0.22), transparent);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.tab-stat-card:hover {
	border-color: rgba(8, 217, 246, 0.42);
	box-shadow: 0 12px 40px rgba(8, 217, 246, 0.12), 0 0 0 1px rgba(8, 217, 246, 0.08);
	transform: translateY(-4px);
}

.tab-stat-icon {
	align-items: center;
	border-radius: 16px;
	display: flex;
	flex-shrink: 0;
	height: 52px;
	justify-content: center;
	position: relative;
	width: 52px;
}

.tab-stat-icon::before,
.tab-stat-icon::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	position: absolute;
}

.tab-stat-icon::before { height: 14px; left: 50%; top: 50%; transform: translate(-50%, -60%); width: 14px; }
.tab-stat-icon::after  { height: 5px; left: 50%; top: 60%; transform: translate(-50%, 0); width: 26px; }

.tab-stat-icon-members   { background: rgba(8, 217, 246, 0.12); border: 1px solid rgba(8, 217, 246, 0.28); color: var(--tab-cyan); }
.tab-stat-icon-categories { background: rgba(124, 60, 255, 0.12); border: 1px solid rgba(124, 60, 255, 0.28); color: var(--tab-violet); }
.tab-stat-icon-events    { background: rgba(236, 44, 160, 0.12); border: 1px solid rgba(236, 44, 160, 0.28); color: var(--tab-pink); }
.tab-stat-icon-verified  { background: rgba(8, 217, 246, 0.12); border: 1px solid rgba(8, 217, 246, 0.28); color: var(--tab-cyan); }
.tab-stat-icon-cities    { background: rgba(255, 123, 26, 0.12); border: 1px solid rgba(255, 123, 26, 0.28); color: var(--tab-orange); }

.tab-stat-card strong {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(135deg, var(--tab-cyan) 10%, #ffffff 60%);
	-webkit-background-clip: text;
	background-clip: text;
	display: block;
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.tab-stat-icon-categories ~ div strong {
	background: linear-gradient(135deg, var(--tab-violet) 10%, #c8a8ff 60%);
	-webkit-background-clip: text;
	background-clip: text;
}
.tab-stat-icon-events ~ div strong {
	background: linear-gradient(135deg, var(--tab-pink) 10%, #ff8fd8 60%);
	-webkit-background-clip: text;
	background-clip: text;
}
.tab-stat-icon-cities ~ div strong {
	background: linear-gradient(135deg, var(--tab-orange) 10%, #ffbc80 60%);
	-webkit-background-clip: text;
	background-clip: text;
}

.tab-stat-card > div > span {
	color: var(--tab-muted);
	display: block;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.45;
	margin-top: 4px;
	text-transform: uppercase;
}

/* ─── Benefits ─── */
.tab-benefit-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tab-benefit-card {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(8, 20, 52, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	display: grid;
	gap: 12px;
	grid-template-rows: auto auto 1fr;
	padding: 28px 26px;
	position: relative;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-benefit-card::after {
	background: linear-gradient(135deg, rgba(8, 217, 246, 0.06), transparent 50%);
	border-radius: inherit;
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity var(--tab-transition);
}

.tab-benefit-card:nth-child(2) { --benefit-color: var(--tab-violet); --benefit-rgb: 124, 60, 255; }
.tab-benefit-card:nth-child(3) { --benefit-color: var(--tab-pink);   --benefit-rgb: 236, 44, 160; }
.tab-benefit-card:nth-child(4) { --benefit-color: var(--tab-orange); --benefit-rgb: 255, 123, 26; }

.tab-benefit-card {
	--benefit-color: var(--tab-cyan);
	--benefit-rgb: 8, 217, 246;
}

.tab-benefit-card:hover {
	border-color: rgba(var(--benefit-rgb), 0.35);
	box-shadow: 0 12px 40px rgba(var(--benefit-rgb), 0.12);
	transform: translateY(-3px);
}

.tab-benefit-card:hover::after { opacity: 1; }

.tab-benefit-card > span {
	align-items: center;
	background: rgba(var(--benefit-rgb), 0.1);
	border: 1px solid rgba(var(--benefit-rgb), 0.24);
	border-radius: 14px;
	display: flex;
	height: 48px;
	justify-content: center;
	position: relative;
	width: 48px;
}

.tab-benefit-card > span::before {
	background: var(--benefit-color);
	border-radius: 999px;
	content: "";
	height: 18px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 18px;
}

.tab-benefit-card strong {
	color: #ffffff;
	font-size: var(--fs-md);
	font-weight: 800;
	line-height: 1.2;
}

.tab-benefit-card small {
	color: var(--tab-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-base);
}

/* ─── Tinted section backgrounds ─── */

/* "Why Join" section — violet-left, cyan-right depth wash */
.tab-section.tab-section-alt {
	background:
		radial-gradient(ellipse at 0% 50%, rgba(124, 60, 255, 0.12), transparent 38%),
		radial-gradient(ellipse at 100% 50%, rgba(8, 217, 246, 0.08), transparent 38%),
		linear-gradient(180deg, rgba(6, 4, 28, 0.7), rgba(4, 10, 30, 0.82));
	border-bottom: 1px solid rgba(124, 60, 255, 0.1);
	border-top: 1px solid rgba(124, 60, 255, 0.14);
}

/* "Process" section — cyan top glow, slightly raised */
.tab-section.tab-section-process {
	background:
		radial-gradient(ellipse at 50% -10%, rgba(8, 217, 246, 0.12), transparent 48%),
		radial-gradient(ellipse at 50% 110%, rgba(124, 60, 255, 0.07), transparent 44%),
		rgba(3, 9, 24, 0.72);
	border-bottom: 1px solid rgba(8, 217, 246, 0.08);
	border-top: 1px solid rgba(8, 217, 246, 0.14);
}

/* Stronger heading spacing inside alt sections */
.tab-section-alt .tab-two-column > div:first-child h2,
.tab-section-alt .tab-two-column > div:first-child p {
	max-width: 420px;
}

/* ─── Navy band (Categories section wrapper) ─── */
.tab-navy-band {
	background:
		radial-gradient(ellipse at 85% 20%, rgba(8, 217, 246, 0.12), transparent 32%),
		radial-gradient(ellipse at 14% 80%, rgba(236, 44, 160, 0.1), transparent 32%),
		radial-gradient(ellipse at 50% 50%, rgba(124, 60, 255, 0.06), transparent 60%),
		rgba(2, 7, 22, 0.9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(8, 217, 246, 0.1);
	border-radius: 24px;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 clamp(12px, 2.5vw, 40px);
}

.tab-navy-band h2 { color: #ffffff; }
.tab-navy-band .tab-section-kicker { color: var(--tab-cyan); }

/* ─── Category grid ─── */
.tab-category-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tab-category-pill {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	display: grid;
	gap: 10px;
	min-height: 138px;
	overflow: hidden;
	padding: 22px 18px 18px;
	place-items: center;
	position: relative;
	text-align: center;
	transition: border-color var(--tab-transition), background var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-category-pill::before {
	background: radial-gradient(circle at 50% 0%, rgba(8, 217, 246, 0.18), transparent 55%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity var(--tab-transition);
}

.tab-category-pill:hover {
	background: rgba(8, 217, 246, 0.07);
	border-color: rgba(8, 217, 246, 0.38);
	box-shadow: 0 10px 32px rgba(8, 217, 246, 0.1);
	transform: translateY(-3px);
}

.tab-category-pill:hover::before { opacity: 1; }

.tab-category-icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(8, 217, 246, 0.15), rgba(124, 60, 255, 0.1));
	border: 1px solid rgba(8, 217, 246, 0.24);
	border-radius: 14px;
	display: flex;
	height: 48px;
	justify-content: center;
	position: relative;
	width: 48px;
}

.tab-category-icon::before {
	background: var(--tab-cyan);
	border-radius: 999px;
	content: "";
	height: 20px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
}

.tab-category-icon::after { display: none; }

.tab-category-pill strong {
	color: #ffffff;
	display: block;
	font-size: var(--fs-sm);
	font-weight: 800;
	line-height: 1.25;
}

.tab-category-pill small {
	background: rgba(8, 217, 246, 0.1);
	border: 1px solid rgba(8, 217, 246, 0.2);
	border-radius: 999px;
	color: var(--tab-cyan);
	font-size: var(--fs-xs);
	font-weight: 700;
	padding: 2px 10px;
}

/* ─── Member preview ─── */
.tab-featured-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab-glass-card {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: var(--tab-bg-card);
	border: 1px solid var(--tab-border);
	border-radius: var(--tab-radius);
	overflow: hidden;
	padding: 28px;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-glass-card:hover {
	border-color: rgba(8, 217, 246, 0.32);
	box-shadow: 0 0 28px rgba(8, 217, 246, 0.1), 0 20px 50px rgba(2, 11, 34, 0.4);
	transform: translateY(-3px);
}

.tab-member-preview {
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: linear-gradient(160deg, rgba(10, 24, 62, 0.85), rgba(4, 12, 38, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-member-preview::before {
	background: linear-gradient(135deg, rgba(8, 217, 246, 0.08), transparent 60%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity var(--tab-transition);
	z-index: 0;
}

.tab-member-preview:hover {
	border-color: rgba(8, 217, 246, 0.36);
	box-shadow: 0 14px 48px rgba(8, 217, 246, 0.12), 0 0 0 1px rgba(8, 217, 246, 0.06);
	transform: translateY(-4px);
}

.tab-member-preview:hover::before { opacity: 1; }

.tab-member-preview a {
	display: grid;
	gap: 10px;
	padding: 28px 26px;
	position: relative;
	z-index: 1;
}

.tab-member-mark {
	align-items: center;
	background: linear-gradient(135deg, var(--tab-blue), var(--tab-violet));
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(20, 121, 255, 0.3);
	color: #ffffff;
	display: flex;
	font-size: 22px;
	font-weight: 900;
	height: 60px;
	justify-content: center;
	margin-bottom: 12px;
	width: 60px;
}

.tab-member-mark img {
	border-radius: inherit;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tab-member-preview h3 {
	color: #ffffff;
	font-size: var(--fs-md);
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.tab-member-preview p {
	color: var(--tab-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-base);
	margin: 0;
}

.tab-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 2px;
}

.tab-card-badges span {
	background: rgba(8, 217, 246, 0.1);
	border: 1px solid rgba(8, 217, 246, 0.22);
	border-radius: 999px;
	color: var(--tab-cyan);
	font-size: var(--fs-xs);
	font-weight: 700;
	padding: 3px 10px;
}

.tab-card-action {
	align-items: center;
	color: var(--tab-cyan);
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 800;
	gap: 5px;
	letter-spacing: 0.02em;
	margin-top: 4px;
}

.tab-card-action::after {
	content: "→";
	display: inline-block;
	transition: transform var(--tab-transition);
}

.tab-member-preview:hover .tab-card-action::after {
	transform: translateX(4px);
}

/* ─── Events ─── */
.tab-events-section {
	background: transparent;
}

.tab-event-list {
	display: grid;
	gap: 12px;
}

.tab-event-card {
	align-items: center;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(8, 16, 46, 0.72);
	border: 1px solid rgba(124, 60, 255, 0.12);
	border-radius: 18px;
	display: grid;
	gap: 18px;
	grid-template-columns: auto 1fr auto;
	padding: 20px 22px;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-event-card:hover {
	border-color: rgba(124, 60, 255, 0.44);
	box-shadow: 0 10px 36px rgba(124, 60, 255, 0.14);
	transform: translateY(-2px);
}

.tab-event-date-block {
	align-items: center;
	background: linear-gradient(135deg, rgba(124, 60, 255, 0.14), rgba(8, 217, 246, 0.08));
	border: 1px solid rgba(124, 60, 255, 0.26);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	height: 66px;
	justify-content: center;
	width: 66px;
}

.tab-event-date-block strong {
	color: var(--tab-violet);
	display: block;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.tab-event-date-block small {
	color: rgba(139, 171, 212, 0.9);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin-top: 2px;
	text-transform: uppercase;
}

.tab-event-summary {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.tab-event-summary strong {
	color: #ffffff;
	display: block;
	font-size: var(--fs-md);
	font-weight: 800;
	line-height: 1.2;
}

.tab-event-summary small {
	color: var(--tab-muted);
	display: block;
	font-size: var(--fs-sm);
	line-height: var(--lh-base);
}

.tab-event-card-arrow {
	color: rgba(124, 60, 255, 0.5);
	display: none;
	font-size: 18px;
	transition: color var(--tab-transition), transform var(--tab-transition);
}

a.tab-event-card .tab-event-card-arrow {
	display: block;
}

.tab-event-card:hover .tab-event-card-arrow {
	color: var(--tab-violet);
	transform: translateX(4px);
}

/* ─── Plan cards ─── */
.tab-plan-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab-plan-card {
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: linear-gradient(160deg, rgba(10, 22, 58, 0.88), rgba(4, 10, 32, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	display: grid;
	gap: 14px;
	overflow: hidden;
	padding: 34px 28px 28px;
	position: relative;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-plan-card::before {
	background: linear-gradient(90deg, var(--tab-cyan), var(--tab-violet), var(--tab-pink));
	border-radius: 22px 22px 0 0;
	content: "";
	height: 3px;
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity var(--tab-transition), height var(--tab-transition);
}

.tab-plan-card::after {
	background: radial-gradient(ellipse at 50% -20%, rgba(8, 217, 246, 0.1), transparent 60%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity var(--tab-transition);
}

.tab-plan-card:hover {
	border-color: rgba(8, 217, 246, 0.38);
	box-shadow: 0 18px 56px rgba(8, 217, 246, 0.14), 0 0 0 1px rgba(8, 217, 246, 0.06);
	transform: translateY(-6px);
}

.tab-plan-card:hover::before { opacity: 0.9; }
.tab-plan-card:hover::after  { opacity: 1; }

.tab-plan-card h3 {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--fs-sm);
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0;
	text-transform: uppercase;
}

.tab-plan-card > strong {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(120deg, #ffffff, var(--tab-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	display: block;
	font-size: clamp(34px, 3.6vw, 52px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.tab-plan-card > span {
	color: rgba(139, 171, 212, 0.7);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tab-plan-card p {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--tab-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-base);
	margin: 0;
	padding-top: 14px;
}

.tab-plan-features {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tab-plan-features li {
	align-items: center;
	color: rgba(232, 240, 254, 0.85);
	display: flex;
	font-size: var(--fs-sm);
	gap: 10px;
	line-height: 1.4;
}

.tab-plan-features li::before {
	align-items: center;
	background: rgba(8, 217, 246, 0.12);
	border: 1px solid rgba(8, 217, 246, 0.3);
	border-radius: 999px;
	color: var(--tab-cyan);
	content: "✓";
	display: flex;
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 900;
	height: 20px;
	justify-content: center;
	width: 20px;
}

.tab-plan-cta {
	align-items: center;
	background: rgba(8, 217, 246, 0.1);
	border: 1px solid rgba(8, 217, 246, 0.36);
	border-radius: 12px;
	color: var(--tab-cyan) !important;
	display: flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	justify-content: center;
	letter-spacing: 0.06em;
	min-height: 50px;
	padding: 0 16px;
	text-transform: uppercase;
	transition: background var(--tab-transition), color var(--tab-transition), box-shadow var(--tab-transition), transform var(--tab-transition);
	width: 100%;
}

.tab-plan-cta:hover {
	background: var(--tab-cyan);
	box-shadow: 0 10px 32px rgba(8, 217, 246, 0.36);
	color: #021027 !important;
	transform: translateY(-1px);
}

/* ─── Process ─── */
.tab-process-section {
	background: transparent;
}

.tab-process-grid {
	counter-reset: process-step;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	position: relative;
}

.tab-process-grid::before {
	background: linear-gradient(90deg, var(--tab-cyan), var(--tab-violet), var(--tab-pink));
	content: "";
	height: 2px;
	left: calc(50% / 3 + 28px);
	opacity: 0.28;
	pointer-events: none;
	position: absolute;
	right: calc(50% / 3 + 28px);
	top: 0;
	z-index: 0;
}

.tab-process-card {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: linear-gradient(160deg, rgba(8, 20, 56, 0.82), rgba(4, 10, 32, 0.9));
	border: 1px solid rgba(8, 217, 246, 0.1);
	border-radius: 22px;
	counter-increment: process-step;
	margin: 0;
	padding: 48px 28px 34px;
	position: relative;
	text-align: center;
	transition: border-color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
	z-index: 1;
	overflow: visible;
}

.tab-process-card::before {
	align-items: center;
	background: linear-gradient(135deg, rgba(8, 217, 246, 0.18), rgba(124, 60, 255, 0.14));
	border: 2px solid rgba(8, 217, 246, 0.36);
	border-radius: 50%;
	color: var(--tab-cyan);
	content: counter(process-step, decimal-leading-zero);
	display: flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	height: 52px;
	justify-content: center;
	left: 50%;
	letter-spacing: 0.02em;
	position: absolute;
	top: -26px;
	transform: translateX(-50%);
	width: 52px;
}

.tab-process-card:hover {
	border-color: rgba(8, 217, 246, 0.4);
	box-shadow: 0 14px 48px rgba(8, 217, 246, 0.12);
	transform: translateY(-4px);
}

.tab-process-card > span {
	display: none;
}

.tab-process-card h3 {
	color: #ffffff;
	font-size: var(--fs-lg);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
}

.tab-process-card p {
	color: var(--tab-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	margin: 0;
}

/* ─── CTA ─── */
.tab-home-cta {
	background:
		radial-gradient(ellipse at 20% 60%, rgba(8, 217, 246, 0.12), transparent 44%),
		radial-gradient(ellipse at 82% 30%, rgba(124, 60, 255, 0.14), transparent 44%),
		radial-gradient(ellipse at 50% 110%, rgba(236, 44, 160, 0.08), transparent 44%),
		linear-gradient(180deg, rgba(4, 8, 28, 0.88), rgba(2, 6, 20, 0.96));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 28px 28px 0 0;
	border-top: 1px solid rgba(8, 217, 246, 0.16);
	overflow: hidden;
	padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 80px);
	position: relative;
	text-align: center;
}

.tab-home-cta::before {
	background: linear-gradient(90deg, transparent, rgba(8, 217, 246, 0.4), var(--tab-violet), rgba(236, 44, 160, 0.5), transparent);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.tab-home-cta h2 {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(135deg, #ffffff 30%, var(--tab-cyan) 70%, var(--tab-violet) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	font-size: clamp(28px, 4.5vw, 60px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 auto 36px;
	max-width: 800px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
	background:
		radial-gradient(ellipse at 8% 0%, rgba(8, 217, 246, 0.09), transparent 38%),
		radial-gradient(ellipse at 92% 60%, rgba(124, 60, 255, 0.08), transparent 38%),
		rgba(3, 9, 22, 0.98);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-top: 1px solid rgba(8, 217, 246, 0.12);
	color: rgba(255, 255, 255, 0.82);
}

/* Rainbow accent bar at top */
.tab-footer-accent {
	background: linear-gradient(90deg, transparent 0%, var(--tab-cyan) 25%, var(--tab-violet) 50%, var(--tab-pink) 75%, transparent 100%);
	height: 2px;
	opacity: 0.65;
}

/* ── Footer inner grid ── */
.tab-footer-inner {
	box-sizing: border-box;
	display: grid;
	gap: 52px 44px;
	grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(130px, 1fr));
	margin: 0 auto;
	max-width: 100%;
	padding: 64px clamp(20px, 4vw, 60px) 52px;
	width: 100%;
}

/* ── Brand column ── */
.tab-footer-brand .tab-brand {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 16px;
	text-decoration: none;
}

.tab-footer-brand .tab-logo-svg {
	height: 42px;
	width: 42px;
}

.tab-footer-brand .tab-brand-text strong {
	color: #fff;
	display: block;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.tab-footer-brand .tab-brand-text small {
	color: var(--tab-cyan);
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-top: 2px;
	text-transform: uppercase;
}

.tab-footer-brand p {
	color: rgba(255, 255, 255, 0.48);
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	margin: 0 0 20px;
	max-width: 270px;
}

/* Trust badges */
.tab-footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 24px;
}

.tab-footer-trust span {
	background: rgba(8, 217, 246, 0.07);
	border: 1px solid rgba(8, 217, 246, 0.2);
	border-radius: 999px;
	color: rgba(8, 217, 246, 0.9);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 4px 13px;
	text-transform: uppercase;
}

/* ── Column headings ── */
.tab-footer-column h2 {
	color: rgba(255, 255, 255, 0.95);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 20px;
	position: relative;
	text-transform: uppercase;
}

.tab-footer-column h2::after {
	background: linear-gradient(90deg, var(--tab-cyan), var(--tab-violet), transparent);
	border-radius: 999px;
	content: "";
	display: block;
	height: 2px;
	margin-top: 9px;
	width: 30px;
}

.tab-footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tab-footer-column li {
	margin-bottom: 12px;
}

.tab-footer-contact li {
	color: rgba(255, 255, 255, 0.52);
	font-size: var(--fs-sm);
}

.tab-footer-column a {
	align-items: center;
	color: rgba(255, 255, 255, 0.54);
	display: inline-flex;
	font-size: var(--fs-sm);
	gap: 6px;
	transition: color var(--tab-transition), transform var(--tab-transition);
}

.tab-footer-column a::before {
	background: var(--tab-cyan);
	border-radius: 999px;
	content: "";
	flex-shrink: 0;
	height: 4px;
	opacity: 0;
	transition: opacity var(--tab-transition);
	width: 4px;
}

.tab-footer-column a:hover,
.tab-footer-column a:focus {
	color: rgba(255, 255, 255, 0.92);
	transform: translateX(4px);
}

.tab-footer-column a:hover::before,
.tab-footer-column a:focus::before {
	opacity: 1;
}

/* ── Social links ── */
.tab-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tab-social-links a {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.65);
	display: inline-flex;
	font-size: 11.5px;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	letter-spacing: 0.03em;
	min-width: 80px;
	padding: 0 14px;
	text-transform: uppercase;
	transition: background var(--tab-transition), border-color var(--tab-transition), color var(--tab-transition), transform var(--tab-transition), box-shadow var(--tab-transition);
}

.tab-social-links a:hover {
	background: rgba(8, 217, 246, 0.1);
	border-color: rgba(8, 217, 246, 0.35);
	box-shadow: 0 4px 14px rgba(8, 217, 246, 0.15);
	color: var(--tab-cyan);
	transform: translateY(-2px);
}

/* Tell browser these zones handle horizontal gestures */
.tab-carousel-wrap {
	touch-action: pan-x;
}


/* Wrapper that becomes display:contents on desktop so columns are grid children */
.tab-footer-columns-row {
	display: contents;
}

.tab-footer-made {
	color: rgba(255, 255, 255, 0.22);
	font-size: 12px;
	margin: 0;
}

/* ── Footer bottom bar ── */
.tab-footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 100%;
	padding: 20px clamp(20px, 4vw, 60px) 28px;
	width: 100%;
}

.tab-footer-bottom p {
	color: rgba(255, 255, 255, 0.32);
	font-size: var(--fs-sm);
	margin: 0;
}

/* ═══════════════════════════════════════════════════════
   INNER / CONTENT PAGES
═══════════════════════════════════════════════════════ */
.tab-inner-page {
	background: transparent;
}

/* ── Page Hero (all inner pages) ── */
.tab-page-hero {
	background:
		radial-gradient(ellipse at 90% 0%, rgba(8, 217, 246, 0.16), transparent 36%),
		radial-gradient(ellipse at 8% 100%, rgba(124, 60, 255, 0.14), transparent 36%),
		radial-gradient(ellipse at 50% 50%, rgba(236, 44, 160, 0.05), transparent 60%),
		linear-gradient(160deg, #020c20, #071830);
	color: #ffffff;
	overflow: hidden;
	padding: 92px 0 76px;
	position: relative;
}

.tab-page-hero::after {
	background: linear-gradient(90deg, transparent, rgba(8, 217, 246, 0.5), var(--tab-violet), rgba(236, 44, 160, 0.5), transparent);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}

.tab-page-hero-post {
	background:
		radial-gradient(ellipse at 75% 20%, rgba(124, 60, 255, 0.16), transparent 36%),
		radial-gradient(ellipse at 20% 80%, rgba(8, 217, 246, 0.1), transparent 36%),
		linear-gradient(160deg, #020c20, #071830);
}

.tab-page-hero-404 {
	background:
		radial-gradient(ellipse at 50% 40%, rgba(236, 44, 160, 0.14), transparent 48%),
		linear-gradient(160deg, #020c20, #071830);
}

.tab-page-hero-inner {
	max-width: 900px;
}

.tab-page-hero h1 {
	color: #ffffff;
	font-size: clamp(32px, 5.5vw, 72px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 8px 0 0;
	max-width: 860px;
}

.tab-page-lead {
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.7;
	margin: 20px 0 0;
	max-width: 680px;
}

.tab-post-meta-top {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 4px;
}

.tab-post-date {
	color: rgba(255, 255, 255, 0.48);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ── Inner content wrapper ── */
.tab-inner-content {
	padding-bottom: 88px;
	padding-top: 64px;
}

/* ── Prose (page / single content) ── */
.tab-prose {
	color: rgba(232, 240, 254, 0.88);
	font-size: var(--fs-base);
	line-height: var(--lh-loose);
	max-width: 780px;
}

.tab-prose h1,
.tab-prose h2,
.tab-prose h3,
.tab-prose h4 {
	color: #ffffff;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 2em 0 0.6em;
}

.tab-prose h2 { font-size: clamp(22px, 2.8vw, 32px); }
.tab-prose h3 { font-size: clamp(18px, 2vw, 24px); }
.tab-prose h4 { font-size: var(--fs-lg); }

.tab-prose p { margin: 0 0 1.4em; }

.tab-prose a {
	color: var(--tab-cyan);
	text-decoration: underline;
	text-decoration-color: rgba(8, 217, 246, 0.36);
	text-underline-offset: 3px;
}

.tab-prose a:hover { text-decoration-color: var(--tab-cyan); }

.tab-prose ul,
.tab-prose ol {
	color: rgba(232, 240, 254, 0.8);
	margin: 0 0 1.4em;
	padding-left: 1.5em;
}

.tab-prose li { margin-bottom: 0.5em; }

.tab-prose blockquote {
	border-left: 3px solid var(--tab-cyan);
	color: var(--tab-muted);
	font-size: var(--fs-md);
	font-style: italic;
	margin: 2em 0;
	padding: 1em 1.5em;
}

.tab-prose img {
	border-radius: var(--tab-radius);
	height: auto;
	max-width: 100%;
}

.tab-prose hr {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin: 2.5em 0;
}

.tab-prose pre,
.tab-prose code {
	background: rgba(8, 217, 246, 0.06);
	border: 1px solid rgba(8, 217, 246, 0.14);
	border-radius: 6px;
	font-family: "Fira Code", "Cascadia Code", Consolas, monospace;
	font-size: var(--fs-sm);
}

.tab-prose pre { overflow-x: auto; padding: 1.2em 1.4em; }
.tab-prose code { padding: 2px 7px; }
.tab-prose pre code { background: transparent; border: 0; padding: 0; }

/* ── Post navigation ── */
.tab-post-nav {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr;
	margin-top: 64px;
	padding-top: 36px;
}

.tab-post-nav-link {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(8, 20, 52, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	display: grid;
	gap: 6px;
	padding: 20px 22px;
	transition: border-color var(--tab-transition), transform var(--tab-transition);
}

.tab-post-nav-link:hover {
	border-color: rgba(8, 217, 246, 0.34);
	transform: translateY(-2px);
}

.tab-post-nav-next { text-align: right; }

.tab-post-nav-dir {
	color: var(--tab-cyan);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tab-post-nav-title {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--fs-sm);
	font-weight: 700;
	line-height: 1.3;
}

/* ── Archive grid ── */
.tab-archive-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.tab-archive-card {
	display: grid;
	gap: 10px;
}

.tab-archive-meta time {
	color: var(--tab-cyan);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tab-archive-title {
	color: #ffffff;
	font-size: var(--fs-lg);
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.tab-archive-title a {
	color: inherit;
	transition: color var(--tab-transition);
}

.tab-archive-title a:hover { color: var(--tab-cyan); }

.tab-archive-excerpt {
	color: var(--tab-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-base);
	margin: 0;
}

.tab-archive-read {
	color: var(--tab-cyan);
	font-size: var(--fs-sm);
	font-weight: 800;
	margin-top: 4px;
	transition: opacity var(--tab-transition);
}

.tab-archive-read:hover { opacity: 0.78; }

/* ── Pagination ── */
.tab-pagination {
	margin-top: 48px;
}

.tab-pagination .nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tab-pagination .page-numbers {
	align-items: center;
	background: rgba(8, 20, 52, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 700;
	height: 40px;
	justify-content: center;
	min-width: 40px;
	padding: 0 12px;
	transition: border-color var(--tab-transition), color var(--tab-transition);
}

.tab-pagination .page-numbers.current,
.tab-pagination .page-numbers:hover {
	border-color: rgba(8, 217, 246, 0.4);
	color: var(--tab-cyan);
}

/* ── Empty / 404 ── */
.tab-empty-state {
	padding: 48px 0;
	text-align: center;
}

.tab-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding-bottom: 80px;
	padding-top: 40px;
}

/* About page: keep the original editor content, only make it full-width responsive. */
.tab-about-content-wide {
	width: 100%;
}

.tab-about-page .tab-content-page .tab-page-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-about-page .tab-content-page .tab-page-hero .tab-network-canvas {
	cursor: default;
}

.tab-about-content-wide img,
.tab-about-content-wide iframe,
.tab-about-content-wide video {
	height: auto;
	max-width: 100%;
}

.tab-about-content-wide table {
	border-collapse: collapse;
	display: block;
	max-width: 100%;
	overflow-x: auto;
	width: 100%;
}

.tab-about-content-wide .wp-block-columns {
	gap: clamp(18px, 3vw, 42px);
}

.tab-about-content-wide .alignwide,
.tab-about-content-wide .alignfull {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
	width: 100%;
}

/* Directory page */
.tab-directory-page .tab-directory-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-directory-content-wide {
	width: 100%;
}

.tab-directory-page .tab-member-results-grid {
	gap: clamp(18px, 2vw, 28px);
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tab-directory-page .tab-member-card {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.36);
	color: #f8fbff;
	min-height: 300px;
	overflow: hidden;
	position: relative;
	transition: border-color var(--tab-transition), box-shadow var(--tab-transition), transform var(--tab-transition);
}

.tab-directory-page .tab-member-card:nth-child(3n + 2) {
	background: #0b1f34;
}

.tab-directory-page .tab-member-card:nth-child(3n) {
	background: #101a32;
}

.tab-directory-page .tab-member-card::before {
	background: #14c8cb;
	height: 4px;
	opacity: 0.9;
}

.tab-directory-page .tab-member-card::after {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
		radial-gradient(circle at 92% 16%, rgba(20, 200, 203, 0.08), transparent 34%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity var(--tab-transition);
}

.tab-directory-page .tab-member-card:hover {
	border-color: rgba(20, 200, 203, 0.38);
	box-shadow: 0 24px 58px rgba(2, 8, 23, 0.46);
	transform: translateY(-4px);
}

.tab-directory-page .tab-member-card:hover::after {
	opacity: 1;
}

.tab-directory-page .tab-member-card-main {
	align-items: flex-start;
	color: inherit;
	display: grid;
	gap: 18px;
	grid-template-columns: 70px 1fr;
	min-height: 214px;
	padding: 28px 24px 24px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}

.tab-directory-page .tab-member-results-grid .tab-member-card-main {
	grid-template-columns: 70px 1fr;
}

.tab-directory-page .tab-member-logo {
	align-items: center;
	background: #10213d;
	border: 1px solid rgba(20, 200, 203, 0.36);
	border-radius: 10px;
	box-shadow: none;
	color: #9defff;
	display: flex;
	flex: 0 0 70px;
	height: 70px;
	justify-content: center;
	overflow: hidden;
	width: 70px;
}

.tab-directory-page .tab-member-logo img {
	border-radius: 9px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tab-directory-page .tab-member-logo span {
	color: #9defff;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.tab-directory-page .tab-member-summary {
	min-width: 0;
}

.tab-directory-page .tab-member-summary h3 {
	color: #ffffff;
	font-size: clamp(19px, 1.8vw, 24px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.16;
	margin: 0 0 8px;
}

.tab-directory-page .tab-member-summary p {
	color: #14c8cb;
	font-size: var(--fs-sm);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.tab-directory-page .tab-member-summary > span {
	color: rgba(226, 235, 248, 0.62);
	display: block;
	font-size: var(--fs-sm);
	font-weight: 650;
	margin-bottom: 14px;
}

.tab-directory-page .tab-member-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tab-directory-page .tab-badge {
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 5px 10px;
	text-transform: uppercase;
}

.tab-directory-page .tab-badge-verified {
	background: #14c8cb;
	color: #021027;
}

.tab-directory-page .tab-badge-premium,
.tab-directory-page .tab-badge-featured {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
}

.tab-directory-page .tab-member-actions {
	background: #061126;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 14px;
	position: relative;
	z-index: 1;
}

.tab-directory-page .tab-member-actions .button {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	text-align: center;
	transition: background var(--tab-transition), border-color var(--tab-transition), box-shadow var(--tab-transition), color var(--tab-transition), transform var(--tab-transition);
}

.tab-directory-page .tab-member-actions .button:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	box-shadow: 0 8px 22px rgba(20, 200, 203, 0.2);
	color: #021027;
	transform: translateY(-1px);
}

.tab-directory-page .tab-member-results-list .tab-member-card {
	min-height: 0;
}

.tab-directory-page .tab-member-results-list .tab-member-card-main {
	align-items: center;
	grid-template-columns: auto 1fr;
	min-height: 0;
}

/* Membership page */
.tab-membership-page .tab-membership-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-membership-content-wide {
	padding: clamp(40px, 6vw, 82px) clamp(16px, 3.5vw, 48px);
	width: 100%;
}

.tab-membership-page .tab-plans-wrap {
	max-width: none;
}

.tab-membership-page .tab-plans-grid {
	gap: clamp(18px, 2vw, 28px);
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin: 0 auto 36px;
	max-width: 1240px;
}

.tab-membership-page .tab-plan-card {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.34);
	color: #f8fbff;
	display: grid;
	gap: 16px;
	overflow: hidden;
	padding: 30px 26px 26px;
	position: relative;
}

.tab-membership-page .tab-plan-card:nth-child(3n + 2) {
	background: #0b1f34;
}

.tab-membership-page .tab-plan-card:nth-child(3n) {
	background: #101a32;
}

.tab-membership-page .tab-plan-card::before {
	background: #14c8cb;
	height: 4px;
}

.tab-membership-page .tab-plan-card header {
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	margin: 0;
	padding: 0 0 16px;
}

.tab-membership-page .tab-plan-card h2 {
	color: #ffffff;
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.tab-membership-page .tab-plan-card strong {
	-webkit-text-fill-color: currentColor;
	background: none;
	color: #9defff;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 900;
	line-height: 1;
	margin: 0;
}

.tab-membership-page .tab-plan-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.tab-membership-page .tab-plan-meta span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--fs-sm);
	font-weight: 800;
	padding: 6px 11px;
}

.tab-membership-page .tab-plan-description {
	color: rgba(226, 235, 248, 0.7);
	line-height: var(--lh-loose);
}

.tab-membership-page .tab-plan-description p {
	margin: 0 0 12px;
}

.tab-membership-page .tab-plan-card .button {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.42);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	justify-content: center;
	min-height: 46px;
	padding: 0 16px;
	text-align: center;
	transition: background var(--tab-transition), border-color var(--tab-transition), box-shadow var(--tab-transition), color var(--tab-transition), transform var(--tab-transition);
}

.tab-membership-page .tab-plan-card .button:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	box-shadow: 0 8px 22px rgba(20, 200, 203, 0.2);
	color: #021027;
	transform: translateY(-1px);
}

.tab-membership-page .tab-plan-payment {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.34);
	color: #f8fbff;
	display: none;
	margin: 34px auto 0;
	max-width: 1040px;
	padding: clamp(22px, 3vw, 34px);
	scroll-margin-top: 110px;
}

.tab-membership-page .tab-plan-payment:target {
	display: block;
}

.tab-membership-page .tab-plan-payment-summary,
.tab-membership-page .tab-payment-instructions {
	margin-bottom: 22px;
}

.tab-membership-page .tab-plan-payment h2,
.tab-membership-page .tab-payment-instructions h3 {
	color: #ffffff;
	margin: 0 0 10px;
}

.tab-membership-page .tab-plan-price {
	-webkit-text-fill-color: currentColor;
	background: none;
	color: #9defff;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 900;
	margin: 0 0 12px;
}

.tab-membership-page .tab-plan-payment p,
.tab-membership-page .tab-payment-instructions,
.tab-membership-page .tab-bank-details {
	color: rgba(226, 235, 248, 0.72);
}

.tab-membership-page .tab-bank-details {
	background: rgba(255, 255, 255, 0.06);
	border-left: 3px solid #14c8cb;
	border-radius: 8px;
	padding: 14px 16px;
}

.tab-membership-page .tab-plan-payment-form .tab-registration-grid {
	display: grid;
	gap: 14px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tab-membership-page .tab-registration-field {
	margin: 0;
}

.tab-membership-page .tab-registration-field label {
	color: rgba(226, 235, 248, 0.82);
	display: block;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.tab-membership-page .tab-registration-field input {
	background: #0e213e;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 8px;
	box-sizing: border-box;
	color: #ffffff;
	min-height: 42px;
	padding: 0 12px;
	width: 100%;
}

.tab-membership-page .tab-registration-field input:focus {
	border-color: rgba(20, 200, 203, 0.65);
	outline: none;
}

.tab-membership-page .tab-plan-payment-submit {
	background: #14c8cb;
	border: 1px solid #14c8cb;
	border-radius: 8px;
	color: #021027;
	font-weight: 900;
	margin-top: 18px;
	min-height: 46px;
	padding: 0 18px;
}

/* Events page */
.tab-events-page .tab-events-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-events-gallery-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.tab-event-gallery-grid {
	display: grid;
	gap: clamp(18px, 2vw, 28px);
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tab-event-gallery-card {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.34);
	overflow: hidden;
	transition: border-color var(--tab-transition), box-shadow var(--tab-transition), transform var(--tab-transition);
}

.tab-event-gallery-card:nth-child(3n + 2) { background: #0b1f34; }
.tab-event-gallery-card:nth-child(3n)     { background: #101a32; }

.tab-event-gallery-card:hover {
	border-color: rgba(20, 200, 203, 0.38);
	box-shadow: 0 24px 58px rgba(2, 8, 23, 0.46);
	transform: translateY(-4px);
}

.tab-event-gallery-media {
	aspect-ratio: 16 / 10;
	background: #10213d;
	display: block;
	overflow: hidden;
	position: relative;
}

.tab-event-gallery-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	opacity: 0.82;
	transition: opacity var(--tab-transition), transform var(--tab-transition);
	width: 100%;
}

.tab-event-gallery-card:hover .tab-event-gallery-media img {
	opacity: 1;
	transform: scale(1.04);
}

.tab-event-status {
	background: #14c8cb;
	border-radius: 999px;
	color: #021027;
	font-size: var(--fs-xs);
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 6px 11px;
	position: absolute;
	right: 14px;
	text-transform: uppercase;
	top: 14px;
}

.tab-event-gallery-body {
	padding: 24px;
}

.tab-event-gallery-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.tab-event-gallery-meta span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.84);
	font-size: var(--fs-xs);
	font-weight: 800;
	padding: 5px 10px;
}

.tab-event-gallery-body h2 {
	color: #ffffff;
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 900;
	line-height: 1.18;
	margin: 0 0 10px;
}

.tab-event-gallery-body p {
	color: rgba(226, 235, 248, 0.7);
	line-height: var(--lh-loose);
	margin: 0 0 18px;
}

.tab-event-gallery-actions {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab-event-gallery-actions a {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	text-align: center;
	transition: background var(--tab-transition), border-color var(--tab-transition), color var(--tab-transition), transform var(--tab-transition);
}

.tab-event-gallery-actions a:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	color: #021027;
	transform: translateY(-1px);
}

.tab-events-detail-section {
	padding: clamp(48px, 7vw, 88px) 0;
}

.tab-events-back-link {
	color: #14c8cb;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.tab-event-detail-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
}

.tab-event-detail-main,
.tab-event-detail-links,
.tab-event-media-section > div {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.34);
	padding: clamp(22px, 3vw, 34px);
}

.tab-event-detail-main h2,
.tab-event-detail-links h2 {
	color: #ffffff;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 900;
	margin: 0 0 12px;
}

.tab-event-detail-main p {
	color: rgba(226, 235, 248, 0.72);
	line-height: var(--lh-loose);
	margin: 0 0 14px;
}

.tab-event-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.tab-event-detail-meta span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.84);
	font-size: var(--fs-xs);
	font-weight: 800;
	padding: 5px 10px;
}

.tab-event-detail-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tab-event-detail-links a,
.tab-event-video-list a,
.tab-event-youtube-list a {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	min-height: 42px;
	padding: 0 14px;
}

.tab-event-detail-links a:hover,
.tab-event-video-list a:hover,
.tab-event-youtube-list a:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	color: #021027;
}

.tab-event-media-section {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr) minmax(230px, 0.65fr);
	margin-top: 24px;
}

.tab-event-detail-gallery {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tab-event-detail-gallery a {
	aspect-ratio: 16 / 10;
	background: #10213d;
	border-radius: 8px;
	display: block;
	overflow: hidden;
}

.tab-event-detail-gallery img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tab-event-video-list,
.tab-event-youtube-list {
	display: grid;
	gap: 10px;
}

/* News page */
.tab-news-page .tab-news-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-news-listing-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.tab-news-feature-grid {
	display: grid;
	gap: clamp(18px, 2vw, 28px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab-news-list-card {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: 0 18px 46px rgba(2, 8, 23, 0.34);
	overflow: hidden;
	transition: border-color var(--tab-transition), box-shadow var(--tab-transition), transform var(--tab-transition);
}

.tab-news-list-card:nth-child(3n + 2) { background: #0b1f34; }
.tab-news-list-card:nth-child(3n)     { background: #101a32; }

.tab-news-list-card:hover {
	border-color: rgba(20, 200, 203, 0.38);
	box-shadow: 0 24px 58px rgba(2, 8, 23, 0.46);
	transform: translateY(-4px);
}

.tab-news-list-card.is-featured {
	display: grid;
	grid-column: span 2;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.tab-news-list-media {
	aspect-ratio: 16 / 10;
	background: #10213d;
	display: block;
	overflow: hidden;
}

.tab-news-list-card.is-featured .tab-news-list-media {
	aspect-ratio: auto;
	min-height: 100%;
}

.tab-news-list-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	opacity: 0.82;
	transition: opacity var(--tab-transition), transform var(--tab-transition);
	width: 100%;
}

.tab-news-list-card:hover .tab-news-list-media img {
	opacity: 1;
	transform: scale(1.04);
}

.tab-news-list-body {
	padding: 24px;
}

.tab-news-list-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.tab-news-list-meta time,
.tab-news-list-meta span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.84);
	font-size: var(--fs-xs);
	font-weight: 800;
	padding: 5px 10px;
}

.tab-news-list-body h2 {
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 900;
	line-height: 1.18;
	margin: 0 0 10px;
}

.tab-news-list-body h2 a {
	color: #ffffff;
}

.tab-news-list-body p {
	color: rgba(226, 235, 248, 0.7);
	line-height: var(--lh-loose);
	margin: 0 0 18px;
}

.tab-news-read-link {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	min-height: 42px;
	padding: 0 14px;
}

.tab-news-read-link:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	color: #021027;
}

/* Contact page */
.tab-contact-page .tab-contact-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-contact-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.tab-contact-grid {
	display: grid;
	gap: clamp(20px, 3vw, 34px);
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
}

.tab-contact-main,
.tab-contact-info-card,
.tab-contact-map-panel {
	background: transparent;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: none;
}

.tab-contact-main {
	padding: clamp(24px, 3vw, 36px);
}

.tab-contact-main h2,
.tab-contact-info-card h2,
.tab-contact-map-panel h2 {
	color: #ffffff;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 900;
	line-height: 1.18;
	margin: 0 0 12px;
}

.tab-contact-form {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 24px;
}

.tab-contact-form p {
	margin: 0;
}

.tab-contact-form-wide,
.tab-contact-form button {
	grid-column: 1 / -1;
}

.tab-contact-form label {
	color: rgba(226, 235, 248, 0.82);
	display: block;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.tab-contact-form input,
.tab-contact-form select,
.tab-contact-form textarea {
	background: #0e213e;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 8px;
	box-sizing: border-box;
	color: #ffffff;
	font: inherit;
	min-height: 46px;
	padding: 0 12px;
	width: 100%;
}

.tab-contact-form textarea {
	min-height: 140px;
	padding: 12px;
	resize: vertical;
}

.tab-contact-form input:focus,
.tab-contact-form select:focus,
.tab-contact-form textarea:focus {
	border-color: rgba(20, 200, 203, 0.65);
	outline: none;
}

.tab-contact-form button {
	background: #14c8cb;
	border: 1px solid #14c8cb;
	border-radius: 8px;
	color: #021027;
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	min-height: 48px;
}

.tab-contact-side {
	display: grid;
	gap: 16px;
}

.tab-contact-info-card {
	padding: 24px;
}

.tab-contact-info-card:nth-child(2),
.tab-contact-info-card:nth-child(3) {
	background: transparent;
}

.tab-contact-info-card p,
.tab-contact-map-panel p {
	color: rgba(226, 235, 248, 0.7);
	line-height: var(--lh-loose);
	margin: 0 0 14px;
}

.tab-contact-info-card a {
	color: #9defff;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.tab-contact-map-panel {
	align-items: stretch;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	margin-top: 28px;
	padding: clamp(24px, 3vw, 34px);
}

.tab-contact-map-frame {
	align-items: center;
	background: #0e213e;
	border: 1px dashed rgba(20, 200, 203, 0.34);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	min-height: 260px;
}

.tab-contact-map-frame span {
	color: rgba(226, 235, 248, 0.72);
	font-weight: 900;
}

/* Login page */
.tab-login-page .tab-login-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-login-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.tab-login-layout {
	align-items: start;
	display: grid;
	gap: clamp(24px, 5vw, 72px);
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.tab-login-copy h2 {
	color: #ffffff;
	font-size: clamp(26px, 3.5vw, 44px);
	font-weight: 900;
	line-height: 1.14;
	margin: 0 0 16px;
}

.tab-login-copy p {
	color: rgba(226, 235, 248, 0.72);
	line-height: var(--lh-loose);
	margin: 0;
	max-width: 620px;
}

.tab-login-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.tab-login-actions a {
	align-items: center;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: var(--fs-sm);
	font-weight: 900;
	min-height: 44px;
	padding: 0 16px;
}

.tab-login-actions a:hover {
	background: #14c8cb;
	border-color: #14c8cb;
	color: #021027;
}

.tab-login-form-panel .tab-member-auth {
	background: rgba(8, 18, 42, 0.62);
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 0 0 10px 10px;
	box-shadow: none;
	margin: 0;
	max-width: none;
	padding: clamp(20px, 3vw, 30px);
}

.tab-login-form-panel .tab-member-auth::before {
	display: none;
}

.tab-login-form-panel {
	overflow: hidden;
}

.tab-login-panel-header {
	align-items: center;
	background: rgba(14, 33, 62, 0.82);
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	display: flex;
	gap: 14px;
	padding: 18px 20px;
}

.tab-login-panel-header > span {
	align-items: center;
	background: #10213d;
	border: 1px solid rgba(20, 200, 203, 0.4);
	border-radius: 8px;
	color: #9defff;
	display: flex;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.tab-login-panel-header strong,
.tab-login-panel-header small {
	display: block;
}

.tab-login-panel-header strong {
	color: #ffffff;
	font-size: var(--fs-lg);
	line-height: 1.2;
}

.tab-login-panel-header small {
	color: rgba(226, 235, 248, 0.62);
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tab-login-form-panel .tab-registration-field {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0 0 16px;
	padding: 0;
	position: relative;
}

.tab-login-form-panel .tab-registration-field label {
	background: #08162e;
	color: #9defff;
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 800;
	letter-spacing: 0.04em;
	margin: 0 0 -9px 12px;
	padding: 0 8px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.tab-login-form-panel .tab-registration-field input {
	background: #061126;
	border: 1px solid rgba(20, 200, 203, 0.26);
	border-radius: 12px;
	box-sizing: border-box;
	color: #ffffff;
	font-size: 16px;
	min-height: 56px;
	padding: 10px 46px 0 16px;
	width: 100%;
}

.tab-login-form-panel .tab-registration-field input:focus {
	background: #091a34;
	border-color: #14c8cb;
	box-shadow: 0 0 0 3px rgba(20, 200, 203, 0.12);
	outline: none;
}

.tab-login-form-panel .tab-registration-field input:-webkit-autofill,
.tab-login-form-panel .tab-registration-field input:-webkit-autofill:hover,
.tab-login-form-panel .tab-registration-field input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #061126 inset !important;
	-webkit-text-fill-color: #ffffff !important;
	border-color: rgba(20, 200, 203, 0.42) !important;
	caret-color: #ffffff;
	transition: background-color 9999s ease-in-out 0s;
}

.tab-login-form-panel .tab-registration-field::after {
	background: #14c8cb;
	border-radius: 999px;
	content: "";
	height: 8px;
	position: absolute;
	right: 18px;
	top: 39px;
	width: 8px;
}

.tab-login-form-panel .tab-member-auth-form .button,
.tab-login-form-panel .tab-member-auth .button {
	background: #14c8cb;
	border: 1px solid #14c8cb;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(20, 200, 203, 0.18);
	color: #021027;
	cursor: pointer;
	font-weight: 900;
	letter-spacing: 0.04em;
	min-height: 50px;
	padding: 0 18px;
	text-transform: uppercase;
	transition: background var(--tab-transition), border-color var(--tab-transition), box-shadow var(--tab-transition), color var(--tab-transition), transform var(--tab-transition);
	width: 100%;
}

.tab-login-form-panel .tab-member-auth-form .button:hover,
.tab-login-form-panel .tab-member-auth .button:hover {
	background: #ffffff;
	border-color: #ffffff;
	box-shadow: 0 14px 32px rgba(255, 255, 255, 0.16);
	color: #021027;
	transform: translateY(-1px);
}

.tab-login-panel-links {
	background: rgba(8, 18, 42, 0.42);
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-top: 12px;
	padding: 12px 14px;
}

.tab-login-panel-links a {
	color: #9defff;
	font-size: var(--fs-sm);
	font-weight: 900;
}

/* Join TAB page */
.tab-join-page .tab-join-hero {
	background:
		linear-gradient(90deg, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.68) 42%, rgba(2, 8, 23, 0.22) 72%, rgba(2, 8, 23, 0.58) 100%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.68)),
		url("../images/tab-hero-kolkata-tech.png") center / cover no-repeat,
		linear-gradient(135deg, #020817, #071b3f);
	cursor: default;
	position: relative;
}

.tab-join-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.tab-join-intro {
	margin-bottom: 32px;
	max-width: 840px;
}

.tab-join-intro h2 {
	color: #ffffff;
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 900;
	line-height: 1.14;
	margin: 0 0 14px;
}

.tab-join-intro p {
	color: rgba(226, 235, 248, 0.72);
	line-height: var(--lh-loose);
	margin: 0;
}

.tab-join-page .tab-registration-wrap {
	margin: 0;
	max-width: none;
}

.tab-join-page .tab-registration-form,
.tab-join-page .tab-registration-account {
	background: transparent;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: none;
	color: #f8fbff;
}

.tab-join-page .tab-registration-form {
	padding: clamp(20px, 3vw, 34px);
}

.tab-join-page .tab-registration-account {
	margin-bottom: 24px;
	padding: 24px;
}

.tab-join-page .tab-registration-account h2,
.tab-join-page .tab-registration-step-header h2 {
	color: #ffffff;
	font-weight: 900;
}

.tab-join-page .tab-registration-steps li {
	background: #08162e;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	color: rgba(226, 235, 248, 0.72);
}

.tab-join-page .tab-registration-steps span {
	background: #0e213e;
	color: #9defff;
}

.tab-join-page .tab-registration-steps .is-active {
	border-color: rgba(20, 200, 203, 0.5);
	box-shadow: inset 0 -3px 0 #14c8cb;
	color: #ffffff;
}

.tab-join-page .tab-registration-step {
	background: transparent;
	color: #f8fbff;
}

.tab-join-page .tab-registration-step-header {
	border-bottom: 1px solid rgba(148, 163, 184, 0.16);
	margin-bottom: 22px;
	padding-bottom: 14px;
}

.tab-join-page .tab-repeater {
	display: grid;
	gap: 18px;
}

.tab-join-page .tab-repeater-item {
	background: transparent;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 10px;
	box-shadow: none;
	margin: 0;
	padding: clamp(18px, 2.5vw, 26px);
}

.tab-join-page .tab-repeater-item:nth-child(2n) {
	background: transparent;
}

.tab-join-page .tab-registration-step,
.tab-join-page .tab-registration-step > div,
.tab-join-page .tab-registration-account,
.tab-join-page .tab-registration-form .tab-registration-account {
	background: transparent;
	box-shadow: none;
}

.tab-join-page .tab-repeater-item h3 {
	color: #ffffff;
	font-size: var(--fs-lg);
	font-weight: 900;
	margin: 0 0 18px;
}

.tab-join-page .tab-repeater-add {
	align-self: start;
	background: #0e213e;
	border: 1px solid rgba(20, 200, 203, 0.34);
	border-radius: 8px;
	color: #ffffff;
	font-weight: 900;
	min-height: 44px;
	padding: 0 16px;
}

.tab-join-page .tab-registration-field label {
	color: rgba(226, 235, 248, 0.82);
}

.tab-join-page .tab-registration-field input,
.tab-join-page .tab-registration-field select,
.tab-join-page .tab-registration-field textarea {
	background: #0e213e;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 8px;
	color: #ffffff;
}

.tab-join-page .tab-registration-field input:focus,
.tab-join-page .tab-registration-field select:focus,
.tab-join-page .tab-registration-field textarea:focus {
	border-color: rgba(20, 200, 203, 0.65);
	outline: none;
}

.tab-join-page .tab-registration-actions .button,
.tab-join-page .tab-registration-form .button-primary,
.tab-join-page .tab-registration-submit {
	background: #14c8cb;
	border: 1px solid #14c8cb;
	border-radius: 8px;
	color: #021027;
	font-weight: 900;
	min-height: 44px;
	padding: 0 16px;
}

.tab-join-page .tab-step-prev {
	background: #0e213e !important;
	border-color: rgba(20, 200, 203, 0.34) !important;
	color: #ffffff !important;
}

/* ── Legacy inner page classes (kept for content from WP editor / shortcodes) ── */
.tab-content-page { background: transparent; }

.tab-page-section {
	padding: 72px 0;
}

.tab-page-section h2 {
	color: #e8f0fe;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	margin: 0 0 16px;
}

.tab-page-section p,
.tab-page-section li {
	color: var(--tab-muted);
	font-size: 16px;
	line-height: 1.72;
}

.tab-page-section {
	padding: 72px 0;
}

.tab-page-section h2 {
	color: #e8f0fe;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	margin: 0 0 16px;
}

.tab-page-section p,
.tab-page-section li {
	color: var(--tab-muted);
	font-size: 16px;
	line-height: 1.72;
}

.tab-card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tab-info-card,
.tab-news-card,
.tab-contact-panel {
	background: var(--tab-bg-card);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--tab-border);
	border-radius: var(--tab-radius);
	padding: 26px;
	transition: border-color var(--tab-transition);
}

.tab-info-card:hover,
.tab-news-card:hover {
	border-color: rgba(8, 217, 246, 0.34);
}

.tab-info-card h3,
.tab-news-card h3,
.tab-contact-panel h3 {
	color: #e8f0fe;
	font-size: 20px;
	margin: 0 0 10px;
}

.tab-info-card p,
.tab-news-card p,
.tab-contact-panel p {
	color: var(--tab-muted);
	font-size: 15px;
}

.tab-info-card strong,
.tab-news-meta,
.tab-event-date {
	color: var(--tab-cyan);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.tab-news-card a,
.tab-contact-panel a {
	color: var(--tab-cyan);
	text-decoration-color: rgba(8, 217, 246, 0.36);
	text-underline-offset: 3px;
}

.tab-split-grid {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: 0.92fr 1.08fr;
}

.tab-contact-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr;
}

.tab-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tab-contact-list li {
	border-bottom: 1px solid rgba(8, 217, 246, 0.08);
	color: var(--tab-muted);
	margin: 0;
	padding: 14px 0;
}

.tab-timeline,
.tab-event-rows {
	display: grid;
	gap: 14px;
}

.tab-timeline-item,
.tab-event-row {
	background: var(--tab-bg-card);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--tab-border);
	border-left: 4px solid var(--tab-cyan);
	border-radius: var(--tab-radius);
	display: grid;
	gap: 8px;
	padding: 22px;
}

.tab-timeline-item h3,
.tab-event-row h3 {
	color: #e8f0fe;
	font-size: 20px;
	margin: 0;
}

.tab-check-list {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.tab-check-list li {
	background: var(--tab-bg-card);
	border: 1px solid var(--tab-border);
	border-radius: 10px;
	color: var(--tab-muted);
	margin-bottom: 10px;
	padding: 13px 16px;
}

.tab-navy-band .tab-info-card,
.tab-navy-band .tab-check-list li {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(8, 217, 246, 0.16);
}

.tab-navy-band h3 { color: #ffffff; }
.tab-navy-band p, .tab-navy-band li { color: rgba(255, 255, 255, 0.78); }
.tab-navy-band a  { color: var(--tab-cyan); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL + TILT
═══════════════════════════════════════════════════════ */
.tab-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) var(--tab-reveal-delay, 0ms), transform 500ms cubic-bezier(0.4, 0, 0.2, 1) var(--tab-reveal-delay, 0ms);
	will-change: opacity, transform;
}

.tab-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tab-tilt {
	transform: perspective(1000px) rotateX(var(--tab-tilt-x, 0deg)) rotateY(var(--tab-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: transform 200ms ease;
}

/* ═══════════════════════════════════════════════════════
   @MEDIA — TABLET 980px
═══════════════════════════════════════════════════════ */
@media screen and (max-width: 980px) {

	/* Header: hamburger mode */
	.tab-header-inner {
		min-height: 68px;
	}

	.tab-menu-toggle {
		display: block;
	}

	.tab-primary-nav {
		background: rgba(2, 11, 34, 0.97);
		border-top: 1px solid rgba(8, 217, 246, 0.14);
		box-shadow: 0 20px 60px rgba(2, 11, 34, 0.4);
		display: none;
		left: 0;
		padding: 16px;
		position: absolute;
		right: 0;
		top: 68px;
		z-index: 100;
	}

	@media screen and (max-width: 680px) {
		.tab-primary-nav {
			top: 60px;
		}
	}

	.tab-mobile-menu-open .tab-primary-nav {
		display: block;
	}

	.tab-primary-nav ul,
	.tab-header-actions {
		align-items: stretch;
		display: grid;
		gap: 6px;
	}

	.tab-primary-nav a {
		justify-content: center;
		padding: 12px 14px;
	}

	.tab-header-actions {
		margin-top: 6px;
	}

	.tab-login-link,
	.tab-header-cta {
		justify-content: center;
		min-height: 46px;
		width: 100%;
	}

	/* Hero */
	body.home .site-header {
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		background: rgba(2, 11, 34, 0.9);
		border-bottom: 1px solid rgba(8, 217, 246, 0.14);
		position: sticky;
	}

	body.home .site-header::before {
		display: none;
	}

	body.home .tab-hero-inner {
		padding-top: 44px;
	}

	.tab-hero-inner {
		gap: 28px;
		grid-template-columns: 1fr;
		min-height: 0;
		padding-bottom: 110px;
		padding-top: 48px;
	}

	.tab-ring-box {
		justify-self: center;
		max-width: 360px;
	}

	.tab-hero-search-section {
		margin-top: -80px;
	}

	.tab-home-search {
		grid-template-columns: 1fr 1fr;
	}

	.tab-home-search button {
		grid-column: 1 / -1;
		min-width: 0;
		width: 100%;
	}

	/* Grids */
	.tab-stat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tab-category-grid,
	.tab-featured-grid,
	.tab-plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tab-process-grid {
		gap: 40px 20px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tab-two-column {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	/* Inner pages — tablet */
	.tab-page-hero { padding: 68px 0 56px; }
	.tab-page-hero h1 { font-size: clamp(28px, 5.5vw, 52px); }
	.tab-inner-content { padding-bottom: 64px; padding-top: 48px; }
	.tab-archive-grid { grid-template-columns: 1fr 1fr; }
	.tab-post-nav { grid-template-columns: 1fr 1fr; }

	/* Footer — tablet: brand full width + columns-row + social */
	.tab-footer-inner {
		gap: 40px 32px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 52px clamp(20px, 4vw, 40px) 44px;
	}

	.tab-footer-brand {
		grid-column: 1 / -1;
	}

	.tab-footer-brand p {
		max-width: 100%;
	}

	.tab-footer-brand .tab-footer-trust {
		margin-bottom: 0;
	}

	/* On tablet: columns-row spans 2 cols, social gets 1 col */
	.tab-footer-columns-row {
		display: grid;
		gap: 0 32px;
		grid-column: span 2;
		grid-template-columns: repeat(2, 1fr);
	}

	.tab-footer-column.tab-footer-social {
		grid-column: span 1;
	}
}

/* ═══════════════════════════════════════════════════════
   @MEDIA — MOBILE 680px
═══════════════════════════════════════════════════════ */
@media screen and (max-width: 680px) {

	/* ── Mobile: show compact header + bottom nav ── */
	body {
		padding-bottom: calc(68px + env(safe-area-inset-bottom));
	}

	.site-header {
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		background: rgba(2, 11, 34, 0.96) !important;
		border-bottom: 1px solid rgba(8, 217, 246, 0.14) !important;
		box-shadow: none !important;
		position: sticky !important;
		top: 0 !important;
	}

	body.home .site-header {
		background: rgba(2, 11, 34, 0.96) !important;
		border-bottom: 1px solid rgba(8, 217, 246, 0.14) !important;
		position: sticky !important;
	}

	body.home .site-header::before {
		display: none;
	}

	.tab-header-inner {
		min-height: 60px;
		padding: 0 14px;
	}

	.tab-brand-text strong { font-size: 13px; }
	.tab-brand-mark { height: 42px; width: 42px; }

	.tab-menu-toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}

	/* ── Bottom nav ── */
	.tab-bottom-nav {
		align-items: center;
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		background: linear-gradient(180deg, rgba(4, 18, 46, 0.94), rgba(2, 10, 32, 0.98));
		border: 1px solid rgba(8, 217, 246, 0.18);
		border-bottom: 0;
		border-radius: 20px 20px 0 0;
		bottom: 0;
		box-shadow: 0 -12px 40px rgba(2, 11, 34, 0.44), 0 -1px 0 rgba(8, 217, 246, 0.12);
		display: grid;
		gap: 0;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		left: 0;
		padding: 6px max(6px, env(safe-area-inset-left)) calc(6px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-right));
		position: fixed;
		right: 0;
		z-index: 120;
	}

	.tab-bottom-nav a {
		align-items: center;
		border-radius: 12px;
		color: rgba(255, 255, 255, 0.5);
		display: grid;
		font-size: 9px;
		font-weight: 700;
		gap: 3px;
		justify-items: center;
		letter-spacing: 0.02em;
		min-height: 50px;
		padding: 4px 2px;
		text-decoration: none;
		transition: background 160ms ease, color 160ms ease;
	}

	.tab-bottom-nav a.is-active {
		color: var(--tab-cyan);
	}

	.tab-bottom-nav a:active {
		background: rgba(8, 217, 246, 0.08);
	}

	.tab-bottom-nav .tab-bottom-nav-icon {
		border: 2px solid currentColor;
		border-radius: 999px;
		box-sizing: border-box;
		display: block;
		height: 22px;
		position: relative;
		width: 22px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon::before,
	.tab-bottom-nav .tab-bottom-nav-icon::after {
		background: currentColor;
		border-radius: 0;
		content: "";
		position: absolute;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-home::before {
		border-radius: 2px 2px 0 0;
		height: 8px;
		left: 6px;
		top: 8px;
		width: 6px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-directory::before {
		box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
		height: 2px;
		left: 5px;
		top: 5px;
		width: 9px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-join {
		background: var(--tab-cyan);
		border-color: var(--tab-cyan);
		box-shadow: 0 0 14px rgba(8, 217, 246, 0.5);
		color: #021027;
		height: 26px;
		width: 26px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-join::before,
	.tab-bottom-nav .tab-bottom-nav-icon-join::after {
		border-radius: 999px;
		height: 2px;
		left: 6px;
		top: 11px;
		width: 10px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-join::after {
		transform: rotate(90deg);
	}

	.tab-bottom-nav .tab-bottom-nav-icon-plans::before {
		border-radius: 999px;
		box-shadow: -2px 6px 0 currentColor, 2px 10px 0 currentColor;
		height: 4px;
		left: 5px;
		top: 4px;
		width: 6px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-login::before {
		border-radius: 999px;
		height: 5px;
		left: 6px;
		top: 4px;
		width: 6px;
	}

	.tab-bottom-nav .tab-bottom-nav-icon-login::after {
		border-radius: 999px 999px 0 0;
		height: 5px;
		left: 4px;
		top: 12px;
		width: 10px;
	}

	/* ── Full-page canvas off (perf) ── */
	.tab-bg-canvas {
		display: none;
	}

	/* ── Hero ── */
	.tab-hero {
		border-radius: 0 0 28px 28px;
		overflow: visible;
	}

	.tab-hero::after {
		display: none;
	}

	.tab-hero-inner {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 14px;
		min-height: 0;
		padding: 32px 18px 76px;
		text-align: center;
	}

	body.home .tab-hero-inner {
		padding-top: 32px;
	}

	.tab-ring-box {
		height: 260px;
		max-width: none;
		order: 1;
		width: 260px;
	}

	.tab-ring-box .tab-center h2 {
		font-size: 40px;
	}

	.tab-ring-box .tab-center h3 {
		font-size: 8px;
	}

	.tab-ring-box .tab-center p {
		font-size: 6px;
	}

	.tab-hero-content {
		display: contents;
	}

	.tab-eyebrow {
		font-size: 10px;
		margin: 0;
		order: 2;
		padding: 5px 12px;
	}

	.tab-hero h1 {
		font-size: clamp(26px, 8.5vw, 38px);
		margin: 0;
		order: 3;
	}

	.tab-hero-tagline {
		font-size: 10px;
		letter-spacing: 0.08em;
		margin: 0;
		order: 4;
	}

	.tab-hero-copy {
		color: rgba(255, 255, 255, 0.72);
		font-size: 13.5px;
		line-height: 1.6;
		margin: 0;
		max-width: 320px;
		order: 5;
	}

	.tab-hero-actions {
		display: flex;
		gap: 10px;
		justify-content: center;
		margin: 0;
		order: 6;
		width: 100%;
	}

	.tab-hero-actions .tab-button {
		flex: 1;
		font-size: 13px;
		min-height: 46px;
		padding: 0 14px;
	}

	.tab-hero-trust-strip {
		display: flex;
		flex-wrap: nowrap;
		gap: 7px;
		justify-content: center;
		margin: 0;
		order: 7;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: none;
		width: 100%;
	}

	.tab-hero-trust-strip::-webkit-scrollbar { display: none; }

	.tab-hero-trust-strip span {
		flex-shrink: 0;
		font-size: 11px;
		padding: 7px 12px;
	}

	/* ── Search bar ── */
	.tab-hero-search-section {
		margin-top: -50px;
		padding: 0 14px;
	}

	.tab-home-search {
		border-radius: 16px;
		gap: 10px;
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.tab-home-search button {
		min-height: 46px;
		width: 100%;
	}

	/* ── Section spacing ── */
	.tab-section {
		padding: 40px 0;
	}

	.tab-section + .tab-section {
		border-top-width: 1px;
	}

	.tab-section-inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.tab-section h2 {
		font-size: clamp(22px, 6.5vw, 28px);
	}

	.tab-section p {
		font-size: var(--fs-sm);
	}

	.tab-section-kicker {
		font-size: 10px;
		padding: 4px 10px;
	}

	.tab-section-heading {
		margin-bottom: 22px;
	}

	/* ── Stats: 2+3 compact ── */
	.tab-stats {
		margin-top: 0;
		padding: 22px 0 40px;
	}

	.tab-stat-grid {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tab-stat-card {
		padding: 22px 16px 18px;
	}

	.tab-stat-icon {
		height: 42px;
		width: 42px;
	}

	.tab-stat-card strong {
		font-size: clamp(24px, 6.5vw, 34px);
	}

	.tab-stat-card > div > span {
		font-size: 10px;
		margin-top: 4px;
	}

	/* ── Benefits: 1 col compact ── */
	.tab-benefit-grid {
		gap: 10px;
		grid-template-columns: 1fr;
	}

	.tab-about-content-wide .wp-block-columns {
		display: block;
	}

	.tab-directory-page .tab-member-results-grid {
		grid-template-columns: 1fr;
	}

	.tab-directory-page .tab-member-card {
		border-radius: 16px;
		min-height: 0;
	}

	.tab-directory-page .tab-member-card-main,
	.tab-directory-page .tab-member-results-list .tab-member-card-main {
		gap: 14px;
		grid-template-columns: 58px 1fr;
		min-height: 0;
		padding: 20px 18px 18px;
	}

	.tab-directory-page .tab-member-logo {
		border-radius: 8px;
		flex-basis: 58px;
		height: 58px;
		width: 58px;
	}

	.tab-directory-page .tab-member-logo img {
		border-radius: 7px;
	}

	.tab-directory-page .tab-member-logo span {
		font-size: 28px;
	}

	.tab-directory-page .tab-member-summary h3 {
		font-size: 18px;
	}

	.tab-directory-page .tab-member-summary p,
	.tab-directory-page .tab-member-summary > span {
		font-size: 12px;
	}

	.tab-directory-page .tab-member-actions {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.tab-membership-content-wide {
		padding: 36px 16px;
	}

	.tab-membership-page .tab-plans-grid {
		grid-template-columns: 1fr;
	}

	.tab-membership-page .tab-plan-card {
		border-radius: 10px;
		padding: 24px 20px 20px;
	}

	.tab-membership-page .tab-plan-card strong {
		font-size: 34px;
	}

	.tab-membership-page .tab-plan-payment-form .tab-registration-grid {
		grid-template-columns: 1fr;
	}

	.tab-event-gallery-grid {
		grid-template-columns: 1fr;
	}

	.tab-event-gallery-body {
		padding: 20px 18px;
	}

	.tab-event-gallery-actions {
		grid-template-columns: 1fr;
	}

	.tab-event-detail-layout,
	.tab-event-media-section {
		grid-template-columns: 1fr;
	}

	.tab-news-feature-grid,
	.tab-news-list-card.is-featured {
		grid-template-columns: 1fr;
	}

	.tab-news-list-card.is-featured {
		grid-column: auto;
	}

	.tab-news-list-body {
		padding: 20px 18px;
	}

	.tab-contact-grid,
	.tab-contact-map-panel,
	.tab-contact-form {
		grid-template-columns: 1fr;
	}

	.tab-contact-main,
	.tab-contact-info-card,
	.tab-contact-map-panel {
		border-radius: 10px;
	}

	.tab-login-layout {
		grid-template-columns: 1fr;
	}

	.tab-benefit-card {
		align-items: center;
		display: flex;
		gap: 16px;
		padding: 18px;
	}

	.tab-benefit-card > span {
		flex-shrink: 0;
		height: 42px;
		width: 42px;
	}

	.tab-benefit-card strong {
		font-size: var(--fs-base);
	}

	.tab-benefit-card small {
		font-size: var(--fs-sm);
	}

	/* ── Navy band ── */
	.tab-navy-band {
		border-radius: 18px;
		margin: 0 12px;
	}

	/* ── Categories: horizontal swipe carousel ── */
	.tab-category-grid {
		display: flex;
		gap: 10px;
		grid-template-columns: none;
		margin: 0;
		overflow-x: auto;
		padding: 4px 0 12px;
		scroll-snap-type: none;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.tab-category-grid::-webkit-scrollbar { display: none; }

	.tab-category-pill {
		flex: 0 0 140px;
		min-height: 112px;
		padding: 16px 12px;
		scroll-snap-align: start;
	}

	.tab-category-icon {
		height: 38px;
		width: 38px;
	}

	.tab-category-pill strong {
		font-size: var(--fs-sm);
	}

	.tab-category-pill small {
		font-size: var(--fs-xs);
	}

	/* ── Featured members: horizontal swipe carousel ── */
	.tab-featured-grid {
		display: flex;
		gap: 12px;
		grid-template-columns: none;
		margin: 0;
		overflow-x: auto;
		padding: 4px 0 12px;
		scroll-snap-type: none;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.tab-featured-grid::-webkit-scrollbar { display: none; }

	.tab-member-preview {
		flex: 0 0 220px;
		padding: 18px 16px;
		scroll-snap-align: start;
	}

	/* ── Events: compact ── */
	.tab-event-card {
		gap: 12px;
		grid-template-columns: 56px 1fr auto;
		padding: 14px 16px;
	}

	.tab-event-date-block {
		height: 56px;
		width: 56px;
	}

	.tab-event-date-block strong {
		font-size: 22px;
	}

	.tab-event-summary strong {
		font-size: var(--fs-base);
	}

	/* ── Plans: horizontal swipe carousel ── */
	.tab-plan-grid {
		display: flex;
		gap: 12px;
		grid-template-columns: none;
		margin: 0;
		overflow-x: auto;
		padding: 4px 0 12px;
		scroll-snap-type: none;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.tab-plan-grid::-webkit-scrollbar { display: none; }

	.tab-plan-card {
		flex: 0 0 260px;
		padding: 20px 18px;
		scroll-snap-align: start;
	}

	.tab-plan-card > strong {
		font-size: clamp(24px, 7vw, 32px);
	}

	/* ── Process: 1 col compact ── */
	.tab-process-grid {
		gap: 46px 12px;
		grid-template-columns: 1fr;
	}

	.tab-process-grid::before {
		display: none;
	}

	.tab-process-card {
		margin: 0;
		padding: 48px 22px 22px;
		text-align: center;
		overflow: visible;
	}

	.tab-process-card h3 {
		font-size: var(--fs-base);
		margin-bottom: 6px;
	}

	.tab-process-card p {
		font-size: var(--fs-sm);
	}

	/* ── Two column ── */
	.tab-two-column {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.tab-two-column > div:first-child::after {
		display: none;
	}

	/* ── Glass cards generic ── */
	.tab-glass-card {
		padding: 18px;
	}

	/* ── CTA ── */
	.tab-home-cta {
		border-radius: 18px 18px 0 0;
		padding: 40px 18px calc(28px + env(safe-area-inset-bottom));
	}

	.tab-home-cta h2 {
		font-size: clamp(22px, 6.5vw, 28px);
		margin-bottom: 20px;
	}

	/* ── Inner pages: mobile ── */
	.tab-page-hero { padding: 44px 0 40px; }
	.tab-page-hero h1 { font-size: clamp(24px, 7.5vw, 36px); }
	.tab-page-lead { font-size: var(--fs-sm); }
	.tab-inner-content { padding-bottom: 44px; padding-top: 32px; }
	.tab-archive-grid { grid-template-columns: 1fr; }
	.tab-post-nav { grid-template-columns: 1fr; }
	.tab-post-nav-next { text-align: left; }
	.tab-404-actions { flex-direction: column; }
	.tab-404-actions .tab-button { width: 100%; }

	/* ── Footer — mobile: compact stacked ── */
	.tab-footer-inner {
		gap: 0;
		grid-template-columns: 1fr;
		padding: 0;
	}

	/* Brand block */
	.tab-footer-brand {
		background: rgba(8, 217, 246, 0.04);
		border-bottom: 1px solid rgba(8, 217, 246, 0.1);
		padding: 28px 20px 24px;
	}

	.tab-footer-brand .tab-brand {
		margin-bottom: 10px;
	}

	.tab-footer-brand p {
		font-size: var(--fs-sm);
		line-height: var(--lh-base);
		margin-bottom: 14px;
		max-width: 100%;
	}

	.tab-footer-trust {
		gap: 6px;
		margin-bottom: 0;
	}

	.tab-footer-trust span {
		font-size: 10px;
		padding: 3px 10px;
	}

	/* Quick links and Contact side-by-side wrapper */
	.tab-footer-columns-row {
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tab-footer-columns-row .tab-footer-column {
		border-bottom: none;
		padding: 20px 18px 18px;
	}

	.tab-footer-columns-row .tab-footer-column:first-child {
		border-right: 1px solid rgba(255, 255, 255, 0.05);
	}

	.tab-footer-column h2 {
		font-size: var(--fs-xs);
		margin-bottom: 12px;
	}

	.tab-footer-column h2::after {
		margin-top: 6px;
		width: 20px;
	}

	.tab-footer-column li {
		margin-bottom: 9px;
	}

	.tab-footer-column a,
	.tab-footer-contact li {
		font-size: var(--fs-sm);
	}

	/* Social section — full width */
	.tab-footer-column.tab-footer-social {
		padding: 18px 20px 20px;
	}

	.tab-social-links {
		gap: 8px;
	}

	.tab-social-links a {
		font-size: var(--fs-xs);
		height: 34px;
		min-width: 72px;
		padding: 0 12px;
	}

	.tab-footer-bottom {
		flex-direction: column;
		gap: 4px;
		padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
		text-align: center;
	}

	.tab-footer-bottom p {
		font-size: 12px;
	}

	/* ── Inner pages ── */
	.tab-card-grid,
	.tab-contact-layout,
	.tab-split-grid {
		grid-template-columns: 1fr;
	}

	.tab-page-hero {
		padding: 56px 0 44px;
	}

	.tab-page-hero h1 {
		font-size: clamp(28px, 9vw, 42px);
	}
}

/* ═══════════════════════════════════════════════════════
   CAROUSEL SCROLL HINTS
═══════════════════════════════════════════════════════ */
.tab-carousel-wrap {
	overflow: visible;
	position: relative;
}

.tab-carousel-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 12px;
	padding: 2px 0;
}

.tab-carousel-dots button {
	background: rgba(255, 255, 255, 0.2);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 6px;
	padding: 0;
	transition: background 220ms ease, width 220ms ease;
	width: 6px;
}

.tab-carousel-dots button.is-active {
	background: var(--tab-cyan);
	box-shadow: 0 0 8px rgba(8, 217, 246, 0.5);
	width: 22px;
}

/* Right fade edge hinting more content */
.tab-carousel-wrap::after {
	background: linear-gradient(90deg, transparent 55%, rgba(6, 15, 36, 0.92));
	content: "";
	height: calc(100% - 20px);
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 52px;
	z-index: 2;
}

@media screen and (min-width: 681px) {
	.tab-carousel-wrap::after,
	.tab-carousel-dots {
		display: none;
	}
}

/* ═══════════════════════════════════════════════════════
   ADMIN BAR OFFSETS
═══════════════════════════════════════════════════════ */
@media screen and (min-width: 681px) {
	body.admin-bar .site-header {
		top: 32px;
	}
}

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

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.tab-reveal {
		opacity: 1;
		transform: none;
	}
}

/* Low-power mode */
.tab-low-power .tab-bg-canvas { opacity: 0.28; }
.tab-low-power .tab-reveal    { opacity: 1; transform: none; transition: none; }
.tab-low-power .tab-tilt      { transform: none; }


/* FINAL HEADER LOGO SIZE FIX */
.site-header .custom-logo {
    height: 56px !important;
    max-height: 56px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    display: block !important;
}

.site-header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    line-height: 0 !important;
}

.site-header .tab-brand-mark {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .site-header .custom-logo {
        height: 44px !important;
        max-height: 44px !important;
        max-width: 160px !important;
    }
}


/* Logo + Company Name Gap Final Fix */
.site-header .tab-brand {
    gap: 0 !important;
}

.site-header .tab-brand-mark {
    width: auto !important;
    min-width: 0 !important;
    margin-right: 0 !important;
}

.site-header .custom-logo-link {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.site-header .custom-logo {
    margin-right: 0 !important;
}

.site-header .tab-brand-text {
    margin-left: 0px !important;
}

/* Final mobile polish for redesigned inner pages */
@media screen and (max-width: 680px) {
	.tab-directory-page .tab-directory-hero,
	.tab-membership-page .tab-membership-hero,
	.tab-events-page .tab-events-hero,
	.tab-news-page .tab-news-hero,
	.tab-contact-page .tab-contact-hero,
	.tab-login-page .tab-login-hero,
	.tab-join-page .tab-join-hero {
		padding: 46px 0 42px;
	}

	.tab-directory-content-wide,
	.tab-membership-content-wide,
	.tab-events-gallery-section,
	.tab-events-detail-section,
	.tab-news-listing-section,
	.tab-contact-section,
	.tab-login-section,
	.tab-join-section {
		padding: 34px 0;
	}

	.tab-directory-page .tab-member-card-main,
	.tab-directory-page .tab-member-results-list .tab-member-card-main {
		grid-template-columns: 54px 1fr;
		padding: 16px;
	}

	.tab-directory-page .tab-member-logo {
		height: 54px;
		width: 54px;
	}

	.tab-directory-page .tab-member-actions,
	.tab-event-gallery-actions {
		grid-template-columns: 1fr;
	}

	.tab-membership-page .tab-plan-payment,
	.tab-contact-main,
	.tab-contact-info-card,
	.tab-contact-map-panel,
	.tab-login-form-panel .tab-member-auth,
	.tab-join-page .tab-registration-form,
	.tab-join-page .tab-registration-account,
	.tab-join-page .tab-repeater-item {
		padding: 16px;
	}

	.tab-contact-form,
	.tab-login-layout,
	.tab-contact-grid,
	.tab-contact-map-panel,
	.tab-join-page .tab-registration-grid,
	.tab-join-page .tab-registration-steps,
	.tab-join-page .tab-repeater-item .tab-registration-grid {
		grid-template-columns: 1fr !important;
	}

	.tab-join-page .tab-registration-steps {
		gap: 8px;
	}

	.tab-join-page .tab-registration-steps li {
		min-height: 48px;
		padding: 8px 10px;
	}

	.tab-join-page .tab-registration-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tab-join-page .tab-registration-actions .button,
	.tab-join-page .tab-repeater-add,
	.tab-login-actions a,
	.tab-contact-form button,
	.tab-membership-page .tab-plan-payment-submit {
		justify-content: center;
		width: 100%;
	}

	.tab-contact-form input,
	.tab-contact-form select,
	.tab-contact-form textarea,
	.tab-login-form-panel .tab-registration-field input,
	.tab-join-page .tab-registration-field input,
	.tab-join-page .tab-registration-field select,
	.tab-join-page .tab-registration-field textarea,
	.tab-membership-page .tab-registration-field input {
		font-size: 16px;
		min-width: 0;
	}
}
