@charset "UTF-8";
:root {
    --navy: #08142a;
    --navy-soft: #10213e;
    --ink: #111b32;
    --text: #252b3b;
    --muted: #717789;
    --cream: #fff8e9;
    --paper: #fffdf8;
    --white: #ffffff;
    --line: #e8e5e0;
    --rose: #ff3f79;
    --coral: #ff6b68;
    --orange: #ff983b;
    --gold: #ffc94c;
    --violet: #7c6cff;
    --blue: #498cf3;
    --green: #41bf8b;
    --warm-gradient: linear-gradient(110deg, #ff3f79 0%, #ff6b68 42%, #ffc94c 100%);
    --shadow: 0 22px 60px rgba(45, 32, 39, .12);
    --shadow-dark: 0 30px 80px rgba(1, 8, 24, .42);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --header-height: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body { margin: 0; color: var(--text); background: var(--paper); font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; -webkit-tap-highlight-color: transparent; }
a, button { outline: none; }
a:focus-visible, button:focus-visible { box-shadow: 0 0 0 3px rgba(255,63,121,.28); }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 108px 0; }
.ui-icon { display: inline-block; width: 1em; height: 1em; flex: 0 0 auto; }
.ui-icon::before { display: block; width: 100%; height: 100%; content: ""; background: currentColor; -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat; }
.icon-menu { --icon: url("../icons/menu.svg"); }
.icon-close { --icon: url("../icons/close.svg"); }
.icon-download { --icon: url("../icons/download.svg"); }
.icon-arrow { --icon: url("../icons/arrow.svg"); }
.icon-arrow-up { --icon: url("../icons/arrow-up.svg"); }
.icon-play { --icon: url("../icons/play.svg"); }
.icon-search { --icon: url("../icons/search.svg"); }
.icon-history { --icon: url("../icons/history.svg"); }
.icon-star { --icon: url("../icons/star.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"); }
.icon-fullscreen { --icon: url("../icons/fullscreen.svg"); }
.icon-shield { --icon: url("../icons/shield.svg"); }
.icon-check { --icon: url("../icons/check.svg"); }
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); border-bottom: 1px solid rgba(17,27,50,.08); background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; color: var(--ink); font-size: 19px; font-weight: 900; letter-spacing: .02em; }
.brand img { width: 46px; height: 46px; border: 2px solid #fff; border-radius: 13px; object-fit: cover; box-shadow: 0 8px 22px rgba(255,63,121,.22); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a { position: relative; display: block; padding: 10px 11px; color: #62697a; font-size: 14px; font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.main-nav a::after { position: absolute; right: 11px; bottom: 0; left: 11px; height: 3px; content: ""; border-radius: 4px; background: var(--warm-gradient); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--rose); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; color: var(--ink); border: 1px solid #e8e4df; border-radius: 12px; background: #fff; cursor: pointer; }
.nav-toggle .ui-icon { font-size: 23px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 0; border-radius: 999px; font-size: 15px; font-weight: 900; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.button:hover { transform: translateY(-3px); filter: saturate(1.08); }
.button:active { transform: translate(3px, 3px); box-shadow: 0 2px 0 rgba(46,26,16,.7); }
.button--warm { color: #fff; background: var(--warm-gradient); box-shadow: 4px 5px 0 #3b2533, 0 13px 28px rgba(255,74,114,.2); }
.button--white { color: var(--rose); background: #fff; box-shadow: 4px 5px 0 #5d2335, 0 14px 30px rgba(68,17,33,.2); }
.button--large { min-height: 58px; padding: 0 31px; font-size: 16px; }
.button .ui-icon { font-size: 18px; }
.header-download { min-height: 43px; padding: 0 19px; font-size: 14px; box-shadow: 3px 4px 0 #3b2533; }
.hero { position: relative; min-height: 680px; padding: 75px 0 70px; background: radial-gradient(circle at 12% 18%, rgba(255,201,76,.32), transparent 25%), radial-gradient(circle at 86% 75%, rgba(255,63,121,.17), transparent 26%), linear-gradient(115deg, #fffaf0, #fff3d6 52%, #ffe5d8); overflow: hidden; }
.hero::before { position: absolute; top: -150px; left: -90px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(255,131,71,.22); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,201,76,.05), 0 0 0 96px rgba(255,63,121,.035); }
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 530px; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 45px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--rose); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow .ui-icon { font-size: 15px; }
.eyebrow--warm { color: var(--coral); }
.eyebrow--warm .ui-icon { color: var(--rose); }
.eyebrow--light { color: #ff8cb0; }
.hero h1 { color: var(--ink); font-size: clamp(66px, 6.4vw, 92px); line-height: .98; letter-spacing: -.075em; }
.hero h1 span { color: transparent; background: var(--warm-gradient); -webkit-background-clip: text; background-clip: text; }
.hero h2 { max-width: 580px; margin-top: 24px; color: #2f3545; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.28; }
.hero-lead { max-width: 570px; margin-top: 19px; color: #696d79; font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 31px; }
.hero-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: 14px; font-weight: 900; }
.hero-text-link .ui-icon { color: var(--rose); }
.hero-notes { display: flex; margin-top: 38px; gap: 22px; flex-wrap: wrap; }
.hero-notes li { display: flex; align-items: center; gap: 6px; color: #696d79; font-size: 12px; font-weight: 700; }
.hero-notes .ui-icon { color: var(--green); }
.hero-stage { position: relative; height: 555px; }
.hero-phone { position: absolute; z-index: 3; overflow: hidden; border: 7px solid #101626; border-radius: 39px; background: #060912; box-shadow: var(--shadow-dark); }
.hero-phone img { width: 100%; height: 100%; object-fit: cover; }
.hero-phone--primary { top: 6px; left: 16%; width: 286px; height: 509px; transform: rotate(-5deg); }
.hero-phone--secondary { z-index: 4; top: 44px; right: 2%; width: 264px; height: 470px; transform: rotate(5deg); }
.phone-speaker { position: absolute; z-index: 2; top: 8px; left: 50%; width: 78px; height: 19px; border-radius: 20px; background: #070914; transform: translateX(-50%); }
.play-orb { position: absolute; z-index: 6; top: 44%; left: 53%; display: grid; width: 82px; height: 82px; place-items: center; color: #fff; border: 6px solid rgba(255,255,255,.75); border-radius: 50%; background: var(--warm-gradient); box-shadow: 0 18px 40px rgba(255,63,121,.4); transform: translate(-50%,-50%); }
.play-orb .ui-icon { font-size: 28px; transform: translateX(2px); }
.ticket { position: absolute; z-index: 1; top: 40px; right: -16px; width: 500px; height: 300px; padding: 30px; color: rgba(100,61,20,.7); border: 2px dashed rgba(255,127,70,.42); border-radius: 30px; background: rgba(255,207,92,.55); transform: rotate(10deg); }
.ticket::before, .ticket::after { position: absolute; top: 50%; width: 40px; height: 40px; content: ""; border-radius: 50%; background: #ffe9cf; transform: translateY(-50%); }
.ticket::before { left: -23px; }
.ticket::after { right: -23px; }
.ticket span, .ticket small { position: absolute; font-weight: 900; letter-spacing: .18em; }
.ticket span { top: 20px; right: 33px; font-size: 12px; }
.ticket b { position: absolute; right: 34px; bottom: 34px; font-size: 26px; }
.ticket small { bottom: 30px; left: 35px; }
.hand-note { position: absolute; z-index: 6; right: -18px; bottom: 3px; color: var(--rose); font-family: "KaiTi", "STKaiti", serif; font-size: 19px; font-weight: 800; line-height: 1.45; transform: rotate(-6deg); }
.film-ribbon { position: absolute; z-index: 1; display: flex; height: 76px; gap: 10px; padding: 11px; border-top: 9px dotted rgba(255,112,90,.28); border-bottom: 9px dotted rgba(255,112,90,.28); background: rgba(255,201,76,.16); transform: rotate(-14deg); }
.film-ribbon span { width: 110px; flex: 0 0 auto; border-radius: 6px; background: linear-gradient(135deg, rgba(255,63,121,.2), rgba(255,201,76,.3)); }
.film-ribbon--top { top: 35px; right: -250px; width: 620px; }
.film-ribbon--bottom { bottom: 25px; left: -210px; width: 560px; transform: rotate(12deg); }
.interface { background: #fff; }
.section-heading { margin-bottom: 43px; }
.section-heading h2, .faq-copy h2 { color: var(--ink); font-size: clamp(36px, 4vw, 50px); line-height: 1.15; letter-spacing: -.04em; }
.section-heading > p, .section-heading--row > p, .faq-copy > p { max-width: 520px; color: var(--muted); }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.section-heading--light h2 { color: #fff; }
.section-heading--light > p { color: #aebbd2; }
.interface-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.interface-card { position: relative; padding: 14px; border: 1px solid rgba(21,31,50,.05); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.interface-card::before { position: absolute; top: 9px; right: 14px; color: rgba(17,27,50,.07); content: attr(class); font-size: 0; }
.interface-card:hover { box-shadow: var(--shadow); transform: translateY(-8px); }
.interface-card--rose { background: #fff0f4; }
.interface-card--violet { background: #f1efff; }
.interface-card--gold { background: #fff7d9; }
.interface-card--mint { background: #eafbf6; }
.shot-button { display: block; width: 100%; padding: 0; border: 0; border-radius: 16px; background: #080c16; overflow: hidden; cursor: zoom-in; }
.interface-media { position: relative; display: block; aspect-ratio: 9 / 13; overflow: hidden; }
.interface-media::after { position: absolute; inset: auto 0 0; height: 25%; content: ""; background: linear-gradient(transparent, rgba(5,8,17,.48)); }
.interface-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.interface-card:hover .interface-media img { transform: scale(1.035); }
.interface-media > .ui-icon { position: absolute; z-index: 2; right: 14px; bottom: 14px; display: grid; width: 39px; height: 39px; place-items: center; padding: 11px; color: #fff; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(8,14,29,.72); }
.interface-meta { display: flex; min-height: 98px; align-items: center; gap: 14px; padding: 18px 8px 7px; }
.interface-meta > span { color: var(--rose); font-size: 23px; font-weight: 900; }
.interface-meta h3 { color: var(--ink); font-size: 17px; }
.interface-meta p { margin-top: 2px; color: var(--muted); font-size: 12px; }
.moment { background: radial-gradient(circle at 90% 18%, rgba(255,201,76,.27), transparent 28%), linear-gradient(120deg, #fff8df, #fff2df 55%, #fff7ec); overflow: hidden; }
.moment::before { position: absolute; right: -130px; bottom: -170px; width: 410px; height: 410px; content: ""; border: 44px solid rgba(255,201,76,.09); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,63,121,.035); }
.moment-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; }
.mood-dial { position: relative; width: min(420px,100%); aspect-ratio: 1; margin: 0 auto; border: 2px solid rgba(255,130,70,.24); border-radius: 50%; background: conic-gradient(from -30deg, #ffc94c 0 23%, #ff8d4c 23% 47%, #ff4a78 47% 71%, #8271ff 71% 88%, #76c9ef 88%); box-shadow: 0 28px 70px rgba(154,84,47,.15); }
.mood-dial::before { position: absolute; inset: 42px; content: ""; border: 15px solid #fff8e6; border-radius: 50%; background: radial-gradient(circle at 50% 42%, #fff 0 30%, #fff8e7 65%); box-shadow: inset 0 0 0 1px rgba(255,120,70,.16), 0 12px 30px rgba(142,78,42,.14); }
.mood-dial > .ui-icon { position: absolute; z-index: 3; top: 50%; left: 50%; width: 98px; height: 98px; padding: 34px; color: #fff; border: 7px solid rgba(255,255,255,.7); border-radius: 50%; background: var(--warm-gradient); box-shadow: 0 18px 38px rgba(255,63,121,.3); transform: translate(-50%,-50%); }
.mood-dial em { position: absolute; z-index: 4; top: 67%; left: 50%; color: var(--rose); font-size: 13px; font-style: normal; font-weight: 900; letter-spacing: .14em; transform: translateX(-50%); }
.mood-dial b { position: absolute; width: 16px; height: 16px; border: 4px solid #fff; border-radius: 50%; background: var(--rose); box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.mood-dial b:nth-of-type(1) { top: 5%; left: 47%; }
.mood-dial b:nth-of-type(2) { top: 45%; right: 4%; background: var(--orange); }
.mood-dial b:nth-of-type(3) { right: 27%; bottom: 8%; background: var(--violet); }
.mood-dial b:nth-of-type(4) { top: 46%; left: 4%; background: var(--blue); }
.dial-ring { position: absolute; z-index: 2; border: 1px dashed rgba(255,255,255,.8); border-radius: 50%; }
.dial-ring--one { inset: 18px; }
.dial-ring--two { inset: 72px; border-color: rgba(255,76,117,.2); }
.mood-panel { min-width: 0; }
.mood-tabs { display: grid; margin-bottom: 18px; grid-template-columns: repeat(4,1fr); gap: 10px; }
.mood-tab { min-height: 48px; padding: 0 13px; color: #6b5d5d; border: 1px solid rgba(255,126,79,.18); border-radius: 999px; background: rgba(255,255,255,.65); font-size: 13px; font-weight: 900; cursor: pointer; transition: .2s ease; }
.mood-tab:hover, .mood-tab.is-active { color: #fff; border-color: transparent; background: var(--warm-gradient); box-shadow: 0 10px 24px rgba(255,63,121,.2); }
.mood-result { position: relative; min-height: 350px; padding: 49px; overflow: hidden; border: 1px solid rgba(255,113,75,.16); border-radius: var(--radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--shadow); }
.mood-result::before { position: absolute; top: -120px; right: -100px; width: 330px; height: 330px; content: ""; border: 32px solid rgba(255,201,76,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,63,121,.035); }
.mood-result > span { position: relative; z-index: 2; color: var(--rose); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.mood-result h3 { position: relative; z-index: 2; margin-top: 10px; color: var(--ink); font-size: 38px; line-height: 1.2; }
.mood-result > p { position: relative; z-index: 2; max-width: 510px; min-height: 56px; margin-top: 14px; color: var(--muted); }
.mood-result > div { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; margin-top: 28px; color: #4c5261; font-size: 13px; }
.mood-result > div .ui-icon { color: var(--orange); font-size: 19px; }
.mood-result a { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--rose); font-size: 13px; font-weight: 900; }
.tracker { color: #fff; background: radial-gradient(circle at 15% 15%, rgba(73,140,243,.18), transparent 28%), radial-gradient(circle at 87% 70%, rgba(255,63,121,.13), transparent 30%), var(--navy); overflow: hidden; }
.tracker-film { position: absolute; right: -180px; bottom: 30px; width: 780px; height: 90px; opacity: .16; border-top: 12px dotted #c8d2e8; border-bottom: 12px dotted #c8d2e8; background: rgba(255,255,255,.06); transform: rotate(-11deg); }
.tracker-layout { position: relative; display: grid; grid-template-columns: 1fr 250px; align-items: stretch; gap: 32px; }
.tracker-board { min-width: 0; }
.tracker-flow { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr; align-items: center; gap: 4px; }
.tracker-step { min-height: 143px; padding: 20px 13px; color: #aebbd2; border: 1px solid rgba(155,175,211,.17); border-radius: 18px; background: rgba(255,255,255,.045); text-align: center; cursor: pointer; transition: .2s ease; }
.tracker-step > span { display: grid; width: 48px; height: 48px; margin: 0 auto 10px; place-items: center; color: #fff; border-radius: 15px; background: #223453; transition: .2s ease; }
.tracker-step > span .ui-icon { font-size: 20px; }
.tracker-step b, .tracker-step small { display: block; }
.tracker-step b { color: #fff; font-size: 17px; }
.tracker-step small { margin-top: 3px; font-size: 11px; }
.tracker-step:hover, .tracker-step.is-active { border-color: rgba(255,103,114,.65); background: rgba(255,63,121,.1); transform: translateY(-4px); }
.tracker-step.is-active > span { background: var(--warm-gradient); box-shadow: 0 10px 25px rgba(255,63,121,.24); }
.flow-divider { color: #657696; }
.tracker-detail { display: grid; min-height: 148px; align-items: center; margin-top: 18px; padding: 29px; border: 1px solid rgba(155,175,211,.16); border-radius: 20px; background: rgba(16,33,62,.8); grid-template-columns: auto 1fr; gap: 20px; }
.tracker-detail__icon { display: grid; width: 64px; height: 64px; place-items: center; color: #fff; border-radius: 19px; background: var(--warm-gradient); box-shadow: 0 12px 28px rgba(255,63,121,.2); }
.tracker-detail__icon .ui-icon { font-size: 27px; }
.tracker-detail span { color: #ff91b2; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.tracker-detail h3 { margin-top: 3px; font-size: 21px; }
.tracker-detail p { min-height: 44px; margin-top: 5px; color: #aebbd2; font-size: 13px; }
.tracker-tools { display: grid; margin-top: 18px; grid-template-columns: repeat(3,1fr); gap: 13px; }
.tracker-tools article { display: flex; min-height: 92px; align-items: center; gap: 13px; padding: 18px; border: 1px solid rgba(155,175,211,.15); border-radius: 16px; background: rgba(255,255,255,.035); }
.tracker-tools article > .ui-icon { display: grid; width: 40px; height: 40px; place-items: center; padding: 10px; color: var(--gold); border-radius: 12px; background: rgba(255,201,76,.09); }
.tracker-tools h3 { font-size: 14px; }
.tracker-tools p { color: #8695af; font-size: 11px; }
.tracker-phone { position: relative; align-self: center; height: 480px; overflow: hidden; border: 7px solid #e7edf7; border-radius: 38px; background: #070b13; box-shadow: var(--shadow-dark); transform: rotate(3deg); }
.tracker-phone img { width: 100%; height: 100%; object-fit: cover; }
.service-band { padding: 46px 0; background: #fff8e9; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.service-card { display: grid; min-height: 244px; align-items: start; padding: 29px; border: 1px solid #efe5d3; border-radius: 20px; background: #fff; grid-template-columns: auto 1fr; gap: 18px; box-shadow: 0 13px 34px rgba(93,59,35,.06); }
.service-card > .ui-icon { display: grid; width: 54px; height: 54px; place-items: center; padding: 15px; color: #fff; border-radius: 17px; background: linear-gradient(145deg, var(--blue), var(--violet)); box-shadow: 0 10px 22px rgba(73,140,243,.18); }
.service-card:nth-child(2) > .ui-icon { background: var(--warm-gradient); }
.service-card:nth-child(3) > .ui-icon { background: linear-gradient(145deg,#41bf8b,#65d7ba); }
.service-card span { color: var(--rose); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.service-card h2 { color: var(--ink); font-size: 23px; line-height: 1.2; }
.service-card strong { display: block; margin-top: 11px; color: #444a5a; font-size: 13px; }
.service-card p { min-height: 45px; margin-top: 5px; color: var(--muted); font-size: 12px; }
.service-card a, .service-card button { display: inline-flex; align-items: center; gap: 6px; margin-top: 17px; padding: 0; color: var(--rose); border: 0; background: transparent; font-size: 12px; font-weight: 900; cursor: pointer; }
.reviews { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.review-card { position: relative; min-height: 315px; padding: 34px 30px 27px; border: 1px solid #ece8e4; border-radius: 20px; background: #fffdfa; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.review-card:hover { border-color: rgba(255,63,121,.28); box-shadow: var(--shadow); transform: translateY(-6px); }
.quote { position: absolute; top: 11px; right: 22px; color: rgba(255,63,121,.1); font-family: Georgia,serif; font-size: 75px; font-weight: 900; line-height: 1; }
.review-card > p { position: relative; min-height: 160px; color: #4f5361; font-size: 14px; line-height: 1.9; }
.review-card > div { display: flex; align-items: center; gap: 12px; padding-top: 19px; border-top: 1px solid #ece8e4; }
.review-avatar { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; border-radius: 50%; background: linear-gradient(145deg,var(--rose),var(--coral)); font-size: 14px; font-weight: 900; }
.review-avatar--gold { color: #362307; background: linear-gradient(145deg,var(--orange),var(--gold)); }
.review-avatar--violet { background: linear-gradient(145deg,#6556df,#a376ed); }
.review-avatar--blue { background: linear-gradient(145deg,#3c79db,#66c9e8); }
.review-avatar--coral { background: linear-gradient(145deg,#ff795f,#ff3f79); }
.review-avatar--green { background: linear-gradient(145deg,#2ba273,#55d4a0); }
.review-card strong, .review-card small { display: block; }
.review-card strong { color: var(--ink); font-size: 13px; }
.review-card small { margin-top: 1px; color: #989b68; font-size: 11px; }
.faq { background: #f7f7f8; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-copy { position: sticky; top: calc(var(--header-height) + 32px); align-self: start; }
.faq-copy > p { margin-top: 17px; }
.faq-tip { display: flex; max-width: 350px; align-items: center; gap: 11px; margin-top: 31px; padding: 16px 18px; color: #545968; border: 1px solid #e4e3e5; border-radius: 14px; background: #fff; font-size: 12px; font-weight: 700; }
.faq-tip .ui-icon { color: var(--green); font-size: 22px; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid #dedee2; }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 5px; text-align: left; border: 0; background: transparent; cursor: pointer; }
.faq-item button span { display: flex; align-items: center; gap: 17px; color: var(--ink); font-size: 15px; font-weight: 900; }
.faq-item button b { color: var(--rose); font-size: 11px; }
.faq-item button > .ui-icon { color: #747988; font-size: 18px; transition: transform .2s ease; }
.faq-item.is-open button > .ui-icon { color: var(--rose); transform: rotate(180deg); }
.faq-answer { padding: 0 50px 24px 40px; color: var(--muted); font-size: 13px; }
.download-cta { position: relative; padding: 69px 0; color: #fff; background: var(--warm-gradient); overflow: hidden; }
.download-cta::before { position: absolute; top: -180px; left: 12%; width: 390px; height: 390px; content: ""; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-inner h2 { font-size: 49px; line-height: 1.1; }
.cta-inner p:last-child { margin-top: 8px; color: rgba(255,255,255,.87); }
.cta-inner .button { min-width: 220px; }
.cta-film { position: absolute; right: -120px; bottom: -15px; display: flex; width: 550px; height: 75px; gap: 9px; padding: 11px; opacity: .2; border-top: 9px dotted #fff; border-bottom: 9px dotted #fff; transform: rotate(-8deg); }
.cta-film span { width: 105px; flex: 0 0 auto; border-radius: 5px; background: #fff; }
.site-footer { color: #a4b0c8; background: var(--navy); }
.footer-main { display: flex; min-height: 128px; align-items: center; justify-content: space-between; gap: 40px; }
.brand--footer { color: #fff; font-size: 17px; }
.brand--footer img { width: 41px; height: 41px; border-radius: 11px; }
.footer-main nav ul { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.footer-main nav a { font-size: 12px; transition: color .2s ease; }
.footer-main nav a:hover { color: #fff; }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.footer-bottom a { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.site-statistics { width: 1px; height: 1px; overflow: hidden; }
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 300; inset: 0; display: grid; padding: 45px 90px; place-items: center; background: rgba(3,8,19,.93); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.lightbox figure { display: flex; max-width: min(84vw,680px); max-height: 88vh; flex-direction: column; align-items: center; }
.lightbox figure img { max-width: 100%; max-height: calc(88vh - 46px); border: 6px solid #252d3c; border-radius: 25px; object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.62); }
.lightbox figcaption { margin-top: 13px; color: #fff; font-size: 14px; font-weight: 900; }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); cursor: pointer; }
.lightbox-close { top: 25px; right: 28px; width: 46px; height: 46px; }
.lightbox-nav { top: 50%; width: 50px; height: 50px; transform: translateY(-50%); }
.lightbox-nav--prev { left: 27px; }
.lightbox-nav--next { right: 27px; }
.lightbox button .ui-icon { font-size: 22px; }
@media (max-width: 1120px) {
    :root { --header-height: 70px; }
    .container { width: min(960px,calc(100% - 40px)); }
    .header-inner { gap: 14px; }
    .brand { font-size: 16px; }
    .brand img { width: 42px; height: 42px; }
    .main-nav a { padding-right: 7px; padding-left: 7px; font-size: 12px; }
    .main-nav a::after { right: 7px; left: 7px; }
    .header-download { padding: 0 15px; }
    .hero-grid { grid-template-columns: .92fr 1.08fr; }
    .hero-phone--primary { left: 10%; width: 257px; height: 457px; }
    .hero-phone--secondary { width: 235px; height: 418px; }
    .hero-stage { height: 505px; }
    .ticket { width: 420px; }
    .interface-grid { gap: 14px; }
    .interface-card { padding: 11px; }
    .interface-meta { gap: 10px; padding-right: 3px; padding-left: 3px; }
    .moment-grid { gap: 42px; }
    .mood-tabs { grid-template-columns: repeat(2,1fr); }
    .tracker-layout { grid-template-columns: 1fr 225px; }
    .faq-layout { gap: 52px; }
}
@media (max-width: 920px) {
    .site-header { height: auto; min-height: var(--header-height); }
    .header-inner { min-height: var(--header-height); flex-wrap: wrap; }
    .nav-toggle { display: flex; margin-left: auto; }
    .header-download { display: none; }
    .main-nav { display: none; width: 100%; margin: 0; padding: 0 0 16px; order: 5; }
    .main-nav.is-open { display: block; }
    .main-nav ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 5px; }
    .main-nav a { padding: 11px 13px; border-radius: 10px; background: #fff8f2; font-size: 13px; }
    .main-nav a::after { display: none; }
    .main-nav a.is-active { color: var(--rose); background: #fff0f4; }
    .section { padding: 88px 0; }
    .hero { padding-top: 63px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-actions, .hero-notes { justify-content: center; }
    .hero h2, .hero-lead { margin-right: auto; margin-left: auto; }
    .hero-stage { max-width: 610px; width: 100%; margin: 0 auto; }
    .interface-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
    .moment-grid { grid-template-columns: 1fr; }
    .mood-dial { width: min(380px,82vw); }
    .mood-panel { max-width: 720px; width: 100%; margin: 0 auto; }
    .tracker-layout { grid-template-columns: 1fr; }
    .tracker-phone { display: none; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .review-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-copy { position: static; }
    .footer-main { align-items: flex-start; flex-direction: column; padding: 34px 0; }
    .footer-main nav ul { justify-content: flex-start; }
}
@media (max-width: 680px) {
    :root { --header-height: 66px; }
    .container { width: calc(100% - 32px); }
    .section { padding: 70px 0; }
    .brand { font-size: 15px; }
    .brand img { width: 39px; height: 39px; border-radius: 11px; }
    .main-nav ul { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 52px 0 58px; }
    .hero h1 { font-size: clamp(55px,17vw,73px); }
    .hero h2 { margin-top: 19px; font-size: 25px; }
    .hero-lead { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
    .hero-actions .button { width: 100%; }
    .hero-text-link { justify-content: center; }
    .hero-notes { align-items: stretch; flex-direction: column; gap: 9px; text-align: left; }
    .hero-stage { height: 425px; }
    .hero-phone { border-width: 5px; border-radius: 31px; }
    .hero-phone--primary { left: 3%; width: 217px; height: 386px; }
    .hero-phone--secondary { top: 55px; right: 0; width: 196px; height: 348px; }
    .play-orb { width: 65px; height: 65px; border-width: 4px; }
    .play-orb .ui-icon { font-size: 21px; }
    .ticket { display: none; }
    .hand-note { right: 0; bottom: -4px; font-size: 15px; }
    .section-heading, .section-heading--row { margin-bottom: 33px; }
    .section-heading--row { display: block; }
    .section-heading--row > p { margin-top: 15px; }
    .section-heading h2, .faq-copy h2 { font-size: 35px; }
    .interface-grid { grid-template-columns: 1fr; }
    .interface-card { max-width: 420px; width: 100%; margin: 0 auto; }
    .interface-media { aspect-ratio: 9 / 13; }
    .mood-dial { width: min(335px,90vw); }
    .mood-dial::before { inset: 34px; }
    .mood-tabs { display: flex; margin-right: -16px; padding-right: 16px; overflow-x: auto; scrollbar-width: none; }
    .mood-tabs::-webkit-scrollbar { display: none; }
    .mood-tab { min-width: 112px; flex: 0 0 auto; }
    .mood-result { min-height: 360px; padding: 36px 26px; }
    .mood-result h3 { font-size: 34px; }
    .tracker-flow { grid-template-columns: 1fr; gap: 10px; }
    .flow-divider { display: none; }
    .tracker-step { display: grid; min-height: 78px; padding: 12px 15px; grid-template-columns: auto 1fr; column-gap: 14px; text-align: left; }
    .tracker-step > span { width: 48px; height: 48px; margin: 0; grid-row: 1 / span 2; }
    .tracker-step b { align-self: end; }
    .tracker-step small { align-self: start; }
    .tracker-detail { grid-template-columns: 1fr; text-align: center; }
    .tracker-detail__icon { margin: 0 auto; }
    .tracker-tools { grid-template-columns: 1fr; }
    .service-card { padding: 25px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-card { min-height: auto; }
    .review-card > p { min-height: auto; padding-bottom: 22px; }
    .faq-item button { min-height: 70px; }
    .faq-item button span { gap: 11px; font-size: 14px; }
    .faq-answer { padding-right: 8px; padding-left: 35px; }
    .download-cta { padding: 60px 0; text-align: center; }
    .cta-inner { flex-direction: column; gap: 29px; }
    .cta-inner .eyebrow { justify-content: center; }
    .cta-inner h2 { font-size: 42px; }
    .cta-inner .button { width: 100%; }
    .footer-main { gap: 27px; }
    .footer-main nav ul { display: grid; width: 100%; grid-template-columns: repeat(2,1fr); gap: 14px 24px; }
    .lightbox { padding: 70px 22px 82px; }
    .lightbox figure { max-width: 92vw; }
    .lightbox-nav { top: auto; bottom: 21px; }
    .lightbox-nav--prev { left: calc(50% - 62px); }
    .lightbox-nav--next { right: calc(50% - 62px); }
    .lightbox-close { top: 17px; right: 17px; }
}
@media (max-width: 390px) {
    .container { width: calc(100% - 26px); }
    .hero h1 { font-size: 53px; }
    .hero-stage { height: 390px; }
    .hero-phone--primary { width: 201px; height: 357px; }
    .hero-phone--secondary { width: 180px; height: 320px; }
    .mood-dial { width: 300px; }
    .mood-dial > .ui-icon { width: 82px; height: 82px; padding: 28px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
