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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Gradient blobs decoration */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: 10%;
    width: 400px;
    height: 600px;
    background: radial-gradient(circle at 30% 50%, rgba(138, 92, 246, 0.4), rgba(59, 130, 246, 0.3));
    filter: blur(80px);
    border-radius: 50% 50% 60% 40%;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -5%;
    left: 5%;
    width: 350px;
    height: 500px;
    background: radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.3), rgba(251, 191, 36, 0.2));
    filter: blur(80px);
    border-radius: 40% 60% 50% 50%;
    z-index: 0;
    pointer-events: none;
}

.blob-accent {
    position: fixed;
    top: 30%;
    left: -5%;
    width: 300px;
    height: 450px;
    background: radial-gradient(circle at 60% 40%, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.2));
    filter: blur(70px);
    border-radius: 60% 40% 50% 50%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

header {
    margin-bottom: 5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.badge {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.meta {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.meta strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

section {
    margin-bottom: 6rem;
}

h2 {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: -0.5px;
}

h2::after {
    display: none;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 400;
    transition: all 0.2s ease;
}

a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

strong {
    font-weight: 500;
    color: #ffffff;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

li strong {
    color: #ffffff;
}

.summary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(251, 191, 36, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-weight: 300;
    margin-top: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.feature-check {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-check:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-check.warning {
    border-color: rgba(251, 191, 36, 0.2);
    background: rgba(251, 191, 36, 0.03);
}

.feature-check h3 {
    margin-top: 0;
    font-size: 20px;
}

.feature-check ul {
    margin-bottom: 0;
}

.question {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.question:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.q-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
}

.q-content {
    flex: 1;
}

.q-content h4 {
    margin-top: 0;
    color: #ffffff;
}

.q-content p {
    margin-bottom: 0.75rem;
}

.note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.decision-box {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.decision-box h3 {
    margin-top: 0;
    color: #ffffff;
}

.economics {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.economics h3 {
    margin-top: 0;
    color: #ffffff;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

thead {
    background: rgba(255, 255, 255, 0.05);
}

th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
}

td:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

td:last-child {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

tbody tr {
    background: transparent;
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

tr:last-child td {
    border-bottom: none;
}

.gate {
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid rgba(16, 185, 129, 0.5);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
}

.gate h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 22px;
}

.gate p {
    margin-bottom: 0.75rem;
}

.gate p:last-child {
    margin-bottom: 0;
}

.next-steps {
    display: grid;
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.step h4 {
    margin-top: 0;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 1.5rem;
}

.step ul {
    margin-bottom: 1rem;
}

.timeline {
    font-weight: 400;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

footer {
    margin-top: 6rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 3rem;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.verdict {
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid rgba(16, 185, 129, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.verdict h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25em 0.5em;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 17px;
    }

    .meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .question {
        flex-direction: column;
        gap: 1rem;
    }

    .q-number {
        align-self: flex-start;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 1rem;
    }

    body::before,
    body::after,
    .blob-accent {
        width: 250px;
        height: 350px;
    }
}

@media print {
    body {
        background: #fff;
        color: #000;
    }

    body::before,
    body::after,
    .blob-accent {
        display: none;
    }

    .container {
        max-width: 100%;
    }

    * {
        color: #000 !important;
    }
}
