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

/* ===== BODY ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(225,6,0,0.18), transparent 60%),
        radial-gradient(1000px 500px at 90% 10%, rgba(0,0,0,0.8), transparent 60%),
        linear-gradient(180deg, #050507 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
    color: #e6e6e6;
}

/* ===== CARD CONTAINER ===== */
.post-container {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(180deg, #0b0b0f 0%, #070709 100%);
    border-radius: 28px;
    padding: 72px;
    position: relative;
    border: 1.5px solid #e10600;
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

/* top glow border */
.post-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #e10600, #ff3b3b);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ===== ACCENT ===== */
.accent-line {
    width: 72px;
    height: 6px;
    border-radius: 6px;
    background: #e10600;
    margin-bottom: 36px;
}

/* ===== HERO ===== */
h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin-bottom: 28px;
    color: #ffffff;
}

h1 .highlight {
    color: #e10600;
}

.intro {
    font-size: 20px;
    line-height: 1.7;
    color: #b5b5b5;
    max-width: 900px;
    margin-bottom: 64px;
}

/* ===== SECTION TITLE ===== */
.methodology-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 48px;
}

/* ===== PHASES ===== */
.phase {
    position: relative;
    padding: 28px 28px 28px 36px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: #0f0f14;
    border: 1px solid rgba(225,6,0,0.35);
    transition: all 0.3s ease;
}

.phase:hover {
    transform: translateY(-4px);
    border-color: #e10600;
    box-shadow: 0 20px 40px rgba(225,6,0,0.25);
}

.phase-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 700;
    color: #e10600;
    margin-bottom: 14px;
}

.phase-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: #e10600;
}

.phase-description {
    font-size: 17px;
    line-height: 1.75;
    color: #d0d0d0;
}

/* ===== RESULT ===== */
.result-box {
    margin: 72px 0;
    padding: 48px;
    border-radius: 24px;
    background: #0f0f14;
    border: 1.5px solid rgba(225,6,0,0.45);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.result-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #ffffff;
}

.stats {
    display: flex;
    gap: 64px;
    margin-bottom: 28px;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: #e10600;
}

.stat-label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9a9a9a;
}

.result-text {
    font-size: 18px;
    line-height: 1.7;
    color: #d5d5d5;
}

/* ===== CTA ===== */
.cta {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    margin-top: 24px;
    padding: 20px 52px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    background: #e10600;
    border: 2px solid #e10600;
    box-shadow: 0 20px 40px rgba(225,6,0,0.45);
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: transparent;
    color: #e10600;
    transform: translateY(-3px);
}

/* ===== HASHTAGS ===== */
.hashtags {
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid rgba(225,6,0,0.35);
    font-size: 14px;
    color: #8a8a8a;
    line-height: 1.9;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .post-container {
        padding: 48px 32px;
    }

    h1 {
        font-size: 34px;
    }

    .stats {
        flex-direction: column;
        gap: 28px;
    }
}
