
:root {
    --ink: #11110f;
    --paper: #f3f1ea;
    --blue: #3159e9;
    --line: #c8c7be;
}
* {
    box-sizing: border-box;
}
html {
    background: var(--paper);
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}
.site-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.topbar,
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.topbar {
    height: 46px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.wordmark {
    color: inherit;
    text-decoration: none;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.12em;
}
.wordmark span {
    font-size: 7px;
    letter-spacing: 0;
    vertical-align: top;
    margin-left: 3px;
}
.topbar-meta {
    display: flex;
    align-items: center;
    gap: 34px;
}
.status {
    display: flex;
    align-items: center;
    gap: 7px;
}
.status i {
    width: 7px;
    height: 7px;
    display: block;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
}
.hero {
    min-height: calc(100vh - 46px - 39px - 16px - 16px);
    border-bottom: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 19px 0 20px;
}
.eyebrow,
.index,
label {
    font-family: var(--font-geist-mono), monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
h1 {
    margin: 35px 0 18px;
    font-size: clamp(59px, 10.5vw, 155px);
    line-height: 0.77;
    font-weight: 900;
    letter-spacing: -0.095em;
}
h1 em {
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.12em;
}
.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hero-footer p {
    margin: 0;
}
.coordinates {
    text-align: right;
    font-family: var(--font-geist-mono), monospace;
    font-size: 9px;
    letter-spacing: 0.03em;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-left: 1px solid var(--ink);
}
.grid-cell {
    min-height: 212px;
    padding: 14px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    position: relative;
}
.manifesto {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-image: radial-gradient(var(--line) 0.7px, transparent 0.7px);
    background-size: 5px 5px;
}
.manifesto p {
    margin: 0;
    font-size: 13px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.blue-cell {
    background: var(--blue);
    display: grid;
    place-items: center;
    color: var(--paper);
    overflow: hidden;
}
.blue-cell span {
    font-family: Georgia, serif;
    font-size: 170px;
    font-weight: 400;
    line-height: 1;
    animation: rotate 14s linear infinite;
}
.newsletter {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.newsletter h2 {
    margin: 0;
    font-size: clamp(33px, 4.8vw, 67px);
    line-height: 0.82;
    letter-spacing: -0.09em;
}
.newsletter form {
    max-width: 390px;
}
.newsletter label {
    display: block;
    margin-bottom: 8px;
}
.input-line {
    display: flex;
    border-bottom: 1px solid var(--ink);
}
.input-line input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 9px 0;
    font:
        700 11px var(--font-geist-mono),
        monospace;
}
.input-line input::placeholder {
    color: #77766f;
}
.input-line button {
    border: 0;
    background: transparent;
    font-size: 23px;
    cursor: pointer;
    padding: 0 0 0 15px;
    transition: transform 0.2s;
}
.input-line button:hover {
    transform: translate(3px, -3px);
}
.success {
    font:
        700 12px/1.15 var(--font-geist-mono),
        monospace;
    margin: 0;
}
.contact {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font:
        700 13px var(--font-geist-mono),
        monospace;
    transition:
        background 0.2s,
        color 0.2s;
}
.contact b {
    font:
        400 32px Arial,
        sans-serif;
    align-self: end;
}
.contact:hover {
    background: var(--ink);
    color: var(--paper);
}
footer {
    padding-top: 12px;
    margin-top: auto;
    height: 39px;
}
footer span:last-child {
    text-align: right;
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    50% {
        opacity: 0.2;
        transform: scale(0.65);
    }
}
