/* 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.65;
}

/* Main Layout */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content {
    width: 100%;
    text-align: center;
}

/* Tighter Header */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.logo {
    max-width: 90px;
    height: auto;
}

.title-group {
    text-align: left;
}

.title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.tagline {
    font-size: 1.35rem;
    color: var(--gold);
    margin: 4px 0 0 0;
    letter-spacing: 0.5px;
}

/* Hero & Content */
.hero-text {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 28px;
}

.triad {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 70px 0;
    flex-wrap: wrap;
}

.triad-item {
    background: rgba(255,255,255,0.08);
    padding: 28px 32px;
    border-radius: 8px;
    width: 260px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.triad-item strong {
    color: var(--gold);
}

.triad-item span {
    display: block;
    font-size: 0.95rem;
    margin-top: 10px;
    color: #bbbbbb;
    font-weight: 400;
}

.section {
    margin: 80px 0 60px;
}

h2 {
    font-size: 1.85rem;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 38px;
    margin: 12px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.primary {
    background: var(--gold);
    color: #0A2540;
}

.secondary {
    background: transparent;
    border: 2px solid #ddd;
    color: #ddd;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(179, 139, 94, 0.25);
}

/* White Papers Page */
.back-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 40px;
}

.back-link:hover {
    text-decoration: underline;
}

.whitepapers-title {
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.papers-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.paper-card {
    background: rgba(255,255,255,0.07);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.paper-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.paper-card h3 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.paper-card p {
    margin-bottom: 24px;
    color: #ddd;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin-top: 120px;
    font-size: 0.95rem;
    opacity: 0.75;
}


