/* ── FTS EduCore — Shared Styles ─────────────────────────────── */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--black: #0a0a0a;
	--black2: #111111;
	--black3: #1a1a1a;
	--black4: #222222;
	--gold: #c9a84c;
	--gold-light: #e8c96a;
	--gold-pale: rgba(201, 168, 76, 0.12);
	--gold-border: rgba(201, 168, 76, 0.25);
	--white: #f5f0e8;
	--white2: #ede8de;
	--muted: rgba(245, 240, 232, 0.45);
	--r: 10px;
}
html,
body {
	width: 100%;
	height: 100%;
	font-family: "Cairo", sans-serif;
	background: var(--black);
	color: var(--white);
}

/* HEADER */
#hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 36px;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--gold-border);
	z-index: 200;
}
.logo-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}
.logo-box {
	width: 32px;
	height: 32px;
	background: url("profile pic new i 4.jpg.jpeg") center/cover no-repeat;
	border-radius: 6px;
	box-shadow: 0 0 14px rgba(201, 168, 76, 0.22);
	font-size: 0;
	color: transparent;
}
.logo-text {
	font-family: "Playfair Display", serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 1px;
}
.logo-text span {
	color: var(--gold);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 2px;
	display: block;
	margin-top: -3px;
}
#timer-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--muted);
}
.t-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	animation: blink 2s infinite;
}
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}
#timer-val {
	font-family: "Playfair Display", serif;
	font-size: 14px;
	color: var(--gold);
}

/* SLIDE ENGINE */
#deck {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.slide {
	position: absolute;
	inset: 0;
	padding: 70px 52px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(30px);
	transition:
		opacity 0.45s ease,
		transform 0.45s ease;
}
.slide.active {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}
.slide.out {
	opacity: 0;
	transform: translateY(-30px);
}

@keyframes scene-rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide.active .s-top,
.slide.active .s-divider,
.slide.active .grid,
.slide.active .arch,
.slide.active .journey,
.slide.active .roi-row,
.slide.active .gallery-full,
.slide.active .close-wrap,
.slide.active .stgrid,
.slide.active .mob-grid,
.slide.active .mods {
	animation: scene-rise 0.6s ease both;
}
.slide.active .s-divider {
	animation-delay: 0.08s;
}
.slide.active .grid,
.slide.active .arch,
.slide.active .journey,
.slide.active .roi-row,
.slide.active .gallery-full,
.slide.active .close-wrap,
.slide.active .stgrid,
.slide.active .mob-grid,
.slide.active .mods {
	animation-delay: 0.14s;
}

/* NAV */
#nav {
	position: fixed;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(8px);
	border: 1px solid var(--gold-border);
	border-radius: 50px;
	padding: 8px 18px;
	z-index: 200;
}
.nbtn {
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	font-size: 18px;
	padding: 4px 8px;
	border-radius: 6px;
	transition: all 0.2s;
	line-height: 1;
	text-decoration: none;
}
.nbtn:hover {
	color: var(--gold);
}
#sc {
	font-family: "Playfair Display", serif;
	font-size: 12px;
	color: var(--muted);
	min-width: 44px;
	text-align: center;
}
.dots {
	display: flex;
	gap: 5px;
	align-items: center;
}
.dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.2);
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}
.dot.on {
	background: var(--gold);
	transform: scale(1.5);
}

/* DECORATIVE LINE */
.gold-line {
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	border-radius: 2px;
	margin: 10px auto;
}
.gold-line.left {
	margin: 10px 0;
}

/* ── SLIDE 1: HERO ── */
.s1-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 70% 60% at 50% 55%,
		rgba(201, 168, 76, 0.07) 0%,
		transparent 70%
	);
}
.s1-corners {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.corner {
	position: absolute;
	width: 40px;
	height: 40px;
	border-color: var(--gold-light);
	border-style: solid;
	opacity: 0.4;
}

/* ── WELCOME ── */
.welcome-slide {
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 25%, rgba(201, 168, 76, 0.12), transparent 28%),
		radial-gradient(
			circle at 72% 62%,
			rgba(255, 255, 255, 0.05),
			transparent 24%
		),
		linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}
