/* THEME VARIABLES – POST-BACCALAUREATE PALETTE */
:root {
	--hero-gradient-start: #2C3E50;
	--hero-gradient-mid: #34495E;
	--hero-gradient-end: #5D6D7E;
	--programs-gradient-start: #5D4E6D;
	--programs-gradient-end: #394867;
	--circle-1: #5D4E6D;
	--circle-2: #394867;
	--circle-3: #2C3E50;
	--badge-color: #5D4E6D;
	--badge-featured: #7B68EE;
	--expand-icon: #5D4E6D;
	--expand-icon-featured: #7B68EE;
	--number-opacity: rgba(93, 78, 109, 0.08);
	--number-featured-opacity: rgba(123, 104, 238, 0.15);
	--experience-circle-1: #5D4E6D;
	--experience-circle-2: #394867;
	--experience-circle-3: #7B68EE;
	--experience-gradient: linear-gradient(90deg, #5D4E6D, #394867, #7B68EE);
	--label-bg: #5D4E6D;
	--cta-gradient-end: #5D4E6D;
	--btn-primary-bg: #7B68EE;
	--btn-primary-shadow: rgba(123, 104, 238, 0.4);
}

/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	background: #000;
}

html, body {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #fff;
}

/* NAVIGATION */
.main-nav {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	margin: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
	width: 100%;
	margin: 0;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	display: block;
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.logo a:hover {
	background: #FF6B9D;
}

.logo img {
	height: 50px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	background: rgba(44, 44, 44, 0.95);
	border-radius: 15px;
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	z-index: 1001;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 0.6rem 1rem;
	display: block;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.nav-link:hover {
	color: #2C2C2C;
	background: #4ECDC4;
	transform: translateY(-2px);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding-top: 1rem;
	z-index: 1001;
}

/* prevent cutoff on right */
.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
	left: auto;
	right: 0;
}

.dropdown-content {
	background: #FFFFFF;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 1rem 0;
	min-width: 220px;
	border: 3px solid #FF6B9D;
}

.dropdown-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-width: 360px;
	padding: 0.5rem;
}

.dropdown-two-col a {
	margin: 0.15rem;
}

.dropdown-content a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #2C2C2C;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	border-radius: 6px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background: #4ECDC4;
	color: #FFFFFF;
	transform: translateX(5px);
}

.has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	touch-action: manipulation;
	z-index: 1002;
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
	display: block;
}

/* hamburger animation */
.mobile-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
	height: 100vh;
	min-height: 600px;
	background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 50%, var(--hero-gradient-end) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-content {
	text-align: center;
	z-index: 10;
	position: relative;
	padding: 0 1.5rem;
	transition: opacity 0.6s ease;
}

.hero-title {
	font-size: 10vw;
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 2rem;
	letter-spacing: -0.05em;
}

.hero-title span {
	display: inline-block;
	animation: slideUp 1s ease-out forwards;
	opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.3s; }
.hero-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-subtitle {
	font-size: 1.8rem;
	font-weight: 300;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* INK BLEED EFFECT */
.ink-bleed {
	position: absolute;
	opacity: 0.3;
	filter: blur(40px);
}

.ink-top-left {
	top: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(93, 78, 109, 0.8) 0%, transparent 70%);
	animation: inkFloat1 15s infinite ease-in-out;
}

.ink-top-right {
	top: -80px;
	right: -120px;
	width: 350px;
	height: 450px;
	background: radial-gradient(ellipse, rgba(57, 72, 103, 0.7) 0%, transparent 70%);
	animation: inkFloat2 18s infinite ease-in-out;
}

.ink-bottom-left {
	bottom: -90px;
	left: -110px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(123, 104, 238, 0.6) 0%, transparent 70%);
	animation: inkFloat3 20s infinite ease-in-out;
}

.ink-bottom-right {
	bottom: -100px;
	right: -100px;
	width: 420px;
	height: 400px;
	background: radial-gradient(circle, rgba(44, 62, 80, 0.7) 0%, transparent 70%);
	animation: inkFloat4 17s infinite ease-in-out;
}

