.home-page {
    --ink: #09090b;
    --ink-soft: #121318;
    --paper: #0f1014;
    --paper-soft: #121318;
    --paper-muted: #0c0d11;
    --text: #f7f7fa;
    --muted: #92939d;
    --dark-border: rgba(255, 255, 255, 0.11);
    --light-border: rgba(255, 255, 255, 0.11);
    --accent: #8d96ff;
    --accent-cyan: #72d9f0;
    --font-display: "Comfortaa";
    --font-body: "Nunito";
    --font-mono: "Nunito";
    min-width: 320px;
    background: var(--ink);
    color: var(--text);
    color-scheme: dark;
    font-family: var(--font-body);
    overflow-x: hidden;
}

html.loader-active,
html.loader-active body {
    overflow: hidden;
}

/* Opening sequence */
.home-page .page-loader {
    --loader-progress: 0;
    position: fixed;
    inset: 0;
    z-index: 30000;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 24%, rgba(111, 126, 255, 0.13), transparent 29%),
        radial-gradient(circle at 19% 82%, rgba(78, 189, 218, 0.07), transparent 32%),
        #07080a;
    color: #f7f7fa;
    transform: translateY(0);
    transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
}

.home-page .page-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
    pointer-events: none;
}

.home-page .page-loader.is-leaving {
    transform: translateY(-100%);
}

.home-page .loader-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: clamp(24px, 3.4vw, 54px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto 2px;
    transition: opacity 420ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .page-loader.is-leaving .loader-grid {
    opacity: 0;
    transform: translateY(-5vh) scale(0.985);
}

.home-page .loader-header,
.home-page .loader-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #858792;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .loader-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f6f6f8;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
}

.home-page .loader-brand svg {
    width: 24px;
    height: 24px;
}

.home-page .loader-stage {
    align-self: center;
    display: grid;
    justify-items: center;
    gap: clamp(20px, 3vw, 38px);
    text-align: center;
}

