body {
    margin: 0;
    background: #05070b;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* HEADER */

.header {
    height: 64px;
    background: #05070b;
    border-bottom: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.brand {
    font-size: 20px;
    font-weight: 600;
}

.brand span {
    font-size: 11px;
    opacity: 0.5;
    display: block;
    letter-spacing: 0.15em;
}

/* NAV */

.menu {
    display: flex;
    gap: 10px;
}

.menu a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.menu a:hover {
    background: #111827;
}

.menu a.active {
    color: #ffffff;
    background: #111827;
}

.menu a.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* LAYOUT */

.container {
    padding: 48px 32px;
    max-width: 1200px;
    margin: auto;
}

/* HERO */

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.hero .sub {
    display: block;
    font-size: 16px;
    opacity: 0.5;
}

.lead {
    max-width: 720px;
    opacity: 0.75;
    line-height: 1.6;
}

/* BUTTONS */

.cta-row {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.button {
    background: #2563eb;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    transition: background 0.15s ease;
}

.button:hover {
    background: #1d4ed8;
}

.button.ghost {
    background: transparent;
    border: 1px solid #334155;
}

.button.ghost:hover {
    background: #111827;
}

/* STRIP */

.strip {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.strip-item {
    flex: 1;
}

.strip-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.strip-text {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
}

/* SECTIONS */

.section {
    margin-top: 60px;
}

h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* CARDS */

.card {
    background: #0b111c;
    border: 1px solid #1f2937;
    padding: 18px;
    border-radius: 10px;
    transition: border 0.15s ease, transform 0.1s ease;
}

.card:hover {
    border-color: #2f3b52;
    transform: translateY(-2px);
}

.card.small {
    font-size: 13px;
}

/* FOOTER DISCLOSURE */

.footer-disclosure {
    margin-top: 80px;
    padding: 40px 30px;
    border-top: 1px solid #1f2937;
    background: #05070b;
}

.disclosure-container {
    max-width: 1000px;
    margin: auto;
}

.disclosure-title {
    font-size: 13px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    color: #9ca3af;
}

.disclosure-text {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.6;
    margin-bottom: 10px;
}
.disclosure-card {
    margin-top: 70px;
}

.disclosure-card h2 {
    color: #9ca3af;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.disclosure-grid {
    grid-template-columns: repeat(3, 1fr);
}

.disclosure-note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    color: #8b98aa;
    max-width: 980px;
}