:root {
    --topTextMinSize: 17px;
    --topRadius: 28px;
    --topInstallGap: 36px;
    --topInstallInsetBottom: calc(12px + env(safe-area-inset-bottom));
    --topSectionGap: 18px;
    --topHeroGap: 82px;
    --topSectionPaddingX: 24px;
    --topSectionPaddingY: 38px;
    --topHeroTitleSize: 48px;
    --topHeroLeadSize: 14px;
    --topHeroTextGap: 12px;
    --topSectionHeadingSize: 27px;
    --topSectionTextSize: 17px;
    --topInstallLabelSize: 17px;
    --topTallImageWidth: 475px;
    --topHalfImageWidth: 475px;
    --topSplitTextColumnWidth: 372px;
    --topSplitTextInset: 40px;
    --topCropImageOffsetRight: 32px;
    --topIntervalImageWidth: 516px;
    --topIntervalStageHeight: 780px;
    --topShareStageHeight: 1100px;
}

body.topPageLoading {
    overflow: hidden;
}

body.topPageLoading>*:not(.topLoadingScreen) {
    visibility: hidden;
}

body.topPageLoaded>*:not(.topLoadingScreen) {
    visibility: visible;
}

.topLoadingScreen {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

body.topPageLoaded .topLoadingScreen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.topLoadingBar {
    position: relative;
    width: min(180px, calc(100vw - 96px));
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.14);
}

.topLoadingBar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    border-radius: inherit;
    background: rgba(23, 23, 23, 0.82);
    transform: translateX(-140%);
    animation: topLoadingBarLoop 1s linear infinite;
}

@keyframes topLoadingBarLoop {
    from {
        transform: translateX(-140%);
    }
    to {
        transform: translateX(340%);
    }
}

.contentTop {
    display: block;
    padding-bottom: 12px;
}

.contentTop>*+* {
    margin-top: var(--topSectionGap);
}

body.installModalOpen {
    overflow: hidden;
}

.installPillSticky {
    position: fixed;
    left: 50%;
    bottom: var(--topInstallInsetBottom);
    z-index: 40;
    width: min(calc(100% - 6px), var(--max-width));
    margin-top: 0;
    transform: translateX(-50%);
    overflow: hidden;
}

.installPill {
    width: 100%;
    height: var(--bottomBarHeight);
    display: block;
    margin: 0 auto;
    padding: 0 24px;
    border-radius: var(--topRadius);
    border: 1px solid var(--line-color);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    overflow: hidden;
    text-decoration: none;
    color: var(--primary-color);
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.18s ease;
}

.topInstallSpacer {
    height: calc(var(--bottomBarHeight) + var(--topInstallInsetBottom));
    margin-top: 0;
}

.installPillTrack {
    --pill-cycle-distance: 180px;
    --pill-duration: 6s;
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: var(--topInstallGap);
    width: max-content;
    height: 100%;
    white-space: nowrap;
    animation: installPillMarquee var(--pill-duration) linear infinite;
    will-change: transform;
}

.installPillTrack.isStatic {
    animation: none;
}

.installPillLabel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: var(--topInstallGap);
    height: 100%;
    padding: 0;
    font-size: max(var(--topTextMinSize), var(--topInstallLabelSize));
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.installPillIcon {
    font-size: 22px;
    color: var(--primary-color);
    transition: opacity 0.25s ease;
}

.installPill:visited,
.installPill:hover,
.installPill:active {
    color: var(--primary-color);
    text-decoration: none;
}

.installPill:hover,
.installPill:focus-visible {
    border-color: rgba(23, 23, 23, 0.8);
    text-decoration: none;
}

.installPill:hover .installPillLabel,
.installPill:hover .installPillIcon,
.installPill:focus-visible .installPillLabel,
.installPill:focus-visible .installPillIcon {
    opacity: 0.25;
}

@keyframes installPillMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--pill-cycle-distance)));
    }
}

.installModal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.installModal.isOpen {
    opacity: 1;
    pointer-events: auto;
}

.installModalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 23, 23, 0.25);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.installModalDialog {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    padding: 24px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: var(--topRadius);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(23, 23, 23, 0.18);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.installModal.isOpen .installModalDialog {
    opacity: 1;
    transform: translateY(0);
}

.installModalClose {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    cursor: pointer;
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.installModalClose:hover,
.installModalClose:focus-visible {
    border-color: rgba(23, 23, 23, 0.5);
    opacity: 0.8;
}

.installModalBody {
    display: flex;
    flex-direction: column;
}

.installModalTitle {
    margin: 0;
    font-size: var(--topSectionHeadingSize);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.installModalAssets {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.installModalQrWrap {
    width: 100%;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
}

.installModalQr {
    width: min(100%, 280px);
    height: auto;
    object-fit: contain;
}

.installModalQrFallback {
    margin: 0;
    font-size: var(--topSectionTextSize);
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color);
    text-align: center;
}

.installModalStoreLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.installModalStoreBadge {
    display: block;
    width: min(100%, 170px);
    height: auto;
    padding-bottom: 4px;
}

.siteFooter {
    margin-bottom: Calc(var(--bottomBarHeight) + 24px);
}

.siteDate {
    font-size: max(var(--topTextMinSize), calc(24px - 7px * var(--header-progress)));
}

.topHeroImage,
.topTallImage,
.topCropImage,
.topIntervalImage,
.topShareBackdropImage,
.topShareForegroundImage {
    display: block;
}

.topHero {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(360px, 410px) minmax(0, var(--topTallImageWidth));
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 var(--topSectionPaddingX) 46px;
}

.topHeroCopy {
    display: flex;
    flex-direction: column;
    gap: var(--topHeroTextGap);
    max-width: none;
}

.topHeroTitle {
    margin: 0;
    font-size: var(--topHeroTitleSize);
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
}

.topHeroLead {
    margin: 0;
    font-size: max(var(--topTextMinSize), var(--topHeroLeadSize));
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
}

.topHeroVisual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topHeroImage,
.topTallImage,
.topShareForegroundImage {
    width: min(100%, var(--topTallImageWidth));
    height: auto;
}

.topPanel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--topRadius);
}

.topPanelOutlined {
    padding: var(--topSectionPaddingY) var(--topSectionPaddingX) 48px;
    border: 1px solid var(--line-color);
    background: var(--surface-bg);
}

.topPanelSoft {
    background: #f4f3f1;
}

.topPanelDark {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 38%), #181818;
    border-color: #181818;
    color: #ffffff;
}

.topPanelShare {
    border: 1px solid var(--line-color);
    background: #fbfaf8;
}

.topPanelHeader {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.topPanelHeaderCentered {
    align-items: center;
    padding-bottom: 34px;
    text-align: center;
}

.topPanelHeaderSide {
    padding-left: var(--topSplitTextInset);
}

.topPanelTitle {
    margin: 0;
    font-size: var(--topSectionHeadingSize);
    font-weight: 700;
    line-height: 1.3;
}

.topPanelBody {
    margin: 0;
    font-size: var(--topSectionTextSize);
    font-weight: 400;
    line-height: 1.65;
    color: var(--secondary-color);
}

.topPanelVisualCentered {
    display: flex;
    justify-content: center;
}

.topPanelSplit {
    display: grid;
    grid-template-columns: minmax(0, var(--topSplitTextColumnWidth)) minmax(0, 1fr);
    align-items: center;
    min-height: 485px;
}

.topCropStage {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 485px;
    overflow: hidden;
    margin-bottom: 24px;
}

.topCropImage {
    width: min(100%, var(--topHalfImageWidth));
    height: auto;
    margin-right: var(--topCropImageOffsetRight);
}

.topPanelBar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 26px var(--topSectionPaddingX) 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.topPanelBarTitle {
    margin: 0;
    flex: 0 0 auto;
    font-size: var(--topSectionHeadingSize);
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.topPanelBarMeta {
    margin: 0;
    flex: 1 1 auto;
    max-width: none;
    font-size: var(--topSectionTextSize);
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    white-space: nowrap;
}

.topPanelBarLight {
    border-bottom-color: rgba(23, 23, 23, 0.92);
}

.topPanelBarLight .topPanelBarMeta {
    color: var(--secondary-color);
}

.topIntervalStage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--topIntervalStageHeight);
    overflow: hidden;
}

.topIntervalImage {
    width: min(100%, var(--topIntervalImageWidth));
    height: auto;
    transform: translateY(-18px);
}

.topShareStage {
    position: relative;
    min-height: var(--topShareStageHeight);
    overflow: hidden;
}

.topShareGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topShareBackdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.topShareBackdropImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.topShareForeground {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 108px 0 54px;
}

.topShareNote {
    align-self: flex-end;
    margin: 0;
    padding-right: 12px;
    max-width: min(360px, calc(100% - (var(--topSectionPaddingX) * 2)));
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--primary-color);
    opacity: 0.25;
    text-align: right;
}

@media (min-width: 1001px) {
     :root {
        --topSectionGap: 50px;
    }
}

