:root {
    color-scheme: light;
    --accent: #ff0056;
    --accent-strong: #d90049;
    --accent-text: #c70043;
    --cta: #d90049;
    --cta-hover: #bd003f;
    --focus: #b8003d;
    --accent-soft: rgba(255, 0, 86, 0.1);
    --page: #f4f2f3;
    --page-alt: #ece9eb;
    --surface: rgba(255, 255, 255, 0.68);
    --surface-solid: #fbf9fa;
    --surface-raised: #ffffff;
    --text: #171315;
    --text-soft: #625a5e;
    --text-faint: #6f666a;
    --line: rgba(39, 26, 32, 0.12);
    --line-strong: rgba(39, 26, 32, 0.2);
    --shadow: 0 30px 80px rgba(75, 45, 57, 0.18);
    --shadow-soft: 0 14px 42px rgba(75, 45, 57, 0.1);
    --radius: 24px;
    --radius-small: 14px;
    --header-height: 68px;
    --max-width: 1240px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-synthesis: none;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --accent: #ff1a66;
    --accent-strong: #ff3b77;
    --accent-text: #ff5a8a;
    --cta: #d90049;
    --cta-hover: #bd003f;
    --focus: #ff78a2;
    --accent-soft: rgba(255, 26, 102, 0.14);
    --page: #121011;
    --page-alt: #191617;
    --surface: rgba(36, 31, 33, 0.7);
    --surface-solid: #1d191b;
    --surface-raised: #252023;
    --text: #f7f2f4;
    --text-soft: #b9afb3;
    --text-faint: #91878b;
    --line: rgba(255, 240, 246, 0.11);
    --line-strong: rgba(255, 240, 246, 0.2);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
    --shadow-soft: 0 14px 48px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
    :root[data-theme="auto"] {
        color-scheme: dark;
        --accent: #ff1a66;
        --accent-strong: #ff3b77;
        --accent-text: #ff5a8a;
        --cta: #d90049;
        --cta-hover: #bd003f;
        --focus: #ff78a2;
        --accent-soft: rgba(255, 26, 102, 0.14);
        --page: #121011;
        --page-alt: #191617;
        --surface: rgba(36, 31, 33, 0.7);
        --surface-solid: #1d191b;
        --surface-raised: #252023;
        --text: #f7f2f4;
        --text-soft: #b9afb3;
        --text-faint: #91878b;
        --line: rgba(255, 240, 246, 0.11);
        --line-strong: rgba(255, 240, 246, 0.2);
        --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
        --shadow-soft: 0 14px 48px rgba(0, 0, 0, 0.28);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 82% 7%, var(--accent-soft), transparent 26rem),
        var(--page);
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    transition: background-color 240ms ease, color 240ms ease;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    content: "";
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--text);
    color: var(--page);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(calc(100% - 32px), var(--max-width));
    height: var(--header-height);
    margin: 12px auto 0;
    padding: 0 12px 0 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-soft);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    font-size: 17px;
    font-weight: 720;
    letter-spacing: -0.03em;
}

.brand-accent {
    color: var(--accent-text);
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 4px 8px rgba(70, 35, 50, 0.14));
}

.brand-icon img {
    width: 100%;
    height: 100%;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
}

