* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-weight: 350;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Imperial serif for headings */
h1, h2, h3, .hero h1, .features h2, .stat-number {
    font-family: 'Times New Roman', Georgia, serif;
}

h1 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #FFF8E7, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: #D4AF37;
    margin: 2rem 0 1rem;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #D4AF37;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #050505;
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
    transition: transform 0.2s;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFF8E7, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.7rem;
    color: #B0B0B0;
    background: none;
    -webkit-background-clip: unset;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: #e0e0e0;
    transition: color 0.2s;
    position: relative;
}

nav a.active, nav a:hover {
    color: #D4AF37;
}

/* Hero – amplified */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.7), #050505 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero .gold {
    background: none;
    color: #D4AF37;
}

.hero-sub {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #050505;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.6);
}

.btn-secondary {
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-2px);
}

/* Feature grid */
.features {
    padding: 80px 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: #D4AF37;
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

/* Stats section */
.stats {
    background: #0a0a0a;
    border-top: 1px solid rgba(212,175,55,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #D4AF37;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Commodity/logistics cards */
.commodity, .logistics-card {
    background: #0a0a0a;
    border-left: 5px solid #D4AF37;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    transition: 0.2s;
}

.commodity:hover, .logistics-card:hover {
    background: #0f0f0f;
    transform: translateX(6px);
}

.gate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gate {
    background: #111;
    border: 1px solid #D4AF37;
    padding: 0.8rem;
    border-radius: 40px;
    text-align: center;
    font-weight: 600;
}

.veritas-banner {
    background: #0a0a0a;
    border: 1px solid #D4AF37;
    padding: 2rem;
    text-align: center;
    border-radius: 40px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

footer {
    background: #0a0a0a;
    border-top: 1px solid #D4AF37;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .header-flex {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
    .stats-grid {
        flex-direction: column;
    }
}