.welcome-bg,
.welcome-overlay {
	position: absolute;
	inset: 0;
}
.welcome-bg {
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 64px 64px;
	opacity: 0.22;
	mask-image: radial-gradient(circle at center, black 52%, transparent 92%);
}
.welcome-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}
.welcome-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 24px;
}
.welcome-mark-wrap {
	width: min(28vw, 240px);
	min-width: 170px;
	padding: 18px;
	border-radius: 32px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.04),
		rgba(255, 255, 255, 0.015)
	);
	border: 1px solid rgba(201, 168, 76, 0.18);
	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(201, 168, 76, 0.08) inset;
	backdrop-filter: blur(10px);
}
.welcome-mark {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}
.welcome-gold-line {
	width: 78px;
	height: 2px;
	margin-top: 6px;
	border-radius: 99px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gold-light),
		transparent
	);
}
.welcome-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(52px, 8vw, 92px);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0.5px;
	color: var(--white);
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.welcome-subtitle {
	font-size: clamp(14px, 2vw, 20px);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold-light);
	max-width: 780px;
}
.welcome-enter .welcome-mark-wrap,
.welcome-enter .welcome-gold-line,
.welcome-enter .welcome-title,
.welcome-enter .welcome-subtitle {
	opacity: 0;
	transform: translateY(18px) scale(0.98);
	filter: blur(8px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease,
		filter 0.7s ease;
}
.welcome-enter-active .welcome-mark-wrap {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	transition-delay: 0.08s;
}
.welcome-enter-active .welcome-gold-line {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	transition-delay: 0.2s;
}
.welcome-enter-active .welcome-title {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	transition-delay: 0.3s;
}
.welcome-enter-active .welcome-subtitle {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	transition-delay: 0.42s;
}
.corner.tl {
	top: 60px;
	right: 36px;
	border-width: 1px 0 0 1px;
}
.corner.tr {
	top: 60px;
	left: 36px;
	border-width: 1px 1px 0 0;
}
.corner.bl {
	bottom: 50px;
	right: 36px;
	border-width: 0 0 1px 1px;
}
.corner.br {
	bottom: 50px;
	left: 36px;
	border-width: 0 1px 1px 0;
}
.hero-tag {
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.hero-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(38px, 5.5vw, 70px);
	font-weight: 900;
	text-align: center;
	line-height: 1.1;
	color: var(--white);
}
.hero-title em {
	color: var(--gold);
	font-style: normal;
}
.hero-ar {
	font-size: 16px;
	color: var(--muted);
	margin-top: 8px;
	font-weight: 300;
	text-align: center;
}
.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 28px;
}
.pill {
	padding: 8px 20px;
	border: 1px solid var(--gold-border);
	border-radius: 50px;
	font-size: 13px;
	color: var(--muted);
	background: var(--gold-pale);
}
.hero-nums {
	display: flex;
	gap: 44px;
	margin-top: 32px;
	justify-content: center;
}
.hnum {
	text-align: center;
}
.hnum-n {
	font-family: "Playfair Display", serif;
	font-size: 34px;
	font-weight: 900;
	color: var(--gold);
}
.hnum-l {
	font-size: 10px;
	color: var(--muted);
	margin-top: 2px;
	letter-spacing: 1px;
}

