@charset "UTF-8";
:root {
    --ink: #080b10;
    --ink-soft: #171b24;
    --paper: #fffdf7;
    --white: #ffffff;
    --cloud: #f5f6f8;
    --blush: #fff0f3;
    --pink: #f52b68;
    --pink-deep: #d81755;
    --yellow: #ffd41f;
    --yellow-deep: #b48700;
    --blue: #287cf5;
    --text: #11141a;
    --muted: #686d78;
    --line: #d9d9dc;
    --green: #15956d;
    --container: 1200px;
    --header-height: 74px;
    --radius: 14px;
    --shadow: 6px 7px 0 rgba(8, 11, 16, 0.92);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.no-scroll {
    overflow: hidden;
}
button,
a {
    -webkit-tap-highlight-color: transparent;
}
button,
input,
textarea,
select {
    font: inherit;
}
button {
    border: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
    margin-top: 0;
}
ul,
ol {
    padding: 0;
}
[hidden] {
    display: none !important;
}
.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--pink);
    border: 2px solid var(--ink);
    transform: translateY(-150%);
}
.skip-link:focus {
    transform: translateY(0);
}
.ui-icon {
    width: 1.1em;
    height: 1.1em;
    display: inline-flex;
    flex: 0 0 auto;
    color: currentColor;
}
.ui-icon::before {
    width: 100%;
    height: 100%;
    content: "";
    background: currentColor;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}