@keyframes inkFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes inkFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(-30px, 30px) scale(1.05); }
	66% { transform: translate(20px, -25px) scale(0.9); }
}

@keyframes inkFloat3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(25px, 25px) scale(1.08); }
	66% { transform: translate(-30px, -20px) scale(0.92); }
}

@keyframes inkFloat4 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(-25px, -30px) scale(1.1); }
	66% { transform: translate(30px, 25px) scale(0.88); }
}

/* HERO IMAGE SCROLL EFFECT */
.hero-image-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 280px;
	overflow: hidden;
	border-radius: 20px;
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 5;
}

.hero-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.hero-image-container:hover img {
	transform: scale(1.05);
}

.hero.scrolled .hero-image-container {
	width: 90vw;
	max-width: 1400px;
	height: 80vh;
	transform: translate(-50%, -50%);
}

.hero.scrolled .hero-content {
	opacity: 0;
	pointer-events: none;
}

/* PROGRAMS SECTION */
.programs-section {
	background: linear-gradient(180deg, var(--programs-gradient-start) 0%, var(--programs-gradient-end) 100%);
	padding: 8rem 2rem;
	position: relative;
}

.section-title {
	font-size: 4.5rem;
	font-weight: 900;
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.03em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.section-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.programs-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.program-card {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

.program-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.program-header {
	padding: 3rem 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 2rem;
}

.program-header-content {
	flex: 1;
}

.program-expand-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: var(--expand-icon);
	flex-shrink: 0;
}

.program-card.expanded .program-expand-icon {
	transform: rotate(45deg);
}

.program-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
	padding: 0 4rem;
}

