@charset "UTF-8";

:root {
    --yellow: #ffc629;
    --yellow-light: #fff3b8;
    --pink: #ff3f73;
    --pink-dark: #d91b53;
    --pink-light: #fff0f4;
    --black: #080b15;
    --graphite: #141826;
    --cream: #fff8ea;
    --white: #ffffff;
    --ink: #111217;
    --text: #66636b;
    --line: #e9e2d5;
    --container: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow: 0 24px 65px rgba(40, 25, 12, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
}

body.is-locked {
    overflow: hidden;
}

button,
a {
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button {
    appearance: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p,
figure {
    margin-top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1500;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--black);
    border-radius: 8px;
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(17, 18, 23, 0.08);
    backdrop-filter: blur(15px);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(35, 25, 17, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 74px;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(255, 63, 115, 0.2);
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    position: relative;
    display: block;
    padding: 25px 11px 23px;
    color: #4e4d54;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.main-nav a::after {
    position: absolute;
    right: 11px;
    bottom: 15px;
    left: 11px;
    height: 3px;
    content: "";
    background: var(--pink);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--pink-dark);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(3px);
}

.button-pink {
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 7px 0 #b70c41, 0 16px 30px rgba(255, 63, 115, 0.22);
}

.button-pink:active {
    box-shadow: 0 2px 0 #b70c41, 0 8px 18px rgba(255, 63, 115, 0.18);
}

.button-large {
    min-height: 58px;
    padding-inline: 32px;
    border-radius: 15px;
    font-size: 16px;
}

.button-pink .icon-download,
.header-download .icon-download {
    filter: brightness(0) invert(1);
}

.header-download {
    min-height: 45px;
    padding-inline: 20px;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 11px;
    cursor: pointer;
}

.icon,
.avatar {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.icon::before,
.avatar::before {
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-download::before { background-image: url("../icons/download.svg"); }
.icon-menu::before { background-image: url("../icons/menu.svg"); }
.icon-close::before { background-image: url("../icons/close.svg"); }
.icon-arrow::before { background-image: url("../icons/arrow.svg"); }
.icon-grid::before { background-image: url("../icons/grid.svg"); }
.icon-search::before { background-image: url("../icons/search.svg"); }
.icon-heart::before { background-image: url("../icons/heart.svg"); }
.icon-play::before { background-image: url("../icons/play.svg"); }
.icon-history::before { background-image: url("../icons/history.svg"); }
.icon-eye::before { background-image: url("../icons/eye.svg"); }
.icon-filter::before { background-image: url("../icons/filter.svg"); }
.icon-bell::before { background-image: url("../icons/bell.svg"); }
.icon-user::before { background-image: url("../icons/user.svg"); }
.icon-refresh::before { background-image: url("../icons/refresh.svg"); }
.icon-mobile::before { background-image: url("../icons/mobile.svg"); }
.icon-desktop::before { background-image: url("../icons/desktop.svg"); }
.icon-tablet::before { background-image: url("../icons/tablet.svg"); }
.icon-shield::before { background-image: url("../icons/shield.svg"); }
.icon-chevron::before { background-image: url("../icons/chevron.svg"); }
.icon-quote::before { background-image: url("../icons/quote.svg"); }
.avatar-one::before { background-image: url("../icons/avatar-1.svg"); }
.avatar-two::before { background-image: url("../icons/avatar-2.svg"); }
.avatar-three::before { background-image: url("../icons/avatar-3.svg"); }
.avatar-four::before { background-image: url("../icons/avatar-4.svg"); }
.avatar-five::before { background-image: url("../icons/avatar-5.svg"); }
.avatar-six::before { background-image: url("../icons/avatar-6.svg"); }

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 198, 41, 0.22), transparent 24%),
        linear-gradient(110deg, var(--cream) 0 60%, #ffed9e 60% 100%);
}

.hero-sun {
    position: absolute;
    top: -180px;
    left: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 198, 41, 0.55);
    border-radius: 50%;
    box-shadow: inset 0 0 0 35px rgba(255, 198, 41, 0.07), inset 0 0 0 70px rgba(255, 198, 41, 0.05);
}

.hero-film {
    position: absolute;
    border: 2px dashed rgba(255, 63, 115, 0.18);
    border-radius: 50%;
}

.hero-film-left {
    bottom: -190px;
    left: -170px;
    width: 540px;
    height: 330px;
    transform: rotate(12deg);
}

.hero-film-bottom {
    right: -150px;
    bottom: -170px;
    width: 620px;
    height: 330px;
    transform: rotate(-10deg);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(530px, 1.14fr);
    align-items: center;
    min-height: 720px;
    gap: 70px;
    padding-block: 68px 82px;
}

.hero-copy {
    max-width: 565px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 32px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow b {
    padding: 3px 7px;
    color: var(--pink-dark);
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: 0;
}

.hero h1 {
    margin-bottom: 2px;
    font-size: clamp(62px, 6.5vw, 92px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.08em;
}

.hero h2 {
    margin: 16px 0 22px;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.05em;
}

.hero-lead {
    max-width: 535px;
    margin-bottom: 30px;
    color: #635d55;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-block: 9px;
    border-bottom: 2px solid var(--black);
    font-size: 13px;
    font-weight: 850;
}

.hero-link .icon {
    width: 17px;
    height: 17px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 46px;
}

.hero-benefits li {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: center;
    gap: 9px;
}

.hero-benefits .icon {
    width: 35px;
    height: 35px;
    padding: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

.hero-benefits b {
    display: block;
    font-size: 11px;
}

.hero-benefits span {
    display: block;
    color: #858078;
    font-size: 9px;
}

.hero-ticket {
    position: relative;
    min-height: 565px;
    background: var(--pink);
    border: 3px solid var(--black);
    border-radius: 24px;
    box-shadow: 14px 14px 0 var(--black);
    transform: rotate(-1deg);
}

.ticket-edge {
    position: absolute;
    z-index: 5;
    top: 22px;
    bottom: 22px;
    width: 15px;
    background: radial-gradient(circle, var(--cream) 0 6px, transparent 6.5px) center 0 / 15px 30px repeat-y;
}

.ticket-edge-left { left: -8px; }
.ticket-edge-right { right: -8px; }

.ticket-title {
    position: absolute;
    z-index: 6;
    top: 20px;
    right: 25px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.ticket-title b {
    color: var(--yellow);
    font-size: 13px;
}

.hero-phone,
.finder-phone {
    position: absolute;
    overflow: hidden;
    padding: 7px;
    background: #03050b;
    border: 2px solid #313442;
    border-radius: 35px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.hero-phone img,
.finder-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
}

.hero-phone-main {
    z-index: 3;
    top: 56px;
    left: 58px;
    width: 260px;
    height: 490px;
    transform: rotate(-3deg);
}

.hero-phone-search {
    z-index: 2;
    right: 26px;
    bottom: 18px;
    width: 246px;
    height: 465px;
    transform: rotate(6deg);
}

.mango-mark {
    position: absolute;
    z-index: 6;
    right: 8px;
    bottom: -18px;
    width: 118px;
    height: 118px;
    padding: 6px;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 50%;
    box-shadow: 9px 9px 0 var(--yellow);
    transform: rotate(8deg);
}

.mango-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ticket-note {
    position: absolute;
    z-index: 7;
    top: 90px;
    right: -18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: var(--black);
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--black);
    font-size: 9px;
    font-weight: 850;
}

.ticket-note .icon {
    width: 24px;
    height: 24px;
}

.section {
    padding-block: 108px;
}

.center-head {
    max-width: 700px;
    margin: 0 auto 46px;
    text-align: center;
}

.center-head .eyebrow {
    justify-content: center;
}

.center-head h2,
.finder-content h2,
.console-head h2,
.release-head h2,
.utility-card h2,
.review-head h2 {
    margin-bottom: 10px;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.center-head > p,
.finder-intro,
.console-head > p,
.release-head > p,
.utility-card > p,
.review-head > p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 14px;
}

.interface-section {
    color: var(--white);
    background: var(--black);
}

.eyebrow-yellow {
    color: var(--yellow);
}

.eyebrow-yellow b {
    color: var(--yellow);
}

.interface-section .center-head > p {
    color: rgba(255, 255, 255, 0.54);
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.screen-card {
    padding: 8px;
    background: #111522;
    border: 1px solid #292e3c;
    border-radius: 15px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.screen-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
}

.screen-card header {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 8px 10px;
    color: var(--black);
    background: var(--yellow);
    border-radius: 9px 9px 6px 6px;
}

.screen-card header > b {
    font-size: 26px;
    font-style: italic;
    line-height: 1;
}

.screen-card h3 {
    margin-bottom: 0;
    font-size: 13px;
}

.screen-card header span {
    color: rgba(0, 0, 0, 0.55);
    font-size: 9px;
}

.screen-preview {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #050711;
    border: 0;
    border-radius: 7px 7px 10px 10px;
    cursor: zoom-in;
}

.screen-preview img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
    transition: transform 260ms ease;
}

.screen-preview:hover img {
    transform: scale(1.025);
}

.screen-preview > span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    color: var(--black);
    background: var(--yellow);
    border-radius: 8px;
    opacity: 0;
    font-size: 9px;
    font-weight: 850;
    transform: translateY(5px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.screen-preview:hover > span,
.screen-preview:focus-visible > span {
    opacity: 1;
    transform: translateY(0);
}

.screen-preview > span .icon {
    width: 14px;
    height: 14px;
}

.finder-section {
    background: var(--cream);
}

.finder-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 86px;
}

.finder-visual {
    display: grid;
    place-items: center;
}

.finder-ticket {
    position: relative;
    width: min(100%, 430px);
    min-height: 590px;
    background: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 21px;
    box-shadow: 14px 14px 0 var(--pink);
}

.finder-ticket .ticket-edge {
    background: radial-gradient(circle, var(--cream) 0 6px, transparent 6.5px) center 0 / 15px 30px repeat-y;
}

.finder-phone {
    top: 33px;
    left: 50%;
    width: 270px;
    height: 520px;
    transform: translateX(-50%);
}

.vertical-label {
    position: absolute;
    right: 16px;
    bottom: 20px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
}

.finder-intro {
    max-width: 660px;
    margin-bottom: 30px;
}

.finder-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 15px;
}

.finder-tabs button {
    display: grid;
    gap: 5px;
    min-height: 88px;
    place-items: center;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--black);
    transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.finder-tabs button:hover,
.finder-tabs button.is-active {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 4px 7px 0 var(--black);
}

.finder-tabs button b {
    font-size: 21px;
    line-height: 1;
}

.finder-tabs button span {
    font-size: 11px;
    font-weight: 850;
}

.finder-detail {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 14px;
}

.finder-detail > .icon {
    width: 58px;
    height: 58px;
    padding: 16px;
    background: var(--yellow);
    border-radius: 12px;
}

.finder-detail span {
    color: var(--pink);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.finder-detail h3 {
    margin-bottom: 3px;
    font-size: 16px;
}

.finder-detail p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 11px;
}

.finder-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.finder-chips li {
    padding: 7px 12px;
    color: #6b4c00;
    background: var(--yellow-light);
    border: 1px solid #e8bf44;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

.console-section {
    color: var(--white);
    background: var(--pink);
}

.console-head {
    display: grid;
    grid-template-columns: minmax(330px, 0.9fr) minmax(360px, 1.1fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 42px;
}

.eyebrow-light {
    color: var(--yellow);
}

.eyebrow-light b {
    color: var(--yellow);
}

.console-head > p {
    color: rgba(255, 255, 255, 0.74);
}

.console-board {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    min-height: 590px;
    gap: 55px;
    padding: 42px 54px;
    background: var(--black);
    border: 3px solid var(--black);
    border-radius: 23px;
    box-shadow: 14px 14px 0 var(--yellow);
}

.console-board .ticket-edge {
    background: radial-gradient(circle, var(--pink) 0 6px, transparent 6.5px) center 0 / 15px 30px repeat-y;
}

.console-phones {
    position: relative;
    min-height: 500px;
}

.console-phones figure {
    position: absolute;
    width: 225px;
    margin: 0;
    padding: 7px 7px 42px;
    overflow: hidden;
    background: #04060d;
    border: 2px solid #3a3d49;
    border-radius: 29px;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.42);
}

.console-phones figure:first-child {
    top: 18px;
    left: 4%;
    transform: rotate(-4deg);
}

.console-phones figure:last-child {
    z-index: 2;
    top: 0;
    right: 4%;
    transform: rotate(4deg);
}

.console-phones img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
}

.console-phones figcaption {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    color: var(--yellow);
    text-align: center;
    font-size: 10px;
    font-weight: 850;
}

.console-tools {
    display: grid;
    gap: 13px;
}

.console-tools article {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: var(--black);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 14px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.console-tools article:hover,
.console-tools article.is-active {
    border-color: var(--yellow);
    transform: translateX(7px);
}

.console-tools article > .icon {
    width: 52px;
    height: 52px;
    padding: 14px;
    background: var(--pink-light);
    border-radius: 12px;
}

.console-tools h3 {
    margin-bottom: 2px;
    font-size: 16px;
}

.console-tools p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 11px;
}

.console-tools article > span {
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
}

.release-section {
    background: var(--white);
}

.release-head {
    max-width: 740px;
    margin: 0 auto 58px;
    text-align: center;
}

.release-head .eyebrow {
    justify-content: center;
}

.release-head h2 span {
    color: var(--pink);
}

.release-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.release-track::before {
    position: absolute;
    top: 63px;
    right: 8%;
    left: 8%;
    height: 2px;
    content: "";
    background: repeating-linear-gradient(90deg, var(--pink) 0 7px, transparent 7px 14px);
}

.release-track li {
    position: relative;
    z-index: 1;
    text-align: center;
}

.release-track li > b {
    display: block;
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.08em;
}

.release-track li > span {
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 auto 18px;
    background: var(--yellow);
    border: 3px solid var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--white);
}

.release-track h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.release-track p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 10px;
}

.update-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 46px;
    padding: 26px 30px;
    background: var(--cream);
    border: 2px solid var(--black);
    border-radius: 17px;
    box-shadow: 8px 8px 0 var(--yellow);
}