/* ── HERO PILL TREE ── */
.pill-tree {
	position: relative;
	margin-top: 28px;
	width: 100%;
	max-width: 800px;
}
.pt-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: visible;
}
.pt-cols {
	display: flex;
	justify-content: center;
	gap: 14px;
	padding-top: 40px;
}
.pt-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
/* Hero slide: widen middle Operations column */
.pill-tree:not(.mod-pill-tree) .pt-col:nth-child(2) {
	flex: 2.2;
}
.pt-cat {
	font-size: 9px;
	letter-spacing: 2.5px;
	color: var(--gold);
	text-transform: uppercase;
	padding: 5px 14px;
	border: 1px solid var(--gold-border);
	border-radius: 4px;
	background: var(--gold-pale);
	white-space: nowrap;
}
.pt-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	max-width: 100%;
}
#pillTree .pill {
	opacity: 0;
}
@keyframes pill-fly {
	from {
		transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.3);
		opacity: 0;
	}
	to {
		transform: translate(0, 0) scale(1);
		opacity: 1;
	}
}
.pill-fly {
	animation: pill-fly 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes draw-line {
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes dot-pop {
	from {
		opacity: 0;
		r: 0;
	}
	to {
		opacity: 1;
		r: 3;
	}
}

/* Pill color variants */
.pill-ac {
	border-color: rgba(201, 168, 76, 0.35);
	color: rgba(201, 168, 76, 0.85);
	background: rgba(201, 168, 76, 0.08);
}
.pill-erp {
	border-color: rgba(96, 165, 250, 0.35);
	color: rgba(96, 165, 250, 0.85);
	background: rgba(96, 165, 250, 0.08);
}
.pill-mob {
	border-color: rgba(52, 211, 153, 0.35);
	color: rgba(52, 211, 153, 0.85);
	background: rgba(52, 211, 153, 0.08);
}
.pt-cat-erp {
	color: #60a5fa;
	border-color: rgba(96, 165, 250, 0.3);
	background: rgba(96, 165, 250, 0.08);
}
.pt-cat-mob {
	color: #34d399;
	border-color: rgba(52, 211, 153, 0.3);
	background: rgba(52, 211, 153, 0.08);
}
/* Root logo node in pill-tree */
.pt-root-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	position: relative;
	z-index: 1;
}
.pt-root-label {
	font-family: "Playfair Display", serif;
	font-size: 10px;
	letter-spacing: 2px;
	color: var(--gold);
	text-transform: uppercase;
}
.logo-box-lg {
	width: 54px;
	height: 54px;
	background: url("profile pic new i 4.jpg.jpeg") center/cover no-repeat;
	border-radius: 10px;
	box-shadow: 0 0 28px rgba(201, 168, 76, 0.45);
	font-size: 0;
	color: transparent;
}
.mod-pill-tree {
	max-width: 960px;
}
.mod-pill-tree .pt-cols {
	gap: 20px;
}
.mod-pill-tree .pt-col {
	flex: 1;
}
.mod-pill-tree .pt-pills {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	width: 100%;
}
.mod-pill-tree .pt-col:last-child .pt-pills {
	grid-template-columns: 1fr;
}
.mod-pill-tree .pill {
	text-align: center;
	font-size: 11.5px;
	padding: 6px 12px;
}

/* ── COMMON SLIDE LAYOUT ── */
.s-top {
	width: 100%;
	max-width: 1060px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 18px;
}
.s-label {
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 6px;
}
.s-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(22px, 3vw, 36px);
	font-weight: 900;
	color: var(--white);
	line-height: 1.2;
}
.s-ar {
	font-size: 13px;
	color: var(--muted);
	margin-top: 3px;
	font-weight: 300;
}
.s-num {
	font-family: "Playfair Display", serif;
	font-size: 80px;
	font-weight: 900;
	color: rgba(201, 168, 76, 0.06);
	line-height: 1;
	margin-left: 16px;
}
.s-divider {
	width: 100%;
	max-width: 1060px;
	height: 1px;
	background: var(--gold-border);
	margin-bottom: 22px;
}

/* CARDS */
.grid {
	display: grid;
	width: 100%;
	max-width: 1060px;
	gap: 12px;
}
.card {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: var(--r);
	padding: 18px 20px;
	transition: border-color 0.2s;
}
.card:hover {
	border-color: var(--gold);
}
.ci {
	font-size: 26px;
	margin-bottom: 8px;
}
.ct {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 2px;
	color: var(--white);
}
.car {
	font-size: 11px;
	color: var(--gold);
	margin-bottom: 6px;
}
.cd {
	font-size: 11px;
	color: var(--muted);
	line-height: 1.8;
}
.badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 50px;
	font-size: 10px;
	margin-top: 6px;
}
.bg {
	background: rgba(201, 168, 76, 0.15);
	color: var(--gold);
}
.bb {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white2);
}

