/* ================================================
	EGEX - Static Site Stylesheet
	================================================ */

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

/* Variables - Enhanced Design Tokens */
:root {
	/* Colors - Improved Contrast (WCAG AAA) */
	--primary-color: #5b9ef5;
	--primary-hover: #4a8bd4;
	--secondary-color: #c9d1d9;
	--accent-color: #a855f7;
	--accent-hover: #9333ea;

	/* Text Colors - Better Contrast */
	--text-color: #f5f5f5;
	--text-secondary: #d0d0d0;
	--text-muted: #b0b0b0;

	/* Semantic Colors */
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
	--info-color: #60a5fa;

	/* Background Colors */
	--light-bg: #0b0b0b;
	--border-color: #1a1f24;
	--card-bg: #0f1113;
	--card-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
	--overlay-dark: rgba(5, 5, 5, 0.8);

	/* Images */
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2413953977.jpg");
	--cta-image: url("../images/gifts/Licensed%20Photos/shutterstock_2480958235.jpg");
	--docs-hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2630019727.jpg");

	/* Spacing Scale - 8px Baseline Grid */
	--space-1: 0.5rem;  /* 8px */
	--space-2: 1rem;    /* 16px */
	--space-3: 1.5rem;  /* 24px */
	--space-4: 2rem;    /* 32px */
	--space-5: 3rem;    /* 48px */
	--space-6: 4rem;    /* 64px */
	--space-8: 6rem;    /* 96px */

	/* Border Radius Scale */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-full: 999px;

	/* Legacy Variables (for compatibility) */
	--hero-min-height: 520px;
	--card-media-height: 190px;
	--spacing-unit: 1rem;
	--border-radius: var(--radius-md);
	--transition: all 0.3s ease;

	/* Typography */
	--font-family: "DejaVu Sans Mono", "Liberation Mono", "Ubuntu Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", monospace;
	--font-size-base: 1rem;
	--line-height-base: 1.7;
	--line-height-heading: 1.3;

	/* Container Padding */
	--container-padding: 2rem;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	font-family: var(--font-family);
	line-height: var(--line-height-base);
	color: var(--text-color);
	background-color: #0b1220;
	font-size: var(--font-size-base);
}

/* ================================================
   ACCESSIBILITY - Focus States
   ================================================ */

/* Skip to main content link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: #fff;
	padding: 8px 16px;
	text-decoration: none;
	font-weight: bold;
	z-index: 9999;
	border-radius: 0 0 4px 0;
}

.skip-link:focus {
	top: 0;
	outline: 2px solid var(--text-color);
	outline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
	outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.site-header {
	background-color: transparent;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo h1 {
	font-size: 1.8rem;
	font-weight: 700;
}

.logo a {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.logo a:hover {
	color: var(--secondary-color);
}

.main-menu ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.main-menu a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.main-menu a:hover,
.main-menu a.active {
	color: var(--primary-color);
}

.main-menu a.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--primary-color);
}

/* ================================================
   CONTAINERS & SECTIONS
   ================================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section {
	padding: 4rem 0;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.section::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 4px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 48px);
	opacity: 0.25;
	pointer-events: none;
}

.section:last-child {
	border-bottom: none;
}

.monitor-note {
	text-align: center;
	margin-bottom: 1.5rem;
	color: rgba(226, 232, 240, 0.7);
}

.monitor-frame-wrap {
	background: rgba(8, 15, 29, 0.7);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 0.5rem;
	box-shadow: var(--card-shadow);
}

.monitor-frame {
	width: 100%;
	min-height: 70vh;
	border: none;
	border-radius: calc(var(--border-radius) - 2px);
	background: #0b1220;
}

.section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
	text-align: center;
}

.section > .container > p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: rgba(226, 232, 240, 0.72);
}

.section-toc {
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(79, 163, 255, 0.15);
}

.docs-toc {
	position: sticky;
	top: 88px;
	background: rgba(8, 15, 29, 0.85);
	border: 1px solid rgba(79, 163, 255, 0.15);
	border-radius: var(--border-radius);
	padding: 0.75rem 1rem;
	backdrop-filter: blur(10px);
}

.docs-toc ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.docs-toc a {
	color: rgba(226, 232, 240, 0.85);
	text-decoration: none;
	font-weight: 600;
}

.docs-toc a:hover {
	color: var(--primary-color);
}

/* ================================================
   EGEX DOCS (MILITARY STYLE)
   ================================================ */

