@charset "UTF-8";
:root {
    --navy: #06162f;
    --navy-soft: #0c284f;
    --blue: #1198ed;
    --blue-deep: #0872d4;
    --cyan: #68dcff;
    --ice: #eef8ff;
    --ice-deep: #dff1ff;
    --white: #ffffff;
    --paper: #f8fbff;
    --ink: #071a35;
    --muted: #62758c;
    --line: #c9ddef;
    --coral: #ff765f;
    --yellow: #ffd648;
    --purple: #796bff;
    --container: 1200px;
    --header-height: 74px;
    --radius: 16px;
    --shadow: 0 18px 45px rgba(8, 70, 132, 0.14);
}
* {
    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(--blue-deep);
    border-radius: 8px;
    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-library {
    --icon: url("../icons/library.svg");
}
.icon-history {
    --icon: url("../icons/history.svg");
}
.icon-sparkle {
    --icon: url("../icons/sparkle.svg");
}
.icon-rocket {
    --icon: url("../icons/rocket.svg");
}
.icon-rank {
    --icon: url("../icons/rank.svg");
}
.icon-play {
    --icon: url("../icons/play.svg");
}
.icon-book {
    --icon: url("../icons/book.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;
    border: 2px solid transparent;
    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: translateY(-3px);
}
.button:active,
.button.is-activated {
    transform: translateY(2px) scale(0.98);
    box-shadow: none;
}
.button--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    box-shadow: 0 8px 22px rgba(17, 152, 237, 0.28);
}
.button--primary:hover {
    background: linear-gradient(135deg, #28b5ff, #0878df);
}
.button--white {
    color: var(--blue-deep);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 28px rgba(0, 42, 94, 0.25);
}
.button--white:hover {
    color: var(--white);
    background: var(--navy);
}
.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(--blue-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(330px, 0.72fr);
    align-items: end;
    gap: 55px;
}
.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(37px, 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.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 24px rgba(7, 26, 53, 0.06);
    backdrop-filter: blur(15px);
}
.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(--blue);
    border: 2px solid var(--blue);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(17, 152, 237, 0.2);
}
.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: #40536a;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.site-nav a::after {
    position: absolute;
    right: 11px;
    bottom: 12px;
    left: 11px;
    height: 3px;
    content: "";
    background: var(--blue);
    border-radius: 99px;
    transform: scaleX(0);
    transition: transform 160ms ease;
}
.site-nav a:hover,
.site-nav a.is-active {
    color: var(--blue-deep);
}
.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(--blue-deep);
    background: var(--ice);
    border: 2px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
}
.hero {
    position: relative;
    min-height: 700px;
    color: var(--white);
    background: radial-gradient(circle at 24% 24%, #20aff7 0, transparent 30%), radial-gradient(circle at 86% 48%, #0d71d6 0, transparent 37%), linear-gradient(125deg, #0878d9 0%, #095fbf 54%, #063778 100%);
    border-bottom: 1px solid #056dc8;
    overflow: hidden;
}
.hero::before {
    position: absolute;
    right: -130px;
    bottom: -310px;
    width: 760px;
    height: 760px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.035), 0 0 0 170px rgba(255, 255, 255, 0.025);
}
.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 63%);
}
.hero__stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1.5px), radial-gradient(circle, rgba(104, 220, 255, 0.75) 1px, transparent 1.5px);
    background-position: 0 0, 29px 37px;
    background-size: 78px 78px, 96px 96px;
    opacity: 0.45;
}
.hero__grid {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}
.hero__copy {
    padding: 86px 0 78px;
}
.hero__copy .eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #b8ebff;
}
.hero h1 {
    margin-bottom: 27px;
    font-size: clamp(52px, 5.8vw, 84px);
    font-weight: 950;
    letter-spacing: -0.068em;
    line-height: 1.01;
}
.hero h1 strong {
    font-weight: inherit;
}
.hero h1 em {
    position: relative;
    z-index: 1;
    color: var(--yellow);
    font-style: normal;
}
.hero h1 em::after {
    position: absolute;
    right: -12px;
    bottom: 2px;
    left: -8px;
    z-index: -1;
    height: 13px;
    content: "";
    background: rgba(255, 255, 255, 0.22);
    transform: skewX(-22deg);
}
.hero__lead {
    max-width: 550px;
    margin-bottom: 31px;
    color: #e8f7ff;
    font-size: 17px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.hero__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 850;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.hero__more:hover .ui-icon {
    transform: translateX(4px);
}
.hero__features {
    max-width: 560px;
    margin: 37px 0 0;
    padding-top: 23px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
}
.hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbeaff;
    font-size: 11px;
    line-height: 1.45;
}
.hero__features .ui-icon {
    width: 28px;
    height: 28px;
    color: var(--cyan);
}
.hero__features strong,
.hero__features span {
    display: block;
}
.hero__features strong {
    color: var(--white);
    font-size: 13px;
}
.hero__visual {
    position: relative;
    align-self: stretch;
    min-width: 0;
}
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
}
.orbit::after {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 12px;
    height: 12px;
    content: "";
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--yellow);
}
.orbit--one {
    width: 640px;
    height: 360px;
}
.orbit--two {
    width: 490px;
    height: 560px;
    transform: translate(-50%, -50%) rotate(44deg);
}
.hero-phone {
    position: absolute;
    bottom: -60px;
    width: 235px;
    padding: 7px;
    background: var(--navy);
    border: 2px solid #72d9ff;
    border-radius: 36px 36px 0 0;
    box-shadow: 0 24px 50px rgba(0, 17, 54, 0.36);
    overflow: hidden;
}
.hero-phone img {
    width: 100%;
    display: block;
    border-radius: 28px 28px 0 0;
}
.hero-phone--front {
    right: 265px;
    z-index: 4;
    width: 280px;
}
.hero-phone--middle {
    right: 90px;
    z-index: 3;
    transform: translateY(34px) rotate(2deg);
}
.hero-phone--back {
    right: -80px;
    z-index: 2;
    width: 210px;
    transform: translateY(76px) rotate(4deg);
}
.hero__logo-hub {
    position: absolute;
    bottom: 23px;
    left: 0;
    z-index: 5;
    width: 112px;
    height: 112px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    box-shadow: 0 0 0 16px rgba(104, 220, 255, 0.1), 0 0 35px rgba(104, 220, 255, 0.42);
}
.hero__logo-hub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.hero__badge {
    position: absolute;
    top: 105px;
    right: -5px;
    z-index: 6;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    color: var(--navy);
    text-align: center;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.3;
    background: var(--yellow);
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 13px 30px rgba(0, 29, 83, 0.25);
    transform: rotate(6deg);
}
.interface {
    background: linear-gradient(90deg, var(--white) 0 50%, #f4faff 50% 100%);
    border-bottom: 1px solid var(--line);
}
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 19px;
}
.screenshot-card {
    min-width: 0;
    padding: 18px 18px 0;
    background: linear-gradient(180deg, #e9f6ff 0%, #ffffff 100%);
    border: 1px solid #bcdcf5;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(8, 90, 157, 0.1);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}
.screenshot-card:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 38px rgba(8, 90, 157, 0.18);
    transform: translateY(-7px);
}
.screenshot-card__head {
    min-height: 76px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.screenshot-card__head > span {
    color: var(--blue);
    font-size: 27px;
    font-weight: 950;
    font-style: italic;
    line-height: 1;
}
.screenshot-card__head strong,
.screenshot-card__head small {
    display: block;
}
.screenshot-card__head strong {
    font-size: 15px;
    line-height: 1.3;
}
.screenshot-card__head small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}
.screenshot-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 360 / 800;
    padding: 0;
    display: block;
    background: var(--ice-deep);
    border: 1px solid #a8cff0;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    cursor: zoom-in;
    overflow: hidden;
}
.screenshot-card__media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}
.screenshot-card__media > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(6, 22, 47, 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;
}
.universe {
    color: var(--white);
    background: radial-gradient(circle at 18% 90%, #0c437b 0, transparent 32%), radial-gradient(circle at 78% 18%, #153b75 0, transparent 30%), linear-gradient(150deg, #071a38, #031127);
    border-bottom: 1px solid #153b71;
    overflow: hidden;
}
.universe::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1.4px), radial-gradient(rgba(104, 220, 255, 0.6) 1px, transparent 1.5px);
    background-position: 0 0, 40px 32px;
    background-size: 92px 92px, 120px 120px;
    opacity: 0.38;
}
.universe__glow {
    position: absolute;
    bottom: -330px;
    left: -180px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle at 60% 40%, #168ed5 0%, #0b427a 27%, #04152c 65%);
    border: 1px solid rgba(104, 220, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(17, 152, 237, 0.26);
}
.universe__glow::after {
    position: absolute;
    top: 46px;
    right: -150px;
    width: 520px;
    height: 100px;
    content: "";
    border-top: 2px solid rgba(104, 220, 255, 0.6);
    border-radius: 50%;
    transform: rotate(-10deg);
}
.universe .container {
    position: relative;
    z-index: 2;
}
.universe .eyebrow {
    color: var(--cyan);
}
.universe__heading > p {
    color: #b5d0e7;
}
.universe__layout {
    display: grid;
    grid-template-columns: 1.42fr 0.58fr;
    gap: 30px;
}
.star-map {
    position: relative;
    min-height: 540px;
}
.star-map__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(104, 220, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
}
.star-map__orbit::before,
.star-map__orbit::after {
    position: absolute;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--cyan);
}
.star-map__orbit::before {
    top: 16%;
    right: 13%;
}
.star-map__orbit::after {
    bottom: 9%;
    left: 20%;
}
.star-map__orbit--one {
    width: 590px;
    height: 310px;
}
.star-map__orbit--two {
    width: 390px;
    height: 470px;
    transform: translate(-50%, -50%) rotate(46deg);
}
.star-map__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 132px;
    height: 132px;
    padding: 13px;
    text-align: center;
    background: rgba(17, 152, 237, 0.22);
    border: 1px solid rgba(104, 220, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(17, 152, 237, 0.09), 0 0 45px rgba(17, 152, 237, 0.5);
    transform: translate(-50%, -50%);
}
.star-map__hub img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
}
.star-map__hub span {
    display: block;
    color: #cceeff;
    font-size: 10px;
}
.star-node {
    position: absolute;
    z-index: 4;
    min-width: 118px;
    min-height: 48px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    background: rgba(9, 43, 83, 0.92);
    border: 1px solid rgba(104, 220, 255, 0.65);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(17, 152, 237, 0.18);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.star-node:hover,
.star-node.is-active {
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 25px rgba(255, 214, 72, 0.45);
    transform: scale(1.06);
}
.star-node .ui-icon {
    width: 23px;
    height: 23px;
}
.star-node span {
    font-size: 13px;
    font-weight: 900;
}
.star-node--selected {
    top: 3%;
    left: 44%;
}
.star-node--new {
    top: 26%;
    right: 2%;
}
.star-node--discover {
    right: 9%;
    bottom: 15%;
}
.star-node--rank {
    bottom: 8%;
    left: 14%;
}
.star-node--anime {
    top: 26%;
    left: 4%;
}
.universe-panel {
    padding: 30px 25px;
    background: rgba(13, 46, 88, 0.88);
    border: 1px solid rgba(104, 220, 255, 0.35);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 5, 18, 0.25);
}
.universe-panel > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}
.universe-panel h3 {
    margin: 5px 0 11px;
    font-size: 25px;
}
.universe-panel > p {
    min-height: 64px;
    margin-bottom: 20px;
    color: #c0d9ec;
    font-size: 12px;
}
.universe-chips {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.universe-chips span {
    padding: 5px 11px;
    color: #cbeaff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 10px;
}
.universe-covers {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}
.universe-covers article {
    min-width: 0;
    opacity: 0.45;
    transition: opacity 160ms ease, transform 160ms ease;
}
.universe-covers article.is-selected {
    opacity: 1;
}
.universe-covers article.is-selected {
    transform: translateY(-5px);
}
.universe-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
}
.universe-covers strong {
    display: block;
    margin-top: 5px;
    color: #cbeaff;
    text-align: center;
    font-size: 9px;
}
.universe-panel > small {
    display: block;
    margin-top: 20px;
    color: #85afd0;
    font-size: 10px;
}
.workbench {
    background: linear-gradient(135deg, #f4fbff 0%, #dff2ff 60%, #cceaff 100%);
    border-bottom: 1px solid #b4d8f2;
    overflow: hidden;
}
.workbench::before {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    content: "";
    border: 70px solid rgba(17, 152, 237, 0.06);
    border-radius: 50%;
}
.workbench__layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
    gap: 45px;
}
.workbench__intro {
    position: relative;
    min-height: 590px;
    padding-right: 190px;
}
.workbench__intro > p:last-of-type {
    margin: 22px 0 0;
    color: var(--muted);
}
.workbench-phone {
    position: absolute;
    right: -35px;
    bottom: -106px;
    width: 235px;
    padding: 8px;
    background: var(--navy);
    border: 3px solid var(--blue);
    border-radius: 36px 36px 0 0;
    box-shadow: 0 25px 45px rgba(7, 64, 118, 0.25);
    overflow: hidden;
}
.workbench-phone__notch {
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 2;
    width: 65px;
    height: 16px;
    background: var(--navy);
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
}
.workbench-phone img {
    width: 100%;
    display: block;
    border-radius: 27px 27px 0 0;
}
.workbench-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    align-content: center;
}
.workbench-board__route {
    position: absolute;
    top: 44%;
    right: 8%;
    left: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}
