@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; --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-highlight: #3a3a55; --success: #00cec9; --success-bg: rgba(0, 206, 201, 0.1); --warning: #fdcb6e; --warning-bg: rgba(253, 203, 110, 0.1); --danger: #ff6b6b; --danger-bg: rgba(255, 107, 107, 0.1); --info: #74b9ff; --info-bg: rgba(116, 185, 255, 0.1); } * { 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; -webkit-font-smoothing: antialiased; } /* Background Grid */ .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.02) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 92, 231, 0.02) 1px, transparent 1px); background-size: 60px 60px; } /* Navigation */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 40px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; } .logo-mark svg { width: 32px; height: 32px; } .logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); letter-spacing: 1.5px; text-transform: uppercase; } .logo-text span { color: var(--accent-light); } .nav-links { display: flex; gap: 24px; list-style: none; } .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s ease; } .nav-links a:hover, .nav-links a.active { color: var(--text-primary); } .nav-links a.active::after { content: ''; display: block; width: 100%; height: 2px; background: var(--accent); margin-top: 4px; border-radius: 1px; } /* Main Container */ .page-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; } /* Document Header */ .doc-header { margin-bottom: 64px; border-bottom: 1px solid var(--border); padding-bottom: 40px; } .doc-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; } .doc-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; } .doc-breadcrumb a:hover { color: var(--accent-light); } .doc-breadcrumb .separator { color: var(--border-highlight); } .doc-meta { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; } .meta-tag { 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.75rem; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; } .meta-tag.legal { background: var(--warning-bg); border-color: rgba(253, 203, 110, 0.2); color: var(--warning); } .doc-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; } .doc-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; line-height: 1.7; } /* Core Definition Box */ .core-definition { background: var(--bg-card); border: 1px solid var(--accent); border-radius: 16px; padding: 40px; margin-bottom: 48px; position: relative; box-shadow: 0 0 40px rgba(108, 92, 231, 0.1); } .core-definition::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); border-radius: 16px 16px 0 0; } .core-definition h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; margin-bottom: 16px; color: var(--accent-light); } .core-definition p { font-size: 1.1rem; color: var(--text-primary); line-height: 1.8; } .core-definition .highlight { color: var(--accent-light); font-weight: 600; } /* Section Styles */ .section-block { margin-bottom: 64px; } .section-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 32px; display: flex; align-items: center; gap: 12px; } .section-title .icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(108, 92, 231, 0.1); border-radius: 8px; color: var(--accent-light); } /* Categories Grid */ .categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; } .category-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.3s ease; } .category-card:hover { border-color: var(--border-highlight); background: var(--bg-card-hover); transform: translateY(-2px); } .category-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; } .category-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; } .category-icon.financial { background: rgba(253, 203, 110, 0.1); color: var(--warning); } .category-icon.family { background: rgba(255, 107, 107, 0.1); color: var(--danger); } .category-icon.external { background: rgba(116, 185, 255, 0.1); color: var(--info); } .category-icon.gifts { background: rgba(162, 155, 254, 0.1); color: var(--accent-light); } .category-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; } .category-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; } /* Examples List */ .examples-list { margin-top: 16px; padding-left: 0; list-style: none; } .examples-list li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-secondary); font-size: 0.9rem; } .examples-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); } /* Policy Matrix */ .policy-matrix { display: grid; gap: 24px; } .policy-item { display: grid; grid-template-columns: 180px 1fr; gap: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; align-items: start; } .policy-label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--accent-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; padding-top: 4px; } .policy-content { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; } .policy-content code { background: rgba(255, 255, 255, 0.05); padding: 2px 8px; border-radius: 4px; font-family: 'Space Grotesk', monospace; font-size: 0.85rem; color: var(--text-primary); } /* Alert Boxes */ .alert-box { padding: 24px; border-radius: 12px; margin: 32px 0; border: 1px solid; display: flex; gap: 16px; align-items: flex-start; } .alert-box .alert-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; } .alert-box h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; margin-bottom: 8px; } .alert-box p { font-size: 0.95rem; line-height: 1.6; } .alert-warning { background: var(--warning-bg); border-color: rgba(253, 203, 110, 0.2); color: var(--warning); } .alert-warning h4 { color: var(--warning); } .alert-warning p { color: rgba(253, 203, 110, 0.9); } .alert-danger { background: var(--danger-bg); border-color: rgba(255, 107, 107, 0.2); color: var(--danger); } .alert-danger h4 { color: var(--danger); } .alert-danger p { color: rgba(255, 107, 107, 0.9); } /* Reporting Flow */ .reporting-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; } .flow-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: center; position: relative; } .flow-step::after { content: '→'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.5rem; z-index: 2; } .flow-step:last-child::after { display: none; } .step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: white; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; } .step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 8px; } .step-desc { color: var(--text-secondary); font-size: 0.9rem; } /* FAQ Accordion */ .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all 0.3s ease; } .faq-item:hover { border-color: var(--border-highlight); } .faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-family: 'Space Grotesk', sans-serif; } .faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent-light); transition: transform 0.3s ease; } .faq-item.active .faq-question::after { transform: rotate(45deg); } .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-secondary); line-height: 1.7; } .faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 200px; } /* Footer */ footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; margin-top: 80px; } footer p { color: var(--text-muted); font-size: 0.85rem; } /* Responsive */ @media (max-width: 768px) { .page-container { padding: 100px 16px 60px; } nav { padding: 0 16px; } .nav-links { display: none; } .doc-title { font-size: 2rem; } .core-definition { padding: 24px; } .policy-item { grid-template-columns: 1fr; gap: 8px; } .flow-step::after { display: none; } .categories-grid { grid-template-columns: 1fr; } }
Home Compliance Center Conflict of Interest Policy
Policy Document Legally Binding Effective: Jan 01, 2026 Version 4.2

