:root {
    --ink: #11110f;
    --cream: #f4eedf;
    --paper: #fbf7ed;
    --emerald: #18c76f;
    --muted: #68665f;
    --line: rgba(17, 17, 15, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--cream);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(rgba(17, 17, 15, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
        var(--cream);
    background-size: 40px 40px;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.site-shell {
    width: min(1440px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 48px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: clamp(48px, 8vw, 108px);
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.7rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 0.9;
    text-decoration: none;
}

.wordmark-i {
    position: relative;
    display: inline-block;
    width: 0.21em;
    margin-left: 0.01em;
    color: var(--ink);
    font-style: normal;
}

.wordmark-dot {
    position: absolute;
    top: -0.04em;
    left: 50%;
    width: 0.13em;
    height: 0.13em;
    border-radius: 50%;
    background: var(--emerald);
    transform: translateX(-48%);
}

.phase-label,
.eyebrow,
.stat-label,
.footer-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.phase-label {
    padding: 9px 12px;
    border: 1px solid var(--ink);
    background: var(--paper);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--muted);
}

h1 {
    max-width: 790px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.6rem, 9vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.78;
}

.tagline {
    max-width: 610px;
    margin: 34px 0 0;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.world-description {
    max-width: 570px;
    margin: 14px 0 0;
    color: var(--muted);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    line-height: 1.5;
}

.canvas-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    padding: clamp(14px, 2vw, 28px);
    border: 2px solid var(--ink);
    background: var(--ink);
    box-shadow: 18px 18px 0 rgba(17, 17, 15, 0.12);
}

.canvas-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 15, 0.16);
    background: var(--paper);
}

.canvas-placeholder::before,
.canvas-placeholder::after {
    position: absolute;
    content: '';
    background: var(--line);
}

.canvas-placeholder::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.canvas-placeholder::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.canvas-zero-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(5rem, 14vw, 12rem);
    line-height: 1;
}

.canvas-meta {
    position: absolute;
    right: clamp(18px, 3vw, 36px);
    bottom: clamp(18px, 3vw, 36px);
    left: clamp(18px, 3vw, 36px);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.stat {
    min-height: 110px;
    padding: 22px 0;
}

.stat + .stat {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.stat-value {
    display: block;
    margin-top: 13px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    line-height: 1;
}

.site-footer {
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.82rem;
}

.site-footer p {
    margin: 0;
}

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

    .hero-copy {
        padding-top: 20px;
    }

    .canvas-frame {
        max-width: 660px;
    }
}

@media (max-width: 560px) {
    .site-shell {
        gap: 54px;
    }

    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-panel {
        grid-template-columns: 1fr;
    }

    .stat {
        min-height: auto;
    }

    .stat + .stat {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