.update-strip > div span {
    color: var(--pink);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.update-strip h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.update-strip ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.update-strip li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 750;
}

.update-strip .icon {
    width: 17px;
    height: 17px;
}

.utility-section {
    padding-block: 96px;
    background: var(--yellow-light);
}

.utility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.utility-card {
    position: relative;
    overflow: hidden;
    padding: 43px;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid var(--black);
    border-radius: 20px;
    box-shadow: 9px 9px 0 var(--pink);
}

.card-corner {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 70px;
    height: 70px;
    background: var(--yellow);
    border: 2px solid var(--black);
    transform: rotate(45deg);
}

.device-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0;
}

.device-types span {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 16px 8px;
    background: var(--white);
    border: 1px solid #ddd1b5;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 750;
}

.device-types .icon {
    width: 29px;
    height: 29px;
}

.device-result {
    display: grid;
    gap: 2px;
    margin-top: 22px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid #ddd1b5;
    border-radius: 10px;
}

.device-result b {
    font-size: 11px;
}

.device-result span {
    color: var(--text);
    font-size: 9px;
}

.faq-list {
    margin-top: 26px;
}

.faq-item {
    margin-bottom: 8px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 10px;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
    font-weight: 800;
}

.faq-item button span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item button b {
    color: var(--pink);
    font-size: 9px;
}

