@charset "UTF-8";
:root {
    --ink: #08110b;
    --ink-soft: #17251b;
    --forest: #064424;
    --green: #19ae48;
    --green-deep: #0b8434;
    --lime: #9cf43d;
    --lime-soft: #e8ffd0;
    --yellow: #f3ff38;
    --coral: #ff765d;
    --paper: #fbfff4;
    --paper-deep: #f1f7e8;
    --white: #ffffff;
    --muted: #657168;
    --line: #cbd8cb;
    --container: 1200px;
    --header-height: 76px;
    --radius: 18px;
    --shadow: 6px 7px 0 var(--ink);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
    margin: 0;
    color: var(--ink);
    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(--forest);
    border: 2px solid var(--ink);
    transform: translateY(-160%);
}
.skip-link:focus {
    transform: none;
}
.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-arrow {
    --icon: url("../icons/arrow.svg");
}
.icon-arrow-up {
    --icon: url("../icons/arrow-up.svg");
}
.icon-download {
    --icon: url("../icons/download.svg");
}
.icon-menu {
    --icon: url("../icons/menu.svg");
}
.icon-close {
    --icon: url("../icons/close.svg");
}
.icon-search {
    --icon: url("../icons/search.svg");
}
.icon-compass {
    --icon: url("../icons/compass.svg");
}
.icon-bookmark {
    --icon: url("../icons/bookmark.svg");
}
.icon-history {
    --icon: url("../icons/history.svg");
}
.icon-flame {
    --icon: url("../icons/flame.svg");
}
.icon-bolt {
    --icon: url("../icons/bolt.svg");
}
.icon-heart {
    --icon: url("../icons/heart.svg");
}
.icon-sparkle {
    --icon: url("../icons/sparkle.svg");
}
.icon-crown {
    --icon: url("../icons/crown.svg");
}
.icon-document {
    --icon: url("../icons/document.svg");
}
.icon-bell {
    --icon: url("../icons/bell.svg");
}
.icon-device {
    --icon: url("../icons/device.svg");
}
.icon-chevron {
    --icon: url("../icons/chevron.svg");
}
.icon-chevron-left {
    --icon: url("../icons/chevron-left.svg");
}
.icon-chevron-right {
    --icon: url("../icons/chevron-right.svg");
}
.button {
    min-height: 46px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover {
    transform: translate(-2px, -2px);
}
.button:active,
.button.is-activated {
    transform: translate(3px, 4px);
    box-shadow: none;
}
.button--green {
    color: var(--white);
    background: var(--green);
    box-shadow: 3px 4px 0 var(--ink);
}
.button--green:hover {
    background: var(--green-deep);
}
.button--ink {
    color: var(--white);
    background: var(--ink);
    box-shadow: 5px 6px 0 var(--coral);
}
.button--ink:hover {
    color: var(--ink);
    background: var(--yellow);
}
.button--lime {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.45);
}
.button--lime:hover {
    background: var(--lime);
}
.button--large {
    min-height: 58px;
    padding-inline: 30px;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}
