/*
 * startup-page.css
 * Combined styles for the SSR startup article page.
 * This is the SINGLE file to edit for all startup page design changes.
 * 
 * Sections:
 *   1. Font Faces (from fonts.css)
 *   2. Startup Page Layout (from startup.css)
 *   3. Card V2 Styles for Related Startups (from card-v2-styles.css)
 */

/* ============================================ */
/* 1. FONT FACES - GDPR Compliant (no CDN)     */
/* ============================================ */

/* Space Grotesk */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
}

/* Space Mono */
@font-face {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/SpaceMono-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Mono';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/SpaceMono-Italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/SpaceMono-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Mono';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/SpaceMono-BoldItalic.woff2') format('woff2');
}

/* Inter */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fonts/Inter-Black.woff2') format('woff2');
}

/* JetBrains Mono */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/JetBrainsMono-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/JetBrainsMono-Bold.woff2') format('woff2');
}

/* ============================================ */
/* 2. STARTUP PAGE LAYOUT (Neo-Brutalist)       */
/* ============================================ */

:root {
    --color-yellow: #F4C430;
    --color-bg: #F9F9F9;
    --color-card-bg: #EAE8DC;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue-visual: #2979FF;

    --border-thick: 3px solid var(--color-black);
    --border-thin: 2px solid var(--color-black);

    --shadow-hard: 4px 4px 0px 0px var(--color-black);

    --font-heading: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body.neo-brutalist {
    background-color: var(--color-bg);
    color: var(--color-black);
    font-family: var(--font-heading);
    line-height: 1.5;
}

/* A. Navbar (Two-Row) */
.navbar {
    background-color: var(--color-yellow);
    border-bottom: var(--border-thick);
    width: 100%;
}

.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: var(--border-thick);
}

.back-btn {
    background-color: var(--color-yellow);
    border: var(--border-thick);
    color: var(--color-black);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.1s ease;
}

.back-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px 0px var(--color-black);
}

.arrow-back {
    font-size: 18px;
}

.nav-logo {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-spacer {
    width: 180px;
}

.nav-bottom-row {
    padding: 12px 40px;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.nav-links a:hover {
    text-decoration: underline;
}

/* B. Hero Section */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero-header {
    margin-bottom: 30px;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(36px, 10vw, 120px);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -4px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.country-tag {
    display: inline-block;
    vertical-align: top;
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 400;
    color: #666;
    margin-left: 15px;
    margin-top: 22px;
    text-transform: none;
}

.hero-story {
    max-width: 1000px;
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.6;
    color: #111;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 20px;
    }

    .hero-title {
        letter-spacing: -2px;
        line-height: 1;
    }

    .country-tag {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 18px;
    }

    .hero-story {
        font-size: 16px;
    }
}

.stats-bar {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.stat-box {
    background-color: var(--color-yellow);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.1s ease;
}

.stat-box:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px 0px var(--color-black);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

/* C. Shutdown Grid Section */
.section-divider {
    border: none;
    border-top: 3px dashed var(--color-black);
    margin: 40px 0;
}

.section-heading {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
    max-width: 1000px;
}

.shutdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.grid-card {
    background-color: var(--color-yellow);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.1s ease;
    cursor: pointer;
    height: 100%;
    min-height: 280px;
    position: relative;
}

.expand-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    object-fit: contain;
    pointer-events: none;
}

.grid-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px 0px var(--color-black);
}

.card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 60px;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
}

/* D. Rebuild Section (Master Timeline Structure) */
.master-timeline-section {
    margin-bottom: 40px;
}

.master-timeline-container {
    margin-top: 40px;
    padding-left: 10px;
}

.master-timeline-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.master-timeline-marker-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
}

.master-timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--color-yellow);
    border: var(--border-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 4px 4px 0px 0px var(--color-black);
    z-index: 2;
    transition: all 0.3s ease;
}

.master-timeline-marker.active {
    background-color: var(--color-yellow);
}

.master-timeline-row.expanded .master-timeline-marker {
    transform: scale(1.1);
    box-shadow: 6px 6px 0px 0px var(--color-black);
}

.master-timeline-line {
    width: 6px;
    background-color: var(--color-black);
    flex-grow: 1;
    margin-top: -2px;
    margin-bottom: -2px;
}

.master-timeline-content {
    flex-grow: 1;
    padding-top: 5px;
}

.master-stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: var(--border-thick);
    padding-bottom: 15px;
    transition: all 0.2s ease;
}

.master-stage-header:hover {
    padding-left: 5px;
}

.master-stage-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.master-stage-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.master-timeline-row.expanded .master-stage-body {
    max-height: 5000px;
    opacity: 1;
    padding: 30px 0;
    padding-bottom: 50px;
}