.faq-item button .icon {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
}

.faq-item.is-open {
    box-shadow: 4px 4px 0 var(--pink);
}

.faq-item.is-open button .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 17px 15px 44px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 10px;
}

.review-section {
    background: var(--white);
}

.review-head {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    align-items: end;
    gap: 75px;
    margin-bottom: 44px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.review-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    padding: 25px;
    background: #fffdf8;
    border: 2px solid var(--black);
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--yellow);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:nth-child(even) {
    box-shadow: 6px 6px 0 var(--pink);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 11px 0 var(--yellow);
}

.review-card:nth-child(even):hover {
    box-shadow: 6px 11px 0 var(--pink);
}

.review-index {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-index .icon {
    width: 27px;
    height: 27px;
    filter: invert(36%) sepia(98%) saturate(3449%) hue-rotate(326deg) brightness(105%);
}

.review-index span {
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
}

.review-card > p {
    margin-bottom: 22px;
    color: #57545b;
    font-size: 12px;
    line-height: 1.92;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.review-card .avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
}

.review-card footer div {
    display: grid;
}

.review-card footer b {
    font-size: 11px;
}

.review-card footer span {
    color: #918b82;
    font-size: 9px;
}

.download-section {
    position: relative;
    overflow: hidden;
    padding-block: 80px;
    background: var(--black);
}

.download-reel {
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 460px;
    height: 270px;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.download-ticket {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 175px;
    gap: 28px;
    padding: 34px 48px;
    background: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 22px;
    box-shadow: 12px 12px 0 var(--pink);
}

.download-ticket .ticket-edge {
    background: radial-gradient(circle, var(--black) 0 6px, transparent 6.5px) center 0 / 15px 30px repeat-y;
}

.download-mark {
    width: 82px;
    height: 82px;
    padding: 5px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 22px;
    transform: rotate(-6deg);
}

.download-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.download-ticket p {
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.download-ticket h2 {
    margin-bottom: 1px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.download-ticket > div:not(.download-mark) > span {
    color: #685000;
    font-size: 11px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: var(--black);
}

.footer-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 120px;
    gap: 50px;
}

.footer-brand {
    color: var(--white);
    font-size: 15px;
}

.footer-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-brand span {
    display: grid;
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.34);
    font-size: 9px;
    font-weight: 500;
}

.footer-nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

.footer-nav a {
    font-size: 10px;
}

.footer-nav a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.32);
    font-size: 9px;
}