Definition of Conflict of Interest

Official definition, classification framework, and compliance protocols for identifying, disclosing, and managing Conflicts of Interest across all Aevum Zenth subsidiaries and operations.

Official Definition

A Conflict of Interest (COI) exists when any employee, contractor, board member, or subsidiary of Aevum Zenth Conglomerate has a personal, financial, familial, or external interest that improperly influences, or creates the appearance of improperly influencing, their official duties, judgment, or decision-making on behalf of the Conglomerate.


A COI does not require intent to harm. If a reasonable person would perceive that personal interests could compromise objectivity, a conflict exists. All personnel are obligated to identify, disclose, and recuse themselves from matters involving potential conflicts.

⚠️

Zero Tolerance Policy

Failure to disclose a known Conflict of Interest, or proceeding with decision-making while a conflict exists, constitutes a material violation of Aevum Zeth Code of Conduct and may result in immediate termination, legal action, and permanent blacklisting from all subsidiaries.

📋 Categories of Conflict

💰
Financial Entanglements
Direct or indirect financial interests that compete with Aevum Zenth.
  • Owning stakes in competitor firms or suppliers
  • Accepting kickbacks or undisclosed commissions
  • Investing in subsidiaries' contracts for personal gain
  • Using insider information for personal trading
👨‍👩‍👧
Family & Nepotism
Personal relationships influencing hiring, promotions, or contracts.
  • Hiring relatives without standard review
  • Awarding contracts to family-owned businesses
  • Promoting spouses or domestic partners
  • Granting favorable terms to connected parties
🌐
External Activities
Outside roles or commitments that create divided loyalties.
  • Board seats at competing organizations
  • Consulting for vendors or clients without approval
  • Running a side business using company resources
  • Political roles conflicting with corporate interests
🎁
Gifts & Hospitality
Receiving benefits that may create obligation or bias.
  • Accepting gifts over $100 USD annually
  • Travel, entertainment, or luxury accommodations
  • Campaign contributions to political figures
  • Sponsorships tied to vendor relationships

⚖️ Policy Framework

Disclosure
All personnel must submit a COI Disclosure Form annually via the Ethics Portal and immediately upon arising of new circumstances. Disclosures are reviewed by the Office of Corporate Integrity within 5 business days.
Recusal Protocol
When a conflict is identified or disclosed, the individual must immediately recuse themselves from all related decision-making, discussions, and document access. Recusal Orders are logged in the Compliance Registry.
Mitigation
Where feasible, conflicts may be mitigated through divestiture, restructuring of duties, or independent oversight. Mitigation plans require approval from the Board Ethics Committee.
Review Cycle
All COI disclosures are reviewed quarterly. High-risk roles (executive, procurement, R&D) undergo additional bi-annual audits. Policy updates are published with 90-day notice.

🛡️ Reporting Mechanism

Aevum Zenth operates a confidential, anonymous reporting system. Retaliation against whistleblowers is strictly prohibited and grounds for immediate termination.

1
Identify
Recognize a potential conflict of interest affecting decision-making or objectivity.
2
Report
Submit via Ethics Hotline, Secure Portal, or direct to Compliance Officer.
3
Investigate
Office of Corporate Integrity conducts confidential review within 5 days.
4
Resolve
Appropriate action taken: recusal, mitigation, remediation, or discipline.

Frequently Asked Questions

Can I invest in companies that are not direct competitors?
Yes, provided the investment does not exceed 2% ownership, is disclosed via the standard form, and the company is not a vendor, client, or partner of Aevum Zenth. High-value investments require Ethics Committee pre-approval.
What if my spouse works for a vendor?
This constitutes a potential conflict. You must disclose the relationship immediately and recuse yourself from all procurement, contracting, or evaluation activities related to that vendor. Divestiture or role reassignment may be required.
Is accepting a complimentary conference ticket a conflict?
Yes. All hospitality and gifts must be pre-approved. Conference tickets from vendors or clients require submission of a Gifts & Hospitality Form prior to acceptance. Standard industry events may have simplified approval processes.
What are the consequences of hiding a conflict?
Concealment is treated as a severe violation. Consequences include immediate termination, forfeiture of bonuses and equity, legal prosecution where applicable, and reporting to regulatory authorities. Whistleblower reports of non-disclosure are prioritized.
ℹ️

When in Doubt, Disclose

If you are uncertain whether a situation constitutes a conflict, err on the side of transparency. Submit a preliminary inquiry via the Ethics Portal. Good-faith disclosures are never penalized and demonstrate ethical leadership.