.icon-download {
    --icon: url("../icons/download.svg");
}
.icon-arrow {
    --icon: url("../icons/arrow.svg");
}
.icon-play {
    --icon: url("../icons/play.svg");
}
.icon-grid {
    --icon: url("../icons/grid.svg");
}
.icon-history {
    --icon: url("../icons/history.svg");
}
.icon-search {
    --icon: url("../icons/search.svg");
}
.icon-menu {
    --icon: url("../icons/menu.svg");
}
.icon-close {
    --icon: url("../icons/close.svg");
}
.icon-broadcast {
    --icon: url("../icons/broadcast.svg");
}
.icon-mood {
    --icon: url("../icons/mood.svg");
}
.icon-bolt {
    --icon: url("../icons/bolt.svg");
}
.icon-smile {
    --icon: url("../icons/smile.svg");
}
.icon-crown {
    --icon: url("../icons/crown.svg");
}
.icon-city {
    --icon: url("../icons/city.svg");
}
.icon-train {
    --icon: url("../icons/train.svg");
}
.icon-cup {
    --icon: url("../icons/cup.svg");
}
.icon-moon {
    --icon: url("../icons/moon.svg");
}
.icon-device {
    --icon: url("../icons/device.svg");
}
.icon-user {
    --icon: url("../icons/user.svg");
}
.icon-chevron {
    --icon: url("../icons/chevron.svg");
}
.button {
    min-height: 46px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid var(--ink);
    border-radius: 6px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover {
    transform: translate(-2px, -2px);
}
.button:active,
.button.is-activated {
    transform: translate(4px, 5px);
    box-shadow: none;
}
.button--yellow {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 4px 5px 0 var(--ink);
}
.button--yellow:hover {
    background: #ffe15b;
}
.button--pink {
    color: var(--ink);
    background: var(--pink);
    box-shadow: 5px 6px 0 var(--ink);
}
.button--pink:hover {
    color: var(--white);
    background: var(--pink-deep);
}
.button--outline {
    color: var(--ink);
    background: transparent;
}
.button--outline:hover {
    color: var(--white);
    background: var(--ink);
}
.button--large {
    min-height: 54px;
    padding-inline: 29px;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 2px solid var(--ink);
    backdrop-filter: blur(14px);
}
.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 27px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.04em;
}
.brand img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border: 2px solid var(--ink);
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--yellow);
}
.site-nav {
    margin-left: auto;
}
.site-nav ul {
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
}
.site-nav a {
    position: relative;
    padding: 24px 12px 22px;
    display: block;
    color: #383b43;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.site-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 13px;
    left: 12px;
    height: 4px;
    content: "";
    background: var(--pink);
    transform: scaleX(0);
    transition: transform 160ms ease;
}
.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}
.header-download {
    min-height: 41px;
    padding: 9px 17px;
    font-size: 14px;
}
.nav-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--cloud);
    border: 2px solid var(--ink);
    border-radius: 6px;
    cursor: pointer;
}
.hero {
    position: relative;
    min-height: 660px;
    background: linear-gradient(107deg, var(--paper) 0 49%, var(--ink) 49.15% 100%);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.hero::before {
    position: absolute;
    top: 35px;
    left: 6.5%;
    width: 100px;
    height: 100px;
    content: "";
    opacity: 0.5;
    background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
    background-size: 12px 12px;
}
.hero__rail {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 3;
    width: 62px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    color: var(--white);
    background: var(--pink);
    border-right: 2px solid var(--ink);
}
.hero__rail > .ui-icon {
    width: 22px;
    height: 22px;
    margin-top: 30px;
}
.hero__rail span {
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}
.hero__rail b {
    width: 34px;
    height: 105px;
    margin-top: auto;
    margin-bottom: 27px;
    background: repeating-linear-gradient(90deg, var(--white) 0 4px, transparent 4px 8px);
}
.hero__grid {
    min-height: 660px;
    padding-left: 48px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
}
.hero__copy {
    position: relative;
    z-index: 2;
    padding: 70px 45px 62px 0;
}
.eyebrow {
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
}
.hero h1 {
    margin-bottom: 23px;
    color: var(--ink);
    font-size: clamp(48px, 5.2vw, 75px);
    line-height: 1.02;
    letter-spacing: -0.07em;
}
.hero h1::after {
    width: 230px;
    height: 10px;
    margin-top: 10px;
    display: block;
    content: "";
    background: linear-gradient(170deg, transparent 15%, var(--pink) 17% 70%, transparent 72%);
}
.hero__lead {
    max-width: 490px;
    margin-bottom: 30px;
    color: #3f424a;
    font-size: 16px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero__features {
    margin: 45px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}
.hero__features li {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}
.hero__features li + li {
    border-left: 1px solid var(--ink);
}
.hero__features .ui-icon {
    width: 27px;
    height: 27px;
    color: var(--pink);
}
.hero__features li:nth-child(2) .ui-icon {
    color: #d3a500;
}
.hero__features li:nth-child(3) .ui-icon {
    color: var(--blue);
}
.hero__features strong,
.hero__features span {
    display: block;
}
.hero__features strong {
    font-size: 13px;
}
.hero__features span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}
.hero__stage {
    position: relative;
    min-height: 620px;
    color: var(--white);
}
.signal-lines {
    position: absolute;
    top: 58px;
    right: -7%;
    width: 180px;
    height: 80px;
    background: repeating-linear-gradient(180deg, var(--pink) 0 2px, transparent 2px 12px);
}
.signal-lines::after {
    position: absolute;
    top: 170px;
    right: 0;
    width: 150px;
    height: 130px;
    content: "";
    opacity: 0.72;
    background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
    background-size: 13px 13px;
}
.program-numbers {
    position: absolute;
    top: 135px;
    right: -2%;
    z-index: 5;
    display: grid;
    gap: 12px;
}
.program-numbers span {
    width: 70px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--pink);
    border: 2px solid var(--white);
    font-size: 29px;
    font-style: italic;
    font-weight: 950;
}
.hero-phone {
    position: absolute;
    overflow: hidden;
    background: #06080d;
    border: 5px solid #353942;
    border-radius: 30px;
    box-shadow: 16px 20px 0 rgba(255, 212, 31, 0.15), 0 25px 60px rgba(0, 0, 0, 0.55);
}
.hero-phone::before {
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 2;
    width: 42%;
    height: 12px;
    content: "";
    background: #12151b;
    border-radius: 0 0 9px 9px;
    transform: translateX(-50%);
}
.hero-phone img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-phone--main {
    top: 28px;
    left: 31%;
    z-index: 4;
    width: 252px;
    height: 510px;
}
.hero-phone--left {
    top: 93px;
    left: 10%;
    z-index: 2;
    width: 215px;
    height: 435px;
    opacity: 0.8;
    transform: rotate(-2deg);
}
.hero-phone--right {
    top: 85px;
    left: 58%;
    z-index: 3;
    width: 220px;
    height: 445px;
    opacity: 0.82;
    transform: rotate(3deg);
}
.hero-play {
    position: absolute;
    bottom: 95px;
    left: 15%;
    z-index: 6;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    clip-path: polygon(10% 0, 100% 50%, 10% 100%);
}
.hero-play .ui-icon {
    width: 32px;
    height: 32px;
    margin-left: -8px;
}
.section {
    padding: 98px 0;
}
.section-heading {
    margin-bottom: 42px;
}
.section-heading--split {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 70px;
}
.section-heading--center {
    max-width: 740px;
    margin-inline: auto;
    text-align: center;
}
.section-heading h2,
.mood-map h2,
.faq h2 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.15;
    letter-spacing: -0.055em;
}
.section-heading > p,
.section-heading--split > p,
.mood-map__selector > p:last-of-type,
.faq__intro > p:last-of-type {
    color: var(--muted);
}
.interface {
    background:
        linear-gradient(90deg, transparent 0 50%, rgba(40, 124, 245, 0.035) 50%),
        var(--white);
}
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.screenshot-card {
    min-width: 0;
    padding: 0 12px 18px;
    background: var(--cloud);
    border: 1px solid #e5e5e8;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.screenshot-card:hover {
    z-index: 2;
    box-shadow: var(--shadow);
    transform: translate(-4px, -5px);
}
.screenshot-card__label {
    height: 48px;
    margin: 0 -12px 13px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    background: var(--pink);
    border-bottom: 2px solid var(--ink);
}
.screenshot-card--yellow .screenshot-card__label {
    color: var(--ink);
    background: var(--yellow);
}
.screenshot-card--blue .screenshot-card__label {
    background: var(--blue);
}
.screenshot-card__label span {
    font-size: 15px;
    font-weight: 950;
}
.screenshot-card__label strong {
    font-size: 16px;
}
.screenshot-card__media {
    position: relative;
    width: 100%;
    padding: 0;
    display: block;
    aspect-ratio: 554 / 1120;
    overflow: hidden;
    background: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 24px;
    cursor: zoom-in;
}
.screenshot-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.screenshot-card__media > span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}
.screenshot-card:hover .screenshot-card__media > span,
.screenshot-card__media:focus-visible > span {
    opacity: 1;
    transform: none;
}
.screenshot-card > p {
    margin: 16px 4px 0;
    color: #4e535f;
    font-size: 13px;
    text-align: center;
}
.mood-map {
    padding: 24px 0;
    background: var(--pink);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}