.lightbox {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(4, 6, 12, 0.9);
    backdrop-filter: blur(9px);
}

.lightbox.is-open {
    display: flex;
}

.lightbox figure {
    position: relative;
    max-width: min(88vw, 430px);
    max-height: 88vh;
    margin: 0;
}

.lightbox figure > img {
    max-height: 84vh;
    object-fit: contain;
    border: 7px solid var(--white);
    border-radius: 22px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}

.lightbox figure > button {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--pink);
}

.toast {
    position: fixed;
    z-index: 1600;
    right: 24px;
    bottom: 24px;
    padding: 13px 18px;
    color: var(--white);
    background: var(--black);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--pink);
    opacity: 0;
    pointer-events: none;
    font-size: 12px;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .header-inner { gap: 14px; }
    .main-nav a { padding-inline: 8px; font-size: 12px; }
    .main-nav a::after { right: 8px; left: 8px; }
    .hero-layout { grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr); gap: 38px; }
    .hero-ticket { min-height: 535px; }
    .hero-phone-main { left: 42px; width: 245px; height: 465px; }
    .hero-phone-search { width: 225px; height: 430px; }
    .mango-mark { width: 100px; height: 100px; }
    .screen-grid { gap: 12px; }
    .finder-layout { gap: 50px; }
    .console-board { gap: 30px; padding-inline: 38px; }
}

