:root {
    --bg-white: #ffffff;
    --bg-gray: #f4f4f4;
    --text-main: #111111;
    --text-muted: #666666;
    --accent-orange: #FF4E11;
    --border-color: #e5e5e5;
    --border-dark: #222222;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography Overrides */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h4, h5 {
    font-weight: 700;
}

p {
    color: var(--text-muted);
}

/* Utility Classes */
.bg-gray {
    background-color: var(--bg-gray);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-gray);
    background-image: url('images/hero_bg.png');
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: #ffffff;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    animation: fadeIn 1s ease-out forwards;
}

.hero-subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: #ffffff;
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat h2 {
    font-size: 3.5rem;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--text-main);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--text-main);
    transition: all 0.3s;
}

.cta-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-white);
}

.cta-btn:hover .arrow {
    transform: translateX(5px);
}

/* Sections */
.division {
    padding: 8rem 5%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.sub-heading {
    font-size: 1rem;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sub-heading::before {
    content: "/ ";
    color: var(--accent-orange);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--text-main);
}
.subsection-title::before {
    content: "/ ";
    color: var(--accent-orange);
}

.mt-5 { margin-top: 5rem; }
.mt-2 { margin-top: 2rem; }

/* Grid Layouts - Industrial Style */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.card {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 3rem 2rem;
    transition: all 0.3s;
}

.card:hover {
    background-color: var(--bg-gray);
}

.card h4, .card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Roadmap Styles */
.roadmap-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.pillars, .timeline {
    flex: 1;
    min-width: 300px;
}

.pillars h4, .timeline h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.pillar-card {
    border-left: 3px solid var(--accent-orange);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.pillar-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.timeline-step {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
    position: relative;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--bg-white);
    border: 2px solid var(--accent-orange);
}

.step-label {
    display: inline-block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-step ul {
    list-style: none;
    padding: 0;
}

.timeline-step li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.timeline-step li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Trading Section Layout */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.trading-content {
    flex: 1;
    min-width: 300px;
}

.trading-commodities {
    list-style: none;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trading-commodities li {
    font-size: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--text-main);
}

.trading-commodities li::before {
    content: "→";
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.trading-approach {
    flex: 2;
    min-width: 300px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

/* Footers inside sections */
.market-footer {
    text-align: left;
    margin-top: 3rem;
    padding: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-left: 4px solid var(--accent-orange);
}

/* Main Footer */
footer {
    text-align: center;
    padding: 6rem 5%;
    background: #111111;
    color: #ffffff;
}

footer h2 {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

footer span {
    color: var(--accent-orange);
}

footer p {
    color: #888888;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-gray);
    color: var(--text-main);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.cta-highlight {
    color: var(--accent-orange);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-weight: 500;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    border: none;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-card h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    text-transform: uppercase;
    margin-top: 1rem;
    transition: color 0.3s;
}

.cta-card.blue-bg:hover h4 { color: #0066ff; }
.cta-card.teal-bg:hover h4 { color: #00a884; }
.cta-card.orange-bg:hover h4 { color: var(--accent-orange); }

.cta-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info p {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}