.workbench-card {
    position: relative;
    z-index: 1;
    min-height: 230px;
    padding: 25px 20px;
    color: var(--ink);
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--white);
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(8, 72, 132, 0.1);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.workbench-card:hover,
.workbench-card.is-active {
    border-color: var(--blue);
    box-shadow: 0 18px 35px rgba(8, 90, 157, 0.2);
    transform: translateY(-7px);
}
.workbench-card > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.1em;
}
.workbench-card .ui-icon {
    width: 52px;
    height: 52px;
    margin: 25px 0 16px;
    padding: 13px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border-radius: 14px;
}
.workbench-card:nth-of-type(3) .ui-icon {
    background: linear-gradient(135deg, var(--purple), #5846d9);
}
.workbench-card strong,
.workbench-card small {
    display: block;
}
.workbench-card strong {
    font-size: 17px;
}
.workbench-card small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}
.workbench-focus {
    grid-column: 1 / -1;
    min-height: 92px;
    padding: 18px 20px 18px 24px;
    display: grid;
    grid-template-columns: auto 1fr 1.25fr 48px;
    align-items: center;
    gap: 18px;
    color: var(--white);
    background: var(--navy);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(6, 22, 47, 0.18);
}
.workbench-focus > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}
.workbench-focus h3 {
    margin: 0;
    font-size: 20px;
}
.workbench-focus p {
    margin: 0;
    color: #b8d4e8;
    font-size: 11px;
}
.workbench-focus > div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 50%;
}
.status {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.status__heading {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 50px;
}
.status__heading > p {
    margin: 0;
    color: var(--muted);
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.status-card {
    position: relative;
    min-width: 0;
    padding: 31px 28px 27px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(9, 63, 114, 0.08);
}
.status-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 23px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border-radius: 14px;
    box-shadow: 0 9px 18px rgba(17, 152, 237, 0.2);
}
.status-card__icon .ui-icon {
    width: 25px;
    height: 25px;
}
.status-card > span {
    display: block;
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
}
.status-card h3 {
    margin: 5px 0 24px;
    font-size: 27px;
}
.status-card ul {
    min-height: 175px;
    margin: 0 0 23px;
    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: 13px;
}
.status-card small {
    color: var(--muted);
    font-size: 11px;
}
.status-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-deep);
    font-size: 12px;
    font-weight: 900;
}
.status-card > a:hover .ui-icon {
    transform: translateX(4px);
}
.device-results {
    min-height: 175px;
    margin: 0 0 23px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}