.mood-map__board {
    padding: 20px;
    display: grid;
    grid-template-columns: 0.63fr 1.35fr 0.82fr;
    gap: 18px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 17px;
    box-shadow: 8px 8px 0 rgba(8, 11, 16, 0.38);
}
.mood-map__selector {
    padding: 8px 4px;
}
.mood-map h2 {
    font-size: 36px;
}
.mood-map__selector > p:last-of-type {
    font-size: 13px;
}
.mood-tabs {
    margin-top: 24px;
    display: grid;
    gap: 4px;
}
.mood-tabs button {
    min-height: 45px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
    cursor: pointer;
}
.mood-tabs button:hover,
.mood-tabs button.is-active {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}
.mood-tabs .ui-icon {
    width: 24px;
    height: 24px;
    padding: 4px;
    color: var(--pink);
    background: var(--white);
    border-radius: 50%;
}
.mood-tabs button:nth-child(3) .ui-icon {
    color: var(--yellow-deep);
}
.mood-tabs button:nth-child(4) .ui-icon {
    color: var(--blue);
}
.mood-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--ink);
}
.mood-card {
    position: relative;
    min-height: 190px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--ink);
}
.mood-card p {
    margin-bottom: 4px;
    font-size: 12px;
}
.mood-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 24px;
}
.mood-card > .ui-icon {
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 90px;
    height: 90px;
    opacity: 0.17;
}
.mood-card.is-muted {
    opacity: 0.24;
}
.mood-card.is-selected {
    outline: 5px solid var(--yellow);
    outline-offset: -7px;
}
.mood-card--turn {
    background: linear-gradient(145deg, #fff 0 50%, #ffbdd0 50%);
}
.mood-card--relax {
    background: var(--yellow);
}
.mood-card--costume {
    color: #113879;
    background: linear-gradient(145deg, #dcecff, #f9fcff);
}
.mood-card--city {
    color: #8a1237;
    background: #ffd8e4;
}
.mood-focus {
    padding: 27px;
    color: var(--white);
    background: var(--ink);
    border-radius: 10px;
}
.mood-focus > p {
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.mood-focus h3 {
    margin-bottom: 22px;
    color: var(--yellow);
    font-size: 25px;
    line-height: 1.24;
}
.mood-focus ul {
    margin: 0 0 25px;
    list-style: none;
}
.mood-focus li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #d2d3d6;
    border-bottom: 1px solid #343741;
    font-size: 13px;
}
.mood-focus li::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 17px;
    height: 17px;
    content: "✓";
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}
.mood-focus > span {
    display: block;
    color: #a8abb3;
    font-size: 12px;
}
.moments {
    background:
        radial-gradient(circle at 90% 15%, rgba(245, 43, 104, 0.07), transparent 24%),
        var(--paper);
}
.moments__layout {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 45px;
    align-items: stretch;
}
.scene-list {
    display: grid;
    gap: 14px;
}
.scene-card {
    position: relative;
    min-height: 108px;
    padding: 17px 24px;
    display: grid;
    grid-template-columns: 62px 1fr auto;
    align-items: center;
    gap: 18px;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.scene-card::after {
    position: absolute;
    right: -33px;
    top: 50%;
    width: 31px;
    height: 2px;
    content: "";
    background: var(--pink);
}
.scene-card:hover,
.scene-card.is-active {
    box-shadow: 6px 6px 0 var(--pink);
    transform: translate(-3px, -3px);
}
.scene-card:nth-child(2):hover,
.scene-card:nth-child(2).is-active {
    box-shadow-color: var(--yellow);
}
.scene-card:nth-child(3):hover,
.scene-card:nth-child(3).is-active {
    box-shadow-color: var(--blue);
}
.scene-card > .ui-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
    color: var(--white);
    background: var(--pink);
    border: 2px solid var(--ink);
    border-radius: 50%;
}
.scene-card:nth-child(2) > .ui-icon {
    color: var(--ink);
    background: var(--yellow);
}
.scene-card:nth-child(3) > .ui-icon {
    background: var(--blue);
}
.scene-card strong,
.scene-card small {
    display: block;
}
.scene-card strong {
    font-size: 20px;
}
.scene-card small {
    color: var(--muted);
}
.scene-card b {
    min-width: 165px;
    font-size: 14px;
}
.scene-stage {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border: 2px solid var(--ink);
}
.scene-stage__wave {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 90px;
    opacity: 0.36;
    background: repeating-linear-gradient(90deg, var(--pink) 0 2px, transparent 2px 10px);
    clip-path: polygon(0 50%, 5% 42%, 10% 60%, 15% 25%, 20% 65%, 25% 42%, 30% 55%, 35% 18%, 40% 70%, 45% 48%, 50% 56%, 55% 30%, 60% 67%, 65% 40%, 70% 55%, 75% 23%, 80% 70%, 85% 45%, 90% 59%, 95% 35%, 100% 50%, 100% 53%, 0 53%);
}
.scene-stage__phone {
    position: relative;
    z-index: 2;
    width: 165px;
    height: 334px;
    margin: 25px 0 0 35px;
    overflow: hidden;
    border: 5px solid #3b3e46;
    border-radius: 25px;
    box-shadow: 8px 8px 0 var(--yellow);
}
.scene-stage__phone img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.scene-stage__copy {
    position: relative;
    z-index: 2;
    padding: 30px;
}
.scene-stage__copy p {
    margin-bottom: 4px;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.scene-stage__copy h3 {
    margin-bottom: 10px;
    font-size: 27px;
}
.scene-stage__copy span {
    color: #c8cad0;
    font-size: 13px;
}
.status {
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0, rgba(245, 43, 104, 0.18), transparent 28%),
        var(--ink);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}
.status__heading {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}
.status__heading span {
    height: 2px;
    background: var(--white);
}
.status__heading h2 {
    margin: 0;
    font-size: 38px;
}
.status__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
}
.status-panel {
    min-width: 0;
    padding: 32px;
}
.status-panel + .status-panel {
    border-left: 1px solid var(--line);
}
.status-panel h3 {
    margin-bottom: 24px;
    font-size: 28px;
}
.version-list {
    position: relative;
    margin: 0;
    list-style: none;
}
.version-list::before {
    position: absolute;
    top: 8px;
    bottom: 15px;
    left: 7px;
    width: 2px;
    content: "";
    background: #ffadc5;
}
.version-list li {
    position: relative;
    padding: 0 0 18px 29px;
}
.version-list li > span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--pink);
    border: 4px solid #ffe6ed;
    border-radius: 50%;
}
.version-list strong {
    display: block;
    font-size: 14px;
}
.version-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 12px;
}
.update-list {
    display: grid;
    gap: 11px;
}
.update-list > div {
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--cloud);
    border: 1px solid var(--line);
}
.update-list .ui-icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    color: var(--white);
    background: var(--pink);
    border-radius: 50%;
}
.update-list > div:nth-child(2) .ui-icon {
    color: var(--ink);
    background: var(--yellow);
}
.update-list > div:nth-child(3) .ui-icon {
    background: var(--blue);
}
.update-list strong,
.update-list small {
    display: block;
}
.update-list strong {
    font-size: 13px;
}
.update-list small {
    color: var(--muted);
    font-size: 11px;
}
.device-shapes {
    height: 76px;
    margin-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 15px;
    color: var(--ink);
}
.device-shapes span {
    position: relative;
    display: block;
    border: 2px solid currentColor;
}
.device-shapes span:nth-child(1) {
    width: 28px;
    height: 53px;
    border-radius: 5px;
}
.device-shapes span:nth-child(2) {
    width: 50px;
    height: 65px;
    border-radius: 5px;
}
.device-shapes span:nth-child(3) {
    width: 84px;
    height: 56px;
    margin-bottom: 10px;
}
.device-shapes span:nth-child(3)::after {
    position: absolute;
    right: 22px;
    bottom: -12px;
    left: 22px;
    height: 10px;
    content: "";
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-left: 2px solid;
}
.device-results {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.device-results div {
    padding: 9px 10px;
    background: var(--cloud);
}
.device-results dt {
    color: var(--muted);
    font-size: 10px;
}
.device-results dd {
    font-size: 12px;
    font-weight: 900;
}
.device-check {
    width: 100%;
}
.reviews {
    background: var(--blush);
    border-bottom: 2px solid var(--ink);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.review-card {
    min-height: 305px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--ink);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.review-card:hover {
    box-shadow: 6px 6px 0 var(--pink);
    transform: translate(-3px, -3px);
}
.review-card__quote {
    height: 37px;
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 49px;
    font-weight: 900;
    line-height: 1;
}
.review-card > p {
    margin: 12px 0 22px;
    color: #424751;
    font-size: 14px;
    line-height: 1.9;
}
.review-card > div {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid var(--line);
}
.review-card > div > .ui-icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
}
.review-card strong,
.review-card small {
    display: block;
}
.review-card strong {
    font-size: 14px;
}
.review-card small {
    color: var(--muted);
    font-size: 11px;
}
.faq {
    background: var(--paper);
}
.faq__layout {
    display: grid;
    grid-template-columns: 0.58fr 1.42fr;
    gap: 65px;
}
.broadcast-mark {
    position: relative;
    width: 210px;
    height: 150px;
    margin-top: 42px;
}
.broadcast-mark > .ui-icon {
    position: absolute;
    top: 49px;
    left: 61px;
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 10px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
}
.broadcast-mark span {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 105px;
    height: 105px;
    border: 10px solid var(--pink);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
}
.broadcast-mark span:nth-child(3) {
    top: 4px;
    left: 14px;
    width: 137px;
    height: 137px;
    opacity: 0.58;
}
.broadcast-mark span:nth-child(4) {
    top: -12px;
    left: -2px;
    width: 169px;
    height: 169px;
    opacity: 0.24;
}
.accordion {
    border-top: 3px solid var(--ink);
}
.accordion-item {
    border-bottom: 1px solid #c8c8cb;
}
.accordion-item h3 {
    margin: 0;
}
.accordion-item button {
    width: 100%;
    min-height: 65px;
    padding: 17px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}
.accordion-item button > span {
    display: flex;
    align-items: center;
    gap: 18px;
}
.accordion-item button em {
    color: var(--pink);
    font-size: 11px;
    font-style: normal;
}
.accordion-item button .ui-icon {
    transition: transform 160ms ease;
}
.accordion-item.is-open button .ui-icon {
    transform: rotate(180deg);
}
.accordion-panel {
    padding: 0 45px 22px 51px;
    color: var(--muted);
    font-size: 14px;
}
.accordion-panel p {
    margin: 0;
}
.download-cta {
    color: var(--ink);
    background:
        radial-gradient(circle at 12px 12px, rgba(8, 11, 16, 0.22) 2px, transparent 3px) 0 0 / 20px 20px,
        var(--yellow);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
}
.download-cta__inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.download-cta__play {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    clip-path: polygon(8% 0, 100% 50%, 8% 100%);
}
.download-cta__play .ui-icon {
    width: 28px;
    height: 28px;
    margin-left: -9px;
}
.download-cta p {
    margin-bottom: 2px;
    color: #5c4700;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
}
.download-cta h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}
.site-footer {
    padding: 35px 0 20px;
    color: #a7a9af;
    background: var(--ink);
}
.site-footer__main {
    padding-bottom: 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}
