:root {
	--bg: #050816;
	--bg-deep: #02040d;
	--surface: rgba(11, 17, 38, 0.78);
	--surface-solid: #0a1022;
	--surface-strong: rgba(19, 27, 58, 0.9);
	--text: #f7f9ff;
	--text-soft: #aab5d2;
	--text-faint: #75809d;
	--border: rgba(133, 158, 255, 0.16);
	--border-bright: rgba(76, 201, 255, 0.38);
	--blue: #00c8ff;
	--blue-strong: #2478ff;
	--violet: #8b5cf6;
	--magenta: #d946ef;
	--green: #36f1a7;
	--yellow: #ffe04b;
	--danger: #ff6b85;
	--success: #3be7a5;
	--gradient: linear-gradient(120deg, var(--violet), var(--blue));
	--gradient-reverse: linear-gradient(120deg, var(--blue), var(--violet));
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
	--glow: 0 0 30px rgba(36, 120, 255, 0.35);
	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 32px;
	--header-height: 76px;
	--container: 1180px;
	--container-wide: 1420px;
	--font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

html[data-theme="light"] {
	--bg: #f4f7ff;
	--bg-deep: #eaf0ff;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-solid: #ffffff;
	--surface-strong: rgba(255, 255, 255, 0.94);
	--text: #11162b;
	--text-soft: #3f4d6b;
	--text-faint: #4f5d7a;
	--border: rgba(40, 67, 130, 0.18);
	--border-bright: rgba(0, 78, 160, 0.38);
	--blue: #005fb8;
	--blue-strong: #004e9e;
	--violet: #6430b8;
	--magenta: #a719b2;
	--green: #087b50;
	--danger: #b52243;
	--success: #087b50;
	--shadow: 0 28px 80px rgba(29, 52, 112, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 22px); }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.admin-bar .site-header { top: 32px; }
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: var(--blue); text-decoration: none; transition: color .25s ease, opacity .25s ease, transform .25s ease; }
a:hover { color: var(--violet); }
img { display: block; max-width: 100%; height: auto; }
svg.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
::selection { background: rgba(139, 92, 246, .45); color: #fff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
	clip: auto !important;
	width: auto; height: auto;
	left: 16px; top: 16px;
	z-index: 100000;
	padding: 12px 18px;
	background: var(--surface-solid);
	color: var(--text);
	border-radius: 8px;
	box-shadow: var(--shadow);
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 40px, var(--container-wide)); margin-inline: auto; }
.section { position: relative; padding: clamp(82px, 10vw, 150px) 0; overflow: clip; }
.section-dark { position: relative; background: var(--bg-deep); }
.page-top-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }
.glass-card {
	background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
	border: 1px solid var(--border);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04), var(--shadow);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}
