*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
    color: var(--ink);
    background: var(--bgsolid);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

input,
button,
select,
textarea {
    font-family: inherit;
    color: inherit;
}

button {
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all .25s ease;
}

a:hover {
    color: var(--accent2);
}

::selection {
    background: var(--selectionbg);
    color: var(--selectionink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

img,
svg {
    max-inline-size: 100%;
    block-size: auto;
}

hr {
    border: none;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.aw-visually-hidden {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.aw-skip {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: -9999px;
    z-index: 100;
    padding: 14px 22px;
    background: var(--btnbg);
    color: var(--btnink);
    font-size: 11.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
}

.aw-skip:focus {
    inset-inline-start: 0;
    color: var(--btnink);
}

.aw-tap {
    position: relative;
}

.aw-tap::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-start: 50%;
    block-size: 44px;
    transform: translate(0, -50%);
}

.aw-card {
    background: var(--card);
    border: 1px solid var(--line);
}

@supports (backdrop-filter: blur(6px)) {
    .aw-card {
        backdrop-filter: blur(6px);
    }
}

.aw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 11.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
}

.aw-btn--solid {
    padding: 15px 32px;
    background: var(--btnbg);
    color: var(--btnink);
    box-shadow: var(--btnshadow);
}

.aw-btn--solid:hover {
    background: var(--btnbgH);
    color: var(--btnink);
}

.aw-btn--ghost {
    padding: 15px 32px;
    background: transparent;
    border: 1px solid var(--ghostline);
    color: var(--ghostink);
}

.aw-btn--ghost:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.aw-btn--wide {
    padding: 16px 36px;
}

.aw-btn[aria-busy="true"] {
    opacity: .62;
    cursor: progress;
}

.aw-pillgroup {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 3px;
    background: var(--card);
}

.aw-pillgroup__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 10.5px;
    letter-spacing: .14em;
    font-weight: 500;
    background: transparent;
    color: var(--muted);
}

.aw-pillgroup__item:hover {
    color: var(--ink);
}

.aw-pillgroup__item.active,
.aw-pillgroup__item.active:hover {
    background: var(--btnbg);
    color: var(--btnink);
}

.aw-input {
    box-sizing: content-box;
    inline-size: min(280px, 72vw);
    padding: 15px 20px;
    background: var(--inputbg);
    border: 1px solid var(--inputline);
    border-radius: var(--radius-pill);
    color: var(--ink);
    font-size: 14px;
    font-weight: 300;
}

.aw-input:focus {
    border-color: var(--accent);
}

.aw-input:user-invalid {
    border-color: var(--accent2);
}

.aw-diamond {
    box-sizing: content-box;
    position: absolute;
    border-style: solid;
    border-image: var(--diamond) 1;
    pointer-events: none;
}

.aw-diamond--thick {
    border-width: 1.5px;
}

.aw-diamond--thin {
    border-width: 1px;
}

.aw-diamond--masked {
    -webkit-mask-image: linear-gradient(135deg, #000 45%, transparent 80%);
    mask-image: linear-gradient(135deg, #000 45%, transparent 80%);
}

.aw-diamond--masked-alt {
    -webkit-mask-image: linear-gradient(128deg, #000 45%, transparent 80%);
    mask-image: linear-gradient(128deg, #000 45%, transparent 80%);
}

.aw-glow {
    position: absolute;
    pointer-events: none;
    animation: awGlow 9s ease-in-out infinite;
}

.aw-glow--slow {
    animation-duration: 12s;
}

.aw-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

@keyframes awGlow {
    0%,
    100% {
        opacity: .72;
    }

    50% {
        opacity: 1;
    }
}

@keyframes awLogoIn {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 -20% 0 0);
    }
}

@keyframes awFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes awReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes awRevealL {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes awRevealR {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.aw-logo-in {
    animation: awLogoIn 1.1s .1s cubic-bezier(.22, .61, .36, 1) both;
}

@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
        [data-reveal] {
            animation: awReveal linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 55%;
        }

        [data-reveal="left"] {
            animation-name: awRevealL;
        }

        [data-reveal="right"] {
            animation-name: awRevealR;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

.aw-lockup {
    font-family: var(--font-serif);
}

.aw-lockup__first {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: .32em;
}

.aw-lockup__second {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
    .aw-lockup__second {
        background: var(--gradtext);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.aw-lockup__sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--soft);
    margin-block-start: 12px;
}

.aw-lockup--stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aw-lockup--stacked .aw-lockup__first {
    font-size: 30px;
}

.aw-lockup--stacked .aw-lockup__second {
    font-size: 36px;
    margin-block-start: 2px;
}

.aw-lockup--inline {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--ink);
}

.aw-lockup--inline:hover {
    color: var(--ink);
}

.aw-lockup--inline .aw-lockup__first {
    font-size: 17px;
    letter-spacing: .3em;
}

.aw-lockup--inline .aw-lockup__second {
    font-size: 18px;
}

.aw-lockup--compact {
    gap: 9px;
}

.aw-lockup--compact .aw-lockup__first {
    font-size: 16px;
    letter-spacing: .28em;
}

.aw-lockup--compact .aw-lockup__second {
    font-size: 17px;
}

html:not(.js) aw-theme-toggle {
    display: none;
}

.aw-themetoggle {
    box-sizing: content-box;
    inline-size: 52px;
    block-size: 28px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--card);
    position: relative;
    cursor: pointer;
    padding: 0;
}

.aw-themetoggle__knob {
    position: absolute;
    inset-block-start: 3px;
    inset-inline-start: 3px;
    inline-size: 20px;
    block-size: 20px;
    border-radius: 50%;
    background: var(--btnbg);
    transition: transform .3s ease;
    transform: translateX(0);
}

html.dark .aw-themetoggle__knob {
    transform: translateX(23px);
}

.aw-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-block-size: 100vh;
    min-block-size: 100dvh;
    background: var(--bg);
    color: var(--ink);
}

.aw-topbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 34px;
}

.aw-topbar--end {
    justify-content: flex-end;
}

.aw-topbar--split {
    justify-content: space-between;
    gap: 14px;
}

.aw-topbar__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aw-main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    scroll-margin-block-start: 90px;
}

.aw-kicker {
    font-size: 11px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.aw-coming__main {
    padding: 20px 30px 60px;
}

.aw-coming__diamond-a {
    inset-inline-start: 50%;
    inset-block-start: 50%;
    inline-size: 640px;
    block-size: 640px;
    transform: translate(-52%, -50%) rotate(45deg);
    opacity: .5;
}

.aw-coming__diamond-b {
    inset-inline-start: 50%;
    inset-block-start: 50%;
    inline-size: 640px;
    block-size: 640px;
    transform: translate(-47%, -53%) rotate(52deg);
    opacity: .3;
}

.aw-coming__glow-a {
    inset-inline-end: -200px;
    inset-block-start: -180px;
    inline-size: 700px;
    block-size: 700px;
    background: var(--glowA);
}

.aw-coming__glow-b {
    inset-inline-start: -220px;
    inset-block-end: -160px;
    inline-size: 640px;
    block-size: 640px;
    background: var(--glowB);
}

.aw-coming__divider {
    inline-size: 56px;
    block-size: 2px;
    background: var(--btnbg);
    margin: 40px 0;
}

.aw-coming__h1 {
    font-size: clamp(36px, 7.5vw, 62px);
    line-height: 1.08;
    max-inline-size: 700px;
}

.aw-coming__h1 em {
    font-weight: 500;
    font-style: italic;
    color: var(--accent);
}

.aw-coming__sub {
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-inline-size: 480px;
    margin-block-start: 22px;
    text-wrap: pretty;
}

.aw-coming__kicker {
    margin-block-start: 26px;
}

.aw-coming__social {
    margin-block-start: 30px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
}

.aw-coming__social--text {
    color: var(--soft);
}

.aw-coming__footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 34px;
    border-block-start: 1px solid var(--line);
    font-size: 12px;
    font-weight: 300;
    color: var(--soft);
}

.aw-coming__footer a {
    color: var(--soft);
}

.aw-coming__footer a:hover {
    color: var(--accent);
}

aw-notify-form {
    display: block;
    margin-block-start: 38px;
    inline-size: 100%;
}

.aw-notify__form:not([hidden]) {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.aw-notify__hp {
    position: absolute;
    inset-inline-start: -9999px;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
}

.aw-notify__note,
.aw-notify__fallback {
    margin-block-start: 18px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 300;
    background: var(--card);
    max-inline-size: 480px;
}

.aw-notify__note:not([hidden]),
.aw-notify__fallback:not([hidden]) {
    display: inline-block;
}

.aw-notify__note {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.aw-notify__fallback {
    border: 1px solid var(--line);
    color: var(--muted);
}

.aw-notify__form[hidden] + .aw-notify__status > * {
    margin-block-start: 0;
}

html:not(.js) .aw-notify__fallback[hidden] {
    display: inline-block;
}

html:not(.js) .aw-notify__form:not([hidden]) {
    display: none;
}

.aw-404__main {
    padding: 20px 30px 80px;
}

.aw-404__code {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(110px, 26vw, 190px);
    line-height: 1;
    color: var(--accent);
}

.aw-404__h1 {
    font-size: clamp(30px, 6vw, 44px);
    margin-block-start: 18px;
}

.aw-404__sub {
    font-weight: 300;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--muted);
    max-inline-size: 440px;
    margin-block-start: 16px;
    text-wrap: pretty;
}

.aw-404__actions {
    display: flex;
    gap: 16px;
    margin-block-start: 38px;
    flex-wrap: wrap;
    justify-content: center;
}

.aw-404__diamond-a {
    inset-inline-start: 50%;
    inset-block-start: 54%;
    inline-size: 560px;
    block-size: 560px;
    transform: translate(-52%, -50%) rotate(45deg);
    opacity: .45;
}

.aw-404__diamond-b {
    inset-inline-start: 50%;
    inset-block-start: 51%;
    inline-size: 560px;
    block-size: 560px;
    transform: translate(-47%, -53%) rotate(52deg);
    opacity: .28;
}

.aw-404__glow {
    inset-inline-end: -200px;
    inset-block-start: -180px;
    inline-size: 700px;
    block-size: 700px;
    background: var(--glowA);
}

.aw-legal {
    position: relative;
    min-block-size: 100vh;
    min-block-size: 100dvh;
    background: var(--bg);
    color: var(--ink);
}

.aw-legal__bar {
    position: sticky;
    inset-block-start: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px clamp(20px, 5vw, 54px);
    background: var(--navbg);
    border-block-end: 1px solid var(--line);
}

@supports (backdrop-filter: blur(14px)) {
    .aw-legal__bar {
        backdrop-filter: blur(14px);
    }
}

.aw-legal__navlinks {
    display: flex;
    gap: 34px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.aw-legal__navlinks a {
    color: var(--muted);
}

.aw-legal__navlinks a:hover {
    color: var(--ink);
}

.aw-legal__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aw-legal__diamond-a {
    inset-inline-end: -150px;
    inset-block-start: -160px;
    inline-size: 430px;
    block-size: 430px;
    transform: rotate(45deg);
    opacity: .35;
}

.aw-legal__diamond-b {
    inset-inline-end: -115px;
    inset-block-start: -190px;
    inline-size: 430px;
    block-size: 430px;
    transform: rotate(52deg);
    opacity: .22;
}

.aw-legal__content {
    position: relative;
    max-inline-size: calc(820px + 2 * clamp(20px, 5vw, 40px));
    margin-inline: auto;
    padding: clamp(44px, 7vw, 70px) clamp(20px, 5vw, 40px) clamp(64px, 10vw, 110px);
    scroll-margin-block-start: 90px;
}

.aw-legal__kicker {
    font-size: 11px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.aw-legal__h1 {
    font-size: clamp(34px, 6vw, 54px);
    margin-block-start: 14px;
}

.aw-legal__notice {
    margin-block-start: 22px;
    padding: 14px 20px;
    border: 1px solid var(--accent);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

aw-legal-tabs {
    display: block;
}

.aw-legal__tabs {
    margin-block-start: 34px;
    flex-wrap: wrap;
    max-inline-size: 100%;
    padding: 4px;
}

.aw-legal__tab {
    padding: 12px clamp(16px, 4vw, 28px);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: all .3s ease;
}

.aw-legal__panel {
    margin-block-start: 44px;
    scroll-margin-block-start: 100px;
}

.aw-legal__panel:not([hidden]),
html:not(.js) .aw-legal__panel[hidden] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.aw-legal__panel h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 28px;
    margin-block-end: 10px;
}

.aw-legal__panel p,
.aw-legal__panel address {
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.aw-legal__panel strong {
    font-weight: 500;
    color: var(--ink);
}

html:not(.js) .aw-legal__tab.active {
    background: transparent;
    color: var(--muted);
}

.aw-legal__footer {
    position: relative;
    background: var(--bandbg);
    color: var(--bandmuted);
    padding: 34px clamp(20px, 5vw, 54px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 300;
}

.aw-legal__footerlinks {
    display: flex;
    gap: 26px;
}

.aw-legal__footer a {
    color: var(--bandmuted);
}

.aw-legal__footer a:hover {
    color: var(--bandlinkH);
}