/* ARCH */
.arch {
	display: grid;
	grid-template-columns: 1fr 60px 1fr 60px 1fr;
	align-items: center;
	width: 100%;
	max-width: 1040px;
	gap: 0;
}
.ablock {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: 14px;
	padding: 20px 16px;
	text-align: center;
}
.ablock.center {
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.05);
}
.a-ico {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.a-tag {
	font-size: 9px;
	letter-spacing: 2px;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 4px;
}
.a-name {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
}
.a-ar {
	font-size: 10px;
	color: var(--muted);
	margin-bottom: 10px;
}
.a-items {
	font-size: 10px;
	color: var(--muted);
	line-height: 2.2;
	text-align: left;
}
.arr {
	text-align: center;
	font-size: 20px;
	color: var(--gold);
	opacity: 0.5;
}
.fade-step {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	transition-delay: var(--d, 0s);
}
.fade-step.fade-in {
	opacity: 1;
	transform: translateY(0);
}

/* MODULES GRID */
.mods {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	width: 100%;
	max-width: 1060px;
}
.mcard {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: var(--r);
	padding: 14px 12px;
	text-align: center;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}
.mcard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
}
.mcard.ac::before {
	background: var(--gold);
}
.mcard.erp::before {
	background: #60a5fa;
}
.mcard.mob::before {
	background: #34d399;
}
.mcard:hover {
	transform: translateY(-3px);
	border-color: rgba(201, 168, 76, 0.5);
}
.mc-ico {
	font-size: 24px;
	margin-bottom: 8px;
}
.mc-name {
	font-size: 10px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}
.mc-ar {
	font-size: 9px;
	color: var(--muted);
}
.mc-type {
	font-size: 9px;
	margin-top: 8px;
	padding: 2px 8px;
	border-radius: 50px;
	display: inline-block;
}

/* JOURNEY */
.journey {
	display: flex;
	width: 100%;
	max-width: 1000px;
	justify-content: center;
}
.jstep {
	flex: 1;
	text-align: center;
	position: relative;
}
.jstep:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 20px;
	left: -50%;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	z-index: 0;
}
.jball {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	font-size: 18px;
	background: var(--black3);
	position: relative;
	z-index: 1;
}
.jl {
	font-size: 10px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}
.jlar {
	font-size: 9px;
	color: var(--muted);
}

/* ROI */
.roi-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
	width: 100%;
	max-width: 1050px;
}
.roi-card {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: var(--r);
	padding: 14px 16px;
}
.roi-icon {
	font-size: 20px;
	margin-bottom: 6px;
}
.roi-proc {
	font-size: 11px;
	color: var(--muted);
	margin-bottom: 8px;
}
.roi-before {
	font-size: 11px;
	color: #ff8a8a;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(255, 138, 138, 0.45);
	margin-bottom: 6px;
	line-height: 1.35;
	font-weight: 600;
	text-shadow: 0 0 8px rgba(248, 113, 113, 0.2);
}
.roi-after {
	font-size: 13px;
	font-weight: 700;
	color: var(--gold);
}

/* GALLERY */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	width: 100%;
	max-width: 1060px;
}
.gslot {
	background: var(--black3);
	border: 1px dashed var(--gold-border);
	border-radius: var(--r);
	aspect-ratio: 16/10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 10px;
	gap: 6px;
	overflow: hidden;
	transition: border-color 0.2s;
	cursor: pointer;
	position: relative;
}
.gslot:hover {
	border-color: var(--gold);
	border-style: solid;
}
.gslot input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	font-size: 0;
}
.gslot img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--r);
}
.g-ico {
	font-size: 22px;
	opacity: 0.35;
}
.g-lbl {
	font-size: 9px;
	opacity: 0.4;
	text-align: center;
	line-height: 1.5;
}
.gallery-full {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	width: 100%;
	max-width: 1060px;
}
.gslot-big {
	background: var(--black3);
	border: 1px dashed var(--gold-border);
	border-radius: var(--r);
	aspect-ratio: 4/3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	overflow: hidden;
	transition: border-color 0.2s;
	cursor: pointer;
	position: relative;
	opacity: 0;
	transform: translateY(16px) scale(0.98);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease,
		border-color 0.2s ease;
}
.gslot-big.asset-in {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.gslot-big:hover {
	border-color: var(--gold);
	border-style: solid;
}
.gslot-big input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	font-size: 0;
}
.gslot-big img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--r);
}

