:root {
  --bg: #00133c;
  --surface: #061f4f;
  --surface-raised: #0a2b61;
  --text: #ffffff;
  --muted: #a9b7d0;
  --link: #ffffff;
  --gold: #da291c;
  --gold-bright: #ffffff;
  --green: #0055a4;
  --green-bright: #3c8dde;
  --danger: #ff5a52;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 20px 60px rgba(0, 8, 30, .42);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 11px;
  --safe-top: max(14px, var(--tg-content-safe-area-inset-top, 0px));
  --safe-bottom: max(14px, var(--tg-content-safe-area-inset-bottom, 0px));
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100%; margin: 0; color: var(--text); background:
    radial-gradient(circle at 8% 0%, rgba(0, 85, 164, .42), transparent 30rem),
    radial-gradient(circle at 100% 38%, rgba(218, 41, 28, .18), transparent 24rem), var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
button, textarea { font: inherit; }
button, a { touch-action: manipulation; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.ambient { position: fixed; z-index: -1; border-radius: 999px; filter: blur(70px); opacity: .24; pointer-events: none; }
.ambient-one { width: 14rem; height: 14rem; background: #0055a4; top: -7rem; left: -7rem; animation: ambient-float 12s ease-in-out infinite alternate; }
.ambient-two { width: 12rem; height: 12rem; background: #da291c; bottom: 5rem; right: -8rem; animation: ambient-float 15s ease-in-out -4s infinite alternate-reverse; }
@keyframes ambient-float { to { transform: translate3d(24px, 18px, 0) scale(1.12); } }
.app-shell { width: min(100%, 760px); min-height: 100vh; margin: 0 auto; padding: calc(var(--safe-top) + 64px) 16px calc(92px + var(--safe-bottom)); }
.topbar { position: fixed; z-index: 30; top: 0; left: 50%; transform: translateX(-50%); width: min(100%, 760px); height: calc(64px + var(--safe-top)); padding: var(--safe-top) 16px 0; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 96%, transparent) 60%, transparent); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 10px; min-height: 48px; border: 0; background: transparent; padding: 0; text-align: left; cursor: pointer; }
.brand-avatar { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; border: 1px solid rgba(217,179,108,.38); }
.brand strong, .brand small { display: block; letter-spacing: .13em; line-height: 1; }
.brand strong { font-size: .82rem; color: var(--gold-bright); }
.brand small { margin-top: 5px; font-size: .62rem; color: var(--muted); }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.connection-pill { display: flex; align-items: center; gap: 6px; min-height: 32px; padding: 0 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--muted); font-size: .7rem; font-weight: 700; }
.connection-pill i { width: 7px; height: 7px; border-radius: 50%; background: #d7a65c; box-shadow: 0 0 0 4px rgba(215,166,92,.1); }
.connection-pill.is-online i { background: #86ad77; box-shadow: 0 0 0 4px rgba(134,173,119,.1); }
.connection-pill.is-offline i { background: var(--danger); box-shadow: 0 0 0 4px rgba(215,109,105,.1); }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); font-size: 1.35rem; cursor: pointer; }
.icon-button:active { transform: scale(.95); }

.view { animation: view-in .28s ease both; }
@keyframes view-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.loading-view { padding-top: 4px; }
.skeleton { position: relative; overflow: hidden; background: rgba(255,255,255,.055); }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); animation: shimmer 1.5s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.hero-skeleton { height: 224px; border-radius: var(--radius-xl); }
.line-wide { width: 190px; height: 26px; border-radius: 8px; }
.card-skeleton { height: 156px; border-radius: var(--radius-lg); }