.program-card.expanded .program-body {
	max-height: 500px;
	padding: 2rem 4rem 3rem 4rem;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-number {
	position: absolute;
	top: 0;
	right: 2rem;
	font-size: 12rem;
	font-weight: 900;
	color: var(--number-opacity);
	line-height: 1;
	z-index: 0;
	user-select: none;
}

.program-card.featured .program-number {
	color: var(--number-featured-opacity);
}

.program-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: var(--badge-color);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50px;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.program-card.featured .program-badge {
	background: var(--badge-featured);
}

.program-title {
	font-size: 2.8rem;
	font-weight: 900;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.program-meta {
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

.program-desc {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #333;
}

.program-card.featured {
	border: 3px solid var(--badge-featured);
	box-shadow: 0 10px 40px rgba(123, 104, 238, 0.2);
}

.program-card.featured .program-expand-icon {
	color: var(--expand-icon-featured);
}

/* EXPERIENCE SECTION */
.experience-section {
	background: #000;
	padding: 8rem 2rem;
}

.experience-title {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 5rem;
	letter-spacing: -0.03em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.experience-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.experience-flow {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.experience-item {
	display: flex;
	align-items: center;
	gap: 3rem;
	position: relative;
	opacity: 0;
	transform: translateX(-100px);
	transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-item.visible {
	opacity: 1;
	transform: translateX(0);
}

.experience-item:nth-child(even) {
	flex-direction: row-reverse;
	transform: translateX(100px);
}

.experience-item:nth-child(even).visible {
	transform: translateX(0);
}

.experience-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--experience-circle-1);
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(93, 78, 109, 0.4);
	position: relative;
	z-index: 10;
}

.experience-item:nth-child(2) .experience-circle {
	background: var(--experience-circle-2);
}

.experience-item:nth-child(3) .experience-circle {
	background: var(--experience-circle-3);
}

.experience-connector {
	position: absolute;
	width: 2px;
	height: 100%;
	background: var(--experience-gradient);
	left: 39px;
	top: 80px;
}

.experience-item:last-child .experience-connector {
	display: none;
}

.experience-content {
	flex: 1;
	max-width: 600px;
}

.experience-label {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: var(--label-bg);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50px;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.experience-content h3 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.experience-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #ccc;
}

.experience-image {
	flex: 1;
	max-width: 500px;
	overflow: hidden;
	border-radius: 20px;
}

.experience-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.experience-image:hover img {
	transform: scale(1.05);
}

/* LIVING SECTION */
.living-section {
	background: linear-gradient(180deg, var(--circle-1), var(--circle-2));
	padding: 8rem 2rem;
	position: relative;
}

.living-title {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 5rem;
	letter-spacing: -0.03em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.living-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.living-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.living-circle {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	transform: scale(0.8);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.living-circle.visible {
	opacity: 1;
	transform: scale(1);
}

.living-circle:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.living-circle-content {
	text-align: center;
	color: #000;
}

.living-circle-content h3 {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.living-circle-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

/* SKILLS MATRIX VISUALIZATION */
.skills-matrix-section {
	background: linear-gradient(180deg, #000, #1a1a1a);
	padding: 8rem 2rem;
	overflow: hidden;
	position: relative;
}

.skills-matrix-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.1), transparent 70%);
	pointer-events: none;
}

.skills-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.skills-title {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.03em;
	text-align: center;
	background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skills-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-bottom: 5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.matrix-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

#skillsRadar {
	width: 100%;
	max-width: 500px;
	height: 500px;
	margin: 0 auto;
	filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3));
}

.skill-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.skill-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 107, 157, 0.2);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.skill-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.skill-card:hover {
	transform: translateX(10px);
	border-color: rgba(255, 107, 157, 0.5);
	box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.skill-card:hover::before {
	opacity: 1;
}

.skill-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* HEXAGON - Technical Mastery */
.shape-hexagon {
	animation: float-shape 4s ease-in-out infinite;
}

.hex-inner {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	animation: rotate-hex 8s linear infinite;
	box-shadow: 0 0 30px rgba(255, 107, 157, 0.6),
	            inset 0 0 20px rgba(78, 205, 196, 0.4);
}

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

/* ORB - Conceptual Thinking */
.shape-orb {
	animation: float-shape 3s ease-in-out infinite;
}

.orb-core {
	width: 40px;
	height: 40px;
	background: radial-gradient(circle, #FFE66D, #FF6B9D);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse-orb 2s ease-in-out infinite;
	box-shadow: 0 0 40px rgba(255, 230, 109, 0.8);
}

.orb-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #4ECDC4;
	border-radius: 50%;
	animation: expand-ring 3s ease-out infinite;
}

.ring-1 {
	width: 50px;
	height: 50px;
	animation-delay: 0s;
}

.ring-2 {
	width: 50px;
	height: 50px;
	animation-delay: 1s;
}

.ring-3 {
	width: 50px;
	height: 50px;
	animation-delay: 2s;
}

@keyframes pulse-orb {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes expand-ring {
	0% {
		width: 50px;
		height: 50px;
		opacity: 1;
	}
	100% {
		width: 90px;
		height: 90px;
		opacity: 0;
	}
}

/* LAYERS - Portfolio Development */
.shape-layers {
	animation: float-shape 3.5s ease-in-out infinite;
}

.layer {
	width: 50px;
	height: 12px;
	background: linear-gradient(90deg, #FF6B9D, #FFE66D);
	position: absolute;
	left: 50%;
	border-radius: 2px;
	box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
	animation: shift-layer 4s ease-in-out infinite;
}

.layer-1 {
	top: 20px;
	transform: translateX(-50%);
	animation-delay: 0s;
}

.layer-2 {
	top: 35px;
	transform: translateX(-50%);
	animation-delay: 0.3s;
}

.layer-3 {
	top: 50px;
	transform: translateX(-50%);
	animation-delay: 0.6s;
}

@keyframes shift-layer {
	0%, 100% { transform: translateX(-50%) translateX(0); }
	25% { transform: translateX(-50%) translateX(10px); }
	75% { transform: translateX(-50%) translateX(-10px); }
}

/* NETWORK - Professional Practice */
.shape-network {
	animation: float-shape 4.5s ease-in-out infinite;
}

.node {
	width: 12px;
	height: 12px;
	background: #4ECDC4;
	border-radius: 50%;
	position: absolute;
	box-shadow: 0 0 15px rgba(78, 205, 196, 0.8);
	animation: pulse-node 2s ease-in-out infinite;
}

.node-1 {
	top: 15px;
	left: 15px;
	animation-delay: 0s;
}

.node-2 {
	top: 15px;
	right: 15px;
	animation-delay: 0.2s;
}

.node-3 {
	bottom: 15px;
	left: 15px;
	animation-delay: 0.4s;
}

.node-4 {
	bottom: 15px;
	right: 15px;
	animation-delay: 0.6s;
}

.connection {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
	animation: pulse-connection 2s ease-in-out infinite;
}

.conn-1 {
	top: 21px;
	left: 27px;
	right: 27px;
	animation-delay: 0.1s;
}

.conn-2 {
	top: 27px;
	left: 21px;
	bottom: 27px;
	width: 2px;
	height: auto;
	animation-delay: 0.3s;
}

.conn-3 {
	bottom: 21px;
	left: 27px;
	right: 27px;
	animation-delay: 0.5s;
}

@keyframes pulse-node {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.3); }
}

@keyframes pulse-connection {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

/* ASCEND - Graduate School Prep */
.shape-ascend {
	animation: float-shape 3s ease-in-out infinite;
}

.ascend-triangle {
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-bottom: 52px solid #FF6B9D;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
	animation: glow-triangle 2s ease-in-out infinite;
}

.ascend-glow {
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(78, 205, 196, 0.4), transparent);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: expand-glow 2s ease-out infinite;
}

@keyframes glow-triangle {
	0%, 100% { 
		filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
	}
	50% { 
		filter: drop-shadow(0 0 35px rgba(255, 107, 157, 1));
	}
}

@keyframes expand-glow {
	0% {
		width: 60px;
		height: 60px;
		opacity: 0.6;
	}
	100% {
		width: 100px;
		height: 100px;
		opacity: 0;
	}
}

@keyframes float-shape {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.skill-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #FF6B9D;
	position: relative;
	z-index: 1;
}

.skill-card p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.skill-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.skill-progress {
	height: 100%;
	background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
	border-radius: 10px;
	width: 0;
	transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
	position: relative;
	overflow: hidden;
}

.skill-progress::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.skill-card.visible .skill-progress {
	width: attr(data-progress);
}

/* Animation classes */
.skills-title,
.skills-subtitle,
.skill-card {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.skills-title.visible,
.skills-subtitle.visible,
.skill-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* SCROLL INDICATOR */
.scroll-indicator {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	animation: bounce 2s infinite;
	transition: opacity 0.3s ease;
}

.scroll-indicator::before {
	content: '↓';
	font-size: 3rem;
	color: #fff;
}

@keyframes bounce {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(20px);
	}
}


/* RESPONSIVE */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 11vw;
	}
	
	.section-title {
		font-size: 3.5rem;
	}
	
	.experience-title {
		font-size: 3.5rem;
	}
	
	.living-title {
		font-size: 3.5rem;
	}
}

@media (max-width: 768px) {
	.main-nav {
		top: 0;
		position: fixed;
		background: rgba(0, 0, 0, 0.95);
	}

	.nav-container {
		padding: 0.75rem 1rem;
	}

	.mobile-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(44, 44, 44, 0.98);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		max-height: 0;
		overflow-y: auto;
		transition: max-height 0.3s ease;
		border-radius: 0;
	}

	.nav-menu.active {
		max-height: calc(100vh - 70px);
		padding: 1rem 0;
	}

	.nav-link {
		padding: 1rem 1.5rem;
		border-radius: 0;
	}

	.dropdown {
		position: static;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		padding-top: 0;
		transition: all 0.3s ease;
		pointer-events: none;
	}

	/* Show dropdown when parent has active class */
	.has-dropdown.active .dropdown {
		opacity: 1;
		visibility: visible;
		max-height: 800px;
		padding-top: 0.5rem;
		pointer-events: auto;
	}

	.dropdown-content {
		box-shadow: none;
		margin: 0 1rem;
		border-radius: 8px;
		border-width: 2px;
		background: rgba(44, 44, 44, 0.95);
		backdrop-filter: blur(10px);
		pointer-events: auto;
	}

	.dropdown-content a {
		pointer-events: auto;
		touch-action: auto;
		-webkit-tap-highlight-color: rgba(78, 205, 196, 0.2);
		color: #FFFFFF !important;
		opacity: 1;
		font-weight: 600;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	}

	.dropdown-content a:hover,
	.dropdown-content a:active {
		background: rgba(78, 205, 196, 0.3);
		color: #4ECDC4 !important;
	}

	/* Add visual indicator for dropdowns */
	.has-dropdown > .nav-link::after {
		content: ' ▼';
		font-size: 0.7em;
		opacity: 0.6;
		margin-left: 0.5rem;
		transition: transform 0.3s ease;
		pointer-events: none;
	}

	.has-dropdown.active > .nav-link::after {
		transform: rotate(180deg);
	}

	.dropdown-two-col {
		grid-template-columns: 1fr;
		min-width: auto;
	}

	.hero {
		min-height: 500px;
		padding-top: 70px;
	}

	.hero-title {
		font-size: 13vw;
	}

	.hero-subtitle {
		font-size: 1.4rem;
		padding: 0 1rem;
	}

	.hero-image-container {
		width: 70vw;
		height: 50vh;
	}

	.programs-section {
		padding: 4rem 1.5rem;
	}

	.section-title {
		font-size: 2.5rem;
		margin-bottom: 2.5rem;
	}

	.program-header {
		padding: 2rem 1.5rem;
		flex-direction: row;
		align-items: flex-start;
	}

	.program-body {
		padding: 0 1.5rem;
	}

	.program-card.expanded .program-body {
		padding: 1.5rem 1.5rem 2rem 1.5rem;
	}

	.program-title {
		font-size: 1.8rem;
	}

	.program-number {
		font-size: 6rem;
		top: 0;
		right: 1rem;
	}

	.program-meta {
		font-size: 0.9rem;
	}

	.program-desc {
		font-size: 1rem;
	}

	.experience-section {
		padding: 4rem 1.5rem;
	}

	.experience-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}

	.experience-item {
		flex-direction: column !important;
		text-align: center;
		transform: translateY(50px) !important;
		gap: 1.5rem;
	}

	.experience-item.visible {
		transform: translateY(0) !important;
	}

	.experience-connector {
		display: none;
	}

	.experience-circle {
		margin: 0 auto 1rem;
	}

	.experience-content {
		max-width: 100%;
	}

	.experience-content h3 {
		font-size: 2rem;
	}

	.experience-content p {
		font-size: 1rem;
	}

	.experience-image {
		max-width: 100%;
		margin: 0 auto;
	}

	.living-section {
		padding: 4rem 1.5rem;
	}

	.living-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}

	.living-grid {
		flex-direction: column;
		gap: 2.5rem;
	}

	.living-circle {
		width: 280px;
		height: 280px;
		padding: 2rem;
	}

	.living-circle-content h3 {
		font-size: 1.5rem;
	}

	.living-circle-content p {
		font-size: 0.95rem;
	}

	.skills-matrix-section {
		padding: 4rem 1.5rem;
	}

	.skills-title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.skills-subtitle {
		font-size: 1rem;
		margin-bottom: 3rem;
	}

	.matrix-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	#skillsRadar {
		max-width: 400px;
		height: 400px;
	}

	.skill-details {
		gap: 1.5rem;
	}

	.skill-card {
		padding: 1.5rem;
	}

	.skill-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 1.2rem;
	}

	.hex-inner {
		width: 50px;
		height: 50px;
	}

	.orb-core {
		width: 35px;
		height: 35px;
	}

	.layer {
		width: 40px;
		height: 10px;
	}

	.node {
		width: 10px;
		height: 10px;
	}

	.ascend-triangle {
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		border-bottom: 43px solid #FF6B9D;
	}

	.skill-card h3 {
		font-size: 1.3rem;
	}

	.skill-card p {
		font-size: 0.95rem;
	}

}

