@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap'); :root { --bg-primary: #0a0a0f; --bg-secondary: #111118; --bg-card: #16161f; --bg-card-hover: #1c1c28; --bg-code: #0e0e14; --accent: #6c5ce7; --accent-light: #a29bfe; --accent-glow: rgba(108, 92, 231, 0.3); --text-primary: #e8e8f0; --text-secondary: #8888a0; --text-muted: #55556a; --border: #222235; --border-light: #2a2a3d; --success: #00cec9; --warning: #fdcb6e; --danger: #ff6b6b; --info: #74b9ff; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; min-height: 100vh; } /* Background Effects */ .bg-grid { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; background-image: linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px); background-size: 60px 60px; } .bg-orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; } .bg-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(108, 92, 231, 0.08), transparent 70%); top: -100px; right: -100px; } .bg-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 206, 201, 0.05), transparent 70%); bottom: -100px; left: -100px; } /* Navigation */ nav { position: sticky; top: 0; z-index: 100; padding: 0 40px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(10, 10, 15, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; } .logo-mark { width: 36px; height: 36px; } .logo-mark svg { width: 100%; height: 100%; } .logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); letter-spacing: 2px; text-transform: uppercase; } .logo-text span { color: var(--accent-light); } .nav-links { display: flex; align-items: center; gap: 24px; list-style: none; } .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.3s ease; } .nav-links a:hover, .nav-links a.active { color: var(--text-primary); } /* Layout */ .page-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 60px 40px 100px; } /* Breadcrumbs */ .breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 0.85rem; } .breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; } .breadcrumbs a:hover { color: var(--accent-light); } .breadcrumbs .separator { color: var(--text-muted); } .breadcrumbs .current { color: var(--text-secondary); } /* Header Section */ .page-header { margin-bottom: 64px; } .page-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -1px; } .page-subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; } .last-updated { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 6px 14px; background: rgba(108, 92, 231, 0.1); border: 1px solid rgba(108, 92, 231, 0.2); border-radius: 6px; font-size: 0.8rem; color: var(--accent-light); font-weight: 500; } /* Cookie Categories */ .categories-grid { display: flex; flex-direction: column; gap: 24px; } .category-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; } .category-card:hover { border-color: var(--border-light); transform: translateY(-2px); } .category-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; cursor: pointer; user-select: none; } .category-header-left { display: flex; align-items: center; gap: 16px; } .category-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; } .category-icon.necessary { background: rgba(255, 107, 107, 0.1); } .category-icon.performance { background: rgba(0, 206, 201, 0.1); } .category-icon.functional { background: rgba(116, 185, 255, 0.1); } .category-icon.marketing { background: rgba(253, 203, 110, 0.1); } .category-icon.third-party { background: rgba(162, 155, 254, 0.1); } .category-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; } .category-desc { color: var(--text-muted); font-size: 0.85rem; } .category-badge { padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; } .badge-required { background: rgba(255, 107, 107, 0.1); color: var(--danger); border: 1px solid rgba(255, 107, 107, 0.2); } .badge-optional { background: rgba(0, 206, 201, 0.1); color: var(--success); border: 1px solid rgba(0, 206, 201, 0.2); } .toggle-icon { width: 24px; height: 24px; color: var(--text-muted); transition: transform 0.3s ease; } .category-card.expanded .toggle-icon { transform: rotate(180deg); } .category-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } .category-card.expanded .category-content { max-height: 2000px; } .category-inner { padding: 0 32px 32px; border-top: 1px solid var(--border); } /* Cookie Table */ .cookie-table { width: 100%; border-collapse: collapse; margin-top: 24px; } .cookie-table th { text-align: left; padding: 12px 16px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); border-bottom: 1px solid var(--border); } .cookie-table td { padding: 16px; font-size: 0.9rem; border-bottom: 1px solid rgba(34, 34, 53, 0.5); vertical-align: top; } .cookie-table tr:last-child td { border-bottom: none; } .cookie-name { font-family: 'Space Grotesk', monospace; color: var(--accent-light); font-weight: 500; font-size: 0.85rem; } .cookie-name code { background: var(--bg-code); padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; } .cookie-purpose { color: var(--text-secondary); } .cookie-duration { color: var(--text-muted); font-size: 0.85rem; } .cookie-provider { display: inline-flex; align-items: center; gap: 6px; color: var(--text-secondary); font-size: 0.85rem; } .provider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); } /* Info Box */ .info-box { background: rgba(116, 185, 255, 0.05); border: 1px solid rgba(116, 185, 255, 0.1); border-radius: 12px; padding: 24px; margin-top: 48px; } .info-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; margin-bottom: 12px; color: var(--info); } .info-box p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; } .info-box ul { margin-top: 12px; margin-left: 20px; color: var(--text-secondary); font-size: 0.9rem; } .info-box ul li { margin-bottom: 8px; } .info-box ul li strong { color: var(--text-primary); } /* Management Section */ .management-section { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } .management-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; } .management-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-bottom: 16px; } .management-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; } .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none; font-family: 'Inter', sans-serif; } .btn-primary { background: var(--accent); color: white; } .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); } .btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border); } .btn-secondary:hover { border-color: var(--text-muted); } /* Footer */ footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 48px 40px; background: rgba(10, 10, 15, 0.5); } .footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; } .footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; } .footer-links { display: flex; gap: 24px; } .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; } .footer-links a:hover { color: var(--text-primary); } /* Responsive */ @media (max-width: 768px) { nav { padding: 0 20px; } .nav-links { display: none; } .page-container { padding: 40px 20px 60px; } .category-header { padding: 20px; } .category-inner { padding: 0 20px 20px; } .cookie-table { display: block; overflow-x: auto; } .management-section { grid-template-columns: 1fr; } .footer-content { flex-direction: column; text-align: center; } }
🔒
Strictly Necessary Cookies
Essential for site security and core functionality across all divisions.
Required

These cookies are required for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in, or filling in forms. These include cookies for secure session management across our investor portals and subsidiary dashboards.

📊
Performance & Analytics Cookies
Help us understand how visitors interact with our global site.
Optional

These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us know which pages are the most and least popular and see how visitors move around the site across our Energy, Tech, Aerospace, and Healthcare divisions. All information these cookies collect is aggregated and therefore anonymous.

⚙️
Functional Cookies
Enable enhanced functionality and personalization.
Optional

These cookies allow the website to provide enhanced functionality and personalization. They may be set by us or by third-party providers whose services we have added to our pages. These include remembering your preferred division view (e.g., Aerospace vs. Finance), language settings, and region-specific content for our 62 countries of operation.

📢
Marketing & Advertising Cookies
Track visitors across websites for relevant ads.
Optional

These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant advertisements on other sites. They do not store directly personal information but are based on unique identification of your browser and internet device. Aevum Zenth uses these for employer branding and targeted industry events.

🌐
Third-Party Services
Cookies set by external service providers.
Optional

Some features embedded within our site are powered by third-party services. These services may set their own cookies. Aevum Zenth is not responsible for the privacy practices of these third parties. Please review their respective privacy policies.

Global Compliance & Data Protection

Aevum Zenth Conglomerate operates under strict compliance frameworks including GDPR (EU), CCPA (California), LGPD (Brazil), and PIPL (China). Our cookie practices are aligned with the highest standards of data minimization and user consent. All cookies are reviewed annually by our Legal & Compliance division.

Manage Your Preferences

You can control and/or delete cookies as you wish. You can delete all cookies that are already on your computer and you can set most browsers to prevent them from being placed.

Browser Settings

For more information on how to manage cookies in your browser, visit the privacy settings of your browser provider.

Chrome Firefox Safari Edge