.egex-docs .section h2,
.egex-docs .section h3,
.egex-docs .section h4 {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.egex-docs .section h2 {
	font-size: 2.1rem;
	text-shadow: 0 0 12px rgba(85, 145, 255, 0.18);
}

.egex-docs .section > .container > p {
	color: rgba(226, 232, 240, 0.78);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.egex-docs .docs-toc {
	border-color: rgba(112, 166, 255, 0.45);
	box-shadow: 0 18px 40px rgba(4, 10, 20, 0.55);
	background: rgba(3, 8, 18, 0.92);
}

.egex-docs .docs-toc a {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.78rem;
	color: rgba(226, 232, 240, 0.9);
}

.egex-docs .docs-toc a::before {
	content: "▸ ";
	color: rgba(112, 166, 255, 0.6);
}

.egex-docs .features-grid .feature-card {
	border: 1px solid rgba(112, 166, 255, 0.4);
	border-radius: 4px;
	background: linear-gradient(135deg, rgba(5, 10, 20, 0.94), rgba(10, 20, 35, 0.9));
	box-shadow: inset 0 0 0 1px rgba(18, 32, 58, 0.7), 0 12px 24px rgba(2, 6, 12, 0.55);
	position: relative;
}

.egex-docs .features-grid .feature-card::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 12px;
	width: 10px;
	height: 10px;
	border: 2px solid rgba(112, 166, 255, 0.5);
	border-radius: 2px;
}

.egex-docs .features-grid .feature-card h3 {
	font-size: 0.95rem;
	letter-spacing: 0.2em;
}

.egex-docs .features-grid .feature-card p {
	color: rgba(226, 232, 240, 0.78);
}

.egex-docs blockquote {
	border-left: 3px solid rgba(112, 166, 255, 0.6);
	background: rgba(8, 15, 29, 0.72);
	padding: 1rem 1.25rem;
	border-radius: 4px;
	box-shadow: inset 0 0 0 1px rgba(21, 36, 64, 0.4);
}

.egex-docs .section {
	position: relative;
}

.egex-docs .section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(112, 166, 255, 0), rgba(112, 166, 255, 0.35), rgba(112, 166, 255, 0));
}

.egex-docs .section-title.hero-visual::before {
	background: linear-gradient(120deg, rgba(3, 3, 3, 0.92), rgba(10, 10, 10, 0.85));
}

/* ================================================
   OPENCLAW
   ================================================ */

.egex-openclaw {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2477121719.jpg");
}

.egex-openclaw .section-title.hero-visual::before {
	background: linear-gradient(120deg, rgba(4, 10, 20, 0.92), rgba(10, 20, 35, 0.88));
}

.openclaw-badges {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1rem;
}

.openclaw-badges .badge {
	background: rgba(109, 118, 128, 0.2);
	border: 1px solid rgba(112, 166, 255, 0.35);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	color: rgba(226, 232, 240, 0.9);
}

.openclaw-toc {
	position: sticky;
	top: 88px;
	background: rgba(8, 15, 29, 0.85);
	border: 1px solid rgba(79, 163, 255, 0.15);
	border-radius: var(--border-radius);
	padding: 0.75rem 1rem;
	backdrop-filter: blur(10px);
}

.openclaw-toc ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.openclaw-toc a {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	color: rgba(226, 232, 240, 0.88);
	text-decoration: none;
}

