:root {
    --bg: #080d16;
    --bg-deep: #070c14;
    --surface: #0d1522;
    --surface-2: #0a111c;
    --line: rgba(255,255,255,.08);
    --line-strong: rgba(255,255,255,.14);
    --text: #f8fafc;
    --muted: #96a3b7;
    --muted-2: #59667a;
    --blue: #3478f6;
    --blue-hover: #4a89ff;
    --green: #55d9a0;
    --danger: #ff707d;
    --radius: 18px;
    --shadow: 0 24px 60px -42px rgba(0,0,0,.95);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: rgba(52,120,246,.35); color: white; }
.shell { width: min(100% - 40px, 1256px); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(8,13,22,.92); backdrop-filter: blur(18px); }
.header-inner { min-height: 64px; display: flex; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 18px; font-weight: 800; letter-spacing: -.035em; }
.brand b { color: #64a0ff; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--blue); color: white; font-size: 14px; font-weight: 900; box-shadow: 0 10px 26px -14px rgba(52,120,246,.95); }
.brand-small { font-size: 14px; letter-spacing: -.02em; }
.brand-small .brand-mark { width: 28px; height: 28px; border-radius: 7px; font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { font-size: 14px; font-weight: 600; color: #8996aa; transition: color .2s; }
.main-nav a:hover { color: white; }
.header-search { margin-left: auto; width: min(320px, 28vw); height: 40px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.035); padding: 0 12px; transition: border-color .2s; }
.header-search:focus-within { border-color: rgba(100,160,255,.45); }
.header-search svg { width: 16px; fill: none; stroke: #6d7b90; stroke-width: 2; }
.header-search input { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; color: white; padding: 0 10px; font-size: 14px; }
.header-search input::placeholder { color: #59667a; }
.cart-button, .icon-button { border: 1px solid var(--line); background: rgba(255,255,255,.04); cursor: pointer; transition: .2s ease; }
.cart-button { height: 40px; display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; padding: 0 14px; font-size: 14px; font-weight: 700; }
.cart-button:hover, .icon-button:hover { border-color: var(--line-strong); background: rgba(255,255,255,.07); }
.cart-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-button b { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 999px; background: var(--blue); padding: 0 5px; font-size: 11px; }
.icon-button { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; }
.mobile-menu-button { display: none; border: 0; background: transparent; width: 24px; padding: 0; }
.mobile-menu-button span { display: block; width: 19px; height: 1.5px; margin: 2.5px auto; background: #cbd5e1; }

.hero-wrap { padding-top: 24px; }
.hero-panel { position: relative; overflow: hidden; min-height: 220px; display: grid; grid-template-columns: 1fr 390px; align-items: center; gap: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(120deg,#0f1a2b 0%,#0b1320 62%,#0a111c 100%); padding: 26px 32px; }
.hero-panel::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 1px; background: linear-gradient(transparent, #5d96ff, transparent); }
.hero-copy { max-width: 740px; position: relative; z-index: 1; }
.eyebrow { margin: 0; color: #5e99ff; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.eyebrow-success { color: var(--green); }
.eyebrow.muted { color: var(--muted-2); }
.hero-copy h1 { max-width: 720px; margin: 10px 0 0; font-size: clamp(34px, 4vw, 46px); line-height: 1.08; letter-spacing: -.045em; }
.hero-copy h1 em { color: #64a0ff; font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 670px; margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.hero-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 12px; padding: 0 18px; cursor: pointer; font-size: 14px; font-weight: 750; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 28px -16px rgba(52,120,246,.95); }
.button-primary:hover { background: var(--blue-hover); }
.button:disabled { cursor: not-allowed; opacity: .48; transform: none; box-shadow: none; }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.025); color: #cbd5e1; }
.button-secondary:hover { border-color: var(--line-strong); background: rgba(255,255,255,.05); color: white; }
.button-wide { width: 100%; }
.trust-button { cursor: default; border-color: var(--line); background: rgba(255,255,255,.02); color: #c2ccda; font-weight: 600; }
.trust-button:hover { transform: none; }
.shield { color: var(--green); }
.trust-stack { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(7,13,22,.65); }
.trust-stack > div { min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
.trust-stack > div + div { border-top: 1px solid var(--line); }
.trust-icon { width: 33px; height: 33px; flex: 0 0 33px; display: grid; place-items: center; border-radius: 9px; background: rgba(52,120,246,.11); color: #64a0ff; font-weight: 800; }
.trust-stack p { margin: 0; }
.trust-stack strong, .trust-stack small { display: block; }
.trust-stack strong { font-size: 14px; }
.trust-stack small { margin-top: 1px; color: var(--muted-2); font-size: 12px; }

.catalog { padding-block: 30px; scroll-margin-top: 68px; }
.section-heading { margin-bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2, .delivery-intro h2 { margin: 5px 0 0; font-size: clamp(26px,3vw,32px); line-height: 1.2; letter-spacing: -.035em; }
.category-tabs { max-width: 100%; display: flex; gap: 4px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); padding: 4px; scrollbar-width: none; }
.category-tabs a { min-height: 36px; display: inline-flex; align-items: center; white-space: nowrap; border-radius: 9px; padding: 0 13px; color: #66758a; font-size: 14px; font-weight: 650; }
.category-tabs a.active { background: rgba(255,255,255,.09); color: white; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.notice, .flash { margin: 16px 0; border: 1px solid rgba(96,165,250,.23); border-radius: 12px; background: rgba(52,120,246,.1); padding: 12px 15px; color: #bfdbfe; font-size: 14px; }
.flash-success { border-color: rgba(85,217,160,.22); background: rgba(85,217,160,.08); color: #a7f3d0; }
.flash-error { border-color: rgba(255,112,125,.25); background: rgba(255,112,125,.08); color: #fecdd3; }
.product-list { display: grid; gap: 12px; }
.product-card { min-height: 228px; display: grid; grid-template-columns: 245px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); transition: transform .25s, border-color .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-2px); border-color: rgba(100,160,255,.3); box-shadow: 0 28px 58px -42px rgba(52,120,246,.6); }
.product-visual, .detail-visual { --accent-a: #2563eb; --accent-b: #22d3ee; position: relative; display: grid; place-items: center; overflow: hidden; background: #0a111c; }
.product-visual { border-right: 1px solid var(--line); }
.product-visual::before, .detail-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg,var(--accent-a),var(--accent-b)); opacity: .09; }
.product-visual::after, .detail-visual::after { content: ""; position: absolute; inset: 0; opacity: .035; background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 24px 24px; }
.product-tile { position: relative; z-index: 1; width: 112px; height: 112px; display: grid; place-items: center; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg,var(--accent-a),var(--accent-b)); padding: 20px; color: white; font-size: 30px; font-weight: 900; box-shadow: 0 18px 38px -20px rgba(0,0,0,.95); transition: transform .35s; }
.product-card:hover .product-tile { transform: scale(1.035); }
.product-tile img { width: 100%; height: 100%; object-fit: contain; }
.product-badge { position: absolute; z-index: 3; top: 14px; left: 14px; border-radius: 8px; background: white; padding: 5px 10px; color: #111827; font-size: 11px; font-weight: 800; }
.product-info { align-self: center; padding: 20px 28px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #5f9cff; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-meta small { color: rgba(85,217,160,.8); font-weight: 650; letter-spacing: 0; text-transform: none; }
.product-info h3 { margin: 4px 0 0; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
.product-info h3 a:hover { color: #8ab6ff; }
.product-description { max-width: 780px; margin: 8px 0 0; display: -webkit-box; overflow: hidden; color: var(--muted); line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.025); padding: 5px 10px; color: #bdc7d5; font-size: 12px; }
.product-buy-row { margin-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 14px; }
.price strong, .price del, .price small { display: inline-block; }
.price strong { font-size: 23px; letter-spacing: -.025em; }
.price del { margin-left: 10px; color: #4b5768; font-size: 14px; }
.price small { display: block; color: #59667a; font-size: 12px; }
.product-actions { display: flex; gap: 8px; }
.product-actions .button { min-height: 40px; }
.pagination-bar { margin-top: 22px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.02); padding: 10px 14px; }
.pagination-bar p { margin: 0; color: var(--muted-2); font-size: 14px; }
.pagination-bar p strong { color: #bec8d7; }
.pagination { display: flex; align-items: center; gap: 4px; }
.pagination a { min-width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 9px; color: #77859a; font-size: 14px; }
.pagination a:hover { color: white; background: rgba(255,255,255,.04); }
.pagination a.active { border-color: rgba(100,160,255,.3); background: rgba(52,120,246,.11); color: #82b0ff; }
.pagination a.disabled { opacity: .3; pointer-events: none; }

.delivery-section { padding: 0 0 34px; scroll-margin-top: 68px; }
.delivery-panel { display: grid; grid-template-columns: .72fr 1.8fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.delivery-intro { border-right: 1px solid var(--line); padding: 27px; }
.delivery-intro > p:last-child { margin: 8px 0 0; color: var(--muted-2); font-size: 14px; }
.delivery-steps { display: grid; grid-template-columns: repeat(3,1fr); }
.delivery-steps > div { position: relative; padding: 22px; }
.delivery-steps > div + div { border-left: 1px solid var(--line); }
.delivery-steps span { color: var(--muted-2); font-size: 12px; font-weight: 800; }
.delivery-steps b { position: absolute; top: 20px; right: 20px; color: #64a0ff; }
.delivery-steps h3 { margin: 13px 0 0; font-size: 16px; }
.delivery-steps p { margin: 6px 0 0; color: var(--muted-2); font-size: 14px; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-top { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-top nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-top nav a { color: var(--muted-2); font-size: 14px; }
.footer-top nav a:hover { color: white; }
.footer-bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #465267; font-size: 12px; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.68); backdrop-filter: blur(4px); }
.cart-drawer { position: absolute; inset: 0 0 0 auto; width: min(100%, 440px); display: flex; flex-direction: column; border-left: 1px solid var(--line); background: #0b121e; padding: 24px; box-shadow: -30px 0 80px rgba(0,0,0,.4); }
.drawer-heading { display: flex; align-items: center; justify-content: space-between; }
.drawer-heading small { color: #6da5ff; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.drawer-heading h2 { margin: 3px 0 0; font-size: 25px; letter-spacing: -.035em; }
.drawer-heading h2 span { color: #526076; }
.cart-items { flex: 1; margin-top: 22px; overflow-y: auto; }
.cart-empty { height: 220px; display: grid; place-items: center; border: 1px dashed var(--line-strong); border-radius: 13px; color: var(--muted-2); text-align: center; }
.cart-line { display: flex; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); padding: 12px; }
.cart-line + .cart-line { margin-top: 10px; }
.cart-line-icon { --accent-a:#2563eb;--accent-b:#22d3ee; width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg,var(--accent-a),var(--accent-b)); font-size: 12px; font-weight: 900; }
.cart-line-copy { min-width: 0; flex: 1; }
.cart-line-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.cart-line-copy > span { display: block; color: #6da5ff; font-size: 14px; font-weight: 700; }
.quantity { margin-top: 6px; display: flex; align-items: center; gap: 9px; }
.quantity button { width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 6px; background: transparent; color: #a9b4c4; cursor: pointer; }
.quantity span { min-width: 12px; text-align: center; font-size: 13px; }
.cart-footer { border-top: 1px solid var(--line); padding-top: 18px; }
.cart-total { margin-bottom: 14px; display: flex; justify-content: space-between; font-size: 18px; }
.cart-total span { color: var(--muted); }
.cart-note { margin: 9px 0 0; color: var(--muted-2); text-align: center; font-size: 12px; }
body.drawer-open { overflow: hidden; }

.breadcrumbs { margin: 0 0 20px; display: flex; align-items: center; gap: 8px; overflow: hidden; color: #59667a; font-size: 14px; white-space: nowrap; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs b { overflow: hidden; color: #b6c0cf; text-overflow: ellipsis; font-weight: 500; }
.product-page { padding-block: 30px 38px; }
.product-hero-card { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.detail-visual { min-height: 390px; border-right: 1px solid var(--line); }
.detail-tile { width: 160px; height: 160px; border-radius: 28px; font-size: 42px; }
.detail-copy { align-self: center; padding: 36px 40px; }
.detail-labels { display: flex; flex-wrap: wrap; gap: 7px; }
.detail-labels span { border-radius: 7px; background: rgba(52,120,246,.1); padding: 5px 9px; color: #77a9ff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.detail-labels .green-label { background: rgba(85,217,160,.09); color: var(--green); }
.detail-copy h1 { margin: 14px 0 0; font-size: clamp(34px,4vw,43px); line-height: 1.15; letter-spacing: -.045em; }
.detail-copy > p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }
.detail-price { margin-top: 20px; display: flex; align-items: end; gap: 10px; border-top: 1px solid var(--line); padding-top: 20px; }
.detail-price strong { font-size: 32px; letter-spacing: -.035em; }
.detail-price del { padding-bottom: 4px; color: #4d596b; }
.detail-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 9px; }
.delivery-note { margin-top: 13px; display: block; color: var(--muted-2); }
.detail-grid { margin-top: 16px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; }
.surface-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 24px; }
.surface-card h2 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.feature-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 20px; }
.feature-grid > div { display: flex; gap: 10px; color: #c2ccda; font-size: 14px; }
.feature-grid span { width: 21px; height: 21px; flex: 0 0 21px; display: grid; place-items: center; border-radius: 6px; background: rgba(85,217,160,.09); color: var(--green); font-size: 11px; }
.feature-grid p { margin: 0; }
.delivery-list { margin-top: 17px; display: grid; gap: 15px; }
.delivery-list > div { display: flex; gap: 10px; }
.delivery-list > div > span { width: 20px; color: #6da5ff; font-weight: 800; }
.delivery-list p, .delivery-list strong, .delivery-list small { margin: 0; display: block; }
.delivery-list strong { font-size: 14px; }
.delivery-list small { margin-top: 2px; color: var(--muted-2); font-size: 13px; }
.video-guide { margin-top: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.video-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 20px 24px; }
.video-heading h2 { margin: 6px 0 0; font-size: 25px; letter-spacing: -.03em; }
.video-heading > div > p:last-child { margin: 5px 0 0; color: var(--muted-2); font-size: 14px; }
.activation-badge { flex: 0 0 auto; border: 1px solid rgba(85,217,160,.15); border-radius: 9px; background: rgba(85,217,160,.06); padding: 8px 11px; color: var(--green); font-size: 12px; font-weight: 700; }
.video-grid { display: grid; grid-template-columns: 1.45fr .75fr; }
.video-column { border-right: 1px solid var(--line); padding: 20px; }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #080e18; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; background: radial-gradient(circle at 50% 45%,rgba(52,120,246,.14),transparent 45%); padding: 24px; text-align: center; }
.video-placeholder > span { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(100,160,255,.22); border-radius: 17px; background: rgba(52,120,246,.1); color: #6da5ff; font-size: 29px; }
.video-placeholder h3 { margin: 13px 0 0; font-size: 16px; }
.video-placeholder p { max-width: 350px; margin: 6px 0 0; color: var(--muted-2); font-size: 14px; }
.checklist { padding: 24px; }
.checklist ol { margin: 18px 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 12px; }
.checklist li + li { margin-top: 16px; }
.checklist li > span { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border: 1px solid rgba(100,160,255,.2); border-radius: 8px; background: rgba(52,120,246,.1); color: #8ab6ff; font-size: 12px; font-weight: 800; }
.checklist li p { margin: 2px 0 0; color: #c0cad8; font-size: 14px; line-height: 1.55; }
.before-start { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); padding: 13px; }
.before-start strong { font-size: 13px; }
.before-start p { margin: 4px 0 0; color: var(--muted-2); font-size: 12px; }
.related { margin-top: 26px; }
.related-heading { display: flex; align-items: center; justify-content: space-between; }
.related-heading h2 { margin: 0; font-size: 21px; }
.related-heading a { color: #6da5ff; font-size: 14px; }
.related-grid { margin-top: 13px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.related-grid > a { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 12px; transition: border-color .2s; }
.related-grid > a:hover { border-color: rgba(100,160,255,.3); }
.related-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg,var(--accent-a),var(--accent-b)); font-size: 11px; font-weight: 900; }
.related-grid p, .related-grid strong, .related-grid small { min-width: 0; margin: 0; display: block; }
.related-grid p { overflow: hidden; }
.related-grid strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.related-grid small { color: #6da5ff; font-size: 12px; font-weight: 700; }

.order-page { min-height: calc(100vh - 195px); padding-block: 48px; }
.order-card { max-width: 820px; margin: 0 auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); padding: 30px; box-shadow: var(--shadow); }
.order-status { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.order-status > span { width: 54px; height: 54px; flex: 0 0 54px; display: grid; place-items: center; border-radius: 15px; font-size: 24px; }
.order-status.success > span { background: rgba(85,217,160,.1); color: var(--green); }
.order-status.waiting > span { background: rgba(250,204,21,.1); color: #facc15; }
.order-status p, .order-status h1, .order-status small, .order-status em { margin: 0; display: block; }
.order-status small { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.order-status h1 { margin-top: 3px; font-size: 28px; letter-spacing: -.035em; }
.order-status em { color: var(--muted-2); font-size: 13px; font-style: normal; }
.order-intro { color: var(--muted); }
.license-results { display: grid; gap: 12px; }
.license-results article { display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); padding: 16px; }
.license-results small { color: #6da5ff; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.license-results h2 { margin: 3px 0 0; font-size: 17px; }
.license-key { display: flex; align-items: center; gap: 8px; }
.license-key code { max-width: 330px; overflow-wrap: anywhere; border: 1px solid var(--line); border-radius: 8px; background: #070c14; padding: 8px 10px; color: #dbeafe; }
.license-key button { border: 0; background: transparent; color: #6da5ff; cursor: pointer; font-size: 13px; font-weight: 700; }
.order-help { margin-top: 20px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted-2); font-size: 13px; }
.order-help strong { color: #cbd5e1; }
.order-help a { color: #6da5ff; }
.legal-page, .state-page { min-height: calc(100vh - 195px); padding-block: 38px; }
.legal-card { max-width: 760px; }
.legal-card h1 { margin: 8px 0 0; font-size: 38px; letter-spacing: -.04em; }
.legal-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.empty-state { display: grid; justify-items: center; padding: 54px 24px; text-align: center; }
.empty-state > span { color: #6da5ff; font-size: 32px; font-weight: 850; }
.empty-state h1, .empty-state h3 { margin: 10px 0 0; }
.empty-state p { margin: 7px 0 20px; color: var(--muted-2); }

.login-page { min-height: calc(100vh - 195px); display: grid; place-items: center; padding: 40px 20px; }
.login-card { width: min(100%,460px); border: 1px solid var(--line); border-radius: 20px; background: var(--surface); padding: 30px; box-shadow: var(--shadow); }
.login-card > .eyebrow { margin-top: 28px; }
.login-card h1 { margin: 7px 0 20px; font-size: 28px; letter-spacing: -.035em; }
.stack-form { display: grid; gap: 15px; }
.stack-form label, .product-form label { display: grid; gap: 7px; color: #cbd5e1; font-size: 14px; font-weight: 650; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: #080e18; color: white; padding: 10px 12px; transition: border-color .2s; }
input, select { min-height: 43px; }
textarea { resize: vertical; line-height: 1.55; }
input:focus, textarea:focus, select:focus { border-color: rgba(100,160,255,.55); }
.login-card .back-link { margin-top: 18px; display: inline-block; color: var(--muted-2); font-size: 13px; }

.admin-body { background: #080d16; }
.admin-shell { width: min(100% - 40px, 1360px); margin-inline: auto; }
.admin-header { border-bottom: 1px solid var(--line); background: #0b111d; }
.admin-header .admin-shell { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-header .brand em { margin-left: 6px; color: var(--muted-2); font-size: 10px; font-style: normal; letter-spacing: .14em; }
.back-link { color: #8a97aa; font-size: 14px; font-weight: 600; }
.back-link:hover { color: white; }
.admin-user { display: flex; align-items: center; gap: 13px; color: var(--muted-2); font-size: 13px; }
.admin-user form { margin: 0; }
.admin-user button { border: 1px solid var(--line); border-radius: 8px; background: transparent; padding: 6px 10px; cursor: pointer; color: #aab5c5; }
.admin-main { padding-block: 32px 50px; }
.admin-title-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.admin-title-row h1 { margin: 7px 0 0; font-size: 34px; letter-spacing: -.04em; }
.admin-title-row p:not(.eyebrow) { margin: 4px 0 0; color: var(--muted); }
.setup-alert { margin-bottom: 18px; display: flex; gap: 12px; border: 1px solid rgba(250,204,21,.2); border-radius: 13px; background: rgba(250,204,21,.06); padding: 14px; }
.setup-alert > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: rgba(250,204,21,.1); color: #facc15; font-weight: 800; }
.setup-alert strong { color: #fef3c7; }
.setup-alert p { margin: 2px 0 0; color: #9d916d; font-size: 13px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.stat-grid article { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 18px; }
.stat-grid span { color: var(--muted-2); font-size: 13px; }
.stat-grid strong { margin-top: 3px; display: block; font-size: 28px; letter-spacing: -.03em; }
.admin-panel { margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.panel-pad { padding: 20px; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; }
.panel-pad .panel-heading { padding: 0 0 16px; }
.panel-heading h2 { margin: 0; font-size: 18px; }
.panel-heading p { margin: 3px 0 0; color: var(--muted-2); font-size: 13px; }
.table-scroll { overflow-x: auto; }
.admin-table { width: 100%; min-width: 920px; border-collapse: collapse; text-align: left; font-size: 13px; }
.admin-table th { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); padding: 11px 16px; color: var(--muted-2); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.admin-table td { border-bottom: 1px solid rgba(255,255,255,.055); padding: 13px 16px; color: #aeb9c8; }
.admin-table tbody tr:last-child td { border-bottom: 0; }
.table-product { min-width: 210px; display: flex; align-items: center; gap: 10px; }
.table-product > span { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg,var(--accent-a),var(--accent-b)); color: white; font-size: 11px; font-weight: 900; }
.table-product p, .table-product strong, .table-product small { margin: 0; display: block; }
.table-product strong { color: white; font-size: 14px; }
.table-product small, .table-subtext { color: var(--muted-2); font-size: 11px; }
.table-product small b { color: #6da5ff; }
.stock-number { display: block; color: var(--green); font-size: 12px; font-weight: 700; }
.stock-number.stock-empty { color: #fbbf24; }
.status-pill { display: inline-flex; white-space: nowrap; border-radius: 999px; padding: 5px 8px; font-size: 11px; font-weight: 750; }
.status-live, .order-fulfilled { background: rgba(85,217,160,.09); color: var(--green); }
.status-hidden, .order-pending { background: rgba(148,163,184,.08); color: #7d899a; }
.order-paid, .order-paid_waiting_stock { background: rgba(250,204,21,.09); color: #facc15; }
.table-actions { display: flex; align-items: center; gap: 6px; }
.table-actions a, .table-actions button, .text-button { border: 1px solid var(--line); border-radius: 7px; background: transparent; padding: 6px 8px; color: #99a6b8; cursor: pointer; font-size: 12px; }
.table-actions form { margin: 0; }
.table-actions button:hover { color: var(--danger); border-color: rgba(255,112,125,.2); }
.admin-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-delivery > div > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(100,160,255,.2); border-radius: 8px; background: rgba(52,120,246,.08); font-size: 11px; }
.orders-panel { margin-top: 18px; }
.table-empty { padding: 32px !important; text-align: center; color: var(--muted-2) !important; }
.narrow-admin { max-width: 1080px; }
.product-form { overflow: visible; }
.form-section { display: grid; grid-template-columns: 220px 1fr; gap: 30px; padding: 24px; }
.form-section + .form-section { border-top: 1px solid var(--line); }
.form-section h2 { margin: 0; font-size: 18px; }
.form-section > div:first-child p { margin: 5px 0 0; color: var(--muted-2); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.full-field { grid-column: 1 / -1; }
.checkbox-label { align-self: end; display: flex !important; grid-template-columns: 18px 1fr; align-items: center; min-height: 43px; }
.checkbox-label input { width: 17px; min-height: 17px; accent-color: var(--blue); }
input[type="color"] { padding: 4px; }
.form-actions { display: flex; justify-content: end; gap: 10px; border-top: 1px solid var(--line); padding: 18px 24px; }

@media (max-width: 1000px) {
    .hero-panel { grid-template-columns: 1fr; }
    .trust-stack { display: grid; grid-template-columns: repeat(3,1fr); }
    .trust-stack > div + div { border-top: 0; border-left: 1px solid var(--line); }
    .delivery-panel { grid-template-columns: 1fr; }
    .delivery-intro { border-right: 0; border-bottom: 1px solid var(--line); }
    .video-grid { grid-template-columns: 1fr; }
    .video-column { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
    .mobile-menu-button { display: block; }
    .main-nav { position: absolute; top: 64px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: #0b111d; padding: 10px 20px 16px; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 11px 4px; }
    .header-search { margin-left: auto; width: min(280px,35vw); }
    .section-heading { align-items: stretch; flex-direction: column; }
    .product-card { grid-template-columns: 210px 1fr; }
    .product-info { padding: 18px 20px; }
    .wide-chip, .product-meta small { display: none !important; }
    .product-buy-row { align-items: start; flex-direction: column; }
    .product-actions { width: 100%; }
    .product-actions .button { flex: 1; }
    .product-hero-card { grid-template-columns: 1fr; }
    .detail-visual { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
    .detail-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .admin-header .back-link, .admin-user > span { display: none; }
    .admin-grid-two { grid-template-columns: 1fr; }
    .form-section { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px) {
    .shell, .admin-shell { width: min(100% - 28px, 1256px); }
    .header-inner { gap: 11px; }
    .brand { font-size: 16px; }
    .brand-mark { width: 30px; height: 30px; }
    .header-search { display: none; }
    .cart-button { margin-left: auto; }
    .cart-button > span { display: none; }
    .hero-wrap { padding-top: 14px; }
    .hero-panel { gap: 22px; padding: 22px 20px; }
    .hero-copy h1 { font-size: 34px; }
    .trust-stack { grid-template-columns: 1fr; }
    .trust-stack > div + div { border-top: 1px solid var(--line); border-left: 0; }
    .trust-button { width: 100%; }
    .catalog { padding-block: 24px; }
    .category-tabs { margin-inline: -2px; }
    .product-card { grid-template-columns: 1fr; }
    .product-visual { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
    .product-info { padding: 18px; }
    .product-description { font-size: 15px; }
    .product-buy-row { gap: 12px; }
    .pagination-bar { align-items: start; flex-direction: column; }
    .pagination { max-width: 100%; overflow-x: auto; }
    .delivery-steps { grid-template-columns: 1fr; }
    .delivery-steps > div + div { border-top: 1px solid var(--line); border-left: 0; }
    .footer-top, .footer-bottom { align-items: start; flex-direction: column; justify-content: center; padding-block: 18px; }
    .footer-top nav { gap: 14px 18px; }
    .cart-drawer { padding: 18px; }
    .detail-copy { padding: 24px 20px; }
    .detail-actions .button { width: 100%; }
    .feature-grid { grid-template-columns: 1fr; }
    .video-heading { align-items: start; flex-direction: column; }
    .video-column { padding: 12px; }
    .checklist { padding: 20px; }
    .related-heading { align-items: start; gap: 10px; }
    .license-results article, .order-help { align-items: start; flex-direction: column; }
    .license-key { width: 100%; align-items: stretch; flex-direction: column; }
    .license-key code { max-width: none; }
    .order-card { padding: 20px; }
    .order-status h1 { font-size: 24px; }
    .admin-title-row { align-items: stretch; flex-direction: column; }
    .admin-title-row .button { width: 100%; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .full-field { grid-column: auto; }
    .form-section { padding: 20px; }
}