html[data-theme="light"] .glass-card { background: rgba(255,255,255,.78); }
.gradient-text {
	background: linear-gradient(105deg, #a76cff 0%, #7c4dff 28%, #00c8ff 72%, #57ddff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
html[data-theme="light"] .gradient-text {
	background-image: linear-gradient(105deg, #6430b8 0%, #005fb8 100%);
}

/* Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 900;
	min-height: var(--header-height);
	background: rgba(3, 6, 18, .72);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
html[data-theme="light"] .site-header { background: rgba(246,249,255,.8); }
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.site-branding { flex: 0 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); transform: translateY(-1px); }
.brand-mark { font-family: var(--mono); font-size: 26px; line-height: 1; font-weight: 900; color: var(--blue); text-shadow: 0 0 18px rgba(0,200,255,.55); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 19px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 4px; color: var(--text-faint); font-size: 9px; letter-spacing: .04em; }
.custom-logo { max-height: 52px; width: auto; }
.primary-navigation { margin-left: auto; }
.nav-menu, .primary-navigation .menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); padding: 0; margin: 0; list-style: none; }
.nav-menu a { position: relative; display: block; padding: 27px 0 24px; color: var(--text); font-size: 13px; font-weight: 650; }
.nav-menu a::after { content: ""; position: absolute; left: 50%; bottom: 15px; width: 0; height: 2px; background: var(--blue); box-shadow: 0 0 10px var(--blue); transform: translateX(-50%); transition: width .25s ease; }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { width: 20px; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--blue); }
.nav-menu .sub-menu { position: absolute; min-width: 210px; padding: 12px; margin: 0; list-style: none; background: var(--surface-solid); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; }
.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a { padding: 10px 12px; }
.nav-menu .sub-menu a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
	width: 42px; height: 42px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--surface);
	color: var(--text);
	display: inline-grid;
	place-items: center;
	cursor: pointer;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.theme-toggle:hover, .menu-toggle:hover { transform: translateY(-2px); border-color: var(--border-bright); box-shadow: var(--glow); }
.theme-toggle__sun { display: none; }
html[data-theme="light"] .theme-toggle__moon { display: none; }
html[data-theme="light"] .theme-toggle__sun { display: inline-flex; }
.menu-toggle { display: none; }

/* Hero */
.hero-section { min-height: 100svh; padding: clamp(130px, 12vw, 190px) 0 70px; display: flex; flex-direction: column; justify-content: center; isolation: isolate; }
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -4; opacity: .82; }
.hero-aurora { position: absolute; width: 680px; height: 680px; border-radius: 50%; filter: blur(110px); opacity: .18; z-index: -3; pointer-events: none; }
.hero-aurora--one { top: -300px; left: -220px; background: var(--violet); animation: aurora 12s ease-in-out infinite alternate; }
.hero-aurora--two { right: -220px; bottom: -250px; background: var(--blue); animation: aurora 15s ease-in-out infinite alternate-reverse; }
.hero-section::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(80,110,220,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(80,110,220,.045) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: clamp(44px, 7vw, 120px); }
.hero-copy { position: relative; z-index: 4; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow { padding: 7px 13px; border: 1px solid rgba(36,120,255,.4); border-radius: 100px; background: rgba(12,24,60,.5); text-transform: none; letter-spacing: 0; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); animation: pulse 1.8s ease-in-out infinite; }
.hero-copy h1 { margin: 24px 0 20px; font-size: clamp(48px, 5.7vw, 88px); line-height: .98; letter-spacing: -.055em; }
.hero-copy h1 > span { display: block; }
.hero-copy h1 .typing-line { min-height: 1.07em; margin-top: 10px; }
.hero-description { max-width: 650px; margin: 0; color: var(--text-soft); font-size: clamp(17px, 1.35vw, 21px); }
.hero-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-service-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; color: var(--text-soft); background: rgba(10,18,43,.6); border: 1px solid var(--border); border-radius: 10px; font-size: 11px; font-weight: 700; }
.hero-service-pill svg { color: var(--blue); }
.hero-service-pill:nth-child(2) svg { color: var(--violet); }
.hero-service-pill:nth-child(3) svg { color: #c66cff; }
.hero-service-pill:hover { color: var(--text); border-color: var(--border-bright); transform: translateY(-3px); }
.hero-actions, .about-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button, .wp-element-button, input[type="submit"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 21px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-weight: 750;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
	overflow: hidden;
}
.button::before { content: ""; position: absolute; inset: -2px; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.35), transparent 80%); transform: translateX(-120%); transition: transform .6s ease; }
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gradient); color: #fff; box-shadow: 0 12px 30px rgba(88,73,255,.28), 0 0 28px rgba(0,200,255,.14); }
.button-primary:hover { color: #fff; box-shadow: 0 18px 38px rgba(88,73,255,.4), 0 0 36px rgba(0,200,255,.22); }
.button-secondary { color: var(--text); border-color: var(--border-bright); background: rgba(9,15,34,.55); }
html[data-theme="light"] .button-secondary { background: rgba(255,255,255,.78); }
.button-secondary:hover { color: var(--blue); border-color: var(--blue); box-shadow: var(--glow); }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; perspective: 1200px; }
.visual-halo { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,255,.18), rgba(92,46,255,.08) 45%, transparent 70%); filter: blur(12px); animation: breathe 4s ease-in-out infinite; }
.orbit-system { position: absolute; inset: 5%; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(88,133,255,.24); border-radius: 50%; transform: translate(-50%,-50%); animation: spin linear infinite; }
.orbit--one { width: 72%; aspect-ratio: 1; animation-duration: 18s; }
.orbit--two { width: 92%; aspect-ratio: 1; animation-duration: 26s; animation-direction: reverse; }
.orbit--three { width: 112%; aspect-ratio: 1; animation-duration: 34s; }
.floating-node { position: absolute; top: -25px; left: calc(50% - 25px); width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(78,177,255,.5); border-radius: 13px; background: rgba(12,20,47,.86); color: var(--blue); box-shadow: 0 0 28px rgba(0,200,255,.28); }
.orbit--two .floating-node { color: var(--violet); border-color: rgba(139,92,246,.5); box-shadow: 0 0 28px rgba(139,92,246,.3); }
.orbit--three .floating-node { color: var(--magenta); border-color: rgba(217,70,239,.48); }
.laptop-scene { position: relative; z-index: 3; width: min(95%, 620px); transform-style: preserve-3d; }
.laptop-screen { position: relative; width: 78%; aspect-ratio: 16/10; margin: 0 auto; padding: 18px; overflow: hidden; border: 4px solid #17264e; border-radius: 16px 16px 7px 7px; background: radial-gradient(circle at 70% 20%, rgba(69,42,255,.18), transparent 38%), #050a18; box-shadow: 0 0 0 1px rgba(92,174,255,.45), 0 0 60px rgba(31,96,255,.35), inset 0 0 40px rgba(0,200,255,.05); transform: translateZ(34px); }
.laptop-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(0,200,255,.08), transparent 65%); transform: translateX(-100%); animation: screenSweep 5s ease-in-out infinite; }
.code-toolbar { display: flex; gap: 6px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
.code-toolbar span { width: 7px; height: 7px; border-radius: 50%; background: #ff6b85; }
.code-toolbar span:nth-child(2) { background: var(--yellow); }
.code-toolbar span:nth-child(3) { background: var(--green); }
.code-lines { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.code-lines span { display: block; width: var(--w); height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--violet), var(--blue), transparent); opacity: .8; transform-origin: left; animation: codeLine 2.8s ease-in-out var(--d) infinite alternate; }
.code-lines span:nth-child(even) { margin-left: 13%; background: linear-gradient(90deg, var(--blue), var(--magenta), transparent); }
.screen-badge { position: absolute; right: 16px; bottom: 13px; display: flex; align-items: center; gap: 7px; color: #8f9fc4; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.screen-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.laptop-base { position: relative; width: 100%; height: 50px; margin-top: -1px; border-radius: 5px 5px 35px 35px; background: linear-gradient(180deg, #405183, #15203e 50%, #080d1c); clip-path: polygon(10% 0, 90% 0, 100% 70%, 95% 100%, 5% 100%, 0 70%); box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 35px rgba(0,200,255,.18); transform: translateZ(18px); }
.trackpad { position: absolute; top: 6px; left: 50%; width: 24%; height: 18px; border: 1px solid rgba(153,190,255,.2); border-radius: 3px; transform: translateX(-50%); }
.floating-chip { position: absolute; z-index: 5; display: flex; align-items: center; gap: 8px; padding: 10px 12px; color: var(--text); background: rgba(9,16,39,.9); border: 1px solid var(--border-bright); border-radius: 12px; box-shadow: var(--glow); font-size: 11px; font-weight: 750; animation: float 4s ease-in-out infinite; }
.floating-chip svg { color: var(--blue); }
.chip--cloud { left: 1%; top: 27%; }
.chip--security { right: 0; bottom: 22%; animation-delay: -1.8s; }
.chip--security svg { color: var(--violet); }
.stats-panel { position: relative; z-index: 6; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 55px; border-radius: var(--radius); overflow: hidden; }
.stat-item { position: relative; display: flex; align-items: center; justify-content: center; gap: 17px; min-height: 120px; padding: 20px; }
.stat-item + .stat-item::before { content: ""; position: absolute; left: 0; width: 1px; height: 50%; background: var(--border); }
.stat-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: rgba(0,200,255,.08); box-shadow: 0 0 25px rgba(0,200,255,.13); }
.stat-item:nth-child(2) .stat-icon, .stat-item:nth-child(4) .stat-icon { color: var(--violet); background: rgba(139,92,246,.1); }
.stat-item strong { display: block; color: var(--text); font-size: clamp(24px, 2.3vw, 36px); line-height: 1; letter-spacing: -.04em; }
.stat-item span { display: block; margin-top: 8px; color: var(--text-soft); font-size: 12px; }

/* Shared section elements */
.section-heading { max-width: 790px; margin: 0 auto 54px; text-align: center; }
.section-heading--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; text-align: left; }
.section-heading h2, .about-copy h2, .research-intro h2, .contact-copy h2 { margin: 12px 0 16px; color: var(--text); font-size: clamp(36px, 4vw, 61px); line-height: 1.06; letter-spacing: -.045em; }
.section-heading p, .about-copy > p, .research-intro > p, .contact-copy > p { color: var(--text-soft); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 750; font-size: 13px; }
.text-link svg { transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(5px); }

/* Services */
.section-services { background: radial-gradient(circle at 20% 20%, rgba(139,92,246,.08), transparent 30%), var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 520px; padding: 34px; border-radius: var(--radius); overflow: hidden; transform-style: preserve-3d; }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%, rgba(36,120,255,.15), transparent 30%); opacity: 0; transition: opacity .35s ease; }
.service-card:nth-child(2)::before { background: radial-gradient(circle at 75% 15%, rgba(139,92,246,.18), transparent 30%); }
.service-card:nth-child(3)::before { background: radial-gradient(circle at 75% 15%, rgba(217,70,239,.14), transparent 30%); }
.service-card:hover::before { opacity: 1; }
.service-number { position: absolute; top: 23px; right: 28px; color: rgba(137,155,204,.18); font-size: 54px; font-weight: 900; line-height: 1; }
.service-icon { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(0,200,255,.35); border-radius: 18px; color: var(--blue); background: rgba(0,200,255,.08); box-shadow: 0 0 30px rgba(0,200,255,.12); }
.service-icon svg { width: 32px; height: 32px; }
.service-card:nth-child(2) .service-icon { color: var(--violet); border-color: rgba(139,92,246,.4); background: rgba(139,92,246,.09); }
.service-card:nth-child(3) .service-icon { color: var(--magenta); border-color: rgba(217,70,239,.36); background: rgba(217,70,239,.08); }
.service-card h3 { position: relative; margin: 0 0 15px; font-size: 25px; line-height: 1.18; letter-spacing: -.03em; }
.service-card p { position: relative; color: var(--text-soft); }
.service-card ul { position: relative; display: grid; gap: 10px; padding: 17px 0 23px; margin: 0; list-style: none; border-top: 1px solid var(--border); }
.service-card li { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 14px; }
.service-card li svg { color: var(--green); }