.master-timeline-row.expanded .expand-toggle {
    transform: rotate(45deg);
}

.pivot-icon-wrapper {
    background-color: var(--color-yellow);
    width: 60px;
    height: 60px;
    border: var(--border-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standard Section Headers */
.section-title-clean {
    border-bottom: var(--border-thick);
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title-clean .card-title {
    margin: 0;
    font-size: 32px;
}

.pivot-tech-container {
    padding-top: 20px;
    border-top: 3px dashed var(--color-black);
}

.collapsible-section .tech-toggle-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.collapsible-section .expand-toggle {
    font-size: 20px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.collapsible-section.expanded .expand-toggle {
    transform: rotate(45deg);
}

.collapsible-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible-section.expanded .collapsible-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

/* Detail Labels & Tags */
.detail-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-black);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background-color: var(--color-white);
    border: var(--border-thin);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 3px 3px 0px 0px var(--color-black);
    text-transform: uppercase;
}

/* Timeline Execution Plan */
.timeline-container {
    padding-top: 20px;
}

.timeline-row {
    display: flex;
    gap: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 10px;
    margin: -10px;
    border-radius: 8px;
}

.timeline-row:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.timeline-marker-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    border: var(--border-thick);
    border-radius: 50%;
    background-color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-marker::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--color-black);
    border-radius: 50%;
    display: block;
}

.timeline-row.expanded .timeline-marker::after {
    content: '\2713';
    background-color: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-black);
}

.timeline-line {
    flex-grow: 1;
    width: 6px;
    background-color: var(--color-black);
    margin: -1px 0;
}

.timeline-content {
    padding-bottom: 20px;
    flex-grow: 1;
    overflow: hidden;
}

.timeline-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 2px;
}

.expand-toggle {
    font-size: 24px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.timeline-row.expanded .expand-toggle {
    transform: rotate(45deg);
}

.timeline-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    font-weight: 500;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.timeline-row.expanded .timeline-desc {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 15px;
    pointer-events: auto;
}

.monetization-clean-content {
    background-color: var(--color-yellow);
    border: var(--border-thick);
    padding: 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 6px 6px 0px 0px var(--color-black);
    margin-top: 10px;
}

.pivot-section-clean,
.execution-section-clean,
.monetization-section-clean {
    padding: 40px 0;
}

.execution-section-clean,
.monetization-section-clean {
    border-top: var(--border-thick);
}

.section-text-large {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.execution-section-clean {
    padding: 20px 0;
}

@media (max-width: 768px) {
    .master-timeline-container {
        padding-left: 0;
    }

    .master-timeline-row {
        gap: 20px;
    }

    .master-timeline-marker-col {
        width: 45px;
    }

    .master-timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .master-timeline-line {
        width: 4px;
    }

    .master-stage-title {
        font-size: 24px;
    }

    .master-timeline-row.expanded .master-stage-body {
        padding: 20px 0;
    }

    .pivot-section-clean,
    .execution-section-clean,
    .monetization-section-clean {
        padding: 30px 0;
    }

    .section-text-large {
        font-size: 18px;
    }

    .monetization-clean-content {
        padding: 20px;
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .section-title-clean .card-title {
        font-size: 24px;
    }
}

/* Modal Overlay / Pop-out */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-card-bg);
    border: var(--border-thick);
    box-shadow: 12px 12px 0px 0px var(--color-black);
    width: 100%;
    max-width: 700px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-yellow);
    border: var(--border-thick);
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.modal-close-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px 0px var(--color-black);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-header .card-title {
    font-size: 28px;
    margin: 0;
}

.modal-header .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 50px;
}

.modal-body .card-text {
    font-size: 18px;
    line-height: 1.6;
}

/* Reusable Bullet Styling */
.modal-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.modal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
}

.modal-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 900;
    font-size: 20px;
}

/* Responsive Scaling */
@media (max-width: 1000px) {
    .shutdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        letter-spacing: -3px;
    }
}

@media (max-width: 768px) {
    .shutdown-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
    }

    .nav-top-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 20px 20px;
    }

    .nav-logo {
        font-size: 20px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .nav-spacer {
        display: none;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero-header {
        text-align: center;
    }

    .timeline-row {
        gap: 15px;
        padding: 5px 0;
        margin: 0;
    }

    .timeline-content {
        padding-bottom: 10px;
    }

    .timeline-marker-col {
        width: 35px;
    }
}

/* Related Section */
.related-section {
    padding: 0;
    margin-top: -20px;
}

.related-section .content-wrapper {
    padding-top: 0;
    padding-bottom: 80px;
}

.related-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .related-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-section {
        padding: 0;
    }

    .related-section .content-wrapper {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .related-section .cards-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 16px;
        margin-top: 15px;
    }
}