.desktop-nav a {
    padding: 9px 12px;
    border-radius: 10px;
    transition: background-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover {
    background: var(--accent-soft);
    color: var(--text);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.theme-toggle,
.icon-button {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-solid);
    color: var(--text);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.theme-toggle:hover,
.icon-button:hover {
    border-color: var(--line-strong);
    background: var(--surface-raised);
    transform: translateY(-1px);
}

.theme-toggle:active,
.icon-button:active,
.button:active {
    transform: translateY(1px) scale(0.98);
}

.icon-button img {
    width: 18px;
    height: 18px;
    filter: var(--icon-filter, none);
}

:root[data-theme="dark"] .icon-button img,
:root[data-theme="dark"] .button img,
:root[data-theme="dark"] .fork-link img,
:root[data-theme="dark"] .site-footer img[src$="github.svg"] {
    filter: invert(1);
}

@media (prefers-color-scheme: dark) {
    :root[data-theme="auto"] .icon-button img,
    :root[data-theme="auto"] .button img,
    :root[data-theme="auto"] .fork-link img,
    :root[data-theme="auto"] .site-footer img[src$="github.svg"] {
        filter: invert(1);
    }
}

.theme-icon {
    position: relative;
    width: 17px;
    height: 17px;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    background: linear-gradient(90deg, currentColor 50%, transparent 50%);
    transform: rotate(-30deg);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: clamp(42px, 6vw, 92px);
    width: min(calc(100% - 48px), var(--max-width));
    min-height: calc(100dvh - 92px);
    margin: 0 auto;
    padding: 56px 0 72px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

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

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(48px, 5.6vw, 78px);
    font-weight: 760;
    letter-spacing: -0.067em;
    line-height: 0.98;
}

h1 span {
    color: var(--text-soft);
}

.hero-lede {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--text-soft);
    font-size: clamp(17px, 1.7vw, 20px);
    letter-spacing: -0.018em;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 690;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button img {
    width: 18px;
    height: 18px;
}

.button-primary {
    background: var(--cta);
    color: #fff9fb;
    box-shadow: 0 10px 24px rgba(255, 0, 86, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
}

.button-secondary {
    border-color: var(--line);
    background: var(--surface-solid);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.button-secondary:hover {
    border-color: var(--line-strong);
    background: var(--surface-raised);
    transform: translateY(-1px);
}

.download-symbol {
    font-size: 19px;
    line-height: 1;
}

.release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 18px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 560;
}

.release-meta span + span {
    position: relative;
}

.release-meta span + span::before {
    position: absolute;
    top: 50%;
    left: -11px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.hero-addon-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 620;
}

.hero-addon-proof strong {
    width: 100%;
    color: var(--accent-text);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding: 42px 0 24px;
}

.hero-visual::before {
    position: absolute;
    inset: 4% 2% 1% 12%;
    border-radius: 42% 58% 51% 49% / 42% 40% 60% 58%;
    background: linear-gradient(145deg, rgba(255, 0, 86, 0.17), rgba(255, 0, 86, 0.035));
    filter: blur(5px);
    content: "";
    transform: rotate(-5deg);
}

.app-window {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius);
    background: #1e1e1f;
    box-shadow: var(--shadow);
}

.app-window img {
    width: 100%;
    height: auto;
}

.app-window picture {
    display: block;
}

.hero-window {
    z-index: 1;
    width: 100%;
    transform: rotate(1.4deg);
    transform-origin: center;
}

.window-bar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    background: linear-gradient(180deg, rgba(37, 34, 35, 0.94), rgba(31, 29, 30, 0.76));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.traffic {
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
}

.traffic-red { background: #ff5f57; }
.traffic-yellow { background: #febc2e; }
.traffic-green { background: #28c840; }

.window-title {
    position: absolute;
    left: 50%;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 600;
    transform: translateX(-50%);
}

.app-icon-large {
    position: absolute;
    top: 0;
    left: -34px;
    z-index: 3;
    width: clamp(104px, 11vw, 150px);
    aspect-ratio: 1;
    transform: rotate(-7deg);
}

.app-icon-surface {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 24px 30px rgba(72, 24, 43, 0.25));
}

.app-icon-surface img {
    width: 100%;
    height: 100%;
}

.highlight-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 590;
}

.highlight-band p {
    margin: 0;
}

.highlight-band strong {
    color: var(--text);
}

.highlight-list {
    display: flex;
    align-items: center;
    gap: 8px 18px;
    color: var(--text);
}

.highlight-list span {
    position: relative;
    font-size: 12px;
    font-weight: 650;
}

.highlight-list span + span::before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 144px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    align-items: end;
    column-gap: 80px;
    margin-bottom: 48px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 740;
    letter-spacing: -0.058em;
    line-height: 1.02;
}

.section-heading > p:last-child,
.experience-copy > p:last-child,
.native-details > p,
.fork-copy > p:last-child,
.install-copy > p:last-of-type,
.support-card p:last-child {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
}

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

.feature {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.feature h3 {
    max-width: 420px;
    margin: 18px 0 9px;
    font-size: clamp(23px, 2.4vw, 32px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.feature p {
    max-width: 500px;
    margin: 0;
    color: var(--text-soft);
}

.feature-kicker {
    color: var(--accent-text) !important;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.feature-ai {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    align-items: center;
    min-height: 360px;
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 0, 86, 0.18), transparent 32%),
        var(--surface-solid);
}

.feature-ai h3 {
    margin-top: 10px;
}

.feature-download {
    grid-column: span 5;
    background: linear-gradient(150deg, var(--surface-raised), var(--accent-soft));
}

.feature-lyrics {
    grid-column: span 3;
}

.feature-focus {
    grid-column: span 3;
    background: var(--text);
    color: var(--page);
}

.feature-focus p {
    color: color-mix(in srgb, var(--page) 72%, transparent);
}

.feature-addons {
    grid-column: span 7;
    min-height: 360px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 0, 86, 0.2), transparent 30%),
        var(--surface-solid);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 28px;
    font-weight: 500;
}

.feature-sparkle {
    width: 108px;
    height: 108px;
    margin: auto;
    border: 1px solid rgba(255, 0, 86, 0.18);
    border-radius: 32px;
    background: rgba(255, 0, 86, 0.09);
    font-size: 55px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 44px rgba(255, 0, 86, 0.1);
}

.requirement {
    display: block;
    margin-top: 18px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 580;
}

.lyric-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 76px;
    padding-top: 5px;
}

.lyric-lines span {
    width: 74%;
    height: 7px;
    border-radius: 4px;
    background: var(--line-strong);
}

.lyric-lines span:nth-child(2) {
    width: 92%;
    background: var(--accent);
}

.lyric-lines span:nth-child(3) { width: 60%; }
.lyric-lines span:nth-child(4) { width: 42%; }

.focus-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid color-mix(in srgb, var(--page) 34%, transparent);
    border-radius: 18px;
}