.home-page .loader-kicker {
    color: #777986;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    animation: loaderFadeUp 620ms 100ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .loader-wordmark {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(72px, 13vw, 196px);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.065em;
    animation: loaderWordIn 760ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .loader-wave {
    height: 54px;
    display: flex;
    align-items: center;
    gap: clamp(5px, 0.55vw, 9px);
}

.home-page .loader-wave i {
    width: 2px;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, #9ea6ff, #67d5ec);
    transform: scaleY(0.18);
    transform-origin: center;
    animation: loaderSignal 540ms ease-in-out infinite alternate;
}

.home-page .loader-wave i:nth-child(2n) { height: 64%; animation-delay: -170ms; }
.home-page .loader-wave i:nth-child(3n) { height: 34%; animation-delay: -310ms; }
.home-page .loader-wave i:nth-child(4n) { height: 82%; animation-delay: -420ms; }
.home-page .loader-wave i:nth-child(5n) { height: 48%; animation-delay: -90ms; }

.home-page .loader-footer {
    padding-bottom: 18px;
}

.home-page .loader-footer strong {
    color: #f5f5f8;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.home-page .loader-progress {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.home-page .loader-progress i {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #858fff, #68d6ee);
    transform: scaleX(var(--loader-progress));
    transform-origin: left center;
    transition: transform 70ms linear;
}

@keyframes loaderWordIn {
    from { opacity: 0; transform: translateY(34px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderSignal {
    from { opacity: 0.38; transform: scaleY(0.18); }
    to { opacity: 1; transform: scaleY(1); }
}

.home-page main {
    overflow: clip;
}

.home-page main > section {
    scroll-margin-top: 96px;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #7e88ff #08090b;
}

html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html::-webkit-scrollbar-track {
    background: #08090b;
}

html::-webkit-scrollbar-thumb {
    min-height: 54px;
    border: 3px solid #08090b;
    border-radius: 999px;
    background: linear-gradient(180deg, #8c95ff, #5867d8);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a8afff, #7180f1);
}

.home-page ::selection {
    background: #aeb6ff;
    color: #09090b;
}

.home-page :where(a, button, summary) {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(141, 150, 255, 0.18);
}

.home-page :where(a, button, summary):focus-visible {
    outline: 2px solid #aeb6ff;
    outline-offset: 4px;
}

.home-page .skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 11000;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #09090b;
    font-weight: 600;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.home-page .scroll-progress {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
    box-shadow: none;
}

/* Navigation */
.home-page .navbar,
.home-page .navbar.scrolled {
    padding: 18px max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: padding 240ms ease;
}

.home-page .navbar.scrolled {
    padding-top: 10px;
}

.home-page .nav-inner {
    width: 100%;
    max-width: 1280px;
    min-height: 66px;
    margin-inline: auto;
    padding: 8px 9px 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(9, 9, 12, 0.68);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px) saturate(1.08);
    -webkit-backdrop-filter: blur(22px) saturate(1.08);
    transition: max-width 420ms cubic-bezier(0.22, 1, 0.36, 1), min-height 320ms ease, padding 320ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .navbar.scrolled .nav-inner {
    max-width: 820px;
    min-height: 54px;
    padding: 6px 7px 6px 11px;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(9, 9, 12, 0.91);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
}

.home-page .logo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.03em;
    transition: min-height 280ms ease, gap 280ms ease, font-size 280ms ease;
}

.home-page .logo-mark {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
    transition: width 280ms ease, height 280ms ease, border-radius 280ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.home-page .navbar.scrolled .logo {
    min-height: 38px;
    gap: 8px;
    font-size: 15px;
}

.home-page .navbar.scrolled .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
}

.home-page .logo-mark svg {
    width: 20px;
    height: 20px;
}

.home-page .logo:hover .logo-mark {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
    transform: translateY(-1px);
}

.home-page .logo-text,
.home-page .nav-link {
    transform: none;
}

.home-page .nav-center {
    display: flex;
    align-items: center;
    gap: 3px;
}

.home-page .nav-link {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #a6a7af;
    font-size: 13px;
    font-weight: 500;
    transition: min-height 280ms ease, padding 280ms ease, color 180ms ease, background-color 180ms ease, font-size 280ms ease;
}

.home-page .navbar.scrolled .nav-link {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 12px;
}

.home-page .nav-link::after {
    display: none;
}

.home-page .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.home-page .nav-cta {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #f7f7fa;
    color: #09090b;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    transition: min-height 280ms ease, padding 280ms ease, gap 280ms ease, font-size 280ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.home-page .navbar.scrolled .nav-cta {
    min-height: 40px;
    padding-inline: 15px;
    gap: 6px;
    font-size: 12px;
}

.home-page .nav-cta svg {
    width: 15px;
    height: 15px;
}

.home-page .nav-cta:hover {
    border-color: #fff;
    background: #fff;
    color: #09090b;
    box-shadow: 0 12px 32px rgba(141, 150, 255, 0.2);
    transform: translateY(-1px);
}

.home-page .mobile-menu {
    display: none;
    position: relative;
}

.home-page .mobile-menu summary {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
    list-style: none;
}

.home-page .mobile-menu summary::-webkit-details-marker {
    display: none;
}

.home-page .mobile-menu summary span {
    width: 17px;
    height: 1px;
    display: block;
    background: #fff;
    transition: transform 180ms ease;
}

.home-page .mobile-menu[open] summary span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.home-page .mobile-menu[open] summary span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.home-page .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(290px, calc(100vw - 36px));
    padding: 10px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(12, 12, 15, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.home-page .mobile-menu-panel a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 13px;
    color: #d5d5db;
    font-size: 14px;
    transition: color 180ms ease, background-color 180ms ease;
}

.home-page .mobile-menu-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.home-page .hero {
    width: min(100%, 1390px);
    min-height: 100svh;
    margin-inline: auto;
    padding: 164px 42px 82px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(570px, 1.18fr);
    grid-template-areas:
        "copy product"
        "scroll scroll";
    column-gap: clamp(48px, 6vw, 104px);
    row-gap: 58px;
    align-items: center;
    isolation: isolate;
    text-align: left;
    scroll-margin-top: 110px;
}

.home-page .hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -12%;
    right: -12%;
    width: 68%;
    height: 82%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 42% 46%, rgba(69, 99, 220, 0.2), transparent 38%),
        radial-gradient(circle at 70% 57%, rgba(61, 177, 207, 0.11), transparent 42%);
    filter: blur(54px);
    pointer-events: none;
}

.home-page .hero::after {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
    pointer-events: none;
}

.home-page .hero-copy {
    grid-area: copy;
    min-width: 0;
}

.home-page .hero-title {
    max-width: 690px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(72px, 7.35vw, 118px);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.home-page .hero-title span {
    display: block;
    width: fit-content;
    padding-right: 0.08em;
}

.home-page .hero-title-accent {
    padding-bottom: 0.07em;
    background: linear-gradient(96deg, #c6c9ff 0%, #8b97ff 46%, #6fd5ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-page .hero-tagline {
    width: max-content;
    margin: 32px 0 0;
    color: #797a84;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .hero-tagline::before,
.home-page .hero-tagline::after {
    content: "";
    width: 32px;
    height: 1px;
    display: inline-block;
    margin: 0 12px 3px 0;
    background: linear-gradient(90deg, transparent, rgba(145, 154, 255, 0.8));
}

.home-page .hero-tagline::after {
    margin: 0 0 3px 12px;
    background: linear-gradient(90deg, rgba(145, 154, 255, 0.8), transparent);
}

.home-page .hero-description {
    max-width: 560px;
    margin: 26px 0 0;
    color: #a2a3ac;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.68;
    text-wrap: pretty;
}

.home-page .hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-page .button {
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-page .button-primary {
    border: 1px solid #f0f1ff;
    background: #f1f2ff;
    color: #09090b;
    box-shadow: 0 14px 38px rgba(95, 108, 223, 0.16);
}

.home-page .button-primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 18px 42px rgba(117, 129, 244, 0.27);
    transform: translateY(-2px);
}

.home-page .button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.025);
    color: #ececf1;
}

.home-page .button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.065);
    transform: translateY(-2px);
}

.home-page .hero-meta {
    margin-top: 42px;
    padding-top: 19px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.home-page .hero-meta span {
    position: relative;
    padding-left: 12px;
    color: #6e707a;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-page .hero-meta span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #555762;
    transform: translateY(-50%);
}

.home-page .hero-product {
    grid-area: product;
    width: min(100%, 760px);
    aspect-ratio: 1.1;
    position: relative;
    justify-self: end;
    isolation: isolate;
}

.home-page .hero-aura {
    position: absolute;
    z-index: -2;
    inset: 8% 0 12% 8%;
    border-radius: 45%;
    background:
        radial-gradient(circle at 30% 32%, rgba(91, 110, 236, 0.35), transparent 36%),
        radial-gradient(circle at 78% 72%, rgba(45, 177, 210, 0.23), transparent 40%);
    filter: blur(70px);
    opacity: 0.78;
}

.home-page .hero-window {
    position: absolute;
    top: 11%;
    right: 0;
    width: 94%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 25px;
    background: #0b0c11;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.62);
    transform: rotate(-1.6deg);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.home-page .hero-window:hover {
    border-color: rgba(181, 188, 255, 0.3);
    box-shadow: 0 46px 120px rgba(0, 0, 0, 0.68);
    transform: rotate(-0.5deg) translateY(-4px);
}

.home-page .app-chrome {
    height: 48px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0d12;
    color: #70727d;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.13em;
}

.home-page .app-chrome span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-page .hero-window img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1645 / 1017;
    object-fit: contain;
}

.home-page .floating-player {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 9%;
    width: min(74%, 500px);
    min-height: 112px;
    padding: 14px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 45px;
    grid-template-rows: 1fr auto;
    gap: 8px 13px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 21px;
    background: rgba(13, 14, 20, 0.86);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(24px) saturate(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.home-page .floating-cover {
    grid-row: 1 / 3;
    width: 72px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        radial-gradient(circle at 32% 26%, #a4edf6, transparent 26%),
        linear-gradient(135deg, #5e6ee8, #141833 70%);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.home-page .floating-track {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.home-page .floating-track small {
    color: #747681;
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: 0.14em;
}

.home-page .floating-track strong {
    overflow: hidden;
    color: #f0f1f5;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-page .floating-track span {
    color: #777986;
    font-size: 9px;
}

.home-page .floating-play {
    grid-row: 1 / 3;
    grid-column: 3;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3f4f8;
    color: #09090b;
    font-size: 11px;
}

.home-page .floating-progress {
    grid-column: 2;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.home-page .floating-progress span {
    width: 48%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #8c97ff, #70d8ef);
}

.home-page .hero-wave {
    position: absolute;
    right: 4%;
    bottom: 4%;
    width: 36%;
    height: 66px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 5px;
    opacity: 0.5;
}

.home-page .hero-wave i {
    width: 2px;
    height: 45%;
    border-radius: 999px;
    background: linear-gradient(to top, rgba(119, 132, 255, 0.2), #6bd6ed);
    transform-origin: bottom;
    animation: wavePulse 1.8s ease-in-out infinite alternate;
}

.home-page .hero-wave i:nth-child(2n) {
    height: 90%;
    animation-delay: -0.7s;
}

.home-page .hero-wave i:nth-child(3n) {
    height: 34%;
    animation-delay: -1.2s;
}

@keyframes wavePulse {
    from { transform: scaleY(0.42); opacity: 0.45; }
    to { transform: scaleY(1); opacity: 1; }
}

.home-page .hero-scroll {
    grid-area: scroll;
    width: max-content;
    margin-inline: auto;
    display: grid;
    justify-items: center;
    gap: 14px;
    color: #666873;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .hero-scroll i {
    width: 1px;
    height: 50px;
    display: block;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.32), transparent);
}

/* Shared editorial sections */
.home-page .section-shell {
    width: min(100%, 1390px);
    margin-inline: auto;
    padding: 150px 42px;
}

.home-page .light-section,
.home-page .paper-section {
    color-scheme: dark;
    color: #f5f5f8;
}

.home-page .light-section {
    background: var(--paper);
}

.home-page .paper-section {
    background: var(--paper-soft);
}

.home-page .dark-section {
    background: #0b0c10;
    color: #f5f5f7;
}

.home-page .section-topline {
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--light-border);
    color: #777985;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-page .editorial-heading {
    margin-top: 82px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(50px, 8vw, 130px);
    align-items: end;
}

.home-page .editorial-heading h2,
.home-page .story-copy h2,
.home-page .library-heading h2,
.home-page .principles-statement h2,
.home-page .premium-intro h2,
.home-page .download-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.038em;
    text-wrap: balance;
}

.home-page .editorial-heading h2 {
    max-width: 1040px;
    font-size: clamp(58px, 7vw, 102px);
    line-height: 0.94;
}

.home-page .editorial-heading h2 em,
.home-page .principles-statement h2 em {
    display: block;
    color: #8c8e98;
    font-weight: 300;
    font-style: italic;
}

.home-page .editorial-heading p {
    max-width: 410px;
    margin: 0 0 5px;
    color: #9a9ba5;
    font-size: 16px;
    line-height: 1.7;
    text-wrap: pretty;
}

.home-page .product-canvas {
    margin: 92px 0 0;
    overflow: hidden;
    border-radius: 27px;
    background: #0b0c10;
    box-shadow: 0 36px 80px rgba(18, 18, 22, 0.16);
}

.home-page .canvas-toolbar {
    min-height: 58px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #72737c;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.13em;
}

.home-page .product-canvas img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1645 / 1014;
    object-fit: contain;
}

.home-page .product-canvas figcaption,
.home-page .player-frame figcaption {
    min-height: 66px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8c8d95;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Player story */
.home-page .story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: start;
}

.home-page .section-number {
    display: block;
    color: #777985;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .story-copy h2 {
    max-width: 760px;
    margin-top: 42px;
    font-size: clamp(58px, 6.5vw, 94px);
    line-height: 0.94;
}

.home-page .story-copy p {
    max-width: 570px;
    margin: 35px 0 0;
    color: #9a9ba5;
    font-size: 17px;
    line-height: 1.72;
    text-wrap: pretty;
}

.home-page .feature-lines {
    margin: 50px 0 0;
}

.home-page .feature-lines > div {
    min-height: 118px;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    border-top: 1px solid var(--light-border);
}

.home-page .feature-lines > div:last-child {
    border-bottom: 1px solid var(--light-border);
}

.home-page .feature-lines dt {
    color: #777985;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.home-page .feature-lines dd {
    display: grid;
    gap: 7px;
}

.home-page .feature-lines strong {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.home-page .feature-lines span {
    max-width: 390px;
    color: #92939d;
    font-size: 14px;
    line-height: 1.55;
}

.home-page .player-frame {
    margin: 110px 0 0;
    overflow: hidden;
    border-radius: 28px;
    background: #0b0c10;
    box-shadow: 0 36px 90px rgba(18, 18, 22, 0.17);
}

.home-page .player-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1645 / 1017;
    object-fit: contain;
}

/* Library */
.home-page .library-section .section-shell {
    padding-top: 160px;
    padding-bottom: 180px;
}

.home-page .library-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    grid-template-areas:
        "number number"
        "title copy";
    gap: 32px clamp(60px, 9vw, 150px);
    align-items: end;
}

.home-page .library-heading .section-number {
    grid-area: number;
    color: #777985;
}

.home-page .library-heading h2 {
    grid-area: title;
    margin-top: 20px;
    font-size: clamp(62px, 7.2vw, 108px);
    line-height: 0.9;
}

.home-page .library-heading h2 em {
    color: #8e97ff;
    font-weight: 400;
    font-style: normal;
}

.home-page .library-heading p {
    grid-area: copy;
    max-width: 430px;
    margin: 0 0 7px;
    color: #92939d;
    font-size: 16px;
    line-height: 1.72;
    text-wrap: pretty;
}

.home-page .library-stage {
    margin-top: 102px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    gap: 24px;
    align-items: center;
}

.home-page .library-stage figure {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 27px;
    background: #08090c;
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.46);
}

.home-page .library-stage img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1641 / 1016;
    object-fit: contain;
}