/* About */
.section-about { background: linear-gradient(180deg, var(--bg), var(--bg-deep)); }
.about-grid { display: grid; grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(60px, 9vw, 150px); }
.about-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.portrait-ring { position: absolute; border: 1px solid rgba(85,128,255,.27); border-radius: 50%; animation: spin 22s linear infinite; }
.portrait-ring::before, .portrait-ring::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 20px var(--blue); }
.ring-one { width: 480px; height: 480px; }
.ring-one::before { left: 10%; top: 16%; }
.ring-one::after { right: 5%; bottom: 22%; background: var(--violet); }
.ring-two { width: 570px; height: 570px; border-style: dashed; animation-duration: 35s; animation-direction: reverse; }
.ring-two::before { right: 18%; top: 3%; background: var(--magenta); }
.ring-two::after { left: 8%; bottom: 20%; }
.portrait-shell { position: relative; z-index: 3; width: min(82%, 440px); aspect-ratio: 4/5; border: 1px solid var(--border-bright); border-radius: 48% 48% 28px 28px; background: radial-gradient(circle at 50% 28%, rgba(36,120,255,.22), transparent 35%), linear-gradient(160deg, rgba(139,92,246,.12), rgba(0,200,255,.04)); box-shadow: 0 0 80px rgba(39,112,255,.22), inset 0 0 45px rgba(0,200,255,.06); overflow: hidden; transform-style: preserve-3d; }
.about-portrait { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-status { position: absolute; left: 50%; bottom: 18px; display: flex; align-items: center; gap: 8px; width: max-content; max-width: calc(100% - 30px); padding: 9px 12px; color: #dce5ff; background: rgba(4,8,20,.78); border: 1px solid var(--border); border-radius: 100px; font-size: 10px; font-weight: 700; transform: translateX(-50%) translateZ(28px); }
.portrait-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 11px var(--green); }
.about-copy { max-width: 690px; }
.credential-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.credential-item { display: flex; align-items: center; gap: 11px; min-height: 62px; padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.025); }
.credential-item > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: var(--blue); background: rgba(0,200,255,.09); }
.credential-item strong { font-size: 13px; line-height: 1.35; }

/* Courses */
.section-courses { background: radial-gradient(circle at 75% 22%, rgba(0,200,255,.08), transparent 27%), var(--bg); }
.carousel-controls { display: flex; gap: 10px; }
.carousel-button { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: var(--surface); color: var(--text); cursor: pointer; transition: .25s ease; }
.carousel-button:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--glow); }
.icon-reverse { transform: rotate(180deg); }
.course-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 15px 2px 35px; }
.course-carousel::-webkit-scrollbar { display: none; }
.course-card { position: relative; min-height: 390px; padding: 28px; border-radius: var(--radius); scroll-snap-align: start; overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.course-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.course-card:hover { transform: translateY(-9px); border-color: var(--border-bright); box-shadow: 0 30px 70px rgba(0,0,0,.36), 0 0 28px rgba(0,200,255,.09); }
.course-card:hover::after { transform: scaleX(1); }
.course-icon { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 22px; color: #5ae6ff; background: radial-gradient(circle at 50% 50%, rgba(0,200,255,.26), rgba(0,200,255,.05)); box-shadow: inset 0 0 24px rgba(0,200,255,.12), 0 0 30px rgba(0,200,255,.12); }
.course-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 0 8px currentColor); }
.course-icon--2 { color: #ae77ff; background: radial-gradient(circle, rgba(139,92,246,.25), rgba(139,92,246,.05)); }
.course-icon--3 { color: #3ad9ff; }
.course-icon--4 { color: #dc8bff; background: radial-gradient(circle, rgba(217,70,239,.21), rgba(217,70,239,.04)); }
.course-index { position: absolute; top: 22px; right: 23px; color: var(--text-faint); font-family: var(--mono); font-size: 12px; }
.course-card h3 { margin: 0 0 13px; font-size: 21px; line-height: 1.25; }
.course-card p { color: var(--text-soft); font-size: 14px; }
.course-card .text-link { position: absolute; left: 28px; bottom: 25px; }

/* Research */
.section-research { background: linear-gradient(120deg, rgba(139,92,246,.06), transparent 42%), var(--bg-deep); }
.research-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.research-intro .button { margin-top: 24px; }
.research-stack { display: grid; gap: 16px; }
.research-item { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 24px; border-radius: 17px; transition: transform .28s ease, border-color .28s ease; overflow: hidden; }
.research-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gradient); transform: scaleY(0); transition: transform .28s ease; }
.research-item:hover { transform: translateX(8px); border-color: var(--border-bright); }
.research-item:hover::before { transform: scaleY(1); }
.research-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: rgba(0,200,255,.08); }
.research-item:nth-child(2) .research-icon { color: var(--violet); background: rgba(139,92,246,.09); }
.research-item:nth-child(3) .research-icon { color: var(--magenta); background: rgba(217,70,239,.08); }
.research-item h3 { margin: 0 0 6px; font-size: 18px; }
.research-item p { margin: 0; color: var(--text-soft); font-size: 13px; }
.research-item > svg { color: var(--text-faint); }

/* Resources */
.section-resources { min-height: 720px; background: var(--bg); padding-bottom: 190px; }
.resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.resource-card { position: relative; min-height: 310px; padding: 31px 24px; color: var(--text); border-radius: 17px; text-align: center; overflow: hidden; }
.resource-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(0,200,255,.14), transparent 40%); opacity: 0; transition: opacity .35s ease; }
.resource-card:nth-child(2)::before { background: radial-gradient(circle at 50% 0, rgba(217,70,239,.14), transparent 40%); }
.resource-card:hover { color: var(--text); transform: translateY(-8px); border-color: var(--border-bright); }
.resource-card:hover::before { opacity: 1; }
.resource-icon { position: relative; display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 24px; border-radius: 50%; color: var(--blue); background: rgba(0,200,255,.08); box-shadow: 0 0 28px rgba(0,200,255,.13); }
.resource-card:nth-child(2) .resource-icon { color: var(--magenta); background: rgba(217,70,239,.08); }
.resource-card:nth-child(3) .resource-icon { color: var(--violet); background: rgba(139,92,246,.09); }
.resource-card:nth-child(4) .resource-icon { color: var(--yellow); background: rgba(255,224,75,.08); }
.resource-icon svg { width: 31px; height: 31px; }
.resource-card h3 { position: relative; margin: 0 0 12px; font-size: 19px; }
.resource-card p { position: relative; color: var(--text-soft); font-size: 13px; }
.resource-arrow { position: absolute; right: 20px; bottom: 18px; color: var(--blue); opacity: 0; transform: translateX(-8px); transition: .3s ease; }
.resource-card:hover .resource-arrow { opacity: 1; transform: translateX(0); }
.digital-wave { position: absolute; left: -4%; right: -4%; bottom: -120px; height: 300px; transform: perspective(700px) rotateX(62deg); transform-origin: bottom; opacity: .7; }
.digital-wave::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(58,131,255,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(58,131,255,.26) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(to top, black, transparent); animation: gridFlow 8s linear infinite; }
.digital-wave span { position: absolute; left: -10%; width: 120%; height: 2px; background: linear-gradient(90deg, transparent, var(--violet), var(--blue), transparent); box-shadow: 0 0 20px rgba(74,100,255,.8); border-radius: 50%; }
.digital-wave span:nth-child(1) { top: 20%; transform: rotate(2deg); }
.digital-wave span:nth-child(2) { top: 40%; transform: rotate(-2deg); }
.digital-wave span:nth-child(3) { top: 60%; transform: rotate(3deg); }
.digital-wave span:nth-child(4) { top: 80%; transform: rotate(-1deg); }