.focus-mark span {
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 0, 86, 0.1);
}

.addon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 24px;
}

.feature-addons > p:not(.feature-kicker) {
    max-width: 620px;
}

.addon-list span {
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 620;
}

.experience-section {
    padding-top: 70px;
}

.experience-copy {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr;
    align-items: end;
    gap: 100px;
    margin-bottom: 72px;
}

.experience-copy .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -78px;
}

.window-stack {
    position: relative;
    min-height: 790px;
}

.window-stack .app-window {
    position: absolute;
    width: 76%;
}

.music-window {
    top: 0;
    left: 0;
    transform: rotate(-1.8deg);
}

.youtube-window {
    right: 0;
    bottom: 0;
    z-index: 2;
    transform: rotate(1.6deg);
}

.native-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(50px, 10vw, 160px);
    align-items: start;
    border-top: 1px solid var(--line);
}

.native-details {
    padding-top: 36px;
}

.native-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 26px;
    margin-top: 34px;
}

.native-list span {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
    font-weight: 610;
}

.native-list span::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    content: "";
}

.fork-section {
    padding-top: 40px;
}

.fork-card {
    display: grid;
    grid-template-columns: 128px 1fr auto;
    align-items: center;
    gap: 52px;
    padding: 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
}

.fork-mark {
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    border-radius: 36px;
    background: var(--accent-soft);
}

.fork-mark::before {
    width: 64px;
    height: 64px;
    background: var(--accent);
    content: "";
    -webkit-mask: url("assets/git-fork.svg") center / contain no-repeat;
    mask: url("assets/git-fork.svg") center / contain no-repeat;
}

.fork-copy h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.fork-copy > p:last-child {
    max-width: 610px;
    margin-top: 16px;
}

.fork-copy p a {
    color: var(--accent-text);
    font-weight: 650;
}

.fork-copy p a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fork-link {
    white-space: nowrap;
}

.install-section {
    display: block;
}

.install-copy {
    max-width: 820px;
}

.install-copy > p:last-of-type {
    max-width: 650px;
    margin-top: 22px;
}

.install-copy .button {
    margin-top: 28px;
}

.support-section {
    padding-top: 30px;
}

.support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: clamp(36px, 6vw, 72px);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 30%, rgba(255, 0, 86, 0.18), transparent 28%),
        var(--text);
    color: var(--page);
    box-shadow: var(--shadow);
}

.support-card h2 {
    font-size: clamp(38px, 5vw, 62px);
}

.support-card p:last-child {
    max-width: 620px;
    margin-top: 18px;
    color: color-mix(in srgb, var(--page) 72%, transparent);
}

.button-kofi {
    flex: 0 0 auto;
    background: #fff7fa;
    color: #22191d;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.button-kofi:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.button-kofi img {
    width: 22px;
    filter: none !important;
}

.upstream-support {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    margin-top: 12px;
    padding: 26px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
}