.openclaw-toc a:hover {
	color: var(--secondary-color);
}

.code-block {
	margin: 1.5rem auto 0;
	max-width: 920px;
}

.code-block pre {
	background: #0a0f1a;
	border: 1px solid rgba(112, 166, 255, 0.3);
	border-radius: 6px;
	padding: 1rem 1.25rem;
	overflow-x: auto;
	box-shadow: inset 0 0 0 1px rgba(18, 32, 58, 0.7), 0 12px 24px rgba(2, 6, 12, 0.45);
}

.code-block code {
	color: rgba(226, 232, 240, 0.95);
	font-family: var(--font-family);
	font-size: 0.95rem;
}

/* ================================================
   HOME (DEFENSE-TECH STYLE)
   ================================================ */

.home .section h2,
.home .section h3,
.home .section h4 {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-family: "IBM Plex Mono", "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.home .section h2 {
	font-size: 2.1rem;
	text-shadow: 0 0 8px rgba(111, 127, 143, 0.2);
}

.home .section > .container > p {
	color: rgba(226, 232, 240, 0.78);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.home .features-grid .feature-card {
	border: 1px solid rgba(112, 166, 255, 0.4);
	border-radius: 4px;
	background: linear-gradient(135deg, rgba(5, 10, 20, 0.94), rgba(10, 20, 35, 0.9));
	box-shadow: inset 0 0 0 1px rgba(18, 32, 58, 0.7), 0 12px 24px rgba(2, 6, 12, 0.55);
	position: relative;
}

.home .features-grid .feature-card::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 12px;
	width: 10px;
	height: 10px;
	border: 2px solid rgba(112, 166, 255, 0.5);
	border-radius: 2px;
}

.home .features-grid .feature-card h3 {
	font-size: 0.95rem;
	letter-spacing: 0.2em;
}

.home .features-grid .feature-card p {
	color: rgba(226, 232, 240, 0.78);
}

.home .section {
	position: relative;
}

.home .section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(112, 166, 255, 0), rgba(112, 166, 255, 0.35), rgba(112, 166, 255, 0));
}

.home .section-title.hero-visual::before {
	background: linear-gradient(120deg, rgba(3, 3, 3, 0.92), rgba(10, 10, 10, 0.85));
}

/* ================================================
   HERO SECTION
   ================================================ */

.section-title {
	background: linear-gradient(135deg, rgba(12, 28, 52, 0.92) 0%, rgba(5, 15, 30, 0.95) 100%);
	color: white;
	text-align: center;
	padding: 8rem 0;
	border-bottom: none;
}

.section-title h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.section-title .lead {
	font-size: 1.4rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.section-title.hero-visual {
	position: relative;
	background: var(--hero-image) center/cover no-repeat;
	min-height: var(--hero-min-height);
	display: flex;
	align-items: center;
}

.section-title.hero-visual::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(120deg, rgba(3, 3, 3, 0.92), var(--overlay-dark));
}

.section-title.hero-visual::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 3px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 40px);
	opacity: 0.35;
	pointer-events: none;
}

.section-title.hero-visual .section-content,
.section-title.hero-visual .container {
	position: relative;
	z-index: 1;
}

.section-title.hero-visual h1,
.section-title.hero-visual p {
	text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* ================================================
   BUTTONS - Enhanced System with Variants & Sizes
   ================================================ */

.btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
	border: 2px solid var(--primary-color);
	line-height: 1.5;
	text-align: center;
}

.btn:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(91, 158, 245, 0.4);
}

.btn:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.btn:active {
	transform: translateY(0);
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: white;
}

.btn-accent {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
	color: white;
	border-color: var(--accent-color);
}

.btn-accent:hover {
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.5);
}

/* Button Sizes */
.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.btn-large,
.btn-lg {
	padding: 1rem 3rem;
	font-size: 1.1rem;
}

