:root {
    color-scheme: dark;
    --background: #080a12;
    --background-raised: #10131e;
    --surface: rgba(26, 30, 45, .72);
    --surface-strong: rgba(32, 37, 55, .9);
    --surface-hover: rgba(255, 255, 255, .08);
    --stroke: rgba(255, 255, 255, .1);
    --stroke-strong: rgba(255, 255, 255, .18);
    --text: #f7f8fc;
    --text-secondary: #b8bfd0;
    --text-tertiary: #7e879d;
    --cyan: #35d8ff;
    --blue: #2476ff;
    --violet: #8f52ff;
    --magenta: #ef3dff;
    --orange: #ff984f;
    --eyebrow: #7ee8ff;
    --shadow: 0 28px 80px rgba(0, 0, 0, .4);
    --github-icon-filter: invert(1);
    --theme-control: rgba(19, 23, 35, .82);
    --theme-selected: rgba(255, 255, 255, .11);
    --infinity-cyan-alpha: .36;
    --infinity-violet-alpha: .38;
    --infinity-accent-alpha: .08;
    --product-glow-opacity: .18;
    --content-width: 1240px;
    --radius-small: 10px;
    --radius-medium: 16px;
    --radius-large: 30px;
    font-family: "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

.theme-switcher {
    position: fixed;
    z-index: 50;
    top: 22px;
    right: 22px;
    width: min(270px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 4px;
    overflow: hidden;
    border: 1px solid var(--stroke-strong);
    border-radius: 14px;
    background: var(--theme-control);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.theme-switcher-indicator {
    position: absolute;
    inset: 4px auto 4px 4px;
    width: calc((100% - 8px) / 3);
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: var(--theme-selected);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
    pointer-events: none;
    transition: transform 180ms cubic-bezier(.2, .8, .2, 1);
}

.theme-switcher[data-selected="light"] .theme-switcher-indicator {
    transform: translateX(100%);
}

.theme-switcher[data-selected="dark"] .theme-switcher-indicator {
    transform: translateX(200%);
}

.theme-switcher button {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 36px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    transition: color 140ms ease;
}

.theme-switcher button:hover,
.theme-switcher button[aria-checked="true"] {
    color: var(--text);
}

.theme-switcher button:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: -2px;
}

.theme-switcher button span {
    font-size: 14px;
    line-height: 1;
}

.ambient {
    position: fixed;
    z-index: -1;
    width: 52vw;
    height: 52vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .12;
    pointer-events: none;
}

.ambient-cyan {
    top: -26vw;
    left: -16vw;
    background: var(--cyan);
}

.ambient-magenta {
    right: -22vw;
    top: 34vh;
    background: var(--magenta);
}

main,
footer {
    width: min(var(--content-width), calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    min-height: 94vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0 96px;
}

.studio-mark {
    width: 74px;
    height: 74px;
    margin-bottom: 34px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--eyebrow);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    letter-spacing: -.055em;
    line-height: .94;
}

.hero h1 {
    max-width: 940px;
    font-size: clamp(64px, 10vw, 142px);
    font-weight: 650;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, var(--cyan) 4%, var(--blue) 34%, var(--violet) 57%, var(--magenta) 78%, var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy {
    max-width: 670px;
    margin: 34px 0 0;
    color: var(--text-secondary);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.hero-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding: 12px 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.showcase {
    padding: 80px 0 150px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 60px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -24px;
}

.section-heading h2 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 620;
}

.section-heading > p:last-child {
    max-width: 500px;
    margin: 0 0 4px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.55;
}

.product {
    --product-accent: var(--cyan);
    --product-accent-rgb: 53, 216, 255;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(440px, 1.18fr);
    min-height: 650px;
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(var(--product-accent-rgb), .09), transparent 42%),
        var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(34px) saturate(125%);
    -webkit-backdrop-filter: blur(34px) saturate(125%);
}

.product-glance {
    --product-accent: #ef55ff;
    --product-accent-rgb: 239, 85, 255;
}

.product-infinity {
    background:
        radial-gradient(circle at 66% 46%, rgba(0, 154, 205, var(--infinity-cyan-alpha)), transparent 44%),
        radial-gradient(circle at 94% 34%, rgba(104, 42, 220, var(--infinity-violet-alpha)), transparent 48%),
        linear-gradient(135deg, rgba(var(--product-accent-rgb), var(--infinity-accent-alpha)), transparent 48%),
        var(--surface);
}

.product-glow {
    position: absolute;
    z-index: -1;
    width: 440px;
    height: 440px;
    right: -180px;
    top: -210px;
    border-radius: 50%;
    background: rgb(var(--product-accent-rgb));
    filter: blur(120px);
    opacity: var(--product-glow-opacity);
}

.product-copy {
    display: flex;
    flex-direction: column;
    padding: 58px;
}

.product-heading {
    display: flex;
    gap: 18px;
    align-items: center;
}

.product-icon-shell {
    display: flex;
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
}

.product-icon-shell-wide {
    width: 112px;
}

.product-icon {
    display: block;
    object-fit: contain;
    mix-blend-mode: screen;
}

.product-icon-square {
    width: 68px;
    height: 68px;
}

.product-icon-wide {
    width: 112px;
    height: 62px;
}

.product-heading h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 620;
    letter-spacing: -.035em;
    line-height: 1;
}

.product-badge {
    display: inline-flex;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(var(--product-accent-rgb), .34);
    border-radius: 999px;
    align-items: center;
    vertical-align: middle;
    background: rgba(var(--product-accent-rgb), .12);
    color: rgb(var(--product-accent-rgb));
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .02em;
}

.product-lead {
    max-width: 490px;
    margin: 42px 0 14px;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 610;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.product-description {
    max-width: 500px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.legacy-download {
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

.legacy-download a {
    color: var(--text);
    font-weight: 600;
    text-underline-offset: 3px;
}

.legacy-download a:hover {
    color: var(--product-accent);
}

.button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform .14s ease, background-color .14s ease, border-color .14s ease;
}

.button:active {
    transform: scale(.97);
}

.button:focus-visible,
.hero-cue:focus-visible {
    outline: 2px solid var(--product-accent, var(--cyan));
    outline-offset: 3px;
}

.button-primary {
    background: var(--product-accent);
    color: #071016;
}

.button-primary:hover {
    filter: brightness(1.08);
}

.button-secondary {
    border-color: var(--stroke);
    background: rgba(255, 255, 255, .07);
}

.button-secondary:hover {
    border-color: var(--stroke-strong);
    background: var(--surface-hover);
}

.github-mark {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    filter: var(--github-icon-filter);
}

.release-wrap {
    position: relative;
}

.release-popup {
    position: absolute;
    z-index: 10;
    width: min(330px, calc(100vw - 48px));
    left: 50%;
    bottom: calc(100% + 12px);
    padding: 20px;
    visibility: hidden;
    border: 1px solid var(--stroke-strong);
    border-radius: var(--radius-medium);
    background: rgba(21, 25, 38, .96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translate(-50%, 8px) scale(.98);
    backdrop-filter: blur(28px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.release-popup.is-open {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.release-version {
    color: var(--product-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.release-popup h4 {
    margin: 9px 0 12px;
    font-size: 18px;
}

.release-notes {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}

.product-media {
    min-width: 0;
    padding: 32px 32px 32px 0;
}

.infinity-stage {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.infinity-overview-shot {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .24),
        0 28px 72px rgba(0, 0, 0, .34);
    transform: translateY(0) scale(1);
    transition: transform 560ms cubic-bezier(.2, .8, .2, 1), box-shadow 560ms cubic-bezier(.2, .8, .2, 1);
}

.product-infinity:hover .infinity-overview-shot {
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .24),
        0 34px 86px rgba(0, 0, 0, .42);
    transform: translateY(-6px) scale(1.01);
}

.screenshot-placeholder {
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(var(--product-accent-rgb), .12), transparent 52%),
        rgba(7, 9, 16, .72);
    box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 26px 64px rgba(0, 0, 0, .3);
}

.placeholder-chrome {
    height: 46px;
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 0 17px;
    border-bottom: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .025);
}

.placeholder-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}

.placeholder-copy {
    height: calc(100% - 46px);
    min-height: 434px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-tertiary);
    text-align: center;
}

.placeholder-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 8px;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    color: var(--product-accent);
    font-size: 28px;
}

.placeholder-copy strong {
    color: var(--text-secondary);
    font-size: 15px;
}

.placeholder-copy span:last-child {
    font-size: 12px;
}

.showcase-frame {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.showcase-stage {
    isolation: isolate;
}

.showcase-stage::before {
    position: absolute;
    z-index: 0;
    inset: 3% 0;
    border-radius: 42%;
    background:
        radial-gradient(circle at 18% 24%, rgba(52, 210, 255, .82), transparent 38%),
        radial-gradient(circle at 78% 30%, rgba(239, 61, 255, .78), transparent 40%),
        radial-gradient(circle at 52% 82%, rgba(60, 83, 255, .72), transparent 42%);
    content: "";
    filter: blur(52px) saturate(125%);
    opacity: .78;
    pointer-events: none;
    transform: translate3d(0, 0, 0) scale(1.02);
    animation: showcase-ambient 18s ease-in-out infinite alternate;
}

.showcase-island {
    position: absolute;
    z-index: 1;
    display: block;
    width: min(66%, 450px);
    transition:
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        filter 180ms ease;
}

.showcase-island img {
    display: block;
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, .2))
        drop-shadow(0 10px 18px rgba(0, 0, 0, .15));
    transition: filter 180ms ease;
}

.showcase-island:hover {
    z-index: 2;
    transform: translateY(-6px);
}

.showcase-island:hover img {
    filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, .22))
        drop-shadow(0 14px 24px rgba(0, 0, 0, .18));
}