.upstream-support-label {
    margin: 0 0 6px;
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.upstream-support h3 {
    margin: 0;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.upstream-support > div > p:last-child {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--text-soft);
    font-size: 14px;
}

.upstream-support p a {
    color: var(--accent-text);
    font-weight: 650;
}

.button-upstream-kofi {
    min-height: 44px;
    border-color: var(--line);
    background: var(--surface-raised);
    color: var(--text);
    white-space: nowrap;
}

.button-upstream-kofi:hover {
    border-color: var(--line-strong);
    transform: translateY(-1px);
}

.button-upstream-kofi img {
    width: 19px;
    filter: none !important;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 48px 0 38px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 15px;
}

.footer-brand div span {
    color: var(--text-faint);
    font-size: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent);
}

.disclaimer {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--text-faint);
    font-size: 11px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 32px;
    }

    h1 {
        font-size: clamp(46px, 5.7vw, 62px);
    }

    .window-stack {
        min-height: 650px;
    }

    .fork-card {
        grid-template-columns: 96px 1fr;
    }

    .fork-mark {
        width: 96px;
        height: 96px;
        border-radius: 28px;
    }

    .fork-mark::before {
        width: 50px;
        height: 50px;
    }

    .fork-link {
        grid-column: 2;
        width: max-content;
    }

}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 76px;
    }

    .hero-copy {
        max-width: 650px;
    }

    h1 {
        max-width: 680px;
        font-size: clamp(48px, 10vw, 70px);
    }

    .hero-visual {
        width: 92%;
        margin: 28px auto 0;
    }

    .hero-window {
        width: 100%;
    }

    .section {
        padding: 100px 0;
    }

    .section-heading,
    .experience-copy,
    .native-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading .eyebrow,
    .experience-copy .eyebrow {
        grid-column: auto;
        margin-bottom: -8px;
    }

    .feature-ai,
    .feature-download,
    .feature-lyrics,
    .feature-focus,
    .feature-addons {
        grid-column: span 6;
    }

    .feature-ai {
        grid-column: 1 / -1;
    }

    .feature-addons {
        grid-column: 1 / -1;
    }

    .feature-download {
        grid-column: 1 / -1;
    }

    .window-stack {
        display: grid;
        gap: 20px;
        min-height: 0;
    }

    .window-stack .app-window {
        position: relative;
        width: 100%;
        inset: auto;
        transform: none;
    }

    .native-details {
        padding-top: 0;
    }

    .fork-card {
        grid-template-columns: 100px 1fr;
        gap: 30px;
        padding: 40px;
    }

    .support-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .upstream-support {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 580px) {
    :root {
        --radius: 19px;
        --radius-small: 12px;
    }

    .site-header {
        width: calc(100% - 20px);
        height: 64px;
        margin-top: 8px;
        border-radius: 16px;
        padding-right: 9px;
        padding-left: 12px;
    }

    .brand {
        font-size: 15px;
    }

    .brand-icon {
        width: 33px;
        height: 33px;
    }

    .theme-toggle,
    .icon-button {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .hero,
    .highlight-band,
    .section,
    .site-footer {
        width: calc(100% - 32px);
    }

    .hero {
        padding: 52px 0 44px;
    }

    h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.01;
    }

    .hero-lede {
        margin-top: 20px;
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .release-meta {
        gap: 6px 16px;
    }

    .hero-addon-proof {
        gap: 6px 12px;
        margin-top: 18px;
        padding-top: 14px;
    }

    .hero-visual {
        margin-top: 22px;
    }

    .app-icon-large {
        left: -6px;
        width: 80px;
    }

    .highlight-band {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .section-heading {
        margin-bottom: 32px;
    }

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

    .feature-ai,
    .feature-download,
    .feature-lyrics,
    .feature-focus,
    .feature-addons {
        grid-column: auto;
    }

    .feature-ai {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .feature-sparkle {
        width: 72px;
        height: 72px;
        margin: 0 0 28px;
        border-radius: 22px;
        font-size: 36px;
    }

    .feature {
        min-height: 0;
        padding: 22px;
    }

    .native-list {
        grid-template-columns: 1fr;
    }

    .fork-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .fork-mark {
        width: 88px;
        height: 88px;
        border-radius: 26px;
    }

    .fork-mark::before {
        width: 46px;
        height: 46px;
    }

    .fork-link {
        grid-column: auto;
        width: 100%;
    }

    .support-card {
        gap: 34px;
        padding: 30px 22px;
    }

    .upstream-support {
        padding: 22px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .disclaimer {
        grid-column: auto;
    }
}

@media (max-width: 350px) {
    .addon-list {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .site-header,
    .highlight-band {
        background: var(--surface-solid);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