.notice { display: flex; gap: 12px; margin: 6px 0 14px; padding: 13px; border-radius: var(--radius-md); border: 1px solid rgba(91, 154, 203, .18); background: rgba(91,154,203,.08); }
.notice-icon { flex: 0 0 auto; color: #84b8dc; }
.notice strong { font-size: .85rem; }
.notice p { margin: 3px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.hero-card { position: relative; height: clamp(185px, 53vw, 300px); overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(217,179,108,.24); box-shadow: var(--shadow); background: #111; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.74)); }
.hero-status { position: absolute; bottom: 14px; left: 14px; display: flex; align-items: center; gap: 7px; min-height: 32px; padding: 0 11px; border-radius: 999px; background: rgba(11,13,10,.76); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 700; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #90b17f; box-shadow: 0 0 0 4px rgba(144,177,127,.12); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin: 28px 2px 15px; }
.section-heading h1, .page-intro h1 { margin: 3px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 7vw, 2.3rem); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.eyebrow { margin: 0; color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.count-badge { display: grid; place-items: center; min-width: 34px; height: 30px; padding: 0 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--gold-bright); font-size: .75rem; font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.product-card { position: relative; min-height: 166px; overflow: hidden; padding: 16px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.075); background: linear-gradient(145deg, rgba(34,41,32,.98), rgba(20,23,19,.98)); box-shadow: 0 12px 35px rgba(0,0,0,.18); text-align: left; cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.product-card::before { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -35px; top: -35px; background: radial-gradient(circle, rgba(217,179,108,.15), transparent 70%); }
.product-card:active { transform: scale(.975); }
.product-card:focus-visible, .button:focus-visible, .nav-item:focus-visible, .choice-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.product-code { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; background: rgba(217,179,108,.12); color: var(--gold-bright); font: 700 .8rem Georgia, serif; }
.product-card h2 { position: relative; margin: 20px 0 7px; font: 500 1.03rem/1.25 Georgia, serif; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; color: var(--muted); font-size: .69rem; }
.product-price { color: var(--gold-bright); font-size: .9rem; font-weight: 800; }
.product-card.is-unavailable { opacity: .54; filter: saturate(.6); }
.product-card.is-unavailable .product-price { color: var(--muted); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 22px; padding: 14px 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip > div { min-width: 0; text-align: center; }
.trust-strip > div > span { display: grid; place-items: center; width: 29px; height: 29px; margin: 0 auto 7px; border-radius: 50%; background: rgba(217,179,108,.09); color: var(--gold); }
.trust-strip p { margin: 0; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { font-size: .67rem; }
.trust-strip small { margin-top: 3px; color: var(--muted); font-size: .57rem; line-height: 1.25; }

.page-intro { padding: 22px 2px 16px; }
.page-intro > p:last-child { margin: 10px 0 0; color: var(--muted); line-height: 1.55; }
.review-summary { display: flex; align-items: center; gap: 18px; margin: 8px 0 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.025); }
.review-score { font: 500 2.8rem/1 Georgia, serif; color: var(--gold-bright); }
.stars { color: var(--gold); letter-spacing: .05em; }
.review-summary p { margin: 5px 0 0; color: var(--muted); font-size: .75rem; }
.reviews-list { display: grid; gap: 10px; margin-top: 18px; }
.review-card { padding: 16px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.025); }
.review-card header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-card h3 { margin: 0; font-size: .82rem; }
.review-card time { color: var(--muted); font-size: .67rem; }
.review-card .stars { margin-top: 8px; font-size: .8rem; }
.review-card p { margin: 10px 0 0; color: color-mix(in srgb, var(--text) 84%, var(--muted)); font-size: .82rem; line-height: 1.55; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 18px 0; }
.pagination button { min-width: 44px; height: 40px; border-radius: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.035); cursor: pointer; }
.pagination span { color: var(--muted); font-size: .72rem; }

.support-card, .safety-card { border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(38,44,35,.92), rgba(20,23,19,.96)); }
.support-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 18px; }
.support-card .button { grid-column: 1 / -1; }
.support-mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; border: 1px solid rgba(217,179,108,.3); background: rgba(217,179,108,.1); color: var(--gold-bright); font: 500 1.5rem Georgia, serif; }
.support-card h2 { margin: 3px 0 4px; font: 500 1.18rem Georgia, serif; }
.support-card p:last-child { margin: 0; color: var(--muted); font-size: .74rem; }
.safety-card { margin-top: 12px; padding: 19px; }
.safety-card h2 { margin: 0 0 14px; font: 500 1.25rem Georgia, serif; }
.safety-card ol { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.safety-card li { display: flex; align-items: flex-start; gap: 11px; }
.safety-card li > span { display: grid; place-items: center; flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; background: rgba(217,179,108,.11); color: var(--gold); font-size: .67rem; font-weight: 800; }
.safety-card li p { margin: 3px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.4; }

.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border: 0; border-radius: 16px; font-size: .83rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .15s ease, opacity .15s ease; }
.button:active { transform: scale(.975); }
.button:disabled { opacity: .45; cursor: not-allowed; }
.button-primary { color: #18140d; background: linear-gradient(135deg, var(--gold-bright), #c99e55); box-shadow: 0 10px 28px rgba(201,158,85,.16); }
.button-secondary { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.button-full { width: 100%; }
.text-button { min-height: 42px; padding: 0 8px; border: 0; background: transparent; color: var(--gold); font-size: .76rem; font-weight: 800; cursor: pointer; }

.bottom-nav { position: fixed; z-index: 28; bottom: 0; left: 50%; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr); width: min(100%, 760px); min-height: calc(70px + var(--safe-bottom)); padding: 7px 18px var(--safe-bottom); border-top: 1px solid rgba(255,255,255,.075); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(22px); }
.nav-item { position: relative; display: flex; min-height: 55px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.nav-item > span { font-size: 1.15rem; line-height: 1; }
.nav-item small { font-size: .62rem; font-weight: 700; }
.nav-item.is-active { color: var(--gold-bright); }
.nav-item.is-active::before { content: ""; position: absolute; top: 1px; width: 24px; height: 2px; border-radius: 999px; background: var(--gold); }

.sheet-backdrop { position: fixed; z-index: 50; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(4px); animation: fade-in .2s ease; }
.bottom-sheet { position: fixed; z-index: 55; left: 50%; bottom: 0; transform: translateX(-50%); width: min(100%, 760px); max-height: min(86vh, 760px); overflow: hidden; padding: 8px 16px calc(16px + var(--safe-bottom)); border: 1px solid rgba(255,255,255,.08); border-bottom: 0; border-radius: 28px 28px 0 0; background: #151914; box-shadow: 0 -24px 80px rgba(0,0,0,.5); animation: sheet-up .28s cubic-bezier(.2,.8,.2,1); }
@keyframes sheet-up { from { transform: translate(-50%, 100%); } to { transform: translate(-50%, 0); } }
@keyframes fade-in { from { opacity: 0; } }
.sheet-handle { width: 38px; height: 4px; margin: 0 auto 9px; border-radius: 999px; background: rgba(255,255,255,.18); }
.sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sheet-header h2 { margin: 4px 0 0; font: 500 1.45rem Georgia, serif; }
.sheet-content { max-height: calc(86vh - 190px); overflow-y: auto; overscroll-behavior: contain; padding: 18px 0 10px; scrollbar-width: none; }
.sheet-content::-webkit-scrollbar { display: none; }
.sheet-actions { display: grid; gap: 8px; padding-top: 10px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-card { min-height: 64px; padding: 12px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.035); text-align: left; cursor: pointer; }
.choice-card strong, .choice-card small { display: block; }
.choice-card strong { font-size: .82rem; }
.choice-card small { margin-top: 4px; color: var(--muted); font-size: .67rem; }
.choice-card.is-selected { border-color: rgba(217,179,108,.55); background: rgba(217,179,108,.1); }
.choice-card:disabled { opacity: .4; }
.order-review { display: grid; gap: 12px; }
.review-product { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.review-product .product-code { flex: 0 0 auto; width: 44px; height: 44px; }
.review-product h3 { margin: 0; font: 500 1.05rem Georgia, serif; }
.review-product p { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
.review-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .78rem; }
.review-row strong { color: var(--text); text-align: right; }
.review-total { padding-top: 13px; border-top: 1px solid var(--line); font-size: .9rem; }
.review-total strong { color: var(--gold-bright); font-size: 1.18rem; }

.modal { position: fixed; z-index: 60; inset: 0; display: grid; place-items: end center; padding: 18px 14px calc(18px + var(--safe-bottom)); background: rgba(0,0,0,.68); backdrop-filter: blur(5px); }
.modal-card { width: min(100%, 520px); padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; background: #181c17; box-shadow: var(--shadow); animation: sheet-up .25s ease; }
.rating-field { margin: 20px 0 16px; padding: 0; border: 0; }
.rating-field legend, .field-label { margin-bottom: 9px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.star-input { display: flex; justify-content: space-between; gap: 5px; }
.star-input button { width: 50px; height: 48px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.035); color: #5e625b; font-size: 1.45rem; cursor: pointer; }
.star-input button.is-active { color: var(--gold); border-color: rgba(217,179,108,.3); background: rgba(217,179,108,.09); }
textarea { width: 100%; resize: vertical; min-height: 105px; padding: 13px; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); outline: 0; background: rgba(0,0,0,.18); color: var(--text); line-height: 1.45; }
textarea:focus { border-color: rgba(217,179,108,.55); box-shadow: 0 0 0 3px rgba(217,179,108,.08); }
.toggle-row { display: flex; align-items: center; gap: 10px; min-height: 52px; margin: 8px 0 12px; color: var(--muted); font-size: .78rem; cursor: pointer; }
.toggle-row input { position: absolute; opacity: 0; }
.toggle { position: relative; width: 42px; height: 24px; border-radius: 999px; background: #3a3f38; transition: .2s; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: .2s; }
.toggle-row input:checked + .toggle { background: var(--green); }
.toggle-row input:checked + .toggle::after { transform: translateX(18px); }

.payment-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 4px 0 14px; }
.payment-header .text-button { justify-self: start; }
.payment-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(38,44,35,.95), rgba(19,22,18,.98)); }
.payment-state { text-align: center; }
.payment-orb { display: grid; place-items: center; width: 74px; height: 74px; margin: 2px auto 15px; border-radius: 50%; border: 1px solid rgba(217,179,108,.28); background: rgba(217,179,108,.08); color: var(--gold-bright); font-size: 1.75rem; box-shadow: 0 0 0 10px rgba(217,179,108,.035); }
.payment-state.is-confirmed .payment-orb { border-color: rgba(134,173,119,.35); background: rgba(134,173,119,.11); color: #a8ca98; }
.payment-state.is-expired .payment-orb { border-color: rgba(215,109,105,.35); background: rgba(215,109,105,.1); color: #e59591; }
.payment-state h1 { margin: 0; font: 500 1.75rem Georgia, serif; }
.payment-state > p { margin: 8px auto 0; max-width: 28rem; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.payment-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 22px 0; }
.payment-progress span { height: 4px; border-radius: 999px; background: rgba(255,255,255,.08); }
.payment-progress span.is-active { background: var(--gold); }
.payment-details { display: grid; gap: 10px; }
.copy-field { padding: 13px; border: 1px solid rgba(255,255,255,.075); border-radius: var(--radius-md); background: rgba(0,0,0,.16); }
.copy-field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .08em; }
.copy-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.copy-row code { display: block; min-width: 0; width: 100%; overflow: visible; overflow-wrap: anywhere; word-break: break-all; white-space: normal; color: var(--gold-bright); font: 700 .78rem/1.45 ui-monospace, SFMono-Regular, Consolas, monospace; }
.copy-row button { min-height: 44px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--gold); font-size: .68rem; font-weight: 800; cursor: pointer; }
.payment-timer { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 0; padding: 12px 2px 0; color: var(--muted); font-size: .73rem; }
.payment-timer strong { color: var(--text); font-variant-numeric: tabular-nums; }
.payment-actions { display: grid; gap: 8px; margin-top: 16px; }
.order-reference { margin: 13px 0 0; text-align: center; color: var(--muted); font-size: .64rem; }
.delivery-frame { width: 100%; margin-top: 16px; border-radius: var(--radius-lg); border: 1px solid var(--line); }

.state-view { min-height: 64vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.state-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; border: 1px solid rgba(215,109,105,.3); background: rgba(215,109,105,.08); color: var(--danger); font: 500 1.7rem Georgia, serif; }
.state-view h1 { margin: 18px 0 7px; font: 500 1.7rem Georgia, serif; }
.state-view p { max-width: 28rem; margin: 0 0 18px; color: var(--muted); line-height: 1.5; }
.empty-state { padding: 30px 16px; border: 1px dashed var(--line); border-radius: var(--radius-lg); color: var(--muted); text-align: center; font-size: .8rem; }
.toast { position: fixed; z-index: 90; left: 50%; bottom: calc(84px + var(--safe-bottom)); transform: translateX(-50%); width: max-content; max-width: calc(100% - 32px); padding: 11px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: #272c25; box-shadow: var(--shadow); color: var(--text); font-size: .75rem; font-weight: 700; animation: toast-in .2s ease; }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } }

/* Furioza visual system */
.topbar {
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(0, 19, 60, .98) 68%, rgba(0, 19, 60, 0));
}
.brand { gap: 9px; }
.brand-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(90deg, #004170 0 39%, #fff 39% 43%, #da291c 43% 57%, #fff 57% 61%, #004170 61%);
  color: #fff;
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: -.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.brand strong { color: #fff; font-size: 1rem; font-weight: 950; letter-spacing: .16em; }
.connection-pill { border-color: rgba(255,255,255,.14); background: rgba(0,65,112,.35); }
.connection-pill i { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.1); }
.connection-pill.is-online i { background: #4dde91; box-shadow: 0 0 0 4px rgba(77,222,145,.12); }
.icon-button { border-radius: 10px; background: rgba(255,255,255,.06); }
.notice { border-color: rgba(255,255,255,.15); background: rgba(0,65,112,.45); }
.notice-icon { color: #fff; }
.hero-card { border-color: rgba(255,255,255,.16); border-radius: 18px; background: #001845; }
.hero-image { object-fit: cover; object-position: center; animation: hero-breathe 12s ease-in-out infinite alternate; }
@keyframes hero-breathe { from { transform: scale(1); } to { transform: scale(1.035); } }
.hero-overlay { background: linear-gradient(180deg, transparent 52%, rgba(0,19,60,.88)); }
.hero-status { border-color: rgba(255,255,255,.2); background: rgba(0,19,60,.82); letter-spacing: .12em; }
.status-dot { background: #da291c; box-shadow: 0 0 0 4px rgba(218,41,28,.2); animation: status-pulse 1.8s ease-out infinite; }
@keyframes status-pulse { 50% { box-shadow: 0 0 0 7px rgba(218,41,28,0); } }
.section-heading h1, .page-intro h1, .sheet-header h2, .support-card h2,
.review-product h3, .payment-state h1, .state-view h1 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
}
.eyebrow { color: #da291c; letter-spacing: .2em; }
.count-badge { border-color: rgba(255,255,255,.16); color: #fff; background: rgba(0,65,112,.55); }
.product-grid { grid-template-columns: 1fr; gap: 14px; }
.product-card {
  min-height: 0;
  padding: 0;
  cursor: default;
  border-color: rgba(255,255,255,.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(8,43,93,.98), rgba(1,23,62,.98));
  animation: product-rise .55s cubic-bezier(.2,.8,.2,1) both;
}
.product-card:nth-child(2) { animation-delay: .08s; }
.product-card:nth-child(3) { animation-delay: .16s; }
@keyframes product-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.product-card:active { transform: none; }
.product-card::before {
  width: 8px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 4;
  border-radius: 0;
  background: #da291c;
}
.product-visual { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #00133c; isolation: isolate; }
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
  animation: visual-drift 8s ease-in-out infinite alternate;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.product-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,19,60,.02) 35%, rgba(0,19,60,.86) 100%);
}
.product-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 24%;
  transform: skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  animation: visual-sweep 7s ease-in-out infinite;
}
.product-card:nth-child(2) .product-visual::after { animation-delay: 1.4s; }
.product-card:nth-child(3) .product-visual::after { animation-delay: 2.8s; }
.product-card:hover .product-visual img { transform: scale(1.09); filter: saturate(1.14) contrast(1.05); }
.product-visual-index, .product-visual-label { position: absolute; z-index: 3; bottom: 13px; font-weight: 900; }
.product-visual-index { left: 16px; display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,19,60,.58); font-size: .6rem; backdrop-filter: blur(10px); }
.product-visual-label { right: 17px; color: rgba(255,255,255,.85); font-size: .54rem; letter-spacing: .18em; }
@keyframes visual-drift { from { transform: scale(1.035) translate3d(-.5%, 0, 0); } to { transform: scale(1.075) translate3d(.7%, -.5%, 0); } }
@keyframes visual-sweep { 0%, 58% { left: -45%; opacity: 0; } 66% { opacity: 1; } 84%, 100% { left: 125%; opacity: 0; } }
.product-header { display: flex; align-items: center; gap: 13px; padding: 17px 20px 13px; }
.product-index {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,65,112,.48);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.product-header p { margin: 0 0 3px; color: #da291c; font-size: .56rem; font-weight: 900; letter-spacing: .18em; }
.product-card h2 { margin: 0; font-family: inherit; font-size: 1.12rem; font-weight: 900; text-transform: uppercase; letter-spacing: .01em; }
.variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(82px, 1fr)); gap: 8px; padding: 0 20px 16px; }
.variant-button {
  display: grid;
  gap: 5px;
  min-height: 68px;
  place-items: center;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.variant-button span { font-size: .95rem; font-weight: 950; letter-spacing: .02em; }
.variant-button strong { color: var(--muted); font-size: .7rem; font-weight: 750; }
.variant-button:hover, .variant-button:focus-visible { border-color: #da291c; background: rgba(218,41,28,.16); outline: 0; }
.variant-button:active { transform: scale(.96); }
.variant-button:disabled { opacity: .35; cursor: not-allowed; }
.product-availability { display: flex; align-items: center; gap: 7px; padding: 11px 20px 12px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .04em; }
.product-availability i { width: 6px; height: 6px; border-radius: 50%; background: #4dde91; box-shadow: 0 0 0 3px rgba(77,222,145,.1); }
.product-card.is-unavailable .product-availability i { background: var(--danger); }
.product-card:focus-visible, .button:focus-visible, .nav-item:focus-visible, .choice-card:focus-visible { outline-color: #fff; }
.product-code { border-radius: 8px; background: #da291c; color: #fff; font-family: inherit; font-weight: 950; }
.product-price, .review-total strong, .copy-row code { color: #fff; }
.review-card, .review-summary { background: rgba(0,65,112,.26); }
.support-card, .safety-card, .payment-card {
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(8,43,93,.98), rgba(1,23,62,.98));
}
.support-mark { border-color: #fff; border-radius: 50%; background: #da291c; color: #fff; font: 950 .78rem/1 Inter, sans-serif; }
.button { border-radius: 10px; }
.button-primary { color: #fff; background: #da291c; box-shadow: 0 12px 28px rgba(218,41,28,.2); transition: transform .16s ease, box-shadow .2s ease, background .2s ease; }
.button-primary:hover { box-shadow: 0 15px 34px rgba(218,41,28,.3); transform: translateY(-1px); }
.button-primary:active { background: #b91f16; }
.bottom-nav { border-top-color: rgba(255,255,255,.12); background: rgba(0,19,60,.94); }
.nav-item { transition: color .2s ease, transform .2s ease; }
.nav-item.is-active { color: #fff; transform: translateY(-1px); }
.nav-item.is-active::before { background: #da291c; }
.bottom-sheet, .modal-card { background: #031b49; }
.choice-card.is-selected { border-color: #da291c; background: rgba(218,41,28,.14); }
.star-input button.is-active { color: #fff; border-color: #da291c; background: rgba(218,41,28,.18); }
textarea:focus { border-color: #da291c; box-shadow: 0 0 0 3px rgba(218,41,28,.13); }
.toggle-row input:checked + .toggle { background: #da291c; }
.payment-orb { border-color: rgba(218,41,28,.5); background: rgba(218,41,28,.14); color: #fff; box-shadow: 0 0 0 10px rgba(218,41,28,.05); }
.payment-progress span.is-active { background: #da291c; }
.copy-row button { color: #fff; }
.toast { background: #082b5d; }

@media (min-width: 620px) {
  .app-shell { padding-left: 24px; padding-right: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .support-card { grid-template-columns: auto 1fr auto; }
  .support-card .button { grid-column: auto; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 370px) {
  .app-shell { padding-left: 12px; padding-right: 12px; }
  .connection-pill span { display: none; }
  .connection-pill { width: 32px; justify-content: center; padding: 0; }
  .product-card { padding: 0; min-height: 0; }
  .trust-strip small { display: none; }
}
@media (max-width: 480px) {
  .copy-row { grid-template-columns: minmax(0, 1fr); }
  .copy-row button { width: 100%; }
  .copy-field.is-amount code { font-size: clamp(.68rem, 3.4vw, .78rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