@media (max-width: 1000px) {
     :root {
        --topHeroGap: 48px;
        --topInstallGap: 12px;
        --topSectionPaddingX: 28px;
        --topSectionPaddingY: 32px;
        --topHeroTitleSize: 24px;
        --topHeroLeadSize: 13px;
        --topHeroTextGap: 12px;
        --topSectionHeadingSize: 17px;
        --topSectionTextSize: 15px;
        --topTallImageWidth: 390px;
        --topHalfImageWidth: 382px;
        --topIntervalImageWidth: 446px;
        --topIntervalStageHeight: 660px;
        --topShareStageHeight: 900px;
    }
    .contentTop {
        padding-bottom: 10px;
    }
    .installPillSticky {
        width: min(calc(100% - (var(--content-inline) * 2)), var(--max-width));
    }
    .topHero {
        grid-template-columns: minmax(320px, 1fr) minmax(0, var(--topTallImageWidth));
        gap: 28px;
        padding-bottom: 34px;
    }
    .topPanelSplit {
        grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
        min-height: 390px;
    }
    .topCropStage {
        min-height: 390px;
    }
    .topCropImage {
        margin-right: 12px;
    }
    .topShareForeground {
        padding-top: 94px;
    }
    .topPanelSplit {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .topPanelHeaderSide {
        order: 2;
        max-width: none;
        padding: 0 var(--topSectionPaddingX) var(--topSectionPaddingY);
    }
    .topCropStage {
        order: 1;
        justify-content: center;
        min-height: auto;
    }
    .topCropImage {
        margin-right: 0;
    }
    .topPanelBar {
        flex-direction: column;
        gap: 18px;
    }
    .topHeroLead,
    .installPillLabel {
        font-size: 15px;
    }
    .siteDate {
        font-size: calc(20px - 8px * var(--header-progress));
    }
    .topShareNote {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
     :root {
        --topSectionGap: 48px;
        --topHeroGap: 24px;
        --topInstallGap: 10px;
        --topSectionPaddingX: 22px;
        --topSectionPaddingY: 24px;
        --topHeroTitleSize: 24px;
        --topHeroLeadSize: 13px;
        --topHeroTextGap: 12px;
        --topSectionHeadingSize: 17px;
        --topSectionTextSize: 12px;
        --topInstallLabelSize: 14px;
        --topTallImageWidth: 320px;
        --topHalfImageWidth: 314px;
        --topIntervalImageWidth: 360px;
        --topIntervalStageHeight: 520px;
        --topShareStageHeight: 740px;
    }
    .contentTop {
        padding-bottom: 10px;
    }
    .contentTop .subpageHeaderSpacer {
        height: calc(var(--header-offset) * 0.9);
    }
    .topHero {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding: 0 0 10px;
        text-align: center;
    }
    .topHeroCopy {
        max-width: 100%;
    }
    .topHeroVisual {
        justify-content: center;
    }
    .installPill {
        padding: 0 16px;
    }
    .installPillIcon {
        font-size: 18px;
    }
    .topPanelOutlined {
        padding-bottom: 34px;
        padding-top: 36px;
    }
    .topPanelHeaderCentered {
        gap: 8px;
        padding-bottom: 18px;
    }
    .topPanelHeaderSide {
        padding: 0 var(--topSectionPaddingX) Calc(var(--topSectionPaddingY) * 2);
    }
    .topCropStage {
        min-height: auto;
    }
    .topPanelBar {
        gap: 18px;
    }
    .topPanelBarTitle {
        margin-bottom: 0;
    }
    .topHeroTitle,
    .topPanelBarTitle,
    .topPanelBarMeta {
        white-space: normal;
    }
    .topPanelBarMeta {
        max-width: none;
        flex: none;
        margin-top: 0;
        text-align: left;
    }
    .topPanelBarLight,
    .topPanelDark {
        --topBarContentGap: 8px;
    }
    .topPanelBar {
        gap: var(--topBarContentGap);
    }
    .topIntervalImage {
        transform: translateY(-10px);
    }
    .topShareForeground {
        padding-top: 110px;
        padding-bottom: 28px;
    }
    .topShareBackdropImage {
        object-position: left top;
    }
    .topShareNote {
        align-self: center;
        padding-right: 0;
        max-width: none;
        text-align: center;
        white-space: nowrap;
    }
    .installModal {
        display: none;
    }
    .siteDate {
        font-size: calc(18px - 2px * var(--header-progress));
        line-height: 1.5;
    }
    .topHeroLead,
    .installPillLabel {
        font-size: 12px;
    }
    .topShareNote {
        font-size: 10px;
    }
}

@media (max-width: 425px) {
     :root {
        --topSectionGap: 47px;
        --topInstallGap: 8px;
        --topSectionPaddingX: 18px;
        --topSectionPaddingY: 20px;
        --topHeroTitleSize: 24px;
        --topHeroLeadSize: 12px;
        --topHeroTextGap: 12px;
        --topInstallLabelSize: 12px;
        --topTallImageWidth: 270px;
        --topHalfImageWidth: 268px;
        --topIntervalImageWidth: 304px;
        --topIntervalStageHeight: 430px;
        --topShareStageHeight: 620px;
    }
    .contentTop {
        padding-bottom: 8px;
    }
    .installPill {
        padding: 0 12px;
    }
    .installPillIcon {
        font-size: 16px;
    }
    .topHero {
        gap: 18px;
    }
    .topPanelOutlined {
        padding-bottom: 28px;
        padding-top: 36px;
    }
    .topPanelBar {
        padding: 24px var(--topSectionPaddingX) 20px;
    }
    .topCropStage {
        min-height: 270px;
        margin-bottom: 0;
    }
    .topPanelSplit {
        gap: 24px;
    }
    .topShareForeground {
        padding-top: 96px;
    }
    .topShareNote {
        max-width: none;
    }
    .topLoadingBar {
        width: min(156px, calc(100vw - 72px));
    }
}
