/* assets/css/styles.css */
:root {
    --navy: #0A2540;
    --gold: #B38B5E;
    --charcoal: #2C3E50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--navy);
    color: #f4f4f4;
    line-height: 1.6;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.content { width: 100%; text-align: center; }
.logo { max-width: 180px; margin-bottom: 20px; }
.title { font-size: 3.5rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tagline { font-size: 1.4rem; color: var(--gold); margin-bottom: 60px; letter-spacing: 1px; }
.hero-text { font-size: 1.25rem; max-width: 720px; margin: 0 auto 24px; }
.triad {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}
.triad-item {
    background: rgba(255,255,255,0.08);
    padding: 24px 32px;
    border-radius: 8px;
    width: 240px;
    font-weight: 600;
    font-size: 1.1rem;
}
.triad-item strong {
    color: var(--gold);
}
.triad-item span { display: block; font-weight: 400; font-size: 0.95rem; margin-top: 8px; color: #ccc; }
.section { margin: 80px 0 60px; }
h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--gold); }
.btn {
    display: inline-block;
    padding: 16px 36px;
    margin: 0 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.primary { background: var(--gold); color: #0A2540; }
.secondary { background: transparent; border: 2px solid #ccc; color: #ccc; }
.btn:hover { transform: translateY(-2px); }
.footer { margin-top: 100px; font-size: 0.9rem; opacity: 0.7; }

/* White Paper Cards */
.paper-card {
    background: rgba(255,255,255,0.07);
    padding: 30px;
    margin: 30px auto;
    max-width: 700px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}
.paper-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.paper-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.paper-card p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