.btn-xl {
	padding: 1.25rem 4rem;
	font-size: 1.2rem;
}

.section-title .btn {
	background-color: white;
	color: var(--primary-color);
	border-color: white;
}

.section-title .btn:hover {
	background-color: #f0f0f0;
}

/* ================================================
   FEATURES GRID
   ================================================ */

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

.intel-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1024px) {
	.intel-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.feature-card {
	background-color: var(--card-bg);
	padding: 2rem;
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(79, 163, 255, 0.2);
	box-shadow: 0 12px 30px rgba(5, 12, 24, 0.35);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-shadow);
	border-color: var(--primary-color);
}

.feature-card .card-media {
	margin: -2rem -2rem 1.5rem;
	border-radius: calc(var(--border-radius) + 6px);
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.2);
}

.feature-card .card-media img {
	width: 100%;
	height: var(--card-media-height);
	object-fit: cover;
	display: block;
}

.section-media {
	margin: 2rem auto 0;
	max-width: 920px;
	border-radius: calc(var(--border-radius) + 6px);
	overflow: hidden;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(79, 163, 255, 0.2);
}

.section-media img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}

.feature-card h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.feature-card p {
	color: rgba(226, 232, 240, 0.72);
	line-height: 1.6;
}

.feature-card ul {
	list-style: disc;
	text-align: left;
	padding-left: 1.25rem;
	margin-top: 1rem;
}

.feature-card li {
	margin-bottom: 0.5rem;
}

.site-content ul,
.site-content ol {
	margin: 1rem 0 1.5rem;
	padding-left: 1.5rem;
}

.site-content ul {
	list-style: disc;
}

.site-content ol {
	list-style: decimal;
}

.site-content li {
	margin-bottom: 0.5rem;
}

.site-content dl {
	margin: 1rem 0 1.5rem;
}

.site-content dt {
	font-weight: 700;
	margin-top: 0.75rem;
}

.site-content dd {
	margin-left: 1.25rem;
	color: #666;
}

form {
	display: grid;
	gap: 0.75rem;
	max-width: 560px;
	margin: 1.5rem auto 0;
}

label {
	font-weight: 600;
}

input,
textarea,
select {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: #fff;
	font-family: var(--font-family);
}