.home-page .library-note {
    display: grid;
    gap: 9px;
    color: #a5a6af;
    writing-mode: vertical-rl;
}

.home-page .library-note span {
    color: #61636e;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.16em;
}

.home-page .library-note strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.home-page .library-note-left {
    justify-self: end;
    transform: rotate(180deg);
}

.home-page .library-note-right {
    justify-self: start;
}

/* Principles */
.home-page .principles-section {
    background: var(--paper-muted);
}

.home-page .principles-statement {
    margin-top: 84px;
}

.home-page .principles-statement h2 {
    max-width: 1180px;
    font-size: clamp(58px, 7vw, 102px);
    line-height: 0.94;
}

.home-page .principles-list {
    margin-top: 118px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.home-page .principles-list article {
    min-height: 340px;
    padding: 31px 34px 40px 0;
    display: flex;
    flex-direction: column;
}

.home-page .principles-list article + article {
    padding-left: 34px;
    border-left: 1px solid var(--light-border);
}

.home-page .principles-list article > span {
    color: #777985;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.home-page .principles-list h3 {
    margin: 24px 0 15px;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.home-page .principles-list p {
    max-width: 360px;
    color: #92939d;
    font-size: 14px;
    line-height: 1.65;
}

/* Premium */
.home-page .premium-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 14%, rgba(111, 126, 255, 0.13), transparent 30%),
        radial-gradient(circle at 12% 92%, rgba(67, 196, 224, 0.08), transparent 34%),
        #090a0d;
}