.showcase-island-media {
    top: 10%;
    left: 9%;
}

.showcase-island-weather {
    top: 39%;
    right: 7%;
}

.showcase-island-capture {
    bottom: 10%;
    left: 14%;
    border-radius: 999px;
    backdrop-filter: blur(30px) saturate(135%);
    -webkit-backdrop-filter: blur(30px) saturate(135%);
}

.product-features {
    grid-column: 1 / -1;
    padding: 64px 58px 58px;
}

.feature-eyebrow {
    margin: 0 0 22px;
    color: var(--product-accent);
    font-size: 12px;
    font-weight: 720;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.feature-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, .028);
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.feature-card:hover {
    border-color: var(--stroke-strong);
    background: var(--surface-hover);
    transform: translateY(-2px);
}

.feature-card h5 {
    margin: 0 0 9px;
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -.015em;
}

.feature-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.52;
}

.feature-card code {
    padding: 1px 5px;
    border: 1px solid var(--stroke);
    border-radius: 5px;
    background: var(--surface-hover);
    color: var(--text);
    font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
    font-size: .9em;
}

.module-catalogue {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--stroke);
}

.module-catalogue > p {
    margin: 0 0 16px;
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.module-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-cloud span {
    padding: 8px 12px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1;
}

@keyframes showcase-ambient {
    from {
        transform: translate3d(-1.5%, -1%, 0) scale(1.02);
    }

    to {
        transform: translate3d(1.5%, 1%, 0) scale(1.08);
    }
}

footer {
    min-height: 160px;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 42px 0;
    border-top: 1px solid var(--stroke);
    color: var(--text-tertiary);
    font-size: 13px;
}

.footer-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: auto;
    color: var(--text);
    font-weight: 650;
}