button {
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	border: none;
	background: var(--primary-color);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

button:hover {
	background: #0052a3;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.section-about {
	background-color: var(--light-bg);
}

.section-about p {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	color: #555;
}

/* ================================================
   BLOG SECTION
   ================================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section {
	padding: 4rem 0;
	border-bottom: 1px solid var(--border-color);
}

.section:last-child {
	border-bottom: none;
}

.section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
	text-align: center;
}

.section > .container > p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: rgba(226, 232, 240, 0.72);
}

/* ================================================
   HERO SECTION
   ================================================ */

.section-title {
	background: linear-gradient(135deg, rgba(12, 28, 52, 0.92) 0%, rgba(5, 15, 30, 0.95) 100%);
	color: white;
	text-align: center;
	padding: 8rem 0;
	border-bottom: none;
}

.section-title h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.section-title .lead {
	font-size: 1.4rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.section-title.hero-visual {
	position: relative;
	background: var(--hero-image) center/cover no-repeat;
	min-height: var(--hero-min-height);
	display: flex;
	align-items: center;
}

.section-title.hero-visual::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(120deg, rgba(0, 26, 61, 0.85), var(--overlay-dark));
}

.section-title.hero-visual .section-content,
.section-title.hero-visual .container {
	position: relative;
	z-index: 1;
}

.section-title.hero-visual h1,
.section-title.hero-visual p {
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.section-title .btn {
	background-color: #f8fafc;
	color: #0b1220;
	border-color: #f8fafc;
}

.section-title .btn:hover {
	background-color: #e2e8f0;
}

.egex-playbooks {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_169291823.jpg");
}

.egex-templates {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_1502167895.jpg");
}

.egex-tools {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2477211975.jpg");
}

.egex-gallery {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_1859635435.jpg");
}

.egex-legacy {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_1721499838.jpg");
}

.egex-about {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2413529957.jpg");
}

.egex-404 {
	--hero-image: url("../images/gifts/Licensed%20Photos/shutterstock_2475702541.jpg");
}

.egex-404 .error-page {
	background: linear-gradient(135deg, rgba(0, 26, 61, 0.9) 0%, rgba(0, 74, 153, 0.85) 100%), var(--hero-image) center/cover no-repeat;
	color: #fff;
	padding: 4rem 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
}

.egex-404 .error-description {
	color: rgba(255, 255, 255, 0.85);
}

.section-subscribe h2 {
	color: white;
	margin-bottom: 1rem;
}

.section-subscribe p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
	background-color: #0b1220;
	color: #e2e8f0;
	padding: 3rem 0;
	margin-top: 4rem;
}

.footer-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-section p {
	line-height: 1.6;
	opacity: 0.9;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(226, 232, 240, 0.85);
	text-decoration: none;
	transition: var(--transition);
}

.footer-section a:hover {
	color: #ffffff;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.footer-bottom {
	text-align: center;
	opacity: 0.8;
	font-size: 0.9rem;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.mt-1 { margin-top: var(--spacing-unit); }
.mt-2 { margin-top: calc(var(--spacing-unit) * 2); }
.mt-3 { margin-top: calc(var(--spacing-unit) * 3); }
.mt-4 { margin-top: calc(var(--spacing-unit) * 4); }

.mb-1 { margin-bottom: var(--spacing-unit); }
.mb-2 { margin-bottom: calc(var(--spacing-unit) * 2); }
.mb-3 { margin-bottom: calc(var(--spacing-unit) * 3); }
.mb-4 { margin-bottom: calc(var(--spacing-unit) * 4); }

/* ================================================
   LOADING & ANIMATIONS
   ================================================ */

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

.fade-in {
	animation: fadeIn 0.6s ease-out;
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
	.site-header,
	.site-footer,
	.btn {
		display: none;
	}
}

/* ================================================
   FORM STYLING - Dark Theme Forms
   ================================================ */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea,
select {
	background-color: #1a1f24;
	color: var(--text-color);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	font-family: var(--font-family);
	font-size: 1rem;
	transition: var(--transition);
	width: 100%;
}

input::placeholder,
textarea::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

input:hover,
textarea:hover,
select:hover {
	border-color: var(--primary-color);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(91, 158, 245, 0.1);
}

input:disabled,
textarea:disabled,
select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Form Labels */
label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* ================================================
   GARDEN SECTION STYLES
   ================================================ */
.section-garden {
	background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
	padding: var(--space-6) var(--space-4);
}

.section-garden h2 {
	text-align: center;
	margin-bottom: var(--space-4);
	color: var(--accent-color);
}

.section-garden > .container > p {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--space-5);
	font-size: 1.1em;
	color: var(--text-secondary);
}

.garden-features {
	max-width: 1000px;
	margin: 0 auto var(--space-5);
}

.garden-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-5);
	margin-bottom: var(--space-5);
}

.garden-feature-card {
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: var(--radius-lg);
	padding: var(--space-4);
	transition: var(--transition);
}

.garden-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.5);
}

.garden-feature-card h3 {
	color: var(--accent-color);
	margin-bottom: var(--space-3);
	font-size: 1.2em;
}

.garden-feature-card p {
	color: var(--text-muted);
	line-height: 1.6;
}

.garden-feature-card:nth-child(1) {
	background: rgba(168, 85, 247, 0.1);
	border-color: rgba(168, 85, 247, 0.3);
}

.garden-feature-card:nth-child(1) h3 {
	color: var(--accent-color);
}

.garden-feature-card:nth-child(2) {
	background: rgba(96, 165, 250, 0.1);
	border-color: rgba(96, 165, 250, 0.3);
}