.home-page .premium-section .section-shell {
    padding-top: 154px;
    padding-bottom: 164px;
}

.home-page .premium-intro {
    margin-top: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
    gap: clamp(54px, 9vw, 150px);
    align-items: end;
}

.home-page .premium-intro h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(58px, 7vw, 104px);
    line-height: 0.95;
}

.home-page .premium-intro h2 em {
    color: #9598a8;
    font-weight: 400;
    font-style: normal;
}

.home-page .premium-intro p {
    max-width: 430px;
    margin: 0 0 8px;
    color: #9a9ca8;
    font-size: 16px;
    line-height: 1.72;
    text-wrap: pretty;
}

.home-page .premium-plans {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.home-page .premium-plan {
    min-width: 0;
    min-height: 500px;
    padding: 34px 50px 44px 0;
    display: flex;
    flex-direction: column;
}

.home-page .premium-plan + .premium-plan {
    padding-right: 0;
    padding-left: 50px;
    border-left: 1px solid var(--dark-border);
}

.home-page .premium-plan-featured {
    background: linear-gradient(135deg, rgba(141, 150, 255, 0.07), transparent 58%);
}

.home-page .premium-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #7f818d;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-page .premium-save {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #c2c7ff;
}

.home-page .premium-plan h3 {
    margin: 26px 0 0;
    font-family: var(--font-display);
    font-size: clamp(31px, 3.2vw, 47px);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.home-page .premium-price {
    margin-top: 14px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.home-page .premium-price strong {
    font-family: var(--font-display);
    font-size: clamp(66px, 7vw, 106px);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.055em;
    font-variant-numeric: tabular-nums;
}

.home-page .premium-price span {
    margin-bottom: 7px;
    color: #858793;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-page .premium-plan > p {
    max-width: 430px;
    margin: 25px 0 36px;
    color: #92949f;
    font-size: 15px;
    line-height: 1.66;
}

.home-page .premium-plan > a {
    width: fit-content;
    min-height: 50px;
    margin-top: auto;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #f6f6f8;
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .premium-plan > a:hover {
    border-color: #f6f6f8;
    background: #f6f6f8;
    color: #090a0d;
    transform: translateY(-2px);
}

.home-page .premium-footnote {
    padding-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #737581;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.home-page .premium-footnote a {
    color: #c3c6d2;
    transition: color 180ms ease;
}

.home-page .premium-footnote a:hover {
    color: #fff;
}

/* Download */
.home-page .download-section {
    padding: 0 24px 24px;
    background: var(--paper-muted);
}

.home-page .download-shell {
    width: min(100%, 1390px);
    min-height: 650px;
    margin-inline: auto;
    padding: 82px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: center;
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at 8% 112%, rgba(93, 109, 232, 0.35), transparent 39%),
        radial-gradient(circle at 94% -20%, rgba(68, 189, 216, 0.14), transparent 34%),
        #0b0c10;
    color: #f5f5f8;
    box-shadow: 0 40px 100px rgba(17, 18, 22, 0.18);
}

.home-page .download-copy .section-number {
    color: #767884;
}

.home-page .download-copy h2 {
    max-width: 760px;
    margin-top: 42px;
    font-size: clamp(68px, 7.3vw, 112px);
    line-height: 0.88;
}

.home-page .download-copy p {
    max-width: 430px;
    margin: 32px 0 0;
    color: #92939d;
    font-size: 16px;
    line-height: 1.7;
}

.home-page .download-actions {
    display: grid;
    gap: 12px;
}

.home-page .download-row {
    min-height: 96px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    color: #ececf1;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-page .download-row:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.065);
    transform: translateX(4px);
}

.home-page .download-row-primary {
    background: rgba(140, 151, 255, 0.11);
}

.home-page .download-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: #bdc4ff;
}

.home-page .download-icon svg {
    width: 22px;
    height: 22px;
}

.home-page .telegram-icon {
    color: #78d8eb;
}

.home-page .download-row > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.home-page .download-row strong {
    font-size: 14px;
    font-weight: 600;
}

.home-page .download-row small {
    color: #777985;
    font-size: 10px;
}

.home-page .download-row > i {
    color: #a7a8b0;
    font-style: normal;
    font-size: 18px;
}

/* Footer */
.home-page .site-footer {
    padding: 0 42px max(38px, env(safe-area-inset-bottom));
    border: 0;
    background: var(--paper-muted);
    color-scheme: dark;
    color: #f5f5f8;
}

.home-page .footer-inner {
    width: min(100%, 1306px);
    max-width: none;
    margin-inline: auto;
    padding: 70px 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 54px;
    align-items: start;
    border-top: 1px solid var(--light-border);
}

.home-page .footer-brand .logo {
    color: #f5f5f8;
}

.home-page .footer-brand .logo-mark {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.045);
}

