/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400&family=Roboto:wght@300;400;500&display=swap');

/* VARIABLES - Based on Corp Identity Manual */
:root {
    --color-bg-primary: #0A192F;      /* Abyssal Navy - Stability */
    --color-action: #00B4D8;          /* Kinetic Blue - Innovation */
    --color-surface: #1F2937;         /* Titanium Slate - Precision */
    --color-success: #10B981;         /* Neo-Emerald - Growth */
    --color-text-main: #F9FAFB;       /* Logic White - Readability */
    --color-text-muted: #D1D5DB;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

/* LAYOUT UTILITIES */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-action);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* HEADER */
.main-header {
    border-bottom: 2px solid var(--color-action);
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.main-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-action);
    margin-bottom: 20px;
}

.doc-meta {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background-color: var(--color-surface);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #374151;
}

.doc-meta span {
    margin: 0 10px;
}

/* CONTENT TYPOGRAPHY */
h2 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    border-left: 4px solid var(--color-success);
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-family: var(--font-heading);
    color: var(--color-action);
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    color: var(--color-text-muted);
}

/* CARDS & ADDRESS */
.card {
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #374151;
    margin-bottom: 20px;
}

address {
    font-style: normal;
    font-family: var(--font-code); /* Code font for data/contact */
}

address p {
    margin-bottom: 5px;
    color: var(--color-text-main);
}

/* LISTS */
.data-list, .styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.data-list li, .styled-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.data-list li::before {
    content: "•";
    color: var(--color-action);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.styled-list li::before {
    content: "✓";
    color: var(--color-success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* GRID SYSTEM */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.small-card {
    margin-bottom: 0;
}

.small-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.small-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--color-surface);
    margin-top: 60px;
    padding: 40px 0;
    text-align: center;
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}