/* ============================================ */
/* 3. CARD V2 STYLES (Related Startups Grid)    */
/* ============================================ */

.startup-card-v2 {
    background: #fff;
    border: 4px solid #000;
    box-shadow: 8px 8px 0 #000;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.startup-card-v2:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 #000;
}

.card-v2-header {
    background: #F59E0B;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #000;
}

.card-v2-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-v2-product-type {
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

.card-v2-views {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border: 2px solid #000;
    border-radius: 4px;
}

.card-v2-views-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.card-v2-views-count {
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.card-v2-title-section {
    background: #F5F5F0;
    padding: 16px 20px 12px 20px;
    border-bottom: 3px solid #000;
    position: relative;
}

.card-v2-name {
    font-family: 'Space Grotesk', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 0 0 6px 0;
    line-height: 1.1;
    max-width: calc(100% - 120px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-v2-country {
    font-family: 'Space Grotesk', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 0;
}

.card-v2-funding-badge {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #B91C1C;
    color: #fff;
    font-family: 'Space Grotesk', monospace;
    font-size: 18px;
    font-weight: 900;
    padding: 8px 16px;
    border: 3px solid #000;
    transform: rotate(3deg);
    box-shadow: 4px 4px 0 #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-v2-fire-icon {
    font-size: 18px;
    line-height: 1;
}

.card-v2-content-section {
    background: #fff;
    padding: 16px 20px;
    border-bottom: 3px solid #000;
    flex-shrink: 0;
    flex-grow: 1;
}

.card-v2-section-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #B91C1C;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.card-v2-section-title:not(:first-child) {
    margin-top: 16px;
}

.card-v2-section-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.card-v2-dotted-divider {
    border-top: 2px dashed #D1D5DB;
    margin: 12px 0;
}

.card-v2-metrics-section {
    background: #F5F5F0;
    padding: 16px 20px;
    border-bottom: 3px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.card-v2-year-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.card-v2-year-badge {
    background: #F59E0B;
    border: 2px solid #000;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}

.card-v2-year-icon {
    width: 18px;
    height: 18px;
    color: #000;
}

.card-v2-year-label {
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.card-v2-year-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-left: auto;
}

.card-v2-bars-section {
    background: #fff;
    padding: 12px 20px;
    border-bottom: 3px solid #000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-v2-bar-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card-v2-bar-label {
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    min-width: 100px;
}

.card-v2-bar-blocks {
    display: flex;
    gap: 4px;
    flex: 1;
    max-width: 200px;
}

.card-v2-bar-block {
    flex: 1;
    height: 20px;
    border: 2px solid #000;
    transition: background-color 0.2s;
}

.card-v2-bar-block.empty {
    background: #F3F4F6;
}

.card-v2-bar-block.filled.high {
    background: #065F46;
}

.card-v2-bar-block.filled.medium {
    background: #F59E0B;
}

.card-v2-bar-block.filled.low {
    background: #B91C1C;
}

.card-v2-footer {
    background: #7F1D1D;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-v2-footer-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.card-v2-footer-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .card-v2-name {
        font-size: 22px;
    }

    .card-v2-funding-badge {
        font-size: 14px;
        padding: 6px 12px;
        top: 16px;
        right: 16px;
    }

    .card-v2-fire-icon {
        font-size: 14px;
    }

    .card-v2-section-text {
        font-size: 13px;
    }

    .card-v2-metrics-section {
        flex-direction: column;
        align-items: stretch;
    }

    .card-v2-bar-label {
        min-width: 100px;
        font-size: 11px;
    }

    .card-v2-bar-blocks {
        max-width: 150px;
    }

    .card-v2-bar-block {
        height: 20px;
    }
}

/* ============================================
   F. Back to Graveyard CTA
   ============================================ */
.graveyard-cta-wrapper {
    padding-top: 0;
    padding-bottom: 80px;
}

.graveyard-cta-link {
    display: block;
    background: #FFD700;
    border: 3px solid #111;
    padding: 48px 40px;
    text-align: center;
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #111;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 6px 6px 0 #111;
}

.graveyard-cta-link:hover {
    background: #FFEA00;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #111;
}

.graveyard-cta-link:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #111;
}

@media (max-width: 1000px) {
    .graveyard-cta-link {
        font-size: 40px;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .graveyard-cta-wrapper {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 60px;
    }

    .graveyard-cta-link {
        font-size: 28px;
        letter-spacing: -1px;
        padding: 36px 24px;
        margin: 0 24px;
    }
}