/* Blog */
.section-blog { background: var(--bg-deep); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { border-radius: 18px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.post-card:hover { transform: translateY(-8px); border-color: var(--border-bright); }
.post-card__visual { display: block; aspect-ratio: 16/9; overflow: hidden; color: var(--blue); }
.post-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__visual img { transform: scale(1.055); }
.post-visual-fallback { position: relative; width: 100%; height: 100%; min-height: 220px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(37,95,255,.24), transparent 25%), linear-gradient(145deg, #09132b, #060a17); }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(53,127,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(53,127,255,.11) 1px, transparent 1px); background-size: 23px 23px; transform: perspective(400px) rotateX(50deg) scale(1.5); }
.visual-orbit { position: absolute; border: 1px solid rgba(92,145,255,.35); border-radius: 50%; animation: spin 15s linear infinite; }
.orbit-one { width: 155px; height: 155px; }
.orbit-two { width: 210px; height: 210px; animation-direction: reverse; animation-duration: 22s; border-style: dashed; }
.visual-icon { position: relative; z-index: 2; width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid rgba(0,200,255,.5); border-radius: 24px; color: var(--blue); background: rgba(7,19,48,.74); box-shadow: 0 0 50px rgba(0,200,255,.3); }
.visual-icon svg { width: 45px; height: 45px; }
.post-card__body { padding: 24px; }
.post-card__meta { display: flex; justify-content: space-between; gap: 14px; color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.post-card h3 { margin: 13px 0 10px; font-size: 21px; line-height: 1.28; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--blue); }
.post-card p { color: var(--text-soft); font-size: 13px; }

/* Contact */
.section-contact { background: radial-gradient(circle at 80% 30%, rgba(139,92,246,.1), transparent 30%), var(--bg); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.contact-methods { display: grid; gap: 12px; margin-top: 34px; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact-methods > a > span, .contact-methods > div > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 13px; color: var(--blue); background: rgba(0,200,255,.05); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.contact-methods strong { font-size: 14px; }
.contact-form-shell { padding: clamp(25px, 4vw, 44px); border-radius: var(--radius); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--text-soft); font-size: 12px; font-weight: 700; }
.form-field input, .form-field textarea, .search-field, .comment-form input, .comment-form textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: rgba(1,5,15,.42);
	color: var(--text);
	padding: 13px 14px;
	transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
html[data-theme="light"] .form-field input, html[data-theme="light"] .form-field textarea, html[data-theme="light"] .search-field, html[data-theme="light"] .comment-form input, html[data-theme="light"] .comment-form textarea { background: rgba(255,255,255,.8); }
.form-field input:focus, .form-field textarea:focus, .search-field:focus, .comment-form input:focus, .comment-form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(0,200,255,.11), var(--glow); }
.form-honeypot { position: absolute; left: -9999px; }
.form-alert { margin-bottom: 20px; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.form-alert--success { color: #b9ffe1; border: 1px solid rgba(59,231,165,.35); background: rgba(59,231,165,.09); }
.form-alert--error { color: #ffc2ce; border: 1px solid rgba(255,107,133,.35); background: rgba(255,107,133,.09); }

/* Footer */
.site-footer { position: relative; padding: 80px 0 0; background: #03050c; border-top: 1px solid var(--border); overflow: hidden; }
html[data-theme="light"] .site-footer { background: #eaf0ff; }
.footer-orb { position: absolute; width: 350px; height: 350px; border-radius: 50%; filter: blur(100px); opacity: .08; }
.footer-orb--one { left: -160px; top: -100px; background: var(--violet); }
.footer-orb--two { right: -160px; bottom: -180px; background: var(--blue); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.35fr .8fr 1fr 1.2fr; gap: 60px; }
.footer-brand p { max-width: 330px; color: var(--text-soft); font-size: 13px; }
.social-links { display: flex; gap: 9px; margin-top: 23px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-soft); background: rgba(255,255,255,.03); }
.social-links a:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--glow); }
.footer-column h2 { margin: 3px 0 18px; font-size: 14px; }
.footer-column ul, .footer-menu { display: grid !important; gap: 9px !important; padding: 0; margin: 0; list-style: none; }
.footer-column a, .footer-column li, .footer-menu a { padding: 0 !important; color: var(--text-soft) !important; font-size: 12px !important; }
.footer-column a::after, .footer-menu a::after { display: none !important; }
.footer-column a:hover, .footer-menu a:hover { color: var(--blue) !important; }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { margin-top: 3px; color: var(--text-faint); }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 60px; padding: 22px 0; border-top: 1px solid var(--border); }
.footer-bottom p { margin: 0; color: var(--text-faint); font-size: 11px; }
.back-to-top { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--border-bright); border-radius: 50%; color: var(--blue); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--glow); }

/* Standard WordPress content */
.content-area { min-height: 75vh; padding-top: calc(var(--header-height) + 80px); background: radial-gradient(circle at 50% 0, rgba(36,120,255,.08), transparent 30%), var(--bg); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 35px; align-items: start; }
.content-main { min-width: 0; }
.archive-header { margin-bottom: 40px; }
.archive-header h1, .entry-title { margin: 10px 0 14px; font-size: clamp(38px, 5vw, 67px); line-height: 1.06; letter-spacing: -.045em; }
.archive-header p, .archive-description { max-width: 760px; color: var(--text-soft); }
.archive-posts { display: grid; gap: 22px; }
.archive-card { display: grid; grid-template-columns: 280px 1fr; border-radius: 17px; overflow: hidden; }
.archive-card__visual { min-height: 240px; color: var(--blue); }
.archive-card__visual img, .archive-card__visual .post-visual-fallback { width: 100%; height: 100%; object-fit: cover; }
.archive-card__content { padding: 27px; }
.archive-card .entry-title { margin: 10px 0; font-size: 26px; }
.archive-card .entry-title a { color: var(--text); }
.archive-card .entry-summary { color: var(--text-soft); font-size: 14px; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 9px; color: var(--text-faint); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.widget-area { display: grid; gap: 18px; position: sticky; top: calc(var(--header-height) + 25px); }
.widget { padding: 23px; border-radius: 15px; }
.widget-title { margin: 0 0 15px; font-size: 17px; }
.widget ul { padding-left: 18px; }
.widget li { margin-bottom: 8px; color: var(--text-soft); font-size: 13px; }
.singular-container { max-width: 980px; }
.singular-article { padding: clamp(30px, 6vw, 75px); border-radius: var(--radius); }
.singular-article--wide { max-width: none; }
.entry-header { margin-bottom: 34px; }
.single-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--text-faint); font-size: 12px; }
.entry-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.entry-categories a, .tag-links a { display: inline-flex; padding: 5px 9px; border: 1px solid var(--border); border-radius: 100px; color: var(--blue); font-size: 11px; }
.entry-featured { margin: 0 0 42px; overflow: hidden; border-radius: 16px; }
.entry-featured .post-visual-fallback { min-height: 420px; }
.entry-content { color: var(--text-soft); font-size: 17px; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--text); line-height: 1.25; }
.entry-content h2 { margin-top: 2em; font-size: 34px; }
.entry-content h3 { margin-top: 1.7em; font-size: 26px; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { margin: 2em 0; padding: 20px 26px; border-left: 4px solid var(--violet); background: rgba(139,92,246,.06); color: var(--text); }
.entry-content pre, .entry-content code { font-family: var(--mono); }
.entry-content pre { overflow-x: auto; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: #020611; color: #dbe8ff; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--border); text-align: left; }
.entry-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-navigation, .comments-area, .no-results { margin-top: 24px; padding: 25px; border-radius: 16px; }
.post-navigation .nav-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.post-navigation a { color: var(--text); font-weight: 700; }
.nav-next { text-align: right; }
.comment-list { padding-left: 0; list-style: none; }
.comment-list .children { list-style: none; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--border); }
.comment-meta { font-size: 12px; }
.comment-content { color: var(--text-soft); }
.comment-form label { display: block; margin-bottom: 6px; }
.comment-form-cookies-consent { display: flex; gap: 9px; align-items: flex-start; }
.comment-form-cookies-consent input { width: auto; margin-top: 7px; }
.search-form { display: flex; max-width: 560px; }
.search-form label { flex: 1; }
.search-field { border-radius: 10px 0 0 10px; }
.search-submit { width: 48px; border: 1px solid var(--border-bright); border-left: 0; border-radius: 0 10px 10px 0; background: var(--gradient); color: #fff; cursor: pointer; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid var(--border); border-radius: 9px; color: var(--text); }
.page-numbers.current, .page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.error-page { display: grid; place-items: center; }
.error-content { max-width: 760px; padding: clamp(35px, 7vw, 80px); border-radius: var(--radius); text-align: center; }
.error-code { display: block; font-size: clamp(85px, 16vw, 180px); font-weight: 900; line-height: .8; letter-spacing: -.08em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .65; }
.error-content h1 { font-size: clamp(34px, 5vw, 54px); }
.error-content p { color: var(--text-soft); }
.error-content .search-form { margin: 25px auto; }

/* WordPress alignment and captions */
.alignwide { width: min(1200px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignleft { float: left; margin: 0 24px 20px 0; }
.alignright { float: right; margin: 0 0 20px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--text-faint); font-size: 12px; }
.sticky { border-color: var(--border-bright); }
.bypostauthor > .comment-body { border-left: 3px solid var(--blue); padding-left: 16px; }

/* Motion */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); transition-delay: var(--delay, 0ms); }
.reveal-up { transform: translateY(42px); }
.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }
.reveal-scale { transform: scale(.92); }
.is-visible { opacity: 1; transform: none; }
.tilt-card { will-change: transform; transition: transform .18s ease-out; }
.cursor-glow { position: fixed; z-index: 9999; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,255,.09), transparent 68%); transform: translate(-50%,-50%); pointer-events: none; opacity: 0; transition: opacity .3s ease; mix-blend-mode: screen; }
body:hover .cursor-glow { opacity: 1; }