.device-results div {
    padding: 10px;
    background: var(--ice);
    border: 1px solid #d2e8f8;
    border-radius: 8px;
}
.device-results dt {
    color: var(--muted);
    font-size: 9px;
}
.device-results dd {
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 11px;
    font-weight: 850;
    overflow-wrap: anywhere;
}
.device-check {
    width: 100%;
}
.reviews {
    background: linear-gradient(180deg, #f6fbff, #eaf6ff);
    border-bottom: 1px solid var(--line);
}
.reviews::before {
    position: absolute;
    top: 65px;
    right: 5%;
    width: 140px;
    height: 140px;
    content: "";
    border: 1px solid rgba(17, 152, 237, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 23px rgba(17, 152, 237, 0.035), 0 0 0 46px rgba(17, 152, 237, 0.025);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.review-card {
    position: relative;
    min-width: 0;
    padding: 28px 27px 23px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #bddcf3;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(7, 64, 118, 0.08);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.review-card:hover {
    border-color: var(--blue);
    box-shadow: 0 18px 34px rgba(7, 84, 151, 0.14);
    transform: translateY(-5px);
}
.review-card__quote {
    position: absolute;
    top: 9px;
    right: 19px;
    color: #d8ecfa;
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}
.review-card > p {
    min-height: 160px;
    margin: 12px 0 20px;
    padding-bottom: 20px;
    color: #354b63;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
.review-card > div {
    display: flex;
    align-items: center;
    gap: 11px;
}
.review-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #432b75;
    background: #d8c9ff;
    border: 3px solid #eee7ff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 950;
}
.review-avatar--cyan {
    color: #0b676c;
    background: #8be8e8;
    border-color: #d1ffff;
}
.review-avatar--coral {
    color: #8b3d2c;
    background: #ffab96;
    border-color: #ffe4dc;
}
.review-avatar--yellow {
    color: #775500;
    background: #ffdc62;
    border-color: #fff2bd;
}
.review-avatar--blue {
    color: #0b4e85;
    background: #8fd0ff;
    border-color: #d9f1ff;
}
.review-avatar--purple {
    color: #3e328c;
    background: #a99cff;
    border-color: #e4e0ff;
}
.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: 1px solid var(--line);
}
.faq__layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 78px;
}
.faq__intro > p:nth-of-type(2) {
    max-width: 400px;
    margin: 22px 0 0;
    color: var(--muted);
}
.faq-graphic {
    position: relative;
    width: 330px;
    height: 210px;
    margin-top: 30px;
}
.faq-graphic > span {
    position: absolute;
    width: 180px;
    height: 75px;
    background: var(--ice-deep);
    border: 1px solid #bedcf3;
    border-radius: 15px;
    transform: rotate(-9deg);
}
.faq-graphic > span::before,
.faq-graphic > span::after {
    position: absolute;
    left: 25px;
    height: 7px;
    content: "";
    background: #9bd5fa;
    border-radius: 99px;
}
.faq-graphic > span::before {
    top: 22px;
    width: 95px;
}
.faq-graphic > span::after {
    top: 39px;
    width: 65px;
}
.faq-graphic > span:nth-child(2) {
    right: 12px;
    bottom: 25px;
    transform: rotate(8deg);
}
.faq-graphic strong {
    position: absolute;
    top: 45px;
    right: 65px;
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border: 8px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(17, 152, 237, 0.28);
    font-size: 50px;
    line-height: 1;
}
.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: 67px;
    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(--blue);
    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(--white);
    background: radial-gradient(circle at 16% 80%, #31b8ff 0, transparent 26%), linear-gradient(112deg, #078fe9 0%, #0877d8 54%, #0758b5 100%);
    border-bottom: 1px solid #1b8ee0;
    overflow: hidden;
}
.download-cta::before {
    position: absolute;
    right: -80px;
    bottom: -170px;
    width: 500px;
    height: 500px;
    content: "";
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}
.download-cta__orbit {
    position: absolute;
    top: 45%;
    left: 40%;
    width: 950px;
    height: 180px;
    border-top: 2px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
}
.download-cta__inner {
    position: relative;
    z-index: 1;
    min-height: 220px;
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) auto;
    align-items: center;
    gap: 35px;
}
.download-cta__plane {
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    color: var(--blue-deep);
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1), 0 13px 32px rgba(0, 42, 94, 0.2);
}
.download-cta__plane .ui-icon {
    width: 52px;
    height: 52px;
    transform: rotate(16deg);
}
.download-cta .eyebrow {
    color: #bcecff;
}
.download-cta h2 {
    color: var(--white);
    font-size: clamp(31px, 3.8vw, 52px);
}
.download-cta__inner > div:nth-child(2) > span {
    display: block;
    margin-top: 12px;
    color: #d8f3ff;
}
.site-footer {
    padding: 42px 0 24px;
    color: #9bb3cb;
    background: var(--navy);
}
.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(--cyan);
}
.site-footer__bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid #263d57;
}
.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(2, 11, 25, 0.94);
}
.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 475px);
    max-height: calc(100vh - 56px);
    padding: 18px 58px 46px;
    background: var(--paper);
    border: 2px solid #76d9ff;
    border-radius: 18px;
    box-shadow: 0 0 0 7px rgba(17, 152, 237, 0.18), 0 25px 55px rgba(0, 0, 0, 0.35);
}
.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(--white);
    background: var(--blue);
    border: 2px solid var(--white);
    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: 195px;
    }
    .hero-phone--middle {
        right: 35px;
    }
    .hero-phone--back {
        right: -100px;
    }
    .hero__logo-hub {
        left: -22px;
    }
    .universe__layout {
        grid-template-columns: 1.25fr 0.75fr;
    }
    .star-map__orbit--one {
        width: 520px;
    }
    .star-node--new {
        right: 0;
    }
    .workbench__layout {
        grid-template-columns: 0.68fr 1.32fr;
    }
    .workbench__intro {
        padding-right: 140px;
    }
    .workbench-phone {
        right: -55px;
        width: 205px;
    }
}
@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: 1px solid var(--line);
        box-shadow: 0 22px 45px rgba(7, 26, 53, 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__grid {
        min-height: 980px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0;
    }
    .hero__copy {
        padding: 72px 30px 22px;
        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% - 60px);
        width: 245px;
    }
    .hero-phone--middle {
        right: calc(50% - 220px);
        width: 215px;
    }
    .hero-phone--back {
        right: calc(50% - 350px);
        width: 190px;
    }
    .hero__logo-hub {
        left: calc(50% - 325px);
    }
    .hero__badge {
        right: calc(50% - 345px);
    }
    .screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
    .universe__layout {
        grid-template-columns: 1fr;
    }
    .star-map {
        width: min(100%, 720px);
        margin-inline: auto;
    }
    .universe-panel {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        gap: 8px 28px;
        align-items: start;
    }
    .universe-panel > span,
    .universe-panel h3,
    .universe-panel > p {
        grid-column: 1;
    }
    .universe-chips,
    .universe-covers,
    .universe-panel > small {
        grid-column: 2;
    }
    .universe-chips {
        grid-row: 1 / 3;
    }
    .universe-covers {
        grid-row: 3 / 5;
    }
    .workbench__layout {
        grid-template-columns: 1fr;
    }
    .workbench__intro {
        min-height: 490px;
        padding-right: 320px;
    }
    .workbench-phone {
        right: 70px;
        bottom: -105px;
        width: 235px;
    }
    .status-grid {
        grid-template-columns: 1fr;
    }
    .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 330px;
        align-items: center;
    }
    .faq__intro .eyebrow,
    .faq__intro h2,
    .faq__intro > p:nth-of-type(2) {
        grid-column: 1;
    }
    .faq-graphic {
        grid-column: 2;
        grid-row: 1 / 4;
    }
    .download-cta__inner {
        grid-template-columns: 100px 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,
    .status__heading {
        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 15px;
    }
    .hero h1 {
        font-size: clamp(48px, 14.8vw, 70px);
    }
    .hero__lead {
        font-size: 16px;
    }
    .hero__features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero__features li {
        justify-content: center;
    }
    .hero__visual {
        min-height: 420px;
    }
    .hero-phone--front {
        right: calc(50% - 30px);
        width: 205px;
    }
    .hero-phone--middle {
        right: calc(50% - 160px);
        width: 178px;
    }
    .hero-phone--back {
        display: none;
    }
    .hero__logo-hub {
        bottom: 20px;
        left: calc(50% - 225px);
        width: 85px;
        height: 85px;
    }
    .hero__badge {
        top: 60px;
        right: calc(50% - 220px);
        width: 112px;
        height: 112px;
        font-size: 16px;
    }
    .orbit--one {
        width: 470px;
    }
    .screenshot-grid {
        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;
    }
    .star-map {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .star-map__orbit {
        display: none;
    }
    .star-map__hub {
        position: static;
        width: auto;
        height: auto;
        padding: 18px;
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 16px;
        transform: none;
    }
    .star-map__hub img {
        width: 54px;
        height: 54px;
    }
    .star-node {
        position: static;
        min-width: 0;
        width: 100%;
        min-height: 58px;
    }
    .star-node:last-child {
        grid-column: 1 / -1;
    }
    .universe-panel {
        display: block;
    }
    .universe-panel > p {
        min-height: 0;
    }
    .universe-covers {
        overflow-x: auto;
    }
    .universe-covers article {
        min-width: 70px;
    }
    .workbench__intro {
        min-height: 390px;
        padding-right: 180px;
    }
    .workbench-phone {
        right: 20px;
        width: 175px;
    }
    .workbench-board {
        grid-template-columns: 1fr;
    }
    .workbench-board__route {
        top: 10%;
        bottom: 25%;
        left: 28px;
        width: 3px;
        height: auto;
    }
    .workbench-card {
        min-height: 108px;
        padding: 17px 16px 17px 88px;
    }
    .workbench-card .ui-icon {
        position: absolute;
        top: 50%;
        left: 18px;
        margin: 0;
        transform: translateY(-50%);
    }
    .workbench-card:hover,
    .workbench-card.is-active {
        transform: translateX(5px);
    }
    .workbench-focus {
        grid-column: auto;
        grid-template-columns: 1fr 42px;
    }
    .workbench-focus > span,
    .workbench-focus h3,
    .workbench-focus p {
        grid-column: 1;
    }
    .workbench-focus > div {
        grid-column: 2;
        grid-row: 1 / 4;
    }
    .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-graphic {
        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: 50px 0;
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    .download-cta__plane {
        width: 78px;
        height: 78px;
    }
    .download-cta__plane .ui-icon {
        width: 38px;
        height: 38px;
    }
    .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: 47px;
    }
    .hero h1 {
        font-size: 48px;
    }
    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }
    .hero__actions .button {
        width: 100%;
    }
    .hero__more {
        align-self: center;
    }
    .hero__visual {
        min-height: 380px;
    }
    .hero-phone--front {
        right: 5px;
        width: 190px;
    }
    .hero-phone--middle {
        right: 145px;
        width: 155px;
    }
    .hero__logo-hub {
        left: 0;
        width: 72px;
        height: 72px;
        padding: 5px;
    }
    .hero__badge {
        top: 35px;
        right: -5px;
        width: 95px;
        height: 95px;
        font-size: 14px;
    }
    .workbench__intro {
        min-height: 345px;
        padding-right: 150px;
    }
    .workbench-phone {
        right: 0;
        width: 145px;
    }
    .faq-graphic {
        width: 100%;
    }
    .faq-graphic strong {
        right: 40px;
    }
    .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;
    }
}