.brand--footer {
    color: var(--white);
}
.site-footer nav {
    justify-self: center;
}
.site-footer nav ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
}
.site-footer nav a,
.site-footer__main > p,
.site-footer__bottom {
    font-size: 12px;
}
.site-footer nav a:hover,
.site-footer__bottom a:hover {
    color: var(--white);
}
.site-footer__main > p {
    margin: 0;
}
.site-footer__bottom {
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #30333a;
}
.site-tongji {
    height: 0;
    overflow: hidden;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    padding: 28px;
    display: grid;
    place-items: center;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 7, 0.9);
}
.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 440px);
    max-height: calc(100vh - 56px);
    padding: 18px;
    background: var(--paper);
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--pink);
}
.lightbox__dialog h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.lightbox__image {
    width: 100%;
    max-height: calc(100vh - 92px);
    display: block;
    object-fit: contain;
}
.lightbox__close {
    position: absolute;
    top: -17px;
    right: -17px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
}
@media (max-width: 1120px) {
    .site-header__inner {
        gap: 16px;
    }
    .site-nav a {
        padding-inline: 8px;
        font-size: 13px;
    }
    .site-nav a::after {
        right: 8px;
        left: 8px;
    }
    .header-download {
        padding-inline: 12px;
    }
    .hero-phone--right {
        left: 61%;
    }
    .program-numbers {
        right: 0;
    }
    .mood-map__board {
        grid-template-columns: 0.55fr 1.45fr;
    }
    .mood-focus {
        grid-column: 1 / -1;
    }
    .mood-focus ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}