.garden-feature-card:nth-child(2) h3 {
	color: var(--info-color);
}

.garden-feature-card:nth-child(3) {
	background: rgba(245, 158, 11, 0.1);
	border-color: rgba(245, 158, 11, 0.3);
}

.garden-feature-card:nth-child(3) h3 {
	color: var(--warning-color);
}

.garden-cta {
	text-align: center;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-color); }

.bg-card { background-color: var(--card-bg); }
.bg-dark { background-color: var(--light-bg); }

/* ================================================
   PARTNERSHIP BANNER
   ================================================ */
.partnership-banner {
	background: linear-gradient(135deg, rgba(0, 67, 156, 0.08) 0%, rgba(91, 158, 245, 0.08) 50%, rgba(168, 85, 247, 0.08) 100%);
	border-top: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--accent-color);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.partnership-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(0, 67, 156, 0.03) 0%, transparent 50%),
	            radial-gradient(circle at 70% 50%, rgba(91, 158, 245, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.partnership-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.partnership-header h2 {
	font-size: 2.5rem;
	color: var(--text-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.partnership-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
}

.partnership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.partnership-grid.three-col {
	grid-template-columns: repeat(3, 1fr);
}

.partnership-grid.four-col {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
	.partnership-grid.three-col {
		grid-template-columns: repeat(2, 1fr);
	}

	.partnership-grid.four-col {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.partnership-grid.three-col,
	.partnership-grid.four-col {
		grid-template-columns: 1fr;
	}
}

.partnership-card {
	background: var(--card-bg);
	border-radius: 12px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.partnership-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.ps-partner {
	border: 2px solid #00439C;
}

.ps-partner::before {
	background: linear-gradient(90deg, #00439C 0%, #0070CC 100%);
}

.aws-partner {
	border: 2px solid #FF9900;
}

.aws-partner::before {
	background: linear-gradient(90deg, #FF9900 0%, #146EB4 100%);
}

.openai-partner {
	border: 2px solid #10A37F;
}

.openai-partner::before {
	background: linear-gradient(90deg, #10A37F 0%, #19C37D 100%);
}

.nvidia-partner {
	border: 2px solid var(--primary-color);
}

.nvidia-partner::before {
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.partnership-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(91, 158, 245, 0.3);
}

.ps-partner:hover {
	box-shadow: 0 12px 32px rgba(0, 67, 156, 0.4);
}

.aws-partner:hover {
	box-shadow: 0 12px 32px rgba(255, 153, 0, 0.4);
}

.openai-partner:hover {
	box-shadow: 0 12px 32px rgba(16, 163, 127, 0.4);
}

.partnership-badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.ps-partner .partnership-badge {
	background: linear-gradient(135deg, #00439C 0%, #0070CC 100%);
	color: white;
}

.aws-partner .partnership-badge {
	background: linear-gradient(135deg, #FF9900 0%, #146EB4 100%);
	color: white;
}

.openai-partner .partnership-badge {
	background: linear-gradient(135deg, #10A37F 0%, #19C37D 100%);
	color: white;
}

.nvidia-partner .partnership-badge {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	color: white;
}

.partnership-card h3 {
	font-size: 1.75rem;
	color: var(--text-color);
	margin: 1rem 0;
	font-weight: 700;
}

.partnership-card p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.partnership-link {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.ps-partner .partnership-link {
	color: #0070CC;
}

.aws-partner .partnership-link {
	color: #FF9900;
}

.partnership-link:hover {
	opacity: 0.8;
	border-bottom-color: currentColor;
}

@media (max-width: 768px) {
	.partnership-banner {
		padding: 3rem 0;
	}

	.partnership-header h2 {
		font-size: 2rem;
	}

	.partnership-header p {
		font-size: 1rem;
	}

	.partnership-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.partnership-card {
		padding: 2rem;
	}
}