/* TEAM SHOWCASE */
.team-showcase {
	width: 100%;
	max-width: 1060px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	justify-content: center;
	margin-top: 8px;
	animation: scene-rise 0.6s ease both;
}
.team-frame {
	width: 100%;
	max-width: 1140px;
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: 18px;
	padding: 6px;
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-frame img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 100px);
	border-radius: 12px;
	object-fit: contain;
	object-position: center top;
	background: #1b1b1b;
}
.team-caption {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--muted);
}

/* STRENGTHS */
.stgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 1050px;
}
.stcard {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: var(--r);
	padding: 18px;
}
.st-ico {
	font-size: 28px;
	margin-bottom: 8px;
}
.st-t {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 2px;
}
.st-ar {
	font-size: 11px;
	color: var(--gold);
	margin-bottom: 6px;
}
.st-d {
	font-size: 11px;
	color: var(--muted);
	line-height: 1.8;
}

/* MOBILE */
.mob-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	width: 100%;
	max-width: 740px;
}
.mblock {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: 14px;
	padding: 22px;
	text-align: center;
}
.mb-ico {
	font-size: 46px;
	margin-bottom: 12px;
}
.mb-t {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
}
.mb-ar {
	font-size: 12px;
	color: var(--gold);
	margin-bottom: 14px;
}
.mb-f {
	font-size: 10px;
	color: var(--muted);
	padding: 5px 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.mb-f:last-child {
	border: none;
}

/* CLOSING */
.close-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 50% 50%,
		rgba(201, 168, 76, 0.08) 0%,
		transparent 70%
	);
}
.close-wrap {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 680px;
}
.close-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(28px, 4.5vw, 56px);
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 12px;
}
.close-title em {
	color: var(--gold);
	font-style: normal;
}
.close-ar {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 36px;
}
.cta-wrap {
	display: flex;
	gap: 12px;
	justify-content: center;
}
.cta {
	padding: 12px 26px;
	border-radius: 8px;
	font-family: "Cairo", sans-serif;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}
.cta-p {
	background: var(--gold);
	color: var(--black);
}
.cta-p:hover {
	background: var(--gold-light);
}
.cta-s {
	background: transparent;
	border: 1px solid var(--gold-border);
	color: var(--muted);
}
.cta-s:hover {
	border-color: var(--gold);
	color: var(--white);
}
.close-nums {
	display: flex;
	gap: 32px;
	justify-content: center;
	margin-top: 36px;
	flex-wrap: wrap;
}
.cn {
	text-align: center;
}
.cn-n {
	font-family: "Playfair Display", serif;
	font-size: 30px;
	font-weight: 900;
	color: var(--gold);
}
.cn-l {
	font-size: 10px;
	color: var(--muted);
	margin-top: 2px;
	letter-spacing: 1px;
}

/* TECH */
.tech {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 1000px;
}
.tblock {
	background: var(--black3);
	border: 1px solid var(--gold-border);
	border-radius: var(--r);
	padding: 18px;
}
.tbl-title {
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}
.titem {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.titem:last-child {
	border: none;
}
.tdot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}
.tname {
	font-size: 11px;
	color: var(--white);
}

/* ── STANDALONE SLIDE PAGE ── */
html.standalone,
html.standalone body {
	overflow: auto;
	height: auto;
}
.slide-page {
	min-height: 100vh;
	padding: 70px 52px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