@media (max-width: 920px) {
    :root {
        --header-height: 68px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        max-height: calc(100vh - var(--header-height));
        margin: 0;
        padding: 15px 20px 24px;
        background: var(--white);
        border-bottom: 2px solid var(--ink);
        box-shadow: 0 22px 45px rgba(8, 11, 16, 0.18);
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 160ms ease, transform 160ms ease;
    }
    .nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .site-nav ul {
        display: grid;
        gap: 4px;
    }
    .site-nav a {
        padding: 12px 14px;
    }
    .site-nav a::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 0;
        width: 4px;
        height: auto;
        transform: scaleY(0);
    }
    .site-nav a:hover::after,
    .site-nav a.is-active::after {
        transform: scaleY(1);
    }
    .hero {
        background: linear-gradient(180deg, var(--paper) 0 49%, var(--ink) 49.2%);
    }
    .hero__rail {
        display: none;
    }
    .hero__grid {
        padding-left: 0;
        grid-template-columns: 1fr;
    }
    .hero__copy {
        padding: 75px 0 55px;
        text-align: center;
    }
    .hero__lead {
        margin-inline: auto;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__features {
        max-width: 610px;
        margin-inline: auto;
        text-align: left;
    }
    .hero__stage {
        width: min(100%, 650px);
        min-height: 570px;
        margin-inline: auto;
    }
    .hero-phone--main {
        left: calc(50% - 126px);
    }
    .hero-phone--left {
        left: 9%;
    }
    .hero-phone--right {
        right: 8%;
        left: auto;
    }
    .screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
    .mood-map__board {
        grid-template-columns: 1fr;
    }
    .mood-tabs {
        grid-template-columns: repeat(5, auto);
        overflow-x: auto;
    }
    .mood-tabs button {
        white-space: nowrap;
    }
    .mood-focus {
        grid-column: auto;
    }
    .moments__layout {
        grid-template-columns: 1fr;
    }
    .scene-card::after {
        display: none;
    }
    .scene-stage {
        min-height: 390px;
    }
    .status__grid {
        grid-template-columns: 1fr;
    }
    .status-panel + .status-panel {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .faq__layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .broadcast-mark {
        display: none;
    }
    .site-footer__main {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 22px;
        text-align: center;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .brand {
        font-size: 16px;
    }
    .brand img {
        width: 40px;
        height: 40px;
    }
    .header-download {
        display: none;
    }
    .section {
        padding: 74px 0;
    }
    .hero::before {
        left: 3%;
    }
    .hero h1 {
        font-size: clamp(42px, 12vw, 56px);
    }
    .hero__copy {
        padding-top: 67px;
    }
    .hero__lead {
        font-size: 15px;
    }
    .hero__actions {
        display: grid;
    }
    .hero__actions .button {
        width: 100%;
    }
    .hero__features {
        grid-template-columns: 1fr;
    }
    .hero__features li + li {
        border-top: 0;
        border-left: 2px solid var(--ink);
    }
    .hero__stage {
        min-height: 500px;
        transform: scale(0.84);
        transform-origin: top center;
    }
    .hero-phone--left {
        left: -7%;
    }
    .hero-phone--right {
        right: -7%;
    }
    .program-numbers,
    .signal-lines {
        display: none;
    }
    .section-heading {
        margin-bottom: 32px;
    }
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .section-heading h2,
    .mood-map h2,
    .faq h2 {
        font-size: 35px;
    }
    .screenshot-grid {
        width: calc(100% + 14px);
        margin-right: -14px;
        padding-right: 25px;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .screenshot-grid::-webkit-scrollbar,
    .mood-tabs::-webkit-scrollbar {
        display: none;
    }
    .screenshot-card {
        min-width: min(78vw, 300px);
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: start;
    }
    .screenshot-card__media > span {
        opacity: 1;
        transform: none;
    }
    .mood-map {
        padding: 14px 0;
    }
    .mood-map__board {
        padding: 14px;
    }
    .mood-tabs {
        width: calc(100vw - 28px);
        grid-template-columns: repeat(5, auto);
        gap: 5px;
    }
    .mood-grid {
        grid-template-columns: 1fr;
    }
    .mood-card {
        min-height: 155px;
    }
    .mood-focus {
        padding: 23px;
    }
    .mood-focus ul {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .scene-card {
        min-height: 0;
        padding: 16px;
        grid-template-columns: 52px 1fr;
    }
    .scene-card > .ui-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    .scene-card b {
        grid-column: 2;
        min-width: 0;
    }
    .scene-stage {
        min-height: 420px;
        grid-template-columns: 1fr 1fr;
    }
    .scene-stage__phone {
        width: 145px;
        height: 293px;
        margin-left: 18px;
    }
    .scene-stage__copy {
        padding: 18px;
    }
    .scene-stage__copy h3 {
        font-size: 22px;
    }
    .status__heading {
        gap: 10px;
    }
    .status__heading h2 {
        font-size: 31px;
    }
    .status-panel {
        padding: 26px 20px;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        min-height: 0;
    }
    .accordion-item button {
        align-items: flex-start;
    }
    .accordion-item button > span {
        align-items: flex-start;
    }
    .accordion-panel {
        padding-right: 8px;
        padding-left: 40px;
    }
    .download-cta__inner {
        padding: 43px 0;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .download-cta__play {
        margin-inline: auto;
    }
    .download-cta__inner .button {
        width: 100%;
    }
    .site-footer nav ul {
        gap: 10px 16px;
    }
    .site-footer__bottom {
        align-items: center;
        flex-direction: column;
        gap: 7px;
    }
    .lightbox {
        padding: 18px;
    }
    .lightbox__dialog {
        padding: 10px;
    }
    .lightbox__close {
        top: -11px;
        right: -8px;
    }
}
@media (max-width: 420px) {
    .hero__stage {
        min-height: 450px;
        transform: scale(0.74);
    }
    .hero-phone--left {
        left: -13%;
    }
    .hero-phone--right {
        right: -13%;
    }
    .scene-stage {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .scene-stage__phone {
        margin-inline: auto;
    }
    .device-results {
        grid-template-columns: 1fr;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
