* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #f7f3ec;
    background: #111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 12% 12%, rgba(113, 83, 255, .28), transparent 28%), radial-gradient(circle at 88% 40%, rgba(255, 93, 137, .18), transparent 30%), #111;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .08;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-nav {
    height: 80px;
    padding: 0 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.8px;
}

.logo span {
    font-weight: 400;
    opacity: .62;
}

main {
    width: min(1120px, 88vw);
    margin: auto;
}

.about-hero {
    padding: 12vh 0 10vh;
    max-width: 840px;
}

[data-i18n] {
    white-space: pre-line;
}

.eyebrow, .card-kicker {
    margin: 0 0 24px;
    color: #a9ff66;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(72px, 13vw, 180px);
    line-height: .82;
    letter-spacing: -.09em;
}

.about-hero h1 span {
    color: #ffcf3f;
}

.about-hero h1 em {
    color: #ff668f;
    font-style: normal;
}

.hero-subtitle {
    margin: 34px 0 12px;
    color: #fff;
    font-size: clamp(24px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -.05em;
}

.hero-description {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.55;
}

.manifesto {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.story-card {
    min-height: 320px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .055);
}

.story-card-wide {
    grid-column: 1 / -1;
    min-height: 240px;
}

.story-card h2 {
    max-width: 720px;
    margin: 0 0 22px;
    font-size: clamp(26px, 3.6vw, 50px);
    line-height: .98;
    letter-spacing: -.06em;
}

.story-card p:not(.card-kicker) {
    max-width: 560px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.65;
}

.accent-card {
    background: #ff668f;
    color: #171117;
    border-color: #ff668f;
}

.accent-card .card-kicker, .accent-card p:not(.card-kicker) {
    color: rgba(23, 17, 23, .72);
}

.accent-card h2 {
    font-size: clamp(28px, 3.6vw, 44px);
}

.belief-card {
    background: #a9ff66;
    color: #171117;
    border-color: #a9ff66;
}

.belief-card .card-kicker {
    color: rgba(23, 17, 23, .72);
}

.for-card {
    background: #ffcf3f;
    color: #171117;
    border-color: #ffcf3f;
}

.for-card .card-kicker {
    color: rgba(23, 17, 23, .72);
}

.build-cta {
    padding: 15vh 0 16vh;
    text-align: center;
}

.build-cta .eyebrow {
    color: #ff668f;
    font-size: 60px;
}

.build-cta a {
    color: #fff;
    font-size: clamp(44px, 8vw, 110px);
    font-weight: 800;
    letter-spacing: -.08em;
    text-decoration: none;
}

.build-cta a:hover {
    color: #a9ff66;
}

.footer {
    padding: 28px 6vw;
    color: rgba(255, 255, 255, .45);
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 12px;
}

@media (max-width: 700px) {
    .about-nav {
        height: 68px;
        padding: 0 6vw;
    }

    .manifesto {
        grid-template-columns: 1fr;
    }

    .story-card-wide {
        grid-column: auto;
    }

    .story-card {
        min-height: auto;
        padding: 24px;
    }

    .about-hero {
        padding-top: 15vh;
    }

    .hero-description {
        font-size: 15px;
    }

    .build-cta {
        padding: 12vh 0;
    }
}

.nav-right {
    position: relative;
}

.language-button {
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(0, 0, 0, 0.25);

    color: white;

    padding: 10px 15px;

    min-width: 115px;

    font-size: 14px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    transition:
            background 0.2s ease,
            border-color 0.2s ease;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.65);
}

.arrow {
    width: 6px;
    height: 6px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.language-button.open .arrow {
    transform: rotate(225deg);
}


/* Dropdown */

.language-menu {
    position: absolute;

    top: calc(100% + 8px);
    right: 0;

    width: 115px;

    padding: 5px;

    background: rgba(25, 25, 25, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
}

.language-menu.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.language-menu button {
    width: 100%;

    border: 0;

    background: transparent;

    color: white;

    padding: 10px;

    text-align: left;

    font-size: 14px;

    cursor: pointer;
}

.language-menu button:hover {
    background: rgba(255, 255, 255, 0.12);
}