.eyebrow {
    margin-bottom: 12px;
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    line-height: 1.3;
}
.section {
    position: relative;
    padding: 105px 0;
}
.section-heading {
    margin-bottom: 50px;
}
.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: 50px;
}
.section-heading--split > p {
    margin: 0;
    color: var(--muted);
}
.section-heading--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.section-heading--center > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}
.section h2,
.download-cta h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1.08;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 2px solid var(--ink);
    backdrop-filter: blur(14px);
}
.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.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;
    background: var(--lime-soft);
    border: 2px solid var(--ink);
    border-radius: 50%;
}
.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 11px 21px;
    display: block;
    color: #374039;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.site-nav a::after {
    position: absolute;
    right: 11px;
    bottom: 13px;
    left: 11px;
    height: 4px;
    content: "";
    background: var(--green);
    border-radius: 10px;
    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: 42px;
    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(--lime);
    border: 2px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
}
.hero {
    position: relative;
    min-height: 690px;
    background: linear-gradient(114deg, #efffd8 0%, #aef65b 48%, #72dc39 100%);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: repeating-linear-gradient(118deg, transparent 0 80px, rgba(255, 255, 255, 0.28) 80px 122px);
    clip-path: polygon(0 0, 76% 0, 55% 100%, 0 100%);
}
.hero::after {
    position: absolute;
    right: -65px;
    bottom: -150px;
    width: 520px;
    height: 520px;
    content: "";
    border: 3px solid rgba(8, 17, 11, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.09), 0 0 0 96px rgba(8, 17, 11, 0.05);
}
.hero__dots {
    position: absolute;
    z-index: 1;
    width: 155px;
    height: 155px;
    background-image: radial-gradient(var(--green-deep) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}
.hero__dots--left {
    top: 44px;
    left: 2%;
}
.hero__dots--right {
    right: 3%;
    bottom: 34px;
}
.hero__grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 45px;
}
.hero__copy {
    padding: 82px 0 74px;
}
.hero__copy .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}
.hero__copy .eyebrow span {
    width: 34px;
    height: 5px;
    background: var(--coral);
}
.hero h1 {
    margin-bottom: 27px;
    font-size: clamp(54px, 6.2vw, 90px);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.97;
}
.hero h1 strong {
    position: relative;
    z-index: 1;
    font-weight: inherit;
}
.hero h1 strong::after {
    position: absolute;
    right: -8px;
    bottom: 5px;
    left: -7px;
    z-index: -1;
    height: 18px;
    content: "";
    background: var(--yellow);
    transform: rotate(-2deg);
}
.hero h1 em {
    color: var(--white);
    font-style: normal;
    text-shadow: 3px 3px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink);
}
.hero__lead {
    max-width: 555px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 650;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    border-bottom: 2px solid var(--ink);
}
.text-link:hover .ui-icon {
    transform: translateX(4px);
}
.hero__features {
    max-width: 565px;
    margin: 35px 0 0;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    border-top: 2px solid rgba(8, 17, 11, 0.45);
}
.hero__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    line-height: 1.4;
}
.hero__features .ui-icon {
    width: 25px;
    height: 25px;
    color: var(--forest);
}
.hero__features strong,
.hero__features span {
    display: block;
}
.hero__features strong {
    font-size: 14px;
}
.hero__visual {
    position: relative;
    align-self: stretch;
    min-width: 0;
}
.hero-phone {
    position: absolute;
    bottom: -65px;
    width: 245px;
    padding: 7px;
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 35px 35px 0 0;
    box-shadow: 12px 12px 0 rgba(8, 17, 11, 0.18);
    overflow: hidden;
}
.hero-phone img {
    width: 100%;
    display: block;
    border-radius: 28px 28px 0 0;
}
.hero-phone--front {
    right: 245px;
    z-index: 4;
    width: 275px;
}
.hero-phone--middle {
    right: 70px;
    z-index: 3;
    transform: translateY(28px) rotate(1.5deg);
}
.hero-phone--back {
    right: -85px;
    z-index: 2;
    width: 215px;
    transform: translateY(70px) rotate(3deg);
}
.hero-mascot {
    position: absolute;
    bottom: -12px;
    left: -15px;
    z-index: 5;
    width: 190px;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(6px 7px 0 rgba(8, 17, 11, 0.2));
}
.hero__burst {
    position: absolute;
    top: 105px;
    right: -5px;
    z-index: 6;
    width: 175px;
    height: 145px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.05;
    background: var(--yellow);
    border: 3px solid var(--ink);
    clip-path: polygon(50% 0, 61% 17%, 78% 6%, 80% 27%, 100% 25%, 88% 44%, 100% 58%, 78% 64%, 82% 87%, 61% 78%, 50% 100%, 38% 80%, 18% 93%, 20% 69%, 0 61%, 13% 46%, 0 30%, 22% 27%, 20% 6%, 40% 17%);
    transform: rotate(6deg);
}
.hero__scribble {
    position: absolute;
    top: 84px;
    right: 155px;
    width: 190px;
    height: 14px;
    border-top: 5px solid var(--coral);
    border-bottom: 3px solid var(--coral);
    transform: rotate(-3deg);
}
.interface {
    background: linear-gradient(90deg, var(--white) 0 50%, #f4f7f4 50% 100%);
    border-bottom: 2px solid var(--ink);
}
.screenshot-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.screenshot-card {
    min-width: 0;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: 4px 5px 0 rgba(8, 17, 11, 0.12);
    overflow: hidden;
    transition: transform 170ms ease, box-shadow 170ms ease;
}
.screenshot-card:hover {
    transform: translateY(-7px);
    box-shadow: 7px 9px 0 rgba(8, 17, 11, 0.18);
}
.screenshot-card__bar {
    height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
}
.screenshot-card__bar span {
    font-size: 20px;
    font-weight: 950;
}
.screenshot-card__bar strong {
    font-size: 15px;
}
.screenshot-card--green .screenshot-card__bar {
    background: var(--lime);
}
.screenshot-card--coral .screenshot-card__bar {
    background: #ffc6bb;
}
.screenshot-card--yellow .screenshot-card__bar {
    background: var(--yellow);
}
.screenshot-card--ink .screenshot-card__bar {
    color: var(--white);
    background: var(--ink);
}
.screenshot-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 230 / 499;
    padding: 0;
    display: block;
    background: #dfffc6;
    cursor: zoom-in;
    overflow: hidden;
}
.screenshot-card__media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.screenshot-card__media > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(8, 17, 11, 0.58);
    opacity: 0;
    transition: opacity 160ms ease;
}
.screenshot-card__media > span .ui-icon {
    width: 42px;
    height: 42px;
}
.screenshot-card__media:hover > span,
.screenshot-card__media:focus-visible > span {
    opacity: 1;
}
.screenshot-card > p {
    min-height: 62px;
    margin: 0;
    padding: 14px 17px;
    color: var(--muted);
    font-size: 13px;
}
.discovery {
    background: radial-gradient(circle at 75% 10%, rgba(156, 244, 61, 0.34), transparent 28%), linear-gradient(180deg, #f6fff0, #e9fadb);
    border-bottom: 2px solid var(--ink);
}
.discovery::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 20px;
    content: "";
    background: linear-gradient(135deg, var(--white) 10px, transparent 0) 0 0 / 20px 20px repeat-x;
}
.discovery__heading {
    margin-bottom: 36px;
}
.discovery__layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 245px;
    gap: 22px;
    align-items: stretch;
}
.discovery-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.discovery-features button {
    width: 100%;
    min-height: 78px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-align: left;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.discovery-features button:hover,
.discovery-features button.is-active {
    background: var(--lime);
    border-color: var(--ink);
    transform: translateX(5px);
}
.discovery-features .ui-icon {
    width: 39px;
    height: 39px;
    padding: 9px;
    color: var(--white);
    background: var(--green);
    border: 2px solid var(--ink);
    border-radius: 50%;
}
.discovery-features strong,
.discovery-features small {
    display: block;
}
.discovery-features strong {
    font-size: 15px;
}
.discovery-features small {
    color: #58635a;
    font-size: 11px;
}
.discovery-board {
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 18px;
    box-shadow: 6px 7px 0 rgba(8, 17, 11, 0.15);
}
.discovery-board__top {
    margin-bottom: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
}
.discovery-board__top span {
    color: var(--green-deep);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.discovery-board__top h3 {
    margin: 2px 0 0;
    font-size: 23px;
    line-height: 1.2;
}
.discovery-board__top > p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}
.comic-card {
    position: relative;
    min-width: 0;
    background: var(--paper-deep);
    border: 1px solid var(--line);
    border-radius: 11px;
    overflow: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
}
.comic-card.is-muted {
    opacity: 0.18;
    transform: scale(0.96);
}
.comic-card.is-selected {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}
.comic-card img {
    width: 100%;
    aspect-ratio: 4 / 4.1;
    display: block;
    object-fit: cover;
}
.comic-card > div {
    padding: 10px;
}
.comic-card span {
    color: var(--green-deep);
    font-size: 10px;
    font-weight: 850;
}
.comic-card h3 {
    margin: 2px 0 0;
    font-size: 14px;
    line-height: 1.3;
}
.discovery-note {
    position: relative;
    padding: 36px 25px;
    color: var(--white);
    background: var(--forest);
    border: 2px solid var(--ink);
    border-radius: 18px;
    box-shadow: 6px 7px 0 var(--coral);
    overflow: hidden;
}
.discovery-note::after {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 165px;
    height: 165px;
    content: "";
    background-image: radial-gradient(var(--lime) 2px, transparent 2px);
    background-size: 12px 12px;
    border-radius: 50%;
    opacity: 0.35;
}
.discovery-note > .ui-icon {
    width: 53px;
    height: 53px;
    color: var(--yellow);
    transform: rotate(10deg);
}
.discovery-note > p {
    margin: 28px 0 8px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.discovery-note h3 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.2;
}
.discovery-note ul {
    margin: 0;
    padding-left: 20px;
    font-size: 12px;
}
.discovery-note li {
    margin: 8px 0;
}
.journey {
    padding-bottom: 0;
    background: linear-gradient(135deg, #dffff0 0%, #acfa5a 100%);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.journey::before {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 720px;
    height: 720px;
    content: "";
    border: 80px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}
.journey__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: end;
    gap: 60px;
}
.journey__intro {
    padding-bottom: 92px;
}
.journey__intro > p:last-of-type {
    max-width: 650px;
    margin: 22px 0 34px;
    color: #344538;
}
.journey-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.journey-tabs::before {
    position: absolute;
    top: 50%;
    right: 10%;
    left: 10%;
    height: 3px;
    content: "";
    background: var(--green);
}
.journey-tabs button {
    position: relative;
    z-index: 1;
    min-height: 160px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--ink);
    border-radius: 48% 48% 16px 16px;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.journey-tabs button:hover,
.journey-tabs button.is-active {
    background: var(--yellow);
    box-shadow: 5px 6px 0 var(--ink);
    transform: translateY(-6px);
}
.journey-tabs button > span {
    position: absolute;
    top: -12px;
    left: 12px;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--green-deep);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}
