:root {
    /* paper — a concert hall after dark, tinted toward the brand's magenta */
    --paper: oklch(15% 0.012 320);
    --paper-2: oklch(19% 0.013 320);
    --paper-3: oklch(23% 0.014 320);

    /* ink — starlight */
    --ink: oklch(94% 0.008 330);
    --ink-2: oklch(74% 0.012 330);

    /* fonts */
    --font-display: "Instrument Serif", ui-serif, Georgia, serif;
    --font-body: "Geist", -apple-system, "Helvetica Neue", sans-serif;
    --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
    /* the product's native face — used only inside the app replica */
    --font-mac: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

    /* Gradient */
    --g-orange: #ff9d42;
    --g-pink: #ff4f8b;
    --g-violet: #a35bff;

    --golden-aspect: 1.618/1;

    --muted: oklch(63% 0.013 330);
    --rule: oklch(27% 0.013 320);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

    /* the replica's native macOS palette — used only inside the app panel */
    --mac-blue: #0a84ff;
    --mac-green: #30d158;
    --mac-link: #6cb2ff;
    --mac-thumb: #ffffff;
}

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

body {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(130% 120% at 50% 118%, oklch(66% 0.21 355 / 0.16), transparent 62%),
        radial-gradient(120% 130% at 8% -10%, oklch(62% 0.22 295 / 0.15), transparent 62%), var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
}

/* the sky — dark until the trackpad sounds, then it lights */
#sky {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(44px) saturate(1.15);
    transform: scale(1.16);
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-note {
    position: fixed;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    text-align: right;
    font-size: 10px;
    line-height: 1.4;
    color: oklch(63% 0.013 330 / 0.5);
    text-wrap: nowrap;
}
.recaptcha-note a {
    color: inherit;
}

main {
    position: relative;
    z-index: 1;
    padding-inline: 3rem;
    padding-block: 5rem;
    margin-block: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;

    @media screen and (min-width: 800px) {
        padding-inline: 7.5rem;
    }

    @media screen and (min-width: 1200px) {
        padding-inline: 15rem;
    }

    padding-top: 2.5rem;
}

.banner {
    margin-bottom: 15px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.header {
    display: flex;
    /* flex-direction: column; */
    gap: 1.5rem;
    margin-bottom: 30px;
}

.title {
    font-size: clamp(2rem, 4vw, 4.7rem);
    font-family: var(--font-display);
}

.subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #ebebeb;
    font-weight: 100;
}

.cta {
    width: fit-content;
    padding-inline: 2rem;
    padding-block: 1rem;
    border-radius: 10px;
    background: linear-gradient(100deg, var(--g-orange) 0%, var(--g-pink) 52%, var(--g-violet) 100%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(163, 91, 255, 0.25);
    align-self: center;
    margin-left: auto;
}

#trackpad-text {
    /* font-style: italic; */
    position: relative;

    background: linear-gradient(100deg, var(--g-orange) 0%, var(--g-pink) 52%, var(--g-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    overflow: visible;
}

#trackpad-text::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 7px;
    left: 0;
    background: linear-gradient(100deg, var(--g-orange) 0%, var(--g-pink) 52%, var(--g-violet) 100%);
    z-index: -1;
    opacity: 80%;
}

.desktop.container {
    width: 100%;
    height: 100%;
    background-color: #a35bff;
    border-radius: 20px;
    position: relative;
    background-image: url(wallpaper.jpg);
    background-size: cover;
}

.desktop .menubar {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.524);
}

.desktop .choices {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(10px, 10px);
    list-style: none;
    /* background-color: rgba(0, 0, 0, 0.55); */
    width: fit-content;
    padding: 0.5rem;
    border-radius: 20px;
    width: 250px;
    /* backdrop-filter: blur(30px); */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* border-top: 1px solid rgb(64, 64, 64); */
}

.desktop .choices li {
    padding-inline: 1.5rem;
    padding-block: 1rem;
    user-select: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 15px;
    transition: background 0.1s ease-out;
    font-weight: 500;
    font-size: 0.9rem;
}

.desktop .choices li[data-selected="true"],
.desktop .choices li:hover {
    background-color: rgba(255, 255, 255, 0.125);
    transition: background 0.1s ease-out;
}