.home-page .footer-brand p {
    margin-top: 18px;
    color: #777985;
    font-size: 12px;
    line-height: 1.65;
}

.home-page .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 22px;
}

.home-page .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #8d8e98;
    font-size: 12px;
    transition: color 180ms ease;
}

.home-page .footer-links a:hover {
    color: #fff;
}

.home-page .footer-bottom {
    grid-column: 1 / -1;
    padding: 22px 0 2px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #656772;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Existing modals */
.home-page .legal-modal {
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 240ms;
}

.home-page .legal-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.home-page .legal-modal-backdrop {
    background: rgba(3, 3, 6, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateZ(0);
    will-change: backdrop-filter;
}

.home-page .mini-install-panel,
.home-page .legal-panel {
    border-color: rgba(255, 255, 255, 0.12);
    background: #0d0e14;
    color: #f5f5f8;
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.7);
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(14px) scale(0.965);
    transform-origin: center;
    transition: opacity 170ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .legal-modal.is-open .mini-install-panel,
.home-page .legal-modal.is-open .legal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-page .mini-tile,
.home-page .legal-section-card {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
}

.home-page .mini-tile {
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-page .legal-close {
    min-width: 44px;
    min-height: 44px;
}

.home-page .mini-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    line-height: 0;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .mini-close svg {
    width: 17px;
    height: 17px;
    display: block;
}

.home-page .mini-install-grid {
    padding-top: 46px;
}

@media (max-width: 1160px) {
    .home-page .hero {
        grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
        column-gap: 36px;
    }

    .home-page .hero-title {
        font-size: clamp(66px, 7.6vw, 92px);
    }

    .home-page .hero-product {
        width: 108%;
    }

    .home-page .download-shell {
        padding: 64px;
    }
}

@media (max-width: 900px) {
    .home-page .nav-center {
        display: none;
    }

    .home-page .mobile-menu {
        display: block;
    }

    .home-page .hero {
        min-height: auto;
        padding-top: 148px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "product"
            "scroll";
        row-gap: 66px;
    }

    .home-page .hero-copy {
        max-width: 760px;
    }

    .home-page .hero-title {
        max-width: 800px;
        font-size: clamp(68px, 11vw, 100px);
    }

    .home-page .hero-product {
        width: min(100%, 760px);
        margin-inline: auto;
        justify-self: center;
    }

    .home-page .editorial-heading,
    .home-page .story-grid,
    .home-page .library-heading,
    .home-page .premium-intro,
    .home-page .download-shell {
        grid-template-columns: 1fr;
    }

    .home-page .editorial-heading {
        align-items: start;
    }

    .home-page .editorial-heading p,
    .home-page .library-heading p,
    .home-page .premium-intro p {
        max-width: 620px;
    }

    .home-page .library-heading {
        grid-template-areas:
            "number"
            "title"
            "copy";
    }

    .home-page .library-stage {
        grid-template-columns: 1fr;
    }

    .home-page .library-note {
        display: none;
    }

    .home-page .principles-list {
        grid-template-columns: 1fr;
    }

    .home-page .principles-list article {
        min-height: 240px;
        padding: 28px 0 34px;
    }

    .home-page .principles-list article + article {
        padding-left: 0;
        border-top: 1px solid var(--light-border);
        border-left: 0;
    }

    .home-page .download-shell {
        min-height: auto;
    }

    .home-page .download-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-page .loader-grid {
        padding: 22px 20px 26px;
    }

    .home-page .loader-header > span:last-child {
        display: none;
    }

    .home-page .loader-stage {
        gap: 24px;
    }

    .home-page .loader-wordmark {
        font-size: clamp(54px, 17vw, 92px);
    }

    .home-page .loader-wave {
        height: 42px;
        gap: 6px;
    }

    .home-page .loader-footer {
        font-size: 8px;
    }

    .home-page .navbar,
    .home-page .navbar.scrolled {
        padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
    }

    .home-page .nav-inner {
        min-height: 62px;
        padding-left: 11px;
    }

    .home-page .nav-cta {
        display: none;
    }

    .home-page .hero,
    .home-page .section-shell {
        padding-inline: 20px;
    }

    .home-page .hero {
        padding-top: 128px;
        padding-bottom: 74px;
    }

    .home-page .hero-title {
        font-size: clamp(54px, 15.6vw, 78px);
        line-height: 0.84;
    }

    .home-page .hero-tagline {
        font-size: 7px;
        letter-spacing: 0.11em;
    }

    .home-page .hero-tagline::before,
    .home-page .hero-tagline::after {
        width: 22px;
        margin-right: 8px;
    }

    .home-page .hero-tagline::after {
        margin-right: 0;
        margin-left: 8px;
    }

    .home-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page .button {
        width: 100%;
    }

    .home-page .hero-product {
        width: 116%;
        margin-left: -8%;
        margin-right: -8%;
        aspect-ratio: 0.98;
    }

    .home-page .hero-window {
        width: 96%;
    }

    .home-page .floating-player {
        left: 5%;
        width: 84%;
        grid-template-columns: 60px minmax(0, 1fr) 40px;
    }

    .home-page .floating-cover {
        width: 60px;
    }

    .home-page .floating-play {
        width: 40px;
        height: 40px;
    }

    .home-page .hero-wave {
        display: none;
    }

    .home-page .section-shell {
        padding-top: 104px;
        padding-bottom: 104px;
    }

    .home-page .section-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .home-page .editorial-heading,
    .home-page .principles-statement {
        margin-top: 60px;
    }

    .home-page .editorial-heading h2,
    .home-page .story-copy h2,
    .home-page .library-heading h2,
    .home-page .principles-statement h2,
    .home-page .premium-intro h2 {
        font-size: clamp(46px, 13vw, 66px);
        line-height: 0.96;
    }

    .home-page .product-canvas,
    .home-page .player-frame {
        margin-top: 62px;
        border-radius: 18px;
    }

    .home-page .canvas-toolbar {
        min-height: 50px;
        padding-inline: 14px;
        font-size: 7px;
    }

    .home-page .product-canvas figcaption,
    .home-page .player-frame figcaption {
        min-height: 58px;
        padding-inline: 14px;
        font-size: 7px;
    }

    .home-page .story-grid {
        gap: 32px;
    }

    .home-page .feature-lines {
        margin-top: 12px;
    }

    .home-page .library-section .section-shell {
        padding-top: 110px;
        padding-bottom: 120px;
    }

    .home-page .library-stage {
        margin-top: 62px;
    }

    .home-page .library-stage figure {
        border-radius: 18px;
    }

    .home-page .principles-list {
        margin-top: 72px;
    }

    .home-page .premium-section .section-shell {
        padding-top: 108px;
        padding-bottom: 112px;
    }

    .home-page .premium-intro {
        margin-top: 60px;
    }

    .home-page .premium-plans {
        margin-top: 70px;
        grid-template-columns: 1fr;
    }

    .home-page .premium-plan,
    .home-page .premium-plan + .premium-plan {
        min-height: 430px;
        padding: 30px 0 38px;
    }

    .home-page .premium-plan + .premium-plan {
        border-top: 1px solid var(--dark-border);
        border-left: 0;
    }

    .home-page .premium-footnote {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-page .download-section {
        padding: 0 12px 12px;
    }

    .home-page .download-shell {
        padding: 46px 26px;
        border-radius: 26px;
    }

    .home-page .download-copy h2 {
        font-size: clamp(58px, 15vw, 76px);
    }

    .home-page .download-actions {
        grid-template-columns: 1fr;
    }

    .home-page .site-footer {
        padding-inline: 20px;
    }

    .home-page .footer-inner {
        padding-top: 54px;
        grid-template-columns: 1fr;
    }

    .home-page .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .home-page .logo-text {
        font-size: 16px;
    }

    .home-page .hero-title {
        font-size: clamp(50px, 15.2vw, 65px);
    }

    .home-page .hero-description {
        font-size: 15px;
    }

    .home-page .hero-meta {
        gap: 9px 16px;
    }

    .home-page .app-chrome {
        height: 42px;
        padding-inline: 12px;
        font-size: 6px;
    }

    .home-page .floating-player {
        min-height: 94px;
        padding: 11px;
        grid-template-columns: 52px minmax(0, 1fr) 36px;
    }

    .home-page .floating-cover {
        width: 52px;
        font-size: 13px;
    }

    .home-page .floating-play {
        width: 36px;
        height: 36px;
    }

    .home-page .floating-track strong {
        font-size: 10px;
    }

    .home-page .editorial-heading h2,
    .home-page .story-copy h2,
    .home-page .library-heading h2,
    .home-page .principles-statement h2,
    .home-page .premium-intro h2 {
        font-size: 45px;
    }

    .home-page .premium-price strong {
        font-size: 64px;
    }

    .home-page .canvas-toolbar span:last-child,
    .home-page .product-canvas figcaption span:last-child,
    .home-page .player-frame figcaption span:last-child {
        display: none;
    }

    .home-page .download-row {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        min-height: 88px;
    }

    .home-page .download-icon {
        width: 48px;
        height: 48px;
    }

    .home-page .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

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

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