.footer-brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    mix-blend-mode: screen;
}

@media (max-width: 980px) {
    .product {
        grid-template-columns: 1fr;
    }

    .product-media {
        padding: 0 32px 32px;
    }

    .screenshot-placeholder {
        min-height: 420px;
    }

    .infinity-stage {
        min-height: 420px;
    }

    .showcase-frame {
        min-height: 420px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 720px) {
    main,
    footer {
        width: min(100% - 28px, var(--content-width));
    }

    .hero {
        min-height: 88vh;
        padding-top: 104px;
    }

    .studio-mark {
        width: 60px;
        height: 60px;
    }

    .hero h1 {
        font-size: clamp(54px, 18vw, 88px);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading .eyebrow {
        margin-bottom: 0;
    }

    .product {
        margin-top: 22px;
        border-radius: 22px;
    }

    .product-copy {
        padding: 28px 24px 18px;
    }

    .product-media {
        padding: 14px 24px 24px;
    }

    .screenshot-placeholder {
        min-height: 300px;
        border-radius: 16px;
    }

    .infinity-stage {
        min-height: 280px;
    }

    .showcase-frame {
        min-height: 0;
    }

    .showcase-stage {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding-block: 24px 18px;
    }

    .showcase-stage::before {
        inset: 5% -6%;
    }

    .showcase-island {
        position: relative;
        inset: auto;
        width: min(84%, 360px);
    }

    .showcase-island-media {
        align-self: flex-start;
    }

    .showcase-island-weather {
        align-self: flex-end;
    }

    .showcase-island-capture {
        align-self: center;
    }

    .showcase-island:hover {
        transform: none;
    }

    .placeholder-copy {
        min-height: 254px;
    }

    .product-heading {
        align-items: center;
    }

    .product-icon-shell {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .product-icon-shell-wide {
        width: 104px;
    }

    .product-icon-square {
        width: 56px;
        height: 56px;
    }

    .product-icon-wide {
        width: 92px;
        height: 50px;
    }

    .product-heading h3 {
        font-size: 32px;
    }

    .product-lead {
        margin-top: 28px;
        font-size: clamp(27px, 8vw, 34px);
    }

    .product-description {
        font-size: 16px;
    }

    .product-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 28px;
    }

    .product-actions > .download-button {
        grid-column: 1 / -1;
    }

    .product-actions .button {
        width: 100%;
    }

    .release-wrap {
        width: 100%;
    }

    .release-wrap .button {
        width: 100%;
    }

    .release-popup {
        left: 0;
        transform: translate(0, 8px) scale(.98);
    }

    .release-popup.is-open {
        transform: translate(0, 0) scale(1);
    }

    .theme-switcher {
        position: absolute;
        top: 12px;
        right: 14px;
    }

    .product-features {
        padding: 34px 24px 30px;
    }

    .feature-eyebrow {
        margin-bottom: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card {
        min-height: 0;
        padding: 22px;
        border-radius: 14px;
    }

    footer {
        flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
    main,
    footer {
        width: min(100% - 18px, var(--content-width));
    }

    .theme-switcher {
        right: 9px;
        width: calc(100vw - 18px);
    }

    .theme-switcher button {
        gap: 5px;
        padding-inline: 5px;
    }

    .product-copy,
    .product-features {
        padding-inline: 20px;
    }

    .product-media {
        padding-inline: 20px;
    }

    .product-heading h3 {
        font-size: 30px;
    }

    .product-lead {
        font-size: 27px;
    }

    .infinity-stage {
        min-height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }

    .showcase-stage::before {
        animation: none;
    }
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
        color-scheme: light;
        --background: #f5f6fa;
        --surface: rgba(255, 255, 255, .72);
        --surface-strong: rgba(255, 255, 255, .94);
        --surface-hover: rgba(0, 0, 0, .055);
        --stroke: rgba(20, 28, 48, .11);
        --stroke-strong: rgba(20, 28, 48, .18);
        --text: #161a25;
        --text-secondary: #515a6f;
        --text-tertiary: #737d91;
        --eyebrow: #087b98;
        --shadow: 0 28px 80px rgba(35, 47, 74, .14);
        --github-icon-filter: none;
        --theme-control: rgba(255, 255, 255, .8);
        --theme-selected: rgba(25, 33, 53, .08);
        --infinity-cyan-alpha: .07;
        --infinity-violet-alpha: .065;
        --infinity-accent-alpha: .025;
        --product-glow-opacity: .07;
    }

    :root:not([data-theme]) body {
        background: var(--background);
    }

    :root:not([data-theme]) .studio-mark,
    :root:not([data-theme]) .product-icon,
    :root:not([data-theme]) .footer-brand img {
        mix-blend-mode: multiply;
    }

    :root:not([data-theme]) .screenshot-placeholder {
        background:
            linear-gradient(135deg, rgba(var(--product-accent-rgb), .14), transparent 52%),
            rgba(240, 242, 248, .86);
    }

    :root:not([data-theme]) .showcase-island img {
        filter:
            drop-shadow(0 1px 2px rgba(25, 31, 48, .22))
            drop-shadow(0 12px 22px rgba(25, 31, 48, .18));
    }

    :root:not([data-theme]) .showcase-stage::before {
        opacity: .52;
    }

    :root:not([data-theme]) .release-popup {
        background: rgba(255, 255, 255, .97);
    }
}

:root[data-theme="light"] {
    color-scheme: light;
    --background: #f5f6fa;
    --surface: rgba(255, 255, 255, .72);
    --surface-strong: rgba(255, 255, 255, .94);
    --surface-hover: rgba(0, 0, 0, .055);
    --stroke: rgba(20, 28, 48, .11);
    --stroke-strong: rgba(20, 28, 48, .18);
    --text: #161a25;
    --text-secondary: #515a6f;
    --text-tertiary: #737d91;
    --eyebrow: #087b98;
    --shadow: 0 28px 80px rgba(35, 47, 74, .14);
    --github-icon-filter: none;
    --theme-control: rgba(255, 255, 255, .8);
    --theme-selected: rgba(25, 33, 53, .08);
    --infinity-cyan-alpha: .07;
    --infinity-violet-alpha: .065;
    --infinity-accent-alpha: .025;
    --product-glow-opacity: .07;
}

:root[data-theme="light"] .studio-mark,
:root[data-theme="light"] .product-icon,
:root[data-theme="light"] .footer-brand img {
    mix-blend-mode: multiply;
}

:root[data-theme="light"] .screenshot-placeholder {
    background:
        linear-gradient(135deg, rgba(var(--product-accent-rgb), .14), transparent 52%),
        rgba(240, 242, 248, .86);
}

:root[data-theme="light"] .showcase-island img {
    filter:
        drop-shadow(0 1px 2px rgba(25, 31, 48, .22))
        drop-shadow(0 12px 22px rgba(25, 31, 48, .18));
}

:root[data-theme="light"] .showcase-stage::before {
    opacity: .52;
}

:root[data-theme="light"] .release-popup {
    background: rgba(255, 255, 255, .97);
}