.journey-tabs .ui-icon {
    width: 42px;
    height: 42px;
    color: var(--green-deep);
}
.journey-tabs strong {
    font-size: 15px;
}
.journey-stage {
    position: relative;
    min-height: 570px;
    background: var(--forest);
    border: 3px solid var(--ink);
    border-bottom: 0;
    border-radius: 180px 180px 0 0;
    overflow: hidden;
}
.journey-stage__line {
    position: absolute;
    inset: 28px;
    border: 2px dashed rgba(156, 244, 61, 0.5);
    border-bottom: 0;
    border-radius: 150px 150px 0 0;
}
.journey-phone {
    position: absolute;
    bottom: -40px;
    left: 34px;
    z-index: 2;
    width: 205px;
    padding: 7px;
    background: var(--ink);
    border: 2px solid var(--yellow);
    border-radius: 31px 31px 0 0;
    overflow: hidden;
}
.journey-phone img {
    width: 100%;
    aspect-ratio: 230 / 499;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: 24px 24px 0 0;
}
.journey-stage__copy {
    position: absolute;
    top: 185px;
    right: 26px;
    z-index: 3;
    width: 190px;
    color: var(--white);
}
.journey-stage__copy span {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
}
.journey-stage__copy h3 {
    margin: 8px 0 12px;
    font-size: 30px;
    line-height: 1.1;
}
.journey-stage__copy p {
    margin: 0;
    color: #cde0d2;
    font-size: 12px;
}
.journey-mascot {
    position: absolute;
    right: 30px;
    bottom: -12px;
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.status {
    color: var(--white);
    background: var(--forest);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.status::before,
.status::after {
    position: absolute;
    content: "";
    pointer-events: none;
}
.status::before {
    inset: 0;
    background-image: radial-gradient(rgba(156, 244, 61, 0.15) 2px, transparent 2px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, transparent, #000 48%, transparent);
}
.status::after {
    right: -80px;
    bottom: -160px;
    width: 390px;
    height: 390px;
    border: 80px solid rgba(156, 244, 61, 0.06);
    border-radius: 50%;
}
.status .container {
    position: relative;
    z-index: 1;
}
.status__heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    gap: 30px;
}
.status__heading .eyebrow {
    position: absolute;
    top: -18px;
    color: var(--lime);
}
.status__heading h2 {
    color: var(--white);
}
.status__heading > p:last-child {
    max-width: 440px;
    margin: 0 0 5px;
    color: #bcd2c2;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.status-card {
    position: relative;
    min-width: 0;
    padding: 36px 34px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.status-card:last-child {
    border-right: 0;
}
.status-card > .ui-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 25px;
    padding: 13px;
    color: var(--yellow);
    background: rgba(156, 244, 61, 0.1);
    border: 1px solid rgba(156, 244, 61, 0.45);
    border-radius: 50%;
}
.status-card > span {
    display: block;
    color: var(--lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.status-card h3 {
    margin: 6px 0 25px;
    color: var(--white);
    font-size: 27px;
}
.status-card ul {
    min-height: 175px;
    margin: 0 0 24px;
    list-style: none;
}
.status-card li {
    position: relative;
    margin: 14px 0;
    padding-left: 16px;
}
.status-card li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--coral);
    border-radius: 50%;
}
.status-card strong,
.status-card small {
    display: block;
}
.status-card strong {
    font-size: 14px;
}
.status-card small {
    color: #bcd2c2;
    font-size: 12px;
}
.status-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
}
.status-card > a:hover .ui-icon {
    transform: translateX(4px);
}
.device-results {
    min-height: 175px;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.device-results div {
    padding: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
}
.device-results dt {
    color: #a8c3b1;
    font-size: 10px;
}
.device-results dd {
    margin: 2px 0 0;
    font-size: 12px;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.device-check {
    width: 100%;
}
.reviews {
    background: linear-gradient(180deg, #f9fff4, #efffe3);
    border-bottom: 2px solid var(--ink);
}
.reviews::before {
    position: absolute;
    top: 55px;
    left: 4%;
    width: 100px;
    height: 100px;
    content: "";
    background-image: radial-gradient(var(--coral) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.38;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.review-card {
    position: relative;
    min-width: 0;
    padding: 30px 28px 24px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: 4px 5px 0 rgba(25, 174, 72, 0.25);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 7px 8px 0 rgba(25, 174, 72, 0.3);
}
.review-card__quote {
    position: absolute;
    top: 12px;
    left: 22px;
    color: var(--green);
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}
.review-card > p {
    min-height: 160px;
    margin: 30px 0 20px;
    padding-bottom: 20px;
    color: #38423b;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
.review-card > div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card img {
    width: 43px;
    height: 43px;
    object-fit: cover;
    background: var(--lime-soft);
    border: 2px solid var(--ink);
    border-radius: 50%;
}
.review-card strong,
.review-card small {
    display: block;
}
.review-card strong {
    font-size: 13px;
}
.review-card small {
    color: var(--muted);
    font-size: 10px;
}
.faq {
    background: var(--white);
    border-bottom: 2px solid var(--ink);
}
.faq__layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 75px;
}
.faq__intro > p:nth-of-type(2) {
    max-width: 410px;
    margin: 22px 0 24px;
    color: var(--muted);
}
.faq-mascot {
    position: relative;
    width: 330px;
    min-height: 200px;
    margin-top: 30px;
}
.faq-mascot img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    object-fit: contain;
}
.faq-mascot span {
    position: absolute;
    top: 10px;
    right: 0;
    padding: 16px 19px;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.3;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
    transform: rotate(-5deg);
}
.accordion {
    border-top: 2px solid var(--ink);
}
.accordion-item {
    border-bottom: 1px solid var(--line);
}
.accordion-item h3 {
    margin: 0;
}
.accordion-item button {
    width: 100%;
    min-height: 68px;
    padding: 15px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    text-align: left;
    background: transparent;
    cursor: pointer;
}
.accordion-item button span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 850;
}
.accordion-item button em {
    color: var(--green);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}
.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;
    color: var(--muted);
    font-size: 13px;
}
.accordion-panel p {
    margin: 0;
}
.download-cta {
    position: relative;
    color: var(--ink);
    background: linear-gradient(110deg, var(--lime), #75df36);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
}
.download-cta::before {
    position: absolute;
    top: -45px;
    left: 35%;
    width: 110px;
    height: 200px;
    content: "";
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(28deg);
}
.download-cta__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(8, 17, 11, 0.25) 2px, transparent 2px);
    background-size: 13px 13px;
    mask-image: linear-gradient(90deg, #000, transparent 32%, transparent 74%, #000);
}
.download-cta__inner {
    position: relative;
    z-index: 1;
    min-height: 210px;
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
}
.download-cta__inner > img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.download-cta .eyebrow {
    color: var(--forest);
}
.download-cta h2 {
    font-size: clamp(31px, 3.6vw, 51px);
}
.download-cta__inner > div > span {
    display: block;
    margin-top: 12px;
    color: #294330;
}
.site-footer {
    padding: 42px 0 24px;
    color: #aebbb1;
    background: var(--ink);
}
.site-footer__main {
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
.brand--footer {
    color: var(--white);
}
.site-footer nav ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 24px;
    list-style: none;
}
.site-footer nav a,
.site-footer__bottom {
    font-size: 12px;
}
.site-footer nav a:hover,
.site-footer__bottom a:hover {
    color: var(--lime);
}
.site-footer__bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid #324037;
}
.site-footer__bottom p {
    margin: 0;
}
.site-footer__bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.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, 8, 4, 0.92);
}
.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 470px);
    max-height: calc(100vh - 56px);
    padding: 18px 58px 46px;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 18px;
    box-shadow: 10px 10px 0 var(--lime);
}
.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 - 135px);
    display: block;
    object-fit: contain;
}
.lightbox__caption {
    position: absolute;
    right: 55px;
    bottom: 11px;
    left: 55px;
    margin: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
}
.lightbox__close {
    top: -17px;
    right: -17px;
    width: 44px;
    height: 44px;
}
.lightbox__nav {
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
}
.lightbox__nav--prev {
    left: 7px;
}
.lightbox__nav--next {
    right: 7px;
}
@media (max-width: 1180px) {
    .site-header__inner {
        gap: 13px;
    }
    .site-nav a {
        padding-inline: 8px;
        font-size: 13px;
    }
    .site-nav a::after {
        right: 8px;
        left: 8px;
    }
    .header-download {
        padding-inline: 13px;
    }
    .hero-phone--front {
        right: 190px;
    }
    .hero-phone--middle {
        right: 30px;
    }
    .hero-phone--back {
        right: -105px;
    }
    .hero-mascot {
        left: -35px;
    }
    .discovery__layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }
    .discovery-note {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 70px auto 1fr;
        align-items: center;
        gap: 20px;
        padding-block: 24px;
    }
    .discovery-note > p {
        margin: 0 0 4px;
    }
    .discovery-note h3 {
        margin: 0;
    }
    .discovery-note ul {
        margin-left: auto;
    }
    .journey__layout {
        gap: 35px;
    }
}
@media (max-width: 980px) {
    :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, 17, 11, 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: 3px;
    }
    .site-nav a {
        padding: 12px 16px;
    }
    .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 {
        min-height: 980px;
    }
    .hero::before {
        clip-path: polygon(0 0, 100% 0, 100% 54%, 0 68%);
    }
    .hero__grid {
        min-height: 980px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0;
    }
    .hero__copy {
        padding: 70px 30px 30px;
        text-align: center;
    }
    .hero__copy .eyebrow,
    .hero__actions {
        justify-content: center;
    }
    .hero__lead,
    .hero__features {
        margin-right: auto;
        margin-left: auto;
    }
    .hero__features {
        text-align: left;
    }
    .hero__visual {
        min-height: 455px;
    }
    .hero-phone--front {
        right: calc(50% - 70px);
        width: 245px;
    }
    .hero-phone--middle {
        right: calc(50% - 225px);
        width: 220px;
    }
    .hero-phone--back {
        right: calc(50% - 355px);
        width: 195px;
    }
    .hero-mascot {
        left: calc(50% - 330px);
    }
    .hero__burst {
        right: calc(50% - 350px);
    }
    .screenshot-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .discovery__layout {
        grid-template-columns: 1fr;
    }
    .discovery-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .discovery-features button {
        min-width: 0;
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    .discovery-features button:hover,
    .discovery-features button.is-active {
        transform: translateY(-4px);
    }
    .discovery-note {
        grid-column: auto;
    }
    .journey__layout {
        grid-template-columns: 1fr;
    }
    .journey__intro {
        padding-bottom: 20px;
    }
    .journey-stage {
        width: min(100%, 560px);
        margin-inline: auto;
    }
    .status-grid {
        grid-template-columns: 1fr;
    }
    .status-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .status-card:last-child {
        border-bottom: 0;
    }
    .status-card ul,
    .device-results {
        min-height: 0;
    }
    .status-card ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .device-results {
        grid-template-columns: repeat(4, 1fr);
    }
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .faq__layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .faq__intro {
        display: grid;
        grid-template-columns: 1fr 300px;
        align-items: center;
    }
    .faq__intro .eyebrow,
    .faq__intro h2,
    .faq__intro > p:nth-of-type(2) {
        grid-column: 1;
    }
    .faq-mascot {
        grid-column: 2;
        grid-row: 1 / 4;
    }
    .download-cta__inner {
        grid-template-columns: 130px minmax(0, 1fr) auto;
    }
}
@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .section {
        padding: 76px 0;
    }
    .section h2,
    .download-cta h2 {
        font-size: 37px;
    }
    .section-heading {
        margin-bottom: 34px;
    }
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .header-download {
        display: none;
    }
    .brand {
        font-size: 18px;
    }
    .hero {
        min-height: 920px;
    }
    .hero__grid {
        min-height: 920px;
    }
    .hero__copy {
        padding: 58px 0 20px;
    }
    .hero h1 {
        font-size: clamp(49px, 15.5vw, 72px);
    }
    .hero__lead {
        max-width: 530px;
        font-size: 16px;
    }
    .hero__features {
        grid-template-columns: 1fr;
        gap: 11px;
    }
    .hero__features li {
        justify-content: center;
        text-align: left;
    }
    .hero__visual {
        min-height: 420px;
    }
    .hero-phone--front {
        right: calc(50% - 34px);
        width: 210px;
    }
    .hero-phone--middle {
        right: calc(50% - 165px);
        width: 185px;
    }
    .hero-phone--back {
        display: none;
    }
    .hero-mascot {
        left: calc(50% - 220px);
        width: 135px;
        height: 135px;
    }
    .hero__burst {
        top: 70px;
        right: calc(50% - 220px);
        width: 125px;
        height: 105px;
        font-size: 20px;
    }
    .hero__scribble {
        display: none;
    }
    .screenshot-track {
        width: calc(100% + 14px);
        margin-right: -14px;
        padding: 0 14px 18px 0;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .screenshot-card {
        width: min(76vw, 300px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .discovery-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .discovery-board {
        padding: 17px;
    }
    .discovery-board__top {
        align-items: start;
        flex-direction: column;
        gap: 9px;
    }
    .discovery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .discovery-note {
        display: block;
    }
    .discovery-note > p {
        margin-top: 18px;
    }
    .discovery-note h3 {
        margin-bottom: 20px;
    }
    .discovery-note ul {
        margin-left: 0;
    }
    .journey-tabs {
        grid-template-columns: 1fr;
    }
    .journey-tabs::before {
        top: 10%;
        bottom: 10%;
        left: 31px;
        width: 3px;
        height: auto;
    }
    .journey-tabs button {
        min-height: 82px;
        padding: 14px 15px 14px 72px;
        flex-direction: row;
        justify-content: flex-start;
        border-radius: 14px;
    }
    .journey-tabs button > span {
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
    }
    .journey-tabs button:hover,
    .journey-tabs button.is-active {
        transform: translateX(5px);
    }
    .journey-stage {
        min-height: 515px;
    }
    .journey-phone {
        left: 24px;
        width: 175px;
    }
    .journey-stage__copy {
        top: 175px;
        right: 20px;
        width: 155px;
    }
    .journey-stage__copy h3 {
        font-size: 24px;
    }
    .journey-mascot {
        right: 16px;
        width: 115px;
        height: 115px;
    }
    .status__heading {
        display: block;
    }
    .status__heading .eyebrow {
        position: static;
    }
    .status__heading > p:last-child {
        margin-top: 17px;
    }
    .status-card {
        padding: 30px 24px;
    }
    .status-card ul,
    .device-results {
        grid-template-columns: 1fr;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .review-card > p {
        min-height: 0;
    }
    .faq__intro {
        display: block;
    }
    .faq-mascot {
        margin-right: auto;
        margin-left: auto;
    }
    .accordion-item button span {
        align-items: flex-start;
    }
    .accordion-panel {
        padding-right: 8px;
        padding-left: 8px;
    }
    .download-cta__inner {
        padding: 48px 0;
        grid-template-columns: 95px 1fr;
        gap: 20px;
    }
    .download-cta__inner > img {
        width: 95px;
        height: 95px;
    }
    .download-cta__inner > a {
        grid-column: 1 / -1;
        width: 100%;
    }
    .site-footer__main {
        align-items: flex-start;
        flex-direction: column;
    }
    .site-footer nav ul {
        justify-content: flex-start;
    }
}
@media (max-width: 460px) {
    .hero {
        min-height: 940px;
    }
    .hero__grid {
        min-height: 940px;
    }
    .hero__copy {
        padding-top: 46px;
    }
    .hero h1 {
        font-size: 50px;
    }
    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }
    .hero__actions .button {
        width: 100%;
    }
    .text-link {
        align-self: center;
    }
    .hero__visual {
        min-height: 385px;
    }
    .hero-phone--front {
        right: 10px;
        width: 195px;
    }
    .hero-phone--middle {
        right: 155px;
        width: 165px;
    }
    .hero-mascot {
        left: -10px;
        bottom: 5px;
        width: 110px;
        height: 110px;
    }
    .hero__burst {
        top: 35px;
        right: -5px;
        width: 105px;
        height: 90px;
        font-size: 17px;
    }
    .discovery-features button {
        min-height: 105px;
    }
    .discovery-note h3 {
        font-size: 25px;
    }
    .journey-stage {
        min-height: 465px;
        border-radius: 120px 120px 0 0;
    }
    .journey-phone {
        left: 17px;
        width: 155px;
    }
    .journey-stage__copy {
        top: 155px;
        right: 14px;
        width: 135px;
    }
    .journey-mascot {
        right: 8px;
        width: 92px;
        height: 92px;
    }
    .faq-mascot {
        width: 100%;
        min-height: 185px;
    }
    .faq-mascot img {
        width: 155px;
        height: 155px;
    }
    .faq-mascot span {
        font-size: 15px;
    }
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .lightbox {
        padding: 18px;
    }
    .lightbox__dialog {
        padding-right: 43px;
        padding-left: 43px;
    }
    .lightbox__close {
        top: -12px;
        right: -9px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