@media (max-width: 480px) {
	.hero-title {
		font-size: 15vw;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-image-container {
		width: 80vw;
		height: 45vh;
	}

	.section-title {
		font-size: 2rem;
	}

	.program-header {
		padding: 1.5rem 1rem;
	}

	.program-body {
		padding: 0 1rem;
	}

	.program-card.expanded .program-body {
		padding: 1rem 1rem 1.5rem 1rem;
	}

	.program-title {
		font-size: 1.5rem;
	}

	.program-number {
		font-size: 5rem;
	}

	.experience-content h3 {
		font-size: 1.6rem;
	}

	.living-circle {
		width: 260px;
		height: 260px;
	}

	.skills-title {
		font-size: 2rem;
	}

	#skillsRadar {
		max-width: 300px;
		height: 300px;
	}

	.skill-card {
		padding: 1.2rem;
	}

	.skill-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1rem;
	}

	.hex-inner {
		width: 45px;
		height: 45px;
	}

	.orb-core {
		width: 30px;
		height: 30px;
	}

	.layer {
		width: 35px;
		height: 9px;
	}

	.layer-1 { top: 18px; }
	.layer-2 { top: 30px; }
	.layer-3 { top: 42px; }

	.node {
		width: 9px;
		height: 9px;
	}

	.ascend-triangle {
		border-left: 22px solid transparent;
		border-right: 22px solid transparent;
		border-bottom: 38px solid #FF6B9D;
	}

	.skill-card h3 {
		font-size: 1.2rem;
	}

	.logo img {
		height: 40px;
	}

}