@keyframes aurora { to { transform: translate3d(70px, 40px, 0) scale(1.14); } }
@keyframes pulse { 50% { transform: scale(1.35); opacity: .72; } }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.portrait-ring { transform: none; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.ring-one, .ring-two { animation-name: ringSpin; }
@keyframes breathe { 50% { transform: scale(1.12); opacity: .68; } }
@keyframes float { 50% { transform: translateY(-13px) rotate(1deg); } }
@keyframes codeLine { 50% { transform: scaleX(.72); opacity: .55; } }
@keyframes screenSweep { 45%,100% { transform: translateX(120%); } }
@keyframes gridFlow { to { background-position: 0 30px, 30px 0; } }

/* Responsive */
@media (max-width: 1180px) {
	.hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
	.hero-copy h1 { font-size: clamp(46px, 6vw, 70px); }
	.resources-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}
@media (max-width: 1024px) {
	:root { --header-height: 68px; }
	body.admin-bar .site-header { top: 32px; }
	.menu-toggle { display: inline-grid; }
	.primary-navigation { position: fixed; top: var(--header-height); right: 18px; left: 18px; max-height: calc(100vh - var(--header-height) - 25px); overflow-y: auto; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(4,8,21,.97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-15px) scale(.98); transition: .25s ease; }
	html[data-theme="light"] .primary-navigation { background: rgba(255,255,255,.98); }
	.primary-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
	.nav-menu, .primary-navigation .menu { display: grid; gap: 0; }
	.nav-menu a { padding: 12px; border-radius: 8px; }
	.nav-menu a::after { display: none; }
	.nav-menu a:hover { background: rgba(0,200,255,.06); }
	.nav-menu .sub-menu { position: static; display: block; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; background: transparent; }
	.hero-section { min-height: auto; }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-copy { max-width: 780px; }
	.hero-visual { min-height: 540px; }
	.stats-panel { margin-top: 30px; }
	.services-grid { grid-template-columns: 1fr; }
	.service-card { min-height: 0; }
	.about-grid, .research-layout, .contact-grid { grid-template-columns: 1fr; }
	.about-visual { min-height: 600px; }
	.research-intro, .contact-copy { max-width: 760px; }
	.posts-grid { grid-template-columns: repeat(2, 1fr); }
	.posts-grid .post-card:last-child { grid-column: span 2; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.content-layout { grid-template-columns: 1fr; }
	.widget-area { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	.hero-section { padding-top: 130px; }
	.hero-copy h1 { font-size: clamp(43px, 11vw, 65px); }
	.hero-services { display: grid; grid-template-columns: 1fr; max-width: 390px; }
	.stats-panel { grid-template-columns: repeat(2, 1fr); }
	.stat-item:nth-child(3)::before { display: none; }
	.credential-list { grid-template-columns: 1fr; }
	.section-heading--row { align-items: flex-start; flex-direction: column; }
	.posts-grid { grid-template-columns: 1fr; }
	.posts-grid .post-card:last-child { grid-column: auto; }
	.archive-card { grid-template-columns: 1fr; }
	.archive-card__visual { min-height: 280px; }
	.cursor-glow { display: none; }
}
@media (max-width: 600px) {
	.container, .container-wide { width: min(100% - 28px, var(--container)); }
	.section { padding: 80px 0; }
	.site-header__inner { gap: 12px; }
	.brand-copy small { display: none; }
	.theme-toggle, .menu-toggle { width: 39px; height: 39px; }
	.hero-section { padding-top: 112px; }
	.hero-copy h1 { font-size: clamp(41px, 12.2vw, 57px); }
	.hero-description { font-size: 16px; }
	.hero-actions, .about-actions { flex-direction: column; align-items: stretch; }
	.button { width: 100%; }
	.hero-visual { min-height: 390px; margin-top: 10px; }
	.laptop-scene { width: 100%; }
	.laptop-screen { width: 83%; padding: 12px; }
	.laptop-base { height: 35px; }
	.orbit-system { inset: 0; }
	.floating-chip { padding: 7px 9px; font-size: 9px; }
	.floating-node { width: 38px; height: 38px; top: -19px; left: calc(50% - 19px); }
	.stats-panel { grid-template-columns: 1fr; }
	.stat-item { justify-content: flex-start; padding-left: 25%; min-height: 100px; }
	.stat-item + .stat-item::before { left: 8%; top: 0; width: 84%; height: 1px; }
	.stat-item:nth-child(3)::before { display: block; }
	.service-card { padding: 27px; }
	.about-visual { min-height: 430px; }
	.ring-one { width: 330px; height: 330px; }
	.ring-two { width: 390px; height: 390px; }
	.portrait-shell { width: min(86%, 330px); }
	.resources-grid, .form-row, .footer-grid, .widget-area { grid-template-columns: 1fr; }
	.section-resources { padding-bottom: 150px; }
	.contact-form-shell { padding: 22px; }
	.footer-grid { gap: 38px; }
	.footer-bottom { align-items: flex-start; gap: 25px; }
	.singular-article { padding: 25px; }
	.entry-featured .post-visual-fallback { min-height: 270px; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.nav-next { text-align: left; }
	.alignleft, .alignright { float: none; margin: 20px auto; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
	.cursor-glow, .particle-canvas { display: none; }
}
@media (max-width: 1024px) {
	body.admin-bar .primary-navigation { top: calc(var(--header-height) + 32px); }
}
@media (max-width: 782px) {
	body.admin-bar .primary-navigation { top: calc(var(--header-height) + 46px); }
}

/* ProfSMA Professional Suite 1.1 */
.suite-search-toggle,.suite-search-close{width:42px;height:42px;padding:0;border:1px solid var(--border);border-radius:50%;background:var(--surface);color:var(--text);display:inline-grid;place-items:center;cursor:pointer}.suite-search-toggle:hover,.suite-search-close:hover{border-color:var(--border-bright);color:var(--blue);box-shadow:var(--glow)}.suite-search-dialog[hidden]{display:none}.suite-search-dialog{position:fixed;inset:0;z-index:1200;display:grid;place-items:start center;padding:clamp(90px,12vh,150px) 20px 30px}.suite-search-backdrop{position:absolute;inset:0;background:rgba(2,4,13,.82);backdrop-filter:blur(12px)}.suite-search-panel{position:relative;width:min(820px,100%);padding:28px;border-radius:var(--radius-lg);background:var(--surface-solid)}.suite-search-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}.suite-search-head h2{margin:5px 0 20px;font-size:clamp(28px,4vw,44px)}.suite-search-close{font-size:26px}.suite-search-input{width:100%;min-height:58px;padding:14px 18px;border:1px solid var(--border-bright);border-radius:12px;background:var(--bg);color:var(--text)}.suite-search-results{display:grid;gap:10px;margin-top:16px;max-height:50vh;overflow:auto}.suite-search-result{display:grid;gap:3px;padding:14px 16px;border:1px solid var(--border);border-radius:12px;background:var(--surface)}.suite-search-result strong{color:var(--text)}.suite-search-result small,.suite-search-hint{color:var(--text-faint)}.suite-search-result p{margin:0;color:var(--text-soft);font-size:13px}.suite-search-hint{margin:16px 0 0;font-size:12px}body.suite-search-open{overflow:hidden}

.suite-section{border-top:1px solid var(--border)}.suite-card-grid{display:grid;gap:22px}.suite-card-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}.suite-card{overflow:hidden;border-radius:var(--radius);min-width:0}.suite-card__image{width:100%;aspect-ratio:16/9;object-fit:cover}.suite-card__body{display:grid;align-content:start;gap:12px;padding:24px}.suite-card__body h3{margin:0;font-size:21px;line-height:1.25}.suite-card__body p{margin:0;color:var(--text-soft)}.suite-card__icon{display:grid;place-items:center;width:56px;height:56px;margin:24px 24px 0;border-radius:15px;background:var(--gradient);color:#fff}.suite-card__icon svg{width:27px;height:27px}.suite-chip{display:inline-flex;width:max-content;max-width:100%;padding:5px 9px;border:1px solid var(--border-bright);border-radius:999px;color:var(--blue);font-size:11px;font-weight:750}.suite-meta{color:var(--text-faint)}
.publication-list{display:grid;gap:14px}.publication-card{display:grid;grid-template-columns:92px 1fr;gap:22px;padding:24px;border-radius:var(--radius)}.publication-year{font-family:var(--mono);font-size:22px;font-weight:800;color:var(--blue)}.publication-card h3{margin:8px 0}.publication-card p{margin:0 0 10px;color:var(--text-soft)}.publication-actions{display:flex;flex-wrap:wrap;gap:18px}.copy-citation{background:none;border:0;padding:0;cursor:pointer;font:inherit}.copy-citation.is-copied{color:var(--green)}
.testimonial-card{margin:0;padding:26px;border-radius:var(--radius)}.testimonial-stars{color:var(--yellow);letter-spacing:.12em}.testimonial-card p{font-size:17px}.testimonial-card footer{display:grid;gap:2px;background:none;padding:0;border:0}.testimonial-card footer span{color:var(--text-faint);font-size:13px}
.timeline-grid{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(300px,.7fr);gap:40px}.timeline-list{position:relative;display:grid;gap:0}.timeline-list::before{content:"";position:absolute;left:56px;top:5px;bottom:5px;width:1px;background:linear-gradient(var(--blue),var(--violet),transparent)}.timeline-item{position:relative;display:grid;grid-template-columns:90px 1fr;gap:24px;padding:0 0 32px}.timeline-item>span{position:relative;z-index:1;width:max-content;padding:5px 8px;border-radius:8px;background:var(--bg);border:1px solid var(--border-bright);color:var(--blue);font-family:var(--mono);font-weight:750}.timeline-item h3{margin:4px 0}.timeline-item p{margin:0;color:var(--text-soft)}.timeline-item small{color:var(--violet)}.events-panel{align-self:start;padding:26px;border-radius:var(--radius);position:sticky;top:calc(var(--header-height) + 24px)}.event-item{padding:20px 0;border-bottom:1px solid var(--border)}.event-item:last-child{border-bottom:0}.event-item time{color:var(--blue);font-size:12px;font-weight:800}.event-item h3{margin:5px 0}.event-item p{margin:0;color:var(--text-soft)}
.planner-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:44px;align-items:start}.estimate-display{display:grid;gap:6px;margin-top:28px;padding:24px;border-radius:var(--radius)}.estimate-display strong{font-size:clamp(32px,5vw,54px);line-height:1;color:var(--blue)}.estimate-display span,.estimate-display small{color:var(--text-soft)}.project-form select{width:100%;min-height:48px;padding:10px 12px;border:1px solid var(--border);border-radius:9px;background:var(--bg);color:var(--text)}.planner-addons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 14px;margin:0;padding:16px;border:1px solid var(--border);border-radius:12px}.planner-addons legend{padding:0 6px;font-weight:750}.planner-addons label,.consent-row{display:flex;align-items:flex-start;gap:8px;color:var(--text-soft);font-size:13px}.planner-addons input,.consent-row input{margin-top:4px}.consent-row{margin:12px 0 18px}.consent-row--small{margin:8px 0 0;font-size:11px}.academic-profile-links{display:flex;flex-wrap:wrap;gap:8px 12px;margin-top:14px}.academic-profile-links a{font-size:12px}.newsletter-panel{display:grid;grid-template-columns:1fr 1.15fr;gap:30px;align-items:center;margin-top:28px;margin-bottom:28px;padding:24px;border-radius:var(--radius)}.newsletter-panel h2{margin:4px 0;font-size:21px}.newsletter-row{display:flex;gap:10px}.newsletter-row input{flex:1;min-width:0;padding:12px 14px;border:1px solid var(--border);border-radius:9px;background:var(--bg);color:var(--text)}.newsletter-status{display:block;margin-top:8px;color:var(--blue)}

/* Visual presets */
body.profsma-preset-electric-purple{--blue:#a65cff;--blue-strong:#7c3aed;--violet:#e879f9;--magenta:#f472b6;--gradient:linear-gradient(120deg,#7c3aed,#d946ef)}
body.profsma-preset-professional-dark{--bg:#0b0f17;--bg-deep:#070a10;--surface:rgba(18,24,34,.82);--surface-solid:#101722;--surface-strong:rgba(22,30,44,.94);--blue:#4ea1ff;--violet:#8395b7;--magenta:#74c0fc;--gradient:linear-gradient(120deg,#35618d,#4ea1ff)}
body.profsma-preset-clean-light{--bg:#f7f9fc;--bg-deep:#eef3f8;--surface:rgba(255,255,255,.86);--surface-solid:#fff;--surface-strong:#fff;--text:#142033;--text-soft:#45546b;--text-faint:#637086;--border:rgba(44,68,98,.18);--border-bright:rgba(16,91,165,.38);--blue:#075fa8;--blue-strong:#064d87;--violet:#5b4ab8;--magenta:#9b2cae;--gradient:linear-gradient(120deg,#5b4ab8,#075fa8);--shadow:0 24px 60px rgba(35,58,88,.12)}body.profsma-preset-clean-light .site-header{background:rgba(247,249,252,.88)}body.profsma-preset-clean-light .button-secondary,body.profsma-preset-clean-light .hero-service-pill{background:rgba(255,255,255,.82)}
body.profsma-preset-high-contrast{--bg:#000;--bg-deep:#000;--surface:#050505;--surface-solid:#000;--surface-strong:#080808;--text:#fff;--text-soft:#fff;--text-faint:#e5e5e5;--border:#fff;--border-bright:#00e5ff;--blue:#00e5ff;--violet:#ff70ff;--magenta:#ff70ff;--green:#7cffc4;--yellow:#fff36b;--gradient:linear-gradient(120deg,#ff70ff,#00e5ff)}

/* Animation/performance controls */
body.profsma-animation-off *,body.profsma-animation-off *::before,body.profsma-animation-off *::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}.profsma-animation-off .particle-canvas,.profsma-animation-off .cursor-glow,.profsma-animation-off .hero-aurora{display:none}.profsma-animation-subtle .particle-canvas,.profsma-animation-subtle .cursor-glow{display:none}.profsma-animation-showcase .hero-aurora{opacity:.25}.profsma-performance-performance .particle-canvas,.profsma-performance-performance .cursor-glow,.profsma-performance-performance .hero-aurora,.profsma-performance-performance .digital-wave{display:none}.profsma-performance-performance .glass-card{backdrop-filter:none;-webkit-backdrop-filter:none}

@media(max-width:1024px){.suite-card-grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}.planner-grid,.timeline-grid,.newsletter-panel{grid-template-columns:1fr}.events-panel{position:relative;top:auto}.suite-search-toggle{display:inline-grid}}
@media(max-width:680px){.suite-card-grid--3{grid-template-columns:1fr}.publication-card{grid-template-columns:1fr;gap:8px}.timeline-list::before{left:26px}.timeline-item{grid-template-columns:60px 1fr;gap:14px}.timeline-item>span{font-size:11px}.planner-addons{grid-template-columns:1fr}.newsletter-row{flex-direction:column}.suite-search-panel{padding:20px}.suite-search-dialog{padding-inline:12px}}

/* Related content and consultation booking */
.related-content{margin-top:2rem;padding:clamp(1.4rem,3vw,2rem)}
.related-content>h2{margin-top:0}
.related-content-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.related-content-card{padding:1rem;border:1px solid var(--border,rgba(148,163,184,.16));border-radius:16px;background:rgba(255,255,255,.025)}
.related-content-card small{display:block;margin-bottom:.45rem;color:var(--blue,#00c8ff);text-transform:uppercase;letter-spacing:.08em;font-size:.72rem}
.related-content-card h3{font-size:1rem;margin:.2rem 0 .5rem}
.related-content-card p{margin:0;color:var(--text-soft,#aab5d2);font-size:.9rem}
.booking-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:clamp(1.5rem,4vw,4rem);align-items:start}
.appointment-form input[type="date"],.appointment-form input[type="time"]{color-scheme:dark}
.profsma-preset-clean-light .appointment-form input[type="date"],.profsma-preset-clean-light .appointment-form input[type="time"]{color-scheme:light}
@media (max-width:900px){.related-content-grid,.booking-grid{grid-template-columns:1fr}}

/* =========================================================
   ProfSMA Standalone PHP + Bootstrap integration layer
   ========================================================= */
:root {
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-border-color: var(--border);
    --ps-purple: #7c3aed;
    --ps-cyan: #22d3ee;
    --ps-blue: #2563eb;
}
body { padding-top: var(--header-height); }
body.home-page { padding-top: 0; }
.site-header .navbar { min-height: var(--header-height); padding: 0; }
.site-header .navbar-brand { color: var(--text); font-weight: 900; letter-spacing: -.04em; display:flex; align-items:center; gap:.65rem; }
.brand-symbol { color: var(--blue); font-family: var(--mono); text-shadow: 0 0 20px rgba(34,211,238,.55); }
.site-header .navbar-nav .nav-link { color: var(--text-soft); font-size: .86rem; font-weight: 700; padding: 1.65rem .7rem; position: relative; }
.site-header .navbar-nav .nav-link:hover,.site-header .navbar-nav .nav-link.active { color: var(--blue); }
.site-header .navbar-nav .nav-link.active::after { content:""; position:absolute; left:.75rem; right:.75rem; bottom:1rem; height:2px; background:var(--blue); box-shadow:0 0 12px var(--blue); }
.navbar-toggler { border-color: var(--border); color: var(--text); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(34,211,238,.18); }
.ps-navbar-actions { display:flex; gap:.5rem; align-items:center; }
.ps-icon-button { width:42px;height:42px;display:inline-grid;place-items:center;border-radius:50%;border:1px solid var(--border);background:var(--surface);color:var(--text); }
.ps-icon-button:hover { border-color:var(--border-bright);color:var(--blue);transform:translateY(-2px);box-shadow:var(--glow); }

.ps-page-hero { padding: 9rem 0 5rem; position:relative; overflow:hidden; background:var(--bg-deep); }
.ps-page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 10% 20%,rgba(124,58,237,.20),transparent 35%), radial-gradient(circle at 90% 10%,rgba(34,211,238,.16),transparent 30%); pointer-events:none; }
.ps-page-hero .container { position:relative; z-index:1; }
.ps-kicker { color:var(--blue); text-transform:uppercase; letter-spacing:.12em; font-size:.75rem; font-weight:800; }
.ps-display { font-size:clamp(2.6rem,6vw,5.7rem); line-height:.96; letter-spacing:-.055em; font-weight:900; }
.ps-lead { max-width:760px; color:var(--text-soft); font-size:1.1rem; }

.ps-card { background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); border:1px solid var(--border); border-radius:1.35rem; box-shadow:0 20px 60px rgba(0,0,0,.22); overflow:hidden; height:100%; transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.ps-card:hover { transform:translateY(-6px); border-color:var(--border-bright); box-shadow:0 28px 70px rgba(0,0,0,.32),var(--glow); }
.ps-card-body { padding:1.5rem; }
.ps-icon-tile { width:52px;height:52px;border-radius:1rem;display:grid;place-items:center;background:linear-gradient(135deg,rgba(124,58,237,.20),rgba(34,211,238,.12));border:1px solid var(--border);color:var(--blue);font-size:1.35rem; }
.ps-chip { display:inline-flex;align-items:center;gap:.4rem;padding:.38rem .7rem;border:1px solid var(--border);border-radius:999px;color:var(--text-soft);font-size:.75rem;background:rgba(255,255,255,.025); }
.ps-section { padding:6.5rem 0; position:relative; }
.ps-section-soft { background:linear-gradient(180deg,var(--bg),var(--bg-deep)); }
.ps-section-title { max-width:760px; margin-bottom:3rem; }
.ps-section-title h2 { font-size:clamp(2rem,4vw,3.6rem);letter-spacing:-.045em;font-weight:850; }
.ps-muted { color:var(--text-soft)!important; }
.ps-btn-primary { --bs-btn-color:#fff;--bs-btn-bg:#6254ff;--bs-btn-border-color:#6254ff;--bs-btn-hover-bg:#5145e8;--bs-btn-hover-border-color:#5145e8; border-radius:999px;font-weight:800;padding:.8rem 1.25rem;box-shadow:0 12px 30px rgba(98,84,255,.22); }
.ps-btn-outline { border-radius:999px;font-weight:800;padding:.8rem 1.25rem;border-color:var(--border-bright);color:var(--text); }
.ps-btn-outline:hover { background:rgba(34,211,238,.08);color:var(--blue);border-color:var(--blue); }
.ps-stat { display:flex;gap:1rem;align-items:center;padding:1rem 1.25rem; }
.ps-stat strong { display:block;font-size:1.6rem;line-height:1;color:var(--text); }
.ps-stat span { color:var(--text-soft);font-size:.8rem; }

.hero-section .container { width:min(100% - 40px,1420px); max-width:none; }
.hero-copy .btn { margin-right:.6rem;margin-top:.7rem; }
.hero-services a { text-decoration:none; }

.ps-project-image,.ps-content-image { min-height:220px;background:linear-gradient(135deg,rgba(124,58,237,.24),rgba(34,211,238,.14));display:grid;place-items:center;position:relative;overflow:hidden; }
.ps-project-image img,.ps-content-image img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0; }
.ps-project-image i,.ps-content-image i { font-size:4rem;color:rgba(255,255,255,.42); }
.ps-meta { display:flex;flex-wrap:wrap;gap:.55rem;color:var(--text-soft);font-size:.8rem; }
.ps-prose { color:var(--text-soft);font-size:1.03rem;line-height:1.85; }
.ps-prose h2,.ps-prose h3 { color:var(--text);margin-top:2rem; }
.ps-detail-sidebar { position:sticky;top:110px; }
.ps-list-clean { list-style:none;padding:0;margin:0; }
.ps-list-clean li { display:flex;gap:.7rem;padding:.5rem 0;color:var(--text-soft); }
.ps-list-clean li i { color:var(--green); }

.ps-form-card { padding:2rem;background:var(--surface);border:1px solid var(--border);border-radius:1.4rem;box-shadow:var(--shadow); }
.form-control,.form-select { background:rgba(255,255,255,.035);border-color:var(--border);color:var(--text);border-radius:.85rem;padding:.78rem .95rem; }
.form-control:focus,.form-select:focus { background:rgba(255,255,255,.055);color:var(--text);border-color:var(--blue);box-shadow:0 0 0 .2rem rgba(34,211,238,.12); }
.form-control::placeholder { color:var(--text-faint); }
.form-select option { background:var(--surface-solid);color:var(--text); }
.form-label { color:var(--text);font-weight:700;font-size:.84rem; }
.form-text { color:var(--text-faint); }

.ps-search-dialog { position:fixed;inset:0;z-index:1200;background:rgba(2,4,13,.80);backdrop-filter:blur(14px);display:none;padding:8vh 1rem; }
.ps-search-dialog.is-open { display:block; }
.ps-search-panel { max-width:780px;margin:auto;background:var(--surface-solid);border:1px solid var(--border);border-radius:1.5rem;box-shadow:0 30px 100px rgba(0,0,0,.5);overflow:hidden; }
.ps-search-results { max-height:55vh;overflow:auto;padding:.5rem; }
.ps-search-result { display:block;padding:1rem;border-radius:1rem;color:var(--text);border:1px solid transparent; }
.ps-search-result:hover { background:rgba(34,211,238,.05);border-color:var(--border);color:var(--text); }
.ps-search-result small { display:block;color:var(--text-faint); }

.ps-footer { border-top:1px solid var(--border);background:var(--bg-deep);padding:4rem 0 2rem; }
.ps-footer a { color:var(--text-soft); }
.ps-footer a:hover { color:var(--blue); }

.ps-timeline { position:relative;padding-left:2rem; }
.ps-timeline::before { content:"";position:absolute;left:.48rem;top:.4rem;bottom:.4rem;width:2px;background:linear-gradient(var(--blue),var(--violet)); }
.ps-timeline-item { position:relative;padding:0 0 2rem 1.25rem; }
.ps-timeline-item::before { content:"";position:absolute;left:-1.85rem;top:.35rem;width:12px;height:12px;border-radius:50%;background:var(--blue);box-shadow:0 0 16px var(--blue); }

.ps-estimate { font-size:clamp(2rem,5vw,4rem);font-weight:900;letter-spacing:-.05em;color:var(--blue); }
.ps-alert { border:1px solid var(--border);border-radius:1rem;padding:1rem 1.2rem; }
.ps-alert-success { background:rgba(54,241,167,.08);border-color:rgba(54,241,167,.24);color:var(--success); }
.ps-alert-error { background:rgba(255,107,133,.08);border-color:rgba(255,107,133,.24);color:var(--danger); }

[data-preset="electric-purple"] { --blue:#a855f7;--blue-strong:#7c3aed;--violet:#ec4899;--border-bright:rgba(168,85,247,.42);--gradient:linear-gradient(120deg,#ec4899,#8b5cf6); }
[data-preset="professional-dark"] { --blue:#38bdf8;--violet:#64748b;--bg:#080c14;--bg-deep:#04070d;--surface-solid:#0d1420; }
[data-preset="clean-light"] { --bg:#f4f7fb;--bg-deep:#eaf0f7;--surface:rgba(255,255,255,.88);--surface-solid:#fff;--text:#111827;--text-soft:#475569;--text-faint:#64748b;--border:rgba(15,23,42,.12);--border-bright:rgba(37,99,235,.32);--blue:#0b62c4;--violet:#6d28d9; }
[data-preset="high-contrast"] { --bg:#000;--bg-deep:#000;--surface:#080808;--surface-solid:#000;--text:#fff;--text-soft:#eee;--text-faint:#ccc;--border:#666;--border-bright:#fff;--blue:#00e5ff;--violet:#ff5cff; }

@media (max-width:991.98px){
    body{padding-top:70px}.home-page{padding-top:0}.site-header .navbar-nav .nav-link{padding:.8rem 0}.site-header .navbar-nav .nav-link.active::after{display:none}.navbar-collapse{padding:1rem 0 1.2rem;border-top:1px solid var(--border);margin-top:.7rem}.hero-grid{grid-template-columns:1fr}.hero-visual{min-height:440px}.ps-detail-sidebar{position:static}.ps-page-hero{padding:7rem 0 4rem}
}
@media (max-width:575.98px){.hero-visual{min-height:360px}.ps-section{padding:4.6rem 0}.ps-form-card{padding:1.3rem}.ps-display{font-size:2.7rem}}