@media (max-width: 991px) {
    html { scroll-padding-top: 72px; }
    .container { width: min(calc(100% - 36px), var(--container)); }
    .site-header { backdrop-filter: none; }
    .header-inner { min-height: 68px; }
    .brand img { width: 42px; height: 42px; }
    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 18px;
        left: 18px;
        display: none;
        margin: 0;
        padding: 12px;
        background: var(--white);
        border: 2px solid var(--black);
        border-radius: 14px;
        box-shadow: 7px 7px 0 var(--yellow);
    }
    .main-nav.is-open { display: block; }
    .main-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
    .main-nav a { padding: 12px 13px; border-radius: 8px; font-size: 14px; }
    .main-nav a::after { display: none; }
    .main-nav a:hover,
    .main-nav a.is-active { background: var(--pink-light); }
    .header-actions { margin-left: auto; }
    .menu-button { display: grid; place-items: center; }
    .hero-layout { grid-template-columns: 1fr 1fr; min-height: 690px; gap: 26px; }
    .hero h1 { font-size: clamp(51px, 7vw, 69px); }
    .hero-ticket { min-height: 505px; }
    .hero-phone-main { left: 18px; width: 218px; height: 420px; }
    .hero-phone-search { right: 4px; width: 200px; height: 385px; }
    .ticket-note { right: -8px; }
    .section { padding-block: 88px; }
    .screen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .screen-preview img { aspect-ratio: 9 / 14; }
    .finder-layout { grid-template-columns: 350px 1fr; gap: 38px; }
    .finder-ticket { min-height: 530px; }
    .finder-phone { width: 235px; height: 460px; }
    .finder-tabs { grid-template-columns: repeat(2, 1fr); }
    .console-head { gap: 40px; }
    .console-board { grid-template-columns: 1fr; }
    .console-phones { min-height: 510px; }
    .console-phones figure:first-child { left: 24%; }
    .console-phones figure:last-child { right: 24%; }
    .console-tools { grid-template-columns: repeat(3, 1fr); }
    .console-tools article { grid-template-columns: 1fr; align-content: start; }
    .console-tools article:hover,
    .console-tools article.is-active { transform: translateY(-5px); }
    .update-strip { grid-template-columns: 1fr; gap: 18px; }
    .utility-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-main { grid-template-columns: 1fr; gap: 20px; padding-block: 35px; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-nav ul { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 767px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand { gap: 8px; font-size: 17px; }
    .brand img { width: 38px; height: 38px; }
    .header-download { display: none; }
    .main-nav ul { grid-template-columns: 1fr; }
    .hero { background: linear-gradient(160deg, var(--cream) 0 65%, #ffed9e 65% 100%); }
    .hero-layout { grid-template-columns: 1fr; gap: 50px; padding-block: 54px 82px; }
    .hero-copy { max-width: none; }
    .hero h1 { font-size: clamp(52px, 16vw, 69px); }
    .hero h2 { font-size: clamp(27px, 8.5vw, 37px); }
    .hero-lead { font-size: 14px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
    .hero-actions .button { width: 100%; }
    .hero-link { align-self: flex-start; }
    .hero-benefits { gap: 8px; margin-top: 34px; }
    .hero-benefits li { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .hero-ticket { min-height: 515px; box-shadow: 9px 9px 0 var(--black); }
    .hero-phone-main { left: 8%; width: 230px; height: 445px; }
    .hero-phone-search { right: 3%; width: 205px; height: 395px; }
    .mango-mark { right: 1%; width: 88px; height: 88px; }
    .section { padding-block: 72px; }
    .center-head h2,
    .finder-content h2,
    .console-head h2,
    .release-head h2,
    .utility-card h2,
    .review-head h2 { font-size: clamp(35px, 11vw, 48px); }
    .screen-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        margin-inline: -14px;
        padding: 3px 14px 18px;
        scroll-padding-left: 14px;
        scroll-snap-type: x mandatory;
    }
    .screen-card { min-width: min(78vw, 315px); scroll-snap-align: start; }
    .screen-preview img { aspect-ratio: 9 / 15; }
    .finder-layout { grid-template-columns: 1fr; gap: 50px; }
    .finder-ticket { min-height: 535px; }
    .finder-tabs { grid-template-columns: repeat(4, minmax(105px, 1fr)); overflow-x: auto; margin-inline: -14px; padding: 4px 14px 10px; }
    .finder-detail { grid-template-columns: 48px 1fr; padding: 18px; }
    .finder-detail > .icon { width: 48px; height: 48px; padding: 13px; }
    .console-head,
    .review-head { grid-template-columns: 1fr; gap: 17px; margin-bottom: 34px; }
    .console-board { min-height: auto; padding: 32px 18px; box-shadow: 9px 9px 0 var(--yellow); }
    .console-phones { min-height: 440px; }
    .console-phones figure { width: 190px; }
    .console-phones figure:first-child { left: 0; }
    .console-phones figure:last-child { right: 0; }
    .console-tools { grid-template-columns: 1fr; }
    .console-tools article { grid-template-columns: 48px 1fr auto; }
    .release-track { grid-template-columns: 1fr; gap: 11px; }
    .release-track::before { top: 20px; right: auto; bottom: 20px; left: 21px; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--pink) 0 7px, transparent 7px 14px); }
    .release-track li { display: grid; grid-template-columns: 44px 15px 1fr; align-items: center; gap: 10px; padding: 13px; text-align: left; background: var(--cream); border-radius: 12px; }
    .release-track li > b { margin: 0; font-size: 24px; }
    .release-track li > span { margin: 0; }
    .update-strip { padding: 22px 18px; box-shadow: 6px 6px 0 var(--yellow); }
    .update-strip ul { grid-template-columns: 1fr; }
    .utility-section { padding-block: 72px; }
    .utility-card { padding: 32px 20px; box-shadow: 6px 6px 0 var(--pink); }
    .review-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        margin-inline: -14px;
        padding: 4px 14px 18px;
        scroll-padding-left: 14px;
        scroll-snap-type: x mandatory;
    }
    .review-card { min-width: min(86vw, 350px); scroll-snap-align: start; }
    .download-section { padding-block: 68px; }
    .download-ticket { grid-template-columns: 1fr; justify-items: center; gap: 23px; padding: 34px 24px; text-align: center; box-shadow: 8px 8px 0 var(--pink); }
    .download-ticket > .button { width: 100%; }
    .footer-bottom { justify-content: center; flex-wrap: wrap; padding-block: 14px; text-align: center; }
}

@media (max-width: 479px) {
    .header-inner { gap: 9px; }
    .hero-benefits b { font-size: 10px; }
    .hero-benefits span { display: none; }
    .hero-ticket { min-height: 435px; }
    .hero-phone,
    .finder-phone { padding: 5px; border-radius: 29px; }
    .hero-phone img,
    .finder-phone img { border-radius: 23px; }
    .hero-phone-main { left: 3%; width: 195px; height: 380px; }
    .hero-phone-search { right: -8%; width: 175px; height: 340px; }
    .ticket-note { top: 70px; right: -4px; padding: 7px 9px; }
    .mango-mark { bottom: -10px; width: 70px; height: 70px; border-width: 2px; box-shadow: 5px 5px 0 var(--yellow); }
    .finder-ticket { min-height: 480px; }
    .finder-phone { width: 225px; height: 435px; }
    .finder-detail { grid-template-columns: 1fr; }
    .console-phones { min-height: 370px; }
    .console-phones figure { width: 160px; padding: 5px 5px 36px; border-radius: 23px; }
    .console-phones img { border-radius: 17px; }
    .console-tools article { grid-template-columns: 42px 1fr auto; padding: 16px; }
    .console-tools article > .icon { width: 42px; height: 42px; padding: 11px; }
    .device-types { gap: 6px; }
    .device-types span { padding: 13px 4px; }
    .faq-answer { padding-left: 16px; }
    .review-card { min-height: 360px; }
    .download-ticket h2 { font-size: 36px; }
}

@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;
    }
}