/* FLOATING PARTICLES SECTION */
.particles-benefits-section {
	background: linear-gradient(180deg, #212A3E 0%, #394867 100%);
	padding: 8rem 2rem;
	position: relative;
	min-height: 800px;
}

.particles-subtitle {
	text-align: center;
	font-size: 1.3em;
	margin-bottom: 60px;
	color: #aaa;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.particles-subtitle.visible {
	opacity: 1;
	transform: translateY(0);
}

.particles-container {
	position: relative;
	width: 100%;
	max-width: 1400px;
	height: 600px;
	margin: 40px auto;
}

.particle {
	position: absolute;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1;
}

.particle-core {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px;
	font-size: 0.85em;
	font-weight: 600;
	line-height: 1.3;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.particle:hover .particle-core {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(255,255,255,0.2);
}

.particle.expanded .particle-core {
	transform: scale(1.15);
}

/* Color categories */
.why-florence { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.structure { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.advantages { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.disciplines { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.career { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.florence { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.particle-detail {
	position: absolute;
	top: 140px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255,255,255,0.95);
	color: #333;
	padding: 20px 25px;
	border-radius: 12px;
	width: 300px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	box-shadow: 0 8px 30px rgba(0,0,0,0.3);
	z-index: 10;
}

.particle.expanded .particle-detail {
	opacity: 1;
	pointer-events: all;
}

.particle-detail h3 {
	color: #764ba2;
	margin-bottom: 10px;
	font-size: 1.1em;
}

.particle-detail p {
	font-size: 0.95em;
	line-height: 1.6;
	color: #555;
}

.glow {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0.3;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.2); opacity: 0.1; }
}

.particles-instructions {
	text-align: center;
	margin-top: 40px;
	font-size: 1.1em;
	color: #aaa;
}

/* Responsive particles */
@media (max-width: 768px) {
	.particles-benefits-section {
		padding: 4rem 1.5rem;
		min-height: 900px;
	}
	
	.particles-container {
		height: 800px;
	}
	
	.particle-core {
		width: 100px;
		height: 100px;
		font-size: 0.75em;
		padding: 12px;
	}
	
	.particle-detail {
		width: 250px;
		padding: 15px 20px;
	}
	
	.particles-subtitle {
		font-size: 1.1em;
	}
}

@media (max-width: 480px) {
	.particles-container {
		height: 700px;
	}
	
	.particle-core {
		width: 90px;
		height: 90px;
		font-size: 0.7em;
		padding: 10px;
	}
	
	.particle-detail {
		width: 220px;
		padding: 12px 18px;
	}
}

