:root {
    color-scheme: light;
    --bg: #0f172a;
    --accent: #f28c00;
    --text: #111827;
    --muted: #6b7280;
    --panel: #ffffff;
    --panel-alt: #f8fafc;
    --border: #e5e7eb;
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #f3f4f6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #0b1120;
    color: #fff;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nav a {
    color: #fff;
    opacity: 0.85;
}

.nav a:hover {
    opacity: 1;
}

.brand {
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.brand-sub {
    margin: 4px 0 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.hero {
    background: linear-gradient(120deg, #0b1120, #111827);
    color: #fff;
    padding: 72px 0;
}

.hero-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-size: clamp(32px, 4vw, 54px);
    margin: 12px 0 16px;
}

.lead {
    font-size: 18px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-weight: 600;
    font-size: 18px;
}

.section {
    padding: 56px 0;
}

.section.alt {
    background: var(--panel-alt);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.section-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.section-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #fff;
}

.section-body {
    max-width: 760px;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.stat-card,
.price-card,
.reaction {
    background: var(--panel);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 6px;
}

.tag {
    display: inline-block;
    margin-top: 12px;
    background: #f28c00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
}

.btn.small {
    padding: 6px 12px;
    font-size: 13px;
}

.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
}

.btn:visited,
.btn:active,
.btn:hover,
.btn:focus {
    color: #fff;
}

.site-footer {
    padding: 40px 0;
    background: #0b1120;
    color: #fff;
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-title {
    font-weight: 600;
}

.muted {
    color: var(--muted);
}

.alert {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 20px;
}

.form {
    display: grid;
    gap: 16px;
}

.form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.form input,
.form textarea,
.form select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table {
    display: grid;
    gap: 12px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    align-items: center;
}

.table-row.header {
    font-weight: 700;
    background: #f1f5f9;
}

.inline {
    display: inline;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--muted);
}

.investment-header {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
    margin-bottom: 24px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.image-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}

.stack {
    display: grid;
    gap: 12px;
}

.reaction-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cta {
    background: #111827;
    color: #fff;
    padding: 56px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pagination {
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #0b1120;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.cookie-banner__content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner--hidden {
    display: none;
}

@media (max-width: 720px) {
    .table-row {
        grid-template-columns: 1fr;
    }
}
