:root {
    --selector-background: #394049;
    --selector-accent: #ff4713;
    --selector-text: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background: var(--selector-background);
    color: var(--selector-text);
    font-family: 'Noto Sans Display', Arial, sans-serif;
}

.audience-selector {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--selector-background);
}

.audience-selector__accent {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: var(--selector-accent);
    clip-path: polygon(
        0 min(32.584vw, 58.166svh),
        100% min(53.130vw, 94.842svh),
        100% 100%,
        0 100%
    );
}

.audience-selector__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: min(3.531vw, 6.304svh);
}

.audience-selector__logo {
    display: block;
    width: min(28.892vw, 51.576svh);
    height: auto;
}

.audience-selector__choices {
    display: flex;
    align-items: center;
    gap: min(5.297vw, 9.456svh);
    margin-top: min(11.878vw, 21.203svh);
}

.audience-selector__choice {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(8.507vw, 15.186svh);
    color: var(--selector-text);
    font-size: min(2.087vw, 3.725svh);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - min(1.765vw, 3.151svh)),
        calc(100% - min(1.765vw, 3.151svh)) 100%,
        0 100%
    );
    transition: color 160ms ease, filter 160ms ease;
}

.audience-selector__choice span {
    position: relative;
    z-index: 1;
}

.audience-selector__choice--outlined {
    width: min(26.966vw, 48.138svh);
    background: var(--selector-accent);
}

.audience-selector__choice--outlined::before {
    position: absolute;
    inset: min(0.321vw, 0.573svh);
    content: '';
    background: var(--selector-background);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - min(1.605vw, 2.865svh)),
        calc(100% - min(1.605vw, 2.865svh)) 100%,
        0 100%
    );
}

.audience-selector__choice--filled {
    width: min(25.682vw, 45.845svh);
    background: var(--selector-accent);
}

.audience-selector__choice:hover,
.audience-selector__choice:focus-visible {
    color: var(--selector-text);
    filter: brightness(1.12);
}

.audience-selector__choice:focus-visible {
    outline: 3px solid var(--selector-text);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .audience-selector__choice {
        transition: none;
    }
}
