:root {
    color-scheme: dark;
    --bg: #030303;
    --panel: #0b0b0b;
    --line: #232323;
    --text: #e6e6e6;
    --soft: #a8a8a8;
    --muted: #6f6f6f;
    --field: #101010;
    --accent: #d8d8d8;
    --danger: #e3a8a8;
    --success: #b6d5c2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08), transparent 32rem),
        linear-gradient(180deg, #050505 0%, var(--bg) 34rem);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 3, 3, 0.82);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand img {
    width: clamp(7.6rem, 16vw, 9.25rem);
    height: auto;
}

.brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2.5vw, 2rem);
    color: var(--soft);
    font-size: 0.82rem;
}

nav a {
    transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
    color: var(--text);
}

.section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 8rem) 0;
}

.hero {
    min-height: min(52rem, calc(100svh - 5rem));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.72fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 6rem);
    padding-top: clamp(3rem, 7vw, 6rem);
}

.hero-copy {
    max-width: 48rem;
}

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1.35rem;
    max-width: 12ch;
    font-size: clamp(3rem, 5.4vw, 5.6rem);
    line-height: 0.98;
    font-weight: 650;
}

h2 {
    margin-bottom: 0;
    color: var(--accent);
    font-size: clamp(1.9rem, 3.8vw, 4rem);
    line-height: 1.02;
    font-weight: 610;
}

h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 560;
}

.lead {
    max-width: 42rem;
    color: var(--soft);
    font-size: clamp(1.05rem, 1.75vw, 1.28rem);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    padding: 0.86rem 1.1rem;
    background: #e2e2e2;
    color: #050505;
    font: inherit;
    font-weight: 620;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.secondary {
    background: transparent;
    color: var(--accent);
    border-color: #4a4a4a;
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible {
    background: #ffffff;
    border-color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
    background: #151515;
    border-color: #8c8c8c;
}

.hero-map {
    align-self: stretch;
    min-height: 24rem;
    border-left: 1px solid var(--line);
    display: flex;
    align-items: center;
    opacity: 0.82;
}

.hero-map img {
    width: 100%;
    max-height: min(42rem, 72vh);
    object-fit: contain;
    filter: saturate(0);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 7vw, 5rem);
    border-top: 1px solid var(--line);
}

.copy-stack {
    color: var(--soft);
    font-size: clamp(1.03rem, 1.7vw, 1.28rem);
    line-height: 1.55;
}

.copy-stack p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.bands {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--line);
    border: 1px solid var(--line);
}

.bands article {
    min-height: 23rem;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    background: #070707;
}

.section-label {
    grid-column: 1 / -1;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    padding: 0.95rem clamp(1.25rem, 3vw, 2.25rem);
    background: #070707;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.bands span {
    display: block;
    margin-bottom: 4rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.bands p {
    color: var(--soft);
    line-height: 1.55;
}

.offers article {
    min-height: 25rem;
}

.manifesto {
    min-height: 78svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto h2 {
    max-width: 16ch;
}

.principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(2rem, 5vw, 4rem);
    background: var(--line);
    border: 1px solid var(--line);
}

.principles p {
    min-height: 9rem;
    margin: 0;
    padding: 1.25rem;
    background: #080808;
    color: var(--soft);
    line-height: 1.45;
}

.principles .section-label {
    background: #080808;
}

.pain-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0;
    padding-bottom: 0;
}

.pain-list p {
    min-height: 8rem;
    color: var(--text);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.proof {
    padding-top: 0;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 7vw, 5rem);
    border-top: 1px solid var(--line);
}

.contact-copy p:last-child {
    max-width: 25rem;
    color: var(--soft);
    line-height: 1.55;
}

form {
    display: grid;
    gap: 0.85rem;
}

label {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

input,
textarea {
    width: 100%;
    border: 1px solid #2b2b2b;
    border-radius: 0;
    padding: 0.98rem 1rem;
    background: var(--field);
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 11rem;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid #bdbdbd;
    outline-offset: 2px;
}

button {
    width: fit-content;
    margin-top: 0.65rem;
}

.form-message {
    margin: 0 0 0.75rem;
    border: 1px solid var(--line);
    padding: 0.95rem 1rem;
    line-height: 1.45;
}

.form-message.success {
    color: var(--success);
}

.form-message.error {
    color: var(--danger);
}

.trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}

footer p {
    margin: 0;
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        padding: 0.9rem 1rem;
    }

    nav {
        gap: 0.85rem;
        padding-top: 0.25rem;
    }

    .brand img {
        width: 7rem;
    }

    .section {
        width: min(100% - 1.25rem, 42rem);
        padding: 4.5rem 0;
    }

    .hero,
    .split,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(2.65rem, 11vw, 4.35rem);
        line-height: 1;
    }

    .hero-map {
        min-height: 17rem;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 1.5rem;
    }

    .bands,
    .principles {
        grid-template-columns: 1fr;
    }

    .section.bands,
    .section.principles {
        padding-top: 0;
        padding-bottom: 0;
    }

    .bands article {
        min-height: 15rem;
    }

    .offers article,
    .pain-list p {
        min-height: auto;
    }

    .bands span {
        margin-bottom: 2rem;
    }

    .manifesto {
        min-height: auto;
    }

    footer {
        width: min(100% - 1.25rem, 42rem);
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .site-header {
        position: static;
    }

    nav {
        font-size: 0.76rem;
    }

    .hero-actions,
    .button,
    button {
        width: 100%;
    }
}
