:root {
    --navy: #1A1A2E;
    --navy-mid: #16213E;
    --navy-light: #0F3460;
    --teal: #00BFA5;
    --teal-dark: #00897B;
    --mint: #69FFDA;

    --mono: 'Space Mono', monospace;
    --sans: 'DM Sans', sans-serif;
}

body {
    margin: 0;
    background: var(--navy);
    color: #ffffff;
    font-family: var(--sans);
}

/* Layout */

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* Hero */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.hero-text h1 {
    font-family: var(--mono);
    font-size: 56px;
    margin: 0 0 16px 0;
    color: var(--mint);
}

.hero-text .subheadline {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    gap: 16px;
}

.cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.cta {
    background: var(--teal);
    color: #000000;
}

.cta.secondary {
    background: var(--teal-dark);
    color: #ffffff;
}

.hero-image img {
    max-width: 420px;
    height: auto;
    border-radius: 12px;
}

/* Sections */

h2 {
    font-family: var(--mono);
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--mint);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.why,
.supported,
.how,
.benchmarks {
    background: var(--navy-mid);
    border-radius: 12px;
    margin-bottom: 32px;
}

/* Table */

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--mono);
    font-size: 14px;
}

thead th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 700;
}

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--navy-light);
}

tr.highlight {
    background: rgba(0, 191, 165, 0.08);
}

tr.highlight td:first-child {
    color: var(--mint);
    font-weight: 700;
}

td.neutral {
    color: #e0e0e0;
}

td.loss {
    color: #ff6b6b;
}

p.note {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
