/* ============ TOKENS ============ */
:root{
  --bg:#f3f2ee; --surface:#ffffff; --surface-2:#ebe9e3; --surface-3:#dedcd4;
  --text:#111110; --muted:#73726c;
  --accent:#fa7405; --accent-hover:#e26706; --accent-soft:rgba(250,116,5,.12); --on-accent:#fff;
  --invert:#111110; --on-invert:#f6f5f1;
  --glass:rgba(255,255,255,.62); --glass-strong:rgba(255,255,255,.82);
  --ok:#1f9d55; --warn:#d99a06; --err:#d64545;
}
[data-theme="dark"]{
  --bg:#0b0b0b; --surface:#161616; --surface-2:#212121; --surface-3:#2c2c2c;
  --text:#f3f2ed; --muted:#8e8d87;
  --accent-soft:rgba(250,116,5,.16);
  --invert:#f3f2ed; --on-invert:#111110;
  --glass:rgba(18,18,18,.62); --glass-strong:rgba(18,18,18,.86);
}

/* ============ BASE ============ */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Onest',system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);line-height:1.5;-webkit-font-smoothing:antialiased;padding-top:108px;transition:background .3s,color .3s;min-height:100vh}
body.no-chrome{padding-top:0}
html:has(body.has-hero){overflow-x:hidden}
body.has-hero{padding-top:0;overflow-x:hidden}
body.has-hero .flash:has(.alert){padding-top:108px;position:relative;z-index:50}
body.no-chrome .header,body.no-chrome .footer{display:none}
body.lock{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
input,select,textarea{font:inherit;color:inherit;border:0;background:none}
img{display:block;max-width:100%}
.logo img {width:130px;}
ul{list-style:none}
::selection{background:var(--accent);color:#fff}

.wrap{max-width:1360px;margin:0 auto;padding:0 24px}
.display{font-family:'Unbounded',sans-serif;letter-spacing:-.025em;line-height:1.02;font-weight:600}
.h1{font-size: clamp(38px,5.6vw,55px);font-weight: 900;line-height:1.02}
.h2{font-size: clamp(28px,3.6vw,35px);font-weight:600;line-height:1.06}
.h3{font-size:clamp(20px,2.2vw,28px);font-weight:500;line-height:1.2}
.h4{font-family:'Unbounded',sans-serif;font-size:18px;font-weight:500;line-height:1.3}
.lead{font-size:clamp(17px,1.4vw,21px);line-height:1.5;color:var(--muted)}
.muted{color:var(--muted)}
.small{font-size:14px}
.tiny{font-size:12px}
.accent{color:var(--accent)}
.num{font-family:'Unbounded',sans-serif;font-weight:600}
.sec{padding:88px 0}
.sec-sm{padding:56px 0}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:44px;flex-wrap:wrap}
.sec-head p{max-width:520px;margin-top:12px}
.row{display:flex;align-items:center;gap:12px}
.between{justify-content:space-between}
.wrap-row{flex-wrap:wrap}
.col{display:flex;flex-direction:column;gap:12px}
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-6{margin-top:48px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.page{display:block}
.alert{padding:16px 20px;border-radius:12px;margin:0;font-weight:500}
.alert-err{background:color-mix(in srgb,var(--err) 12%,var(--surface));color:var(--err)}
.alert-ok{background:color-mix(in srgb,var(--ok) 12%,var(--surface));color:var(--ok)}
.flash{display:flex;flex-direction:column;gap:10px}
.flash:not(:has(.alert)){display:none;margin:0;padding:0;height:0;overflow:hidden}
.flash .alert{margin:20px 0 8px}
.empty[hidden]{display:none!important}
button.acc-link{border:0;background:transparent;cursor:pointer;font:inherit;color:inherit;text-align:left}
@keyframes fade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

/* ============ ICONS ============ */
.ico{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:none}
.ico-sm{width:18px;height:18px}
.star{width:16px;height:16px;fill:var(--accent);stroke:none;flex:none}
.star.off{fill:var(--surface-3)}
.stars{display:inline-flex;gap:2px}

/* ============ BUTTONS ============ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;height:56px;padding:0 28px;border-radius:60px;font-weight:600;font-size:16px;white-space:nowrap;transition:background .2s,color .2s,transform .15s,opacity .2s;user-select:none}
.btn:active{transform:scale(.97)}
.btn:disabled{opacity:.45;pointer-events:none}
.btn-lg{height:68px;padding:0 38px;font-size:18px}
.btn-sm{height:44px;padding:0 20px;font-size:14px}
.btn-xs{height:36px;padding:0 14px;font-size:13px}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-hover)}
.btn-invert{background:var(--invert);color:var(--on-invert)}
.btn-invert:hover{background:var(--accent);color:#fff}
.btn-ghost{background:var(--surface-2)}
.btn-ghost:hover{background:var(--surface-3)}
.btn-surface{background:var(--surface)}
.btn-surface:hover{background:var(--surface-2)}
.btn-white{background:#fff;color:#111}
.btn-white:hover{background:#111;color:#fff}
.btn-text{padding:0 8px;height:auto;font-weight:500}
.btn-text:hover{color:var(--accent)}
.btn-icon{width:56px;padding:0}
.btn-icon.btn-sm{width:44px}
.btn-icon.btn-xs{width:36px}
.btn-block{width:100%}
.btn .ico{width:20px;height:20px}
.btn-arrow .ico{transition:transform .2s}
.btn-arrow:hover .ico{transform:translateX(4px)}
.link{font-weight:600;display:inline-flex;align-items:center;gap:6px;transition:color .2s}
.link:hover{color:var(--accent)}
.fav .ico{transition:.2s}
.fav.active .ico{fill:var(--accent);stroke:var(--accent)}
.fav.active{color:var(--accent)}

/* ============ CHIPS / TAGS ============ */
.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{display:inline-flex;align-items:center;gap:8px;height:42px;padding:0 18px;border-radius:60px;background:var(--surface-2);font-size:14px;font-weight:500;cursor:pointer;transition:.2s;white-space:nowrap}
.chip:hover{background:var(--surface-3)}
.chip.active{background:var(--invert);color:var(--on-invert)}
.chip-surface{background:var(--surface)}
.tag{display:inline-flex;align-items:center;gap:6px;height:28px;padding:0 12px;border-radius:60px;font-size:12px;font-weight:600;background:var(--surface-2);white-space:nowrap}
.tag-accent{background:var(--accent);color:#fff}
.tag-soft{background:var(--accent-soft);color:var(--accent)}
.tag-invert{background:var(--invert);color:var(--on-invert)}
.tag-ok{background:color-mix(in srgb,var(--ok) 14%,transparent);color:var(--ok)}
.tag-warn{background:color-mix(in srgb,var(--warn) 16%,transparent);color:var(--warn)}
.tag-err{background:color-mix(in srgb,var(--err) 14%,transparent);color:var(--err)}
.dot{width:8px;height:8px;border-radius:60px;background:currentColor;display:inline-block}

/* ============ FIELDS ============ */
.field{display:flex;flex-direction:column;gap:8px}
.field > label{font-size:14px;font-weight:500;color:var(--muted)}
.input{height:56px;padding:0 20px;border-radius:12px;background:var(--surface-2);width:100%;outline:none;transition:background .2s}
.input:focus{background-color:var(--surface-3)}
.input::placeholder{color:var(--muted)}
.on-surface .input{background-color:var(--surface-2)}
.on-bg .input{background-color:var(--surface)}
.on-bg .input:focus{background-color:var(--surface-2)}
textarea.input{height:auto;min-height:130px;padding:16px 20px;resize:vertical}
select.input{appearance:none;-webkit-appearance:none;padding-right:48px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2373726c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 18px center;cursor:pointer}
.input-wrap{position:relative}
.input-wrap > .ico{position:absolute;left:18px;top:50%;transform:translateY(-50%);color:var(--muted);pointer-events:none}
.input-wrap .input{padding-left:52px}
.input-wrap .input-btn{position:absolute;right:8px;top:50%;transform:translateY(-50%)}
.input-pill{border-radius:60px}
.check{display:flex;align-items:center;gap:12px;cursor:pointer;font-size:15px;line-height:1.3}
.check input{appearance:none;-webkit-appearance:none;width:24px;height:24px;border-radius:8px;background:var(--surface-3);flex:none;transition:.2s;cursor:pointer;background-position:center;background-repeat:no-repeat}
.check input:checked{background-color:var(--accent);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")}
.check input[type=radio]{border-radius:60px}
.check input[type=radio]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='white'/%3E%3C/svg%3E")}
.check .cnt{margin-left:auto;color:var(--muted);font-size:13px}
.switch{position:relative;width:52px;height:30px;border-radius:60px;background:var(--surface-3);cursor:pointer;transition:.2s;flex:none}
.switch::after{content:'';position:absolute;top:4px;left:4px;width:22px;height:22px;border-radius:60px;background:#fff;transition:.2s}
.switch.on{background:var(--accent)}
.switch.on::after{left:26px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-grid .full{grid-column:1/-1}

/* ============ HEADER (liquid glass) ============ */
.header{position:fixed;top:14px;left:0;right:0;z-index:60}
.nav{position:relative;display:flex;align-items:center;gap:4px;height:72px;padding:0 12px 0 24px;border-radius: 77px;flex-wrap:nowrap;min-width:0}
.nav::before{content:'';position:absolute;inset:0;z-index:-1;border-radius: 70px;background:var(--glass);backdrop-filter:blur(32px) saturate(1.9);-webkit-backdrop-filter:blur(32px) saturate(1.9);pointer-events:none;transition:background .3s}
.logo{font-weight:700;font-size:20px;display:flex;align-items:center;gap:10px;margin-right:24px;white-space:nowrap;min-width:0;flex:none}
.logo i{width:12px;height:12px;border-radius:60px;background:var(--accent);display:block;transition:transform .3s}
.logo:hover i{transform:scale(1.4)}
.nav-links{display:flex;gap:2px;flex:1;min-width:0;flex-wrap:nowrap}
.nav-link{height:46px;padding:0 18px;border-radius:60px;display:inline-flex;align-items:center;gap:6px;font-weight:500;font-size:15px;transition:.2s}
.nav-link .ico{width:16px;height:16px;transition:transform .25s}
.nav-link:hover,.nav-link.open{background:var(--surface-2)}
.header.mega-open .nav-link.has-mega{background:var(--invert);color:var(--on-invert)}
.header.mega-open .nav-link.has-mega .ico{transform:rotate(180deg)}
.nav-actions{display:flex;gap:4px;align-items:center;flex:none;margin-left:auto}
.nav-btn{width:48px;height:48px;border-radius:60px;display:grid;place-items:center;position:relative;transition:.2s}
.nav-btn:hover{background:var(--surface-2)}
.nav-btn .badge{position:absolute;top:4px;right:2px}
.badge{min-width:18px;height:18px;padding:0 5px;border-radius:60px;background:var(--accent);color:#fff;font-size:11px;font-weight:700;display:grid;place-items:center;line-height:1}
.badge:empty,.badge[data-zero]{display:none}
.nav-user{height:48px;padding:0 6px 0 16px;border-radius:60px;display:flex;align-items:center;gap:10px;font-weight:600;font-size:14px;background:var(--surface-2);margin-left:8px;transition:.2s}
.nav-user:hover{background:var(--surface-3)}
.avatar{width:36px;height:36px;border-radius:60px;background:var(--accent);color:#fff;display:grid;place-items:center;font-weight:700;font-size:13px;flex:none;overflow:hidden}
.avatar img{width:100%;height:100%;object-fit:cover;display:block}
.avatar-lg{width:72px;height:72px;font-size:22px}
.theme-btn .ico-moon{display:none}
[data-theme="dark"] .theme-btn .ico-sun{display:none}
[data-theme="dark"] .theme-btn .ico-moon{display:block}
html[data-theme-allow="light"] .theme-btn,html[data-theme-allow="dark"] .theme-btn{display:none}
.burger{display:none}

.mega{position:absolute;top: calc(100% + -30px);left:0;right:0;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background:var(--glass-strong);backdrop-filter:blur(36px) saturate(1.9);-webkit-backdrop-filter:blur(36px) saturate(1.9);padding: 70px 36px 36px 36px;display:grid;grid-template-columns:1fr 1fr 1fr 1.25fr;gap:40px;opacity:0;visibility:hidden;transform:translateY(-10px);transition:.28s cubic-bezier(.2,.7,.2,1);z-index: -2;}
.header.mega-open .mega{opacity:1;visibility:visible;transform:none}
.mega-col h5{font-size: 16px;font-weight:500;margin-bottom:18px;display:flex;align-items:center;gap:10px}
.mega-col h5 i{width:8px;height:8px;border-radius:60px;background:var(--accent)}
.mega-col a{display:flex;justify-content:space-between;align-items:center;height:42px;padding:0 14px;margin:0 -14px;border-radius:60px;font-size:15px;font-weight:500;transition:.2s}
.mega-col a:hover{background:var(--surface-2)}
.mega-col a span{color:var(--muted);font-size:13px}
.mega-col .all{margin-top:14px;color:var(--accent)}
.mega-feat{border-radius:12px;overflow:hidden;position:relative;background:var(--surface-2);min-height:260px;display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.mega-feat img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.mega-feat::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.25) 40%,rgba(0,0,0,.78) 100%);pointer-events:none}
.mega-feat > *{position:relative;z-index:1}
.mega-feat .tag{align-self:flex-start;margin-bottom:auto}
.mega-feat b{font-family:'Unbounded',sans-serif;font-size:20px;color:#fff;display:block;margin:12px 0 4px;font-weight:600;text-shadow:0 1px 8px rgba(0,0,0,.45)}
.mega-feat p{color:rgba(255,255,255,.85);font-size:14px}

/* drawer */
.drawer{position:fixed;inset:0;z-index:80;visibility:hidden}
.drawer.open{visibility:visible}
.drawer-bg{position:absolute;inset:0;background:rgba(0,0,0,.45);opacity:0;transition:.3s}
.drawer.open .drawer-bg{opacity:1}
.drawer-panel{position:absolute;top:0;right:0;bottom:0;width:min(420px,100%);background:var(--bg);padding:24px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.2,1);display:flex;flex-direction:column;gap:8px;overflow:auto}
.drawer.open .drawer-panel{transform:none}
.drawer-panel a{display:flex;justify-content:space-between;align-items:center;font-family:'Unbounded',sans-serif;font-size:22px;padding:18px 20px;border-radius:12px;background:var(--surface)}
.drawer-panel a:hover{background:var(--accent);color:#fff}

/* ============ HERO / HOME ============ */
.hero{padding:0;position:relative;z-index:1;}
.hero-bleed{position:relative;aspect-ratio:3104/1344;overflow:visible;--hero-ox: 215px;--hero-oy: 70px;}
.hero-art,.hero-fade{position:absolute;top:0;left:50%;transform:translateX(-50%);width:calc(100% + var(--hero-ox) * 2);height:calc(100% + var(--hero-oy));pointer-events:none}
.hero-art{max-width:none;object-fit:cover;object-position:center 46%;user-select:none}
.hero-fade{
  z-index:1;
  background: radial-gradient(ellipse 86% 90% at 50% 16%,transparent 48%,color-mix(in srgb,var(--bg) 22%,transparent) 64%,color-mix(in srgb,var(--bg) 62%,transparent) 80%,var(--bg) 94%),
  radial-gradient(ellipse 150% 40% at 0 100%,var(--bg) 25%,transparent 76%),
  radial-gradient(ellipse 140% 34% at 100% 100%,var(--bg) 3%,transparent 70%),
  linear-gradient(90deg,var(--bg) 0,color-mix(in srgb,var(--bg) 95%,transparent) 40px,color-mix(in srgb,var(--bg) 55%,transparent) 180px,transparent var(--hero-ox),transparent calc(100% - var(--hero-ox)),color-mix(in srgb,var(--bg) 75%,transparent) calc(100% - 88px),color-mix(in srgb,var(--bg) 90%,transparent) calc(100% - 28px),var(--bg) 100%);
  }
.hero-screen{position:absolute;z-index:2;left:50%;top: 63%;transform:translate(-50%,-50%);width: min(40%,450px);display:flex;flex-direction:column;align-items:center;justify-content:center;gap: 20px;text-align:center;background: #00000033;background-size: 60%;padding: 20px 10px;backdrop-filter: blur(20px);border-radius: 12px;}
.hero-title{margin:0;font-size: clamp(15px,2.35vw,30px);font-weight:600;line-height: 1.28;color:#fff;text-wrap:balance;text-shadow:0 2px 18px rgba(0,0,0,.7)}
.hero-cta-btn{height:44px;padding:0 20px;font-size:14px;box-shadow:0 8px 24px rgba(0,0,0,.35)}
.hero-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:48px;align-items:end}
.hero-kicker{display:flex;align-items:center;gap:12px;margin-bottom:32px;flex-wrap:wrap}
.hero h1 em{font-style:normal;color:var(--accent)}
.hero-cta{display:flex;gap:12px;margin-top:40px;flex-wrap:wrap;align-items:center}
.hero-side{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.stat{background:var(--surface);border-radius:12px;padding:28px 28px 24px;min-height:150px;display:flex;flex-direction:column;justify-content:space-between}
.stat b{font-family:'Unbounded',sans-serif;font-size:clamp(30px,3vw,44px);font-weight:600;line-height:1;letter-spacing:-.03em}
.stat.dark{background:var(--invert);color:var(--on-invert)}
.stat.acc{background:var(--accent);color:#fff}
.marquee{overflow:hidden;padding:26px 0;background:var(--surface);margin-top:8px}
body.has-hero .marquee{margin-top:0}
.marquee-track{display:flex;width:max-content;animation:mq 38s linear infinite;font-family:'Unbounded',sans-serif;font-size:26px;font-weight:500;letter-spacing:-.02em;white-space:nowrap}
.marquee-track span{display:inline-flex;align-items:center;gap:36px;padding-right:36px}
.marquee-track span::after{content:'';width:10px;height:10px;border-radius:60px;background:var(--accent)}
@keyframes mq{to{transform:translateX(-50%)}}

.cat-tile{background:var(--surface);border-radius:12px;padding:32px;min-height:280px;display:flex;flex-direction:column;justify-content:space-between;transition:background .25s,color .25s}
.cat-tile:hover{background:var(--accent);color:#fff}
.cat-tile .idx{font-family:'Unbounded',sans-serif;font-size:14px;color:var(--muted)}
.cat-tile:hover .idx,.cat-tile:hover .muted{color:rgba(255,255,255,.75)}
.cat-tile .h3{margin-top:auto;margin-bottom:8px}
.cat-tile .arr{width:48px;height:48px;border-radius:60px;background:var(--surface-2);display:grid;place-items:center;margin-top:24px;transition:.25s}
.cat-tile:hover .arr{background:#fff;color:var(--accent)}

.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.step-card{background:var(--surface);border-radius:12px;padding:36px 32px;min-height:300px;display:flex;flex-direction:column}
.step-card .n{font-family:'Unbounded',sans-serif;font-size:56px;font-weight:600;letter-spacing:-.04em;color:var(--accent);line-height:1}
.step-card .h3{margin-top:auto;margin-bottom:12px}

.banner{background:var(--accent);color:#fff;border-radius:12px;padding:clamp(36px,5vw,72px);display:grid;grid-template-columns:1.3fr 1fr;gap:48px;align-items:center}
.banner .h2{color:#fff}
.banner-list{display:flex;flex-direction:column;gap:10px}
.banner-list li{display:flex;gap:14px;align-items:center;font-size:17px;font-weight:500;background:rgba(0,0,0,.14);border-radius:12px;padding:16px 20px}
.banner-list li b{font-family:'Unbounded',sans-serif;font-size:22px;min-width:64px}

.trust{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.trust div{background:var(--surface);border-radius:12px;padding:28px}
.trust div b{display:block;font-size: 18px;font-weight:500;margin:20px 0 6px}
.trust .ico{width:28px;height:28px;color:var(--accent)}

/* ============ PRODUCT CARD ============ */
.card{background:var(--surface);border-radius:12px;padding:10px;transition:transform .3s cubic-bezier(.2,.7,.2,1);display:flex;flex-direction:column}
.card:hover{transform:translateY(-4px)}
.card-cover{aspect-ratio:4/3;border-radius:12px;overflow:hidden;position:relative;background:var(--surface-2)}
.card-cover img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.card:hover .card-cover img{transform:scale(1.05)}
.card-cover .tag{position:absolute;top:12px;left:12px}
.card-fav{position:absolute;top:10px;right:10px;width:42px;height:42px;border-radius:60px;background:var(--glass);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);display:grid;place-items:center;transition:.2s}
.card-fav:hover{background:var(--surface)}
.card-fav .ico{width:20px;height:20px}
.card-quick{position:absolute;left:12px;right:12px;bottom:12px;opacity:0;transform:translateY(10px);transition:.28s}
.card:hover .card-quick{opacity:1;transform:none}
.card-body{padding:18px 10px 8px;display:flex;flex-direction:column;flex:1}
.card-meta{display:flex;justify-content:space-between;font-size:13px;color:var(--muted);margin-bottom:8px}
.card-meta .stars-n{display:inline-flex;align-items:center;gap:4px;color:var(--text);font-weight:500}
.card-title{font-weight:600;font-size:18px;line-height:1.3;letter-spacing:-.01em;transition:color .2s}
.card-title:hover{color:var(--accent)}
.card-desc{font-size:14px;color:var(--muted);margin-top:6px}
.card-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:20px;gap:10px}
.price{font-family:'Unbounded',sans-serif;font-weight:600;font-size:20px;letter-spacing:-.02em;display:flex;align-items:baseline;gap:8px}
.price s{font-size:14px;color:var(--muted);font-weight:400;font-family:'Onest',sans-serif}
.price.free{color:var(--accent)}
.card-row{display:grid;grid-template-columns:110px 1fr auto;gap:18px;align-items:center;background:var(--surface);border-radius:12px;padding:12px}
.card-row img{aspect-ratio:4/3;border-radius:10px;object-fit:cover;width:100%}

/* ============ CATALOG ============ */
.catalog{display:grid;grid-template-columns:280px 1fr;gap:28px;align-items:start}
.filters{position:sticky;top:104px;display:flex;flex-direction:column;gap:8px;max-height:calc(100vh - 120px);overflow:auto;scrollbar-width:none}
.fgroup{background:var(--surface);border-radius:12px;padding:22px}
.fgroup h6{font-weight:600;font-size:15px;margin-bottom:16px;display:flex;justify-content:space-between}
.fgroup .col{gap:12px}
.range{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.range .input{height:48px;padding:0 16px}
.toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:20px;flex-wrap:wrap}
.toolbar select{height:48px;background-color:var(--surface);width:auto;min-width:220px;border-radius:60px}
.pagination{display:flex;gap:6px;justify-content:center;margin-top:48px}
.pagination a{width:48px;height:48px;border-radius:60px;display:grid;place-items:center;font-weight:600;background:var(--surface);transition:.2s}
.pagination a:hover{background:var(--surface-3)}
.pagination a.active{background:var(--invert);color:var(--on-invert)}
.empty{background:var(--surface);border-radius:12px;padding:72px 24px;text-align:center}
.empty .h3{margin-top:16px}
.crumbs{display:flex;gap:8px;align-items:center;font-size:14px;color:var(--muted);margin-bottom:28px;flex-wrap:wrap}
.crumbs a:hover{color:var(--text)}
.crumbs span{color:var(--text)}
.page-head{padding:32px 0 40px}
.page-head .h1{font-size:clamp(34px,4.6vw,64px)}

/* ============ PRODUCT PAGE ============ */
.product-top{display:grid;grid-template-columns:1.15fr 1fr;gap:48px;align-items:start}
.gallery-main{aspect-ratio:16/10;border-radius:12px;overflow:hidden;background:var(--surface-2);cursor:zoom-in}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:8px}
.thumb{aspect-ratio:16/10;border-radius:10px;overflow:hidden;opacity:.5;cursor:pointer;transition:.2s;background:var(--surface-2)}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb.active,.thumb:hover{opacity:1}
.p-title{font-size: clamp(28px,3vw,55px);font-weight:600;line-height:1.05;margin:14px 0 16px}
.rating-row{display:flex;align-items:center;gap:10px;font-size:14px}
.rating-row b{font-size:15px}
.price-box{background:var(--surface);border-radius:12px;padding:24px;margin:28px 0 12px}
.price-box .top{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:20px}
.price-big{font-family:'Unbounded',sans-serif;font-size:40px;font-weight:600;letter-spacing:-.03em;line-height:1}
.lic{display:flex;gap:6px;background:var(--surface-2);padding:6px;border-radius:60px}
.lic button{height:40px;padding:0 18px;border-radius:60px;font-size:14px;font-weight:600;transition:.2s}
.lic button.active{background:var(--invert);color:var(--on-invert)}
.buy-row{display:flex;gap:8px}
.buy-row .btn-primary{flex:1}
.bonus-note{display:flex;align-items:center;gap:10px;padding:14px 20px;border-radius:12px;background:var(--accent-soft);color:var(--accent);font-weight:600;font-size:14px}
.meta{display:grid;grid-template-columns:1fr 1fr;gap:16px 24px;margin-top:28px}
.meta div span{display:block;font-size:13px;color:var(--muted);margin-bottom:2px}
.meta div{font-weight:500;font-size:15px}
.tabs{display:inline-flex;gap:4px;background:var(--surface);padding:6px;border-radius:60px;max-width:100%;overflow:auto;scrollbar-width:none}
.tab{height:48px;padding:0 22px;border-radius:60px;font-weight:500;font-size:15px;white-space:nowrap;transition:.2s;display:inline-flex;align-items:center;gap:8px}
.tab:hover{background:var(--surface-2)}
.tab.active{background:var(--invert);color:var(--on-invert)}
.tab .cnt{font-size:12px;opacity:.6}
.tab-panel{display:none;padding-top:36px}
.tab-panel.active{display:block;animation:fade .3s}
.prose{max-width:820px;font-size:17px;line-height:1.65}
.prose p{margin:0}
.prose p+p{margin-top:16px}
.prose h4{font-family:'Unbounded',sans-serif;font-size:20px;font-weight:500;margin:40px 0 14px}
.prose ul,.prose ol{padding-left:0;margin:16px 0}
.prose li{padding-left:26px;position:relative;margin-bottom:8px}
.prose li::before{content:'';position:absolute;left:0;top:11px;width:10px;height:10px;border-radius:60px;background:var(--accent)}
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:40px}
.feat{background:var(--surface);border-radius:12px;padding:26px}
.feat .ico{color:var(--accent);width:26px;height:26px}
.feat b{display:block;margin:18px 0 6px;font-size:16px}
.feat p{font-size:14px;color:var(--muted)}
.release{display:grid;grid-template-columns:160px 1fr auto;gap:28px;padding:28px;background:var(--surface);border-radius:12px;margin-bottom:8px;align-items:start}
.release .v{font-family:'Unbounded',sans-serif;font-size:22px;font-weight:600;letter-spacing:-.02em}
.release .d{font-size:13px;color:var(--muted);margin-top:6px}
.release ul li{padding-left:22px;position:relative;margin-bottom:6px;font-size:15px}
.release ul li::before{content:'';position:absolute;left:0;top:10px;width:8px;height:8px;border-radius:60px;background:var(--surface-3)}
.release ul li.new::before{background:var(--ok)}
.release ul li.fix::before{background:var(--accent)}
.rev-summary{display:grid;grid-template-columns:220px 1fr;gap:40px;background:var(--surface);border-radius:12px;padding:32px;align-items:center}
.rev-summary .big{font-family:'Unbounded',sans-serif;font-size:72px;font-weight:600;line-height:1;letter-spacing:-.04em}
.bars{display:flex;flex-direction:column;gap:10px}
.bars div{display:grid;grid-template-columns:24px 1fr 40px;gap:12px;align-items:center;font-size:13px;color:var(--muted)}
.bar{height:8px;border-radius:60px;background:var(--surface-2);overflow:hidden}
.bar i{display:block;height:100%;border-radius:60px;background:var(--accent)}
.review{background:var(--surface);border-radius:12px;padding:28px;margin-top:8px}
.review-head{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.review-head .avatar{background:var(--surface-2);color:var(--text)}
.review-head .d{font-size:13px;color:var(--muted)}
.review p{font-size:16px;line-height:1.6}
.review-foot{display:flex;gap:8px;margin-top:18px}
.reply{margin-top:18px;padding:20px;border-radius:12px;background:var(--surface-2)}
.reply b{display:flex;gap:8px;align-items:center;font-size:14px;margin-bottom:6px}
.shots{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.shots div{aspect-ratio:16/10;border-radius:12px;overflow:hidden;cursor:zoom-in;background:var(--surface-2)}
.shots img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.shots div:hover img{transform:scale(1.04)}

/* ============ CART / CHECKOUT ============ */
.cart-grid{display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:start}
.cart-item{display:grid;grid-template-columns:140px 1fr auto;gap:22px;background:var(--surface);border-radius:12px;padding:14px;margin-bottom:8px;align-items:center}
.cart-item img{aspect-ratio:4/3;border-radius:10px;object-fit:cover;width:100%}
.cart-item .t{font-weight:600;font-size:17px}
.cart-item .m{font-size:13px;color:var(--muted);margin-top:4px}
.cart-item .r{display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.qty{display:inline-flex;align-items:center;background:var(--surface-2);border-radius:60px;height:44px}
.qty button{width:44px;height:44px;display:grid;place-items:center;border-radius:60px;transition:.2s}
.qty button:hover{background:var(--surface-3)}
.qty span{min-width:28px;text-align:center;font-weight:600}
.summary{background:var(--surface);border-radius:12px;padding:28px;position:sticky;top:104px}
.sum-row{display:flex;justify-content:space-between;align-items:center;padding:9px 0;font-size:15px}
.sum-row.total{margin-top:10px;padding-top:20px;font-family:'Unbounded',sans-serif;font-size:22px;font-weight:600}
.sum-row .ok{color:var(--ok)}
.promo-row{display:flex;gap:6px;margin:16px 0}
.promo-row .input{border-radius:60px}
.bonus-row{display:flex;align-items:center;justify-content:space-between;gap:12px;background:var(--surface-2);border-radius:12px;padding:16px 18px;margin-top:6px}
.bonus-row b{display:block;font-size:15px}
.bonus-row span{font-size:13px;color:var(--muted)}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:40px}
.step-i{padding:18px 22px;border-radius:12px;background:var(--surface);display:flex;gap:14px;align-items:center;font-weight:600;color:var(--muted)}
.step-i b{width:36px;height:36px;border-radius:60px;background:var(--surface-2);display:grid;place-items:center;font-size:14px;flex:none;color:var(--text)}
.step-i.active{color:var(--text)}
.step-i.active b{background:var(--accent);color:#fff}
.step-i.done b{background:var(--invert);color:var(--on-invert)}
.checkout-step{display:none}
.checkout-step.active{display:block;animation:fade .3s}
.panel{background:var(--surface);border-radius:12px;padding:32px}
.panel + .panel{margin-top:8px}
.pay{display:flex;align-items:center;gap:18px;padding:20px 24px;background:var(--surface-2);border-radius:12px;cursor:pointer;transition:.2s}
.pay:hover{background:var(--surface-3)}
.pay.active{background:var(--invert);color:var(--on-invert)}
.pay .ico{width:26px;height:26px}
.pay b{display:block;font-size:16px}
.pay span{font-size:13px;opacity:.65}
.pay .tag{margin-left:auto}
.pay-list{display:flex;flex-direction:column;gap:8px}
.order-line{display:flex;justify-content:space-between;gap:12px;padding:14px 0;font-size:15px}
.order-line span{color:var(--muted)}
.success-box{max-width:640px;margin:40px auto;text-align:center;padding:64px 32px;background:var(--surface);border-radius:12px}
.success-box .ok-circle{width:96px;height:96px;border-radius:60px;background:var(--accent);color:#fff;display:grid;place-items:center;margin:0 auto 28px}
.success-box .ok-circle .ico{width:44px;height:44px;stroke-width:2.4}

/* ============ ACCOUNT ============ */
.acc{display:grid;grid-template-columns:290px 1fr;gap:28px;align-items:start}
.acc-nav{position:sticky;top:104px;background:var(--surface);border-radius:12px;padding:12px}
.acc-user{display:flex;align-items:center;gap:14px;padding:16px 12px 24px}
.acc-user .avatar{width:48px;height:48px;font-size:16px}
.avatar-edit{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-bottom:8px}
.avatar-edit .avatar{width:72px;height:72px;font-size:22px}
.avatar-edit-fields{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.file-pick{display:flex;flex-direction:column;align-items:flex-start;gap:8px;cursor:pointer}
.file-pick input[type=file]{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden;clip:rect(0,0,0,0)}
.file-pick-btn{display:inline-flex;align-items:center;justify-content:center;height:44px;padding:0 20px;border-radius:60px;background:var(--surface-2);font-weight:600;font-size:14px;transition:background .2s}
.file-pick:hover .file-pick-btn{background:var(--surface-3)}
.file-pick-name{font-size:13px;color:var(--muted);max-width:280px}
.acc-user b{display:block;font-size:16px}
.acc-user > div span{font-size:13px;color:var(--muted)}
.acc-link{display:flex;align-items:center;gap:12px;height:52px;padding:0 18px;border-radius:60px;font-weight:500;font-size:15px;transition:.2s;width:100%}
.acc-link:hover{background:var(--surface-2)}
.acc-link.active{background:var(--invert);color:var(--on-invert)}
.acc-link .cnt{margin-left:auto;font-size:12px;opacity:.6}
.acc-link .ico{width:20px;height:20px}
.acc-panel{display:none}
.acc-panel.active{display:block;animation:fade .3s}
.acc-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:28px;flex-wrap:wrap}
.tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.tile{background:var(--surface);border-radius:12px;padding:24px;min-height:140px;display:flex;flex-direction:column;justify-content:space-between}
.tile span{font-size:13px;color:var(--muted)}
.tile b{font-family:'Unbounded',sans-serif;font-size:32px;font-weight:600;letter-spacing:-.03em;line-height:1}
.tile.acc-tile{background:var(--accent);color:#fff}
.tile.acc-tile span{color:rgba(255,255,255,.8)}
.table{width:100%;border-collapse:separate;border-spacing:0 6px}
.table th{text-align:left;font-size:13px;color:var(--muted);font-weight:500;padding:6px 20px}
.table td{padding:18px 20px;background:var(--surface);font-size:15px;vertical-align:middle}
.table tr td:first-child{border-radius:12px 0 0 12px}
.table tr td:last-child{border-radius:0 12px 12px 0;text-align:right}
.table b{font-weight:600}
.lib{display:grid;grid-template-columns:100px 1fr auto;gap:20px;align-items:center;background:var(--surface);border-radius:12px;padding:14px;margin-bottom:8px}
.lib img{aspect-ratio:4/3;object-fit:cover;border-radius:10px;width:100%}
.lib .t{font-weight:600;font-size:16px}
.lib .m{font-size:13px;color:var(--muted);margin-top:3px}
.lib .acts{display:flex;gap:6px}
.level{background:var(--surface);border-radius:12px;padding:32px;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.level .big{font-family:'Unbounded',sans-serif;font-size:64px;font-weight:600;letter-spacing:-.04em;line-height:1}
.progress{height:12px;border-radius:60px;background:var(--surface-2);overflow:hidden;margin:14px 0 8px}
.progress i{display:block;height:100%;width:62%;border-radius:60px;background:var(--accent)}
.hist{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;background:var(--surface);border-radius:12px;margin-bottom:6px;font-size:15px}
.hist span{font-size:13px;color:var(--muted);display:block}
.hist b.plus{color:var(--ok)}
.promo-card{background:var(--surface);border-radius:12px;padding:24px;display:flex;flex-direction:column;gap:14px}
.promo-card .code{font-family:'Unbounded',sans-serif;font-size:22px;font-weight:600;letter-spacing:.02em;background:var(--surface-2);border-radius:12px;padding:16px 20px;display:flex;justify-content:space-between;align-items:center}
.promo-card.used{opacity:.5}
.setting-row{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 0}
.setting-row b{display:block;font-size:16px}
.setting-row span{font-size:14px;color:var(--muted)}
.setting-row + .setting-row{margin-top:0}
.danger{background:color-mix(in srgb,var(--err) 8%,var(--surface));border-radius:12px;padding:28px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;margin-top:8px}
.btn-danger{background:var(--err);color:#fff}
.btn-danger:hover{background:#b93636}
.notif{display:flex;gap:16px;padding:20px;background:var(--surface);border-radius:12px;margin-bottom:6px}
.notif .dot-n{width:10px;height:10px;border-radius:60px;background:var(--accent);margin-top:8px;flex:none}
.notif.read .dot-n{background:var(--surface-3)}

/* ============ AUTH ============ */
.auth{min-height:100vh;display:grid;grid-template-columns:1fr 1fr}
.auth-side{background:var(--invert);color:var(--on-invert);padding:48px;display:flex;flex-direction:column;justify-content:space-between;position:sticky;top:0;height:100vh}
.auth-side .logo i{background:var(--accent)}
.auth-side .h1{font-size:clamp(40px,4.6vw,72px)}
.auth-side .h1 em{font-style:normal;color:var(--accent)}
.auth-quote{background:rgba(127,127,127,.15);border-radius:12px;padding:28px;max-width:520px}
.auth-quote p{font-size:18px;line-height:1.5}
.auth-quote .who{display:flex;align-items:center;gap:12px;margin-top:20px;font-size:14px;opacity:.8}
.auth-form{padding:48px 24px;display:flex;align-items:center;justify-content:center}
.auth-box{width:100%;max-width:460px}
.auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:4px;background:var(--surface);padding:6px;border-radius:60px;margin-bottom:36px}
.auth-tabs button,.auth-tabs a{height:52px;border-radius:60px;font-weight:600;transition:.2s;display:grid;place-items:center}
.auth-tabs button.active,.auth-tabs a.active{background:var(--invert);color:var(--on-invert)}
.honeypot{position:absolute;left:-9999px;height:0;overflow:hidden}
.auth-panel{display:none}
.auth-panel.active{display:block;animation:fade .3s}
.social{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin:24px 0}
.or{display:flex;align-items:center;gap:16px;color:var(--muted);font-size:13px;margin:24px 0}
.or::before,.or::after{content:'';flex:1;height:2px;background:var(--surface-2);border-radius:60px}
.pw-meter{display:grid;grid-template-columns:repeat(4,1fr);gap:4px;margin-top:8px}
.pw-meter i{height:4px;border-radius:60px;background:var(--surface-3)}
.pw-meter i.on{background:var(--accent)}

/* ============ FOOTER ============ */
.footer{margin-top:96px;padding:56px 0 32px;background:var(--surface)}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px}
.footer h6{font-weight:600;margin-bottom:16px;font-size:15px}
.footer ul li{margin-bottom:10px;font-size:15px;color:var(--muted)}
.footer ul li a:hover{color:var(--text)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-top:48px;padding-top:24px;font-size:13px;color:var(--muted);flex-wrap:wrap}
.footer-bottom .pay-icons{display:flex;gap:6px}
.footer-bottom .pay-icons span{height:28px;padding:0 12px;border-radius:60px;background:var(--surface-2);display:inline-flex;align-items:center;font-weight:600;font-size:12px;color:var(--text)}

/* ============ MODALS / TOAST ============ */
.modal{position:fixed;inset:0;z-index:100;display:none;align-items:center;justify-content:center;padding:24px}
.modal.open{display:flex}
.modal-bg{position:absolute;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);animation:fade .25s}
.modal-box{position:relative;background:var(--bg);border-radius:12px;padding:36px;width:100%;max-width:520px;max-height:calc(100vh - 48px);overflow:auto;animation:pop .32s cubic-bezier(.2,.7,.2,1);margin:auto}
.modal-box.on-bg .input{background-color:var(--surface)}
.modal-box.wide{max-width:900px}
.modal-box.lightbox{max-width:min(1200px, calc(100vw - 32px));max-height:calc(100vh - 32px);padding:0;background:transparent;overflow:hidden;display:flex;align-items:center;justify-content:center}
.modal-box.lightbox img{border-radius:12px;width:auto;height:auto;max-width:100%;max-height:calc(100vh - 72px);object-fit:contain}
.modal-box.lightbox .modal-x{top:8px;right:8px;background:var(--bg)}
.modal-x{position:absolute;top:16px;right:16px;width:44px;height:44px;border-radius:60px;background:var(--surface);display:grid;place-items:center;transition:.2s;z-index:2}
.modal-x:hover{background:var(--accent);color:#fff}
.modal-title{font-family:'Unbounded',sans-serif;font-size:24px;font-weight:600;letter-spacing:-.02em;margin-bottom:8px;padding-right:48px}
.modal-sub{color:var(--muted);margin-bottom:28px}
.modal-actions{display:flex;gap:8px;margin-top:28px;flex-wrap:wrap}
.modal-actions .btn{flex:1}
@keyframes pop{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}
.quick{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}
.quick img{border-radius:12px;aspect-ratio:4/3;object-fit:cover;width:100%}
.key-box{background:var(--surface);border-radius:12px;padding:20px 24px;font-family:'Unbounded',sans-serif;font-size:18px;letter-spacing:.06em;display:flex;justify-content:space-between;align-items:center;gap:12px;margin:20px 0}
.search-results{display:flex;flex-direction:column;gap:6px;margin-top:20px;max-height:50vh;overflow:auto}
.search-results a{display:grid;grid-template-columns:72px 1fr auto;gap:16px;align-items:center;padding:10px;border-radius:12px;background:var(--surface);transition:.2s}
.search-results a:hover{background:var(--surface-2)}
.search-results img{width:72px;aspect-ratio:4/3;object-fit:cover;border-radius:8px}
.toast-wrap{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);z-index:120;display:flex;flex-direction:column;gap:8px;align-items:center;pointer-events:none}
.toast{background:var(--invert);color:var(--on-invert);padding:16px 22px;border-radius:60px;font-weight:600;font-size:15px;display:flex;align-items:center;gap:12px;animation:pop .3s;white-space:nowrap;pointer-events:auto}
.toast .ico{color:var(--accent)}
.toast.out{opacity:0;transform:translateY(10px);transition:.3s}

/* ============ RESPONSIVE ============ */
@media (max-width:1280px){
  .nav-user > span:first-child{display:none}
  .nav-user{padding-left:6px;margin-left:4px}
  .logo{margin-right:12px}
  .mega{display:none}
}
@media (max-width:1100px){
  .hero-grid,.banner,.product-top,.cart-grid,.acc,.auth,.level,.rev-summary{grid-template-columns:1fr}
  .auth-side{position:static;height:auto;min-height:0;gap:40px}
  .catalog{grid-template-columns:1fr}
  .filters{position:static;max-height:none;overflow:visible;display:none}
  .filters.open{display:flex}
  .filters-toggle{display:inline-flex!important}
  .grid-4{grid-template-columns:repeat(3,1fr)}
  .trust,.tiles{grid-template-columns:repeat(2,1fr)}
  .steps-grid{grid-template-columns:1fr}
  .acc-nav{position:static}
  .acc-nav .acc-links{display:flex;gap:4px;overflow:auto;scrollbar-width:none}
  .acc-link{width:auto;white-space:nowrap}
  .summary{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
  .quick{grid-template-columns:1fr}
}
@media (max-width:720px){
  body{padding-top:88px}
  body.has-hero{padding-top:0}
  body.has-hero .flash:has(.alert){padding-top:88px}
  .header{top:8px}
  .wrap{padding:0 12px}
  .nav-links{display:none}
  .nav{height:56px;padding:0 4px 0 12px;gap:2px}
  .logo{font-size:16px;margin-right:8px;gap:8px}
  .nav-btn{width:40px;height:40px}
  .nav-user{height:40px;margin-left:0}
  .burger{display:grid}
  .logo img {width:90px;}
  .nav-user .avatar{width:30px;height:30px}
  .grid-4,.grid-3,.grid-2,.feat-grid,.shots{grid-template-columns:repeat(2,1fr)}
  .hero-side{grid-template-columns:1fr 1fr}
  .hero{margin-bottom:0;overflow:hidden}
  .hero .wrap{padding-left:0;padding-right:0;max-width:none}
  .hero-bleed{--hero-ox:0px;--hero-oy:0px;aspect-ratio:1.75/1;overflow:hidden;width:100%}
  .hero-art{width: 137%;height:122%;top:-6%;object-position: center 42%;}
  .hero-fade{
    width:100%;
    height:100%;
    top:0;
    background: radial-gradient(ellipse 100% 62% at 50% 41%,transparent 34%,color-mix(in srgb,var(--bg) 22%,transparent) 58%,var(--bg) 91%),
    radial-gradient(ellipse 0% 70% at 0 100%,var(--bg) 51%,transparent 80%),
    radial-gradient(ellipse 0% 70% at 100% 100%,var(--bg) 62%,transparent 70%);
    }
  .hero-screen{left:50%;top: 62%;width:min(58%,220px);gap:8px;padding:0;display: none;}
  .hero-title{font-size: clamp(11px,4.3vw,18px);}
  .hero-cta-btn{height:36px;padding:0 14px;font-size:12px}
  .form-grid{grid-template-columns:1fr}
  .cart-item{grid-template-columns:90px 1fr}
  .cart-item .r{grid-column:1/-1;flex-direction:row;justify-content:space-between;align-items:center}
  .release{grid-template-columns:1fr;gap:12px}
  .steps{grid-template-columns:1fr}
  .steps .step-i:not(.active){display:none}
  .lib,.card-row{grid-template-columns:80px 1fr}
  .lib .acts,.card-row .acts{grid-column:1/-1}
  .table thead{display:none}
  .table td{display:block;padding:8px 20px}
  .table tr td:first-child{border-radius:12px 12px 0 0;padding-top:18px}
  .table tr td:last-child{border-radius:0 0 12px 12px;text-align:left;padding-bottom:18px}
  .tiles{grid-template-columns:1fr 1fr}
  .sec{padding:56px 0}
  .btn-lg{height:60px;padding:0 28px;font-size:16px}
  .modal{padding:16px;align-items:center;justify-content:center}
  .modal-box{padding:28px 22px;max-height:calc(100vh - 32px)}
  .modal-box.lightbox{max-height:calc(100vh - 24px)}
  .modal-box.lightbox img{max-height:calc(100vh - 56px)}
  .social{grid-template-columns:1fr}
  .marquee-track{font-size:20px}
  .thumbs{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:480px){
  .grid-4,.grid-3,.grid-2{grid-template-columns:1fr}
  .shots,.feat-grid{grid-template-columns:1fr}
  .hero-side{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  .theme-btn{display:none}
}

.hint{display:block;font-size:13px;color:var(--muted);font-weight:400;line-height:1.4}
.field .hint{margin-top:2px}
.card-ph{position:absolute;inset:0;background:linear-gradient(135deg,var(--surface-2),var(--surface-3))}
img[src=""]{display:none}
.store-page{padding-top:20px;padding-bottom:88px}
.store-top{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(260px,1fr);gap:32px 48px;align-items:start;margin-bottom:20px}
.store-cover{border-radius:16px;overflow:hidden;background:var(--surface-2);aspect-ratio:16/9}
.store-cover-img{width:100%;height:100%;object-fit:cover;display:block}
.store-cover-ph{width:100%;height:100%;display:grid;place-items:center;font-family:'Unbounded',sans-serif;font-size:64px;font-weight:700;color:var(--muted);background:linear-gradient(135deg,var(--surface-2),var(--surface-3))}
.store-aside{padding-top:4px}
.store-pub{display:flex;align-items:center;gap:14px}
.store-pub .avatar{width:48px;height:48px;font-size:16px}
.store-pub .h3{margin:0}
.store-rule{border:0;border-top:1px solid var(--line);margin:22px 0}
.store-info-title{font-size:13px;font-weight:700;margin:0 0 14px;color:var(--text)}
.store-dl-row{display:grid;grid-template-columns:150px minmax(0,1fr);gap:8px 20px;padding:6px 0;font-size:15px}
.store-dl-row dt{color:var(--muted);font-weight:400}
.store-dl-row dd{margin:0;word-break:break-word}
.store-dl-row a{display:inline-flex;align-items:center;gap:6px}
.store-bio{color:var(--muted);margin:4px 0 28px;font-size:15px;min-height:1.2em}
.store-tabs{display:flex;gap:28px;border-bottom:1px solid var(--line);margin-bottom:24px}
.store-tab{padding:12px 0;font-weight:600;font-size:15px;color:var(--muted);border-bottom:2px solid transparent;margin-bottom:-1px}
.store-tab.active,.store-tab:hover{color:var(--text);border-bottom-color:var(--text)}
.store-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:20px}
.store-sort{display:flex;flex-direction:column;gap:6px}
.store-sort label{font-size:13px;color:var(--muted)}
.store-sort select{width:auto;min-width:220px;height:48px;border-radius:12px}
.totp-setup{display:flex;gap:24px;align-items:flex-start;flex-wrap:wrap;margin-top:20px}
.totp-qr{width:212px;height:212px;flex:none;background:#fff;border-radius:12px;padding:8px;box-shadow:0 0 0 1px var(--line)}
.totp-qr svg{display:block;width:100%;height:100%}
.totp-qr:empty{display:none}
.totp-secret{font-family:'Unbounded',sans-serif;letter-spacing:.08em;font-size:18px;word-break:break-word;margin-top:6px}
@media (max-width:900px){
  .store-top{grid-template-columns:1fr}
  .store-dl-row{grid-template-columns:1fr;gap:4px}
}
.prod-thumb,.prod-banner{width:100%;max-height:200px;object-fit:cover;border-radius:12px;background:var(--surface-2)}
.shot-list{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.shot-item{position:relative;display:block;border-radius:12px;overflow:hidden;background:var(--surface-2)}
.shot-item img{width:100%;height:92px;object-fit:cover;display:block}
.shot-item.is-uploading{opacity:.7}
.shot-wait{position:absolute;inset:0;background:rgba(0,0,0,.25)}
.shot-del{position:absolute;top:6px;right:6px;width:28px;height:28px;border:0;border-radius:50%;background:rgba(20,18,16,.78);color:#fff;font-size:18px;line-height:1;cursor:pointer}
.shot-del:hover{background:#c0392b}
.upload-progress{height:4px;border-radius:99px;background:var(--surface-3);overflow:hidden;margin:8px 0}
.upload-progress i{display:block;height:100%;width:0;background:var(--accent);transition:width .15s}
.logo-img{width:28px;height:28px;object-fit:cover;border-radius:8px;display:block}
.set-tabs{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px}
.set-tab{height:40px;padding:0 16px;border-radius:60px;background:var(--surface);font-weight:600;font-size:14px;display:inline-flex;align-items:center}
.set-tab.active,.set-tab:hover{background:var(--accent);color:#fff}


.lang-switch{display:flex;align-items:center;gap:4px}
.lang-switch a{height:32px;padding:0 12px;border-radius:60px;font-weight:700;font-size:12px;letter-spacing:.06em;color:var(--muted);background:var(--surface-2);display:inline-flex;align-items:center;transition:background .2s,color .2s}
.lang-switch a:hover{color:var(--text)}
.lang-switch a.is-on{background:var(--accent);color:#fff}

/* product-media-20260918 */
.gallery-main img,.gallery-main iframe{width:100%;height:100%;object-fit:cover;border:0;display:block}
.gallery-main.is-video{cursor:default}
.thumb{position:relative}
.p-title{margin:14px 0 8px}
.p-title-img{display:block}
.p-title-img img{display:block;max-width:100%;max-height:88px;width:auto;height:auto;object-fit:contain;object-position:left center}
.p-byline{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0 0 16px;font-size:14px}
.p-author{display:inline-flex;align-items:center;gap:10px;font-weight:500;color:inherit}
.p-author:hover{color:var(--accent)}
.p-author .avatar{width:28px;height:28px;font-size:11px}
.prose img{max-width:100%;height:auto;border-radius:12px;margin:16px 0;display:block}
.shots div{position:relative}
.media-play{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;background:rgba(0,0,0,.22)}
.media-play::before{content:'';width:0;height:0;border-style:solid;border-width:9px 0 9px 16px;border-color:transparent transparent transparent #fff;margin-left:3px;filter:drop-shadow(0 1px 4px rgba(0,0,0,.45))}
.modal-box.lightbox{position:relative;max-width:min(1100px,calc(100vw - 24px));max-height:calc(100vh - 24px);padding:0;background:transparent;overflow:visible;display:flex;flex-direction:column;align-items:center;justify-content:center}
.modal-box.lightbox .lb-stage{display:flex;align-items:center;justify-content:center;max-width:100%;max-height:calc(100vh - 72px)}
.modal-box.lightbox img,.modal-box.lightbox iframe{border-radius:12px;width:auto;height:auto;max-width:100%;max-height:calc(100vh - 72px);object-fit:contain}
.modal-box.lightbox iframe{width:min(960px,100%);aspect-ratio:16/9;height:auto;border:0;background:#000}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:0;background:var(--bg);color:var(--text);display:grid;place-items:center;cursor:pointer;z-index:2;box-shadow:0 8px 24px rgba(0,0,0,.25)}
.lb-nav:hover{background:var(--accent);color:#fff}
.lb-prev{left:8px}
.lb-next{right:8px}
.lb-prev .ico{transform:rotate(90deg)}
.lb-next .ico{transform:rotate(-90deg)}
.lb-meta{margin-top:12px;font-size:13px;font-weight:600;color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.6)}
@media (max-width:700px){
  .lb-nav{width:40px;height:40px}
  .lb-prev{left:0}
  .lb-next{right:0}
}
