:root {
  --bg: #070914;
  --bg-deep: #04050c;
  --panel: rgba(20, 23, 43, .92);
  --panel-2: rgba(27, 31, 57, .82);
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(125, 211, 252, .30);
  --text: #f7f8ff;
  --muted: #9ba2bc;
  --faint: #697089;
  --cyan: #55e7f2;
  --blue: #59bdf8;
  --violet: #8b73ff;
  --green: #7ef5ba;
  --red: #ff7d98;
  --amber: #ffd166;
  --shadow: 0 30px 90px rgba(0,0,0,.50);
  --font: "Vazirmatn", Tahoma, system-ui, sans-serif;
  --latin: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg-deep);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.latin { font-family: var(--latin); direction: ltr; unicode-bidi: embed; }
.uid-hidden { display: none !important; }
::selection { background: rgba(85,231,242,.28); color: #fff; }

.scene { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.scene::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 82%);
}
.orb { position: absolute; border-radius: 999px; filter: blur(95px); opacity: .28; animation: drift 16s ease-in-out infinite alternate; }
.orb-a { width: 520px; height: 520px; top: -240px; right: -180px; background: #375cff; }
.orb-b { width: 430px; height: 430px; bottom: -190px; left: -160px; background: #00d8e8; animation-delay: -7s; }
.orb-c { width: 280px; height: 280px; top: 36%; left: 52%; background: #7758ff; opacity: .13; animation-delay: -11s; }
@keyframes drift { to { transform: translate3d(35px, 30px, 0) scale(1.12); } }
.noise { position: absolute; inset: 0; opacity: .028; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.stars { position: absolute; inset: 0; opacity: .55; background-image: radial-gradient(1px 1px at 8% 14%, #fff, transparent), radial-gradient(1px 1px at 22% 63%, #7cecff, transparent), radial-gradient(1px 1px at 42% 20%, #fff, transparent), radial-gradient(1px 1px at 68% 34%, #8b73ff, transparent), radial-gradient(1px 1px at 82% 76%, #fff, transparent), radial-gradient(1px 1px at 93% 18%, #55e7f2, transparent); }

.intro-overlay {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-content: center; justify-items: center; gap: 8px;
  background: radial-gradient(circle at 50% 45%, #10172b, #05060d 50%);
  transition: opacity .55s ease, visibility .55s ease;
}
.intro-overlay.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-mark { width: 96px; height: 96px; border-radius: 28px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(85,231,242,.16), rgba(139,115,255,.18)); border: 1px solid rgba(125,211,252,.25); box-shadow: 0 0 55px rgba(85,231,242,.22); animation: intro-pop .6s cubic-bezier(.2,1.2,.35,1) both; }
.intro-mark img { width: 84px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3)); }
.intro-overlay strong { margin-top: 8px; font: 800 15px var(--latin); letter-spacing: .12em; }
.intro-overlay span { color: var(--muted); font: 700 9px var(--latin); letter-spacing: .38em; text-indent: .38em; }
.intro-overlay > i { width: 110px; height: 2px; margin-top: 10px; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent); animation: intro-load .75s ease both; }
@keyframes intro-pop { from { opacity: 0; transform: scale(.7) translateY(10px); } }
@keyframes intro-load { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.reveal { opacity: 0; transform: translateY(18px); }
body.entered .reveal { animation: reveal .7s cubic-bezier(.2,.8,.25,1) forwards; }
body.entered .mini-top { animation-delay: .02s; }
body.entered .brand-block { animation-delay: .08s; }
body.entered .purchase-card { animation-delay: .16s; }
body.entered .trust-strip { animation-delay: .24s; }
body.entered .site-footer { animation-delay: .30s; }
@keyframes reveal { to { opacity: 1; transform: none; } }
body.entered .reveal { opacity: 1; }

.mini-top { position: fixed; top: 18px; inset-inline: 18px; z-index: 40; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.online-chip, .clock-chip { pointer-events: auto; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); background: rgba(9,11,22,.72); backdrop-filter: blur(18px); border-radius: 999px; box-shadow: 0 12px 34px rgba(0,0,0,.22); }
.online-chip { font-size: 11px; color: #dbe4f8; }
.online-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.clock-chip { border-radius: 15px; display: grid; gap: 0; text-align: left; direction: ltr; min-width: 108px; }
.clock-chip strong { font-size: 12px; line-height: 1.1; }
.clock-chip small { font-size: 8px; color: var(--muted); }

.page-shell { width: min(620px, calc(100% - 30px)); margin: 0 auto; padding: 84px 0 28px; }
.brand-block { text-align: center; display: grid; justify-items: center; }
.brand-mark { position: relative; width: 118px; height: 118px; display: grid; place-items: center; margin-bottom: 14px; }
.mark-glow { position: absolute; inset: -24px; border-radius: 50%; background: radial-gradient(circle, rgba(85,231,242,.25), rgba(139,115,255,.10) 42%, transparent 70%); filter: blur(4px); animation: breathe 3.5s ease-in-out infinite; }
.mark-frame { position: absolute; inset: 2px; border-radius: 33px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018)); border: 1px solid rgba(125,211,252,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 55px rgba(0,0,0,.30); }
.brand-mark img { width: 104px; position: relative; z-index: 1; filter: drop-shadow(0 12px 20px rgba(0,0,0,.35)); }
@keyframes breathe { 50% { transform: scale(1.12); opacity: .65; } }
.official-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(85,231,242,.22); background: rgba(85,231,242,.06); color: #d6faff; font: 700 9px var(--latin); letter-spacing: .12em; }
.official-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.brand-block h1 { margin: 17px 0 4px; font-size: clamp(28px, 6vw, 40px); line-height: 1.28; letter-spacing: -.04em; }
.brand-block > p { margin: 0; color: #c9cfe0; font-size: 14px; font-weight: 600; }
.notice-pill { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; color: #ffe59a; background: rgba(255,209,102,.08); border: 1px solid rgba(255,209,102,.24); font-size: 11px; }
.notice-pill b { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,209,102,.18); }

.purchase-card { position: relative; margin-top: 24px; padding: 26px; border-radius: 28px; overflow: hidden; background: linear-gradient(160deg, rgba(26,29,54,.96), rgba(12,15,29,.97)); border: 1px solid rgba(139,115,255,.32); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06); }
.purchase-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(480px 180px at 100% 0%, rgba(85,231,242,.10), transparent 65%), radial-gradient(430px 200px at 0% 100%, rgba(139,115,255,.10), transparent 65%); }
.card-accent { position: absolute; top: 0; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent); box-shadow: 0 0 20px rgba(85,231,242,.5); }
.card-head { position: relative; display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 22px; }
.card-kicker { color: var(--cyan); font: 800 9px var(--latin); letter-spacing: .16em; }
.card-head h2 { margin: 5px 0 2px; font-size: 25px; }
.card-head p { margin: 0; color: var(--muted); font-size: 11px; }
.shop-state { flex: none; display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.shop-state::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.shop-state.active { color: var(--green); background: rgba(126,245,186,.09); border: 1px solid rgba(126,245,186,.25); }
.shop-state.active::before { background: var(--green); box-shadow: 0 0 8px var(--green); }
.shop-state.paused { color: #ffb3c1; background: rgba(255,125,152,.09); border: 1px solid rgba(255,125,152,.24); }
.shop-state.paused::before { background: var(--red); }

form { position: relative; display: grid; gap: 16px; }
.field-group { display: grid; gap: 8px; color: #d8dced; font-size: 11px; font-weight: 700; }
.control-wrap { position: relative; display: flex; align-items: center; min-width: 0; }
.control-icon { position: absolute; inset-inline-start: 14px; z-index: 2; min-width: 26px; height: 26px; padding: 0 6px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(85,231,242,.08); border: 1px solid rgba(85,231,242,.16); font: 800 9px var(--latin); pointer-events: none; }
select, input { width: 100%; height: 56px; color: var(--text); outline: 0; border-radius: 15px; border: 1px solid rgba(255,255,255,.11); background: rgba(5,8,18,.58); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); transition: border-color .2s, box-shadow .2s, background .2s; }
select { appearance: none; padding: 0 54px 0 42px; font-weight: 800; font-size: 15px; cursor: pointer; }
input { padding: 0 54px 0 16px; font-weight: 700; }
select:focus, input:focus { border-color: rgba(85,231,242,.55); box-shadow: 0 0 0 4px rgba(85,231,242,.09); background: rgba(5,8,18,.78); }
.chevron { position: absolute; inset-inline-end: 18px; color: var(--muted); pointer-events: none; }
.id-row { display: grid; grid-template-columns: 1fr 142px; gap: 10px; }
.verify-button { border: 1px solid rgba(85,231,242,.30); border-radius: 15px; background: linear-gradient(135deg, rgba(85,231,242,.16), rgba(89,189,248,.09)); color: #eaffff; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: transform .2s, border-color .2s, background .2s; }
.verify-button b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 8px; color: #08131a; background: var(--cyan); }
.verify-button:hover { transform: translateY(-1px); border-color: rgba(85,231,242,.55); background: linear-gradient(135deg, rgba(85,231,242,.23), rgba(89,189,248,.13)); }
.verify-button:disabled { opacity: .65; cursor: wait; transform: none; }

.profile-box { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 12px; padding: 13px; border-radius: 17px; background: rgba(126,245,186,.06); border: 1px solid rgba(126,245,186,.20); }
.profile-box img { width: 50px; height: 50px; object-fit: cover; border-radius: 15px; border: 1px solid rgba(126,245,186,.28); }
.profile-copy { min-width: 0; display: grid; gap: 1px; }
.profile-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.profile-copy small { color: var(--muted); font-size: 10px; }
.verified { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font: 800 8px var(--latin); letter-spacing: .10em; }
.verified i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.country-badge { padding: 5px 8px; border-radius: 8px; background: rgba(126,245,186,.10); color: var(--green); font-size: 9px; }

.price-box { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 92px; padding: 18px; border-radius: 18px; background: linear-gradient(135deg, rgba(139,115,255,.19), rgba(85,231,242,.08)); border: 1px solid rgba(139,115,255,.24); }
.price-box > div:first-child { display: grid; gap: 3px; }
.price-box span { font-size: 12px; font-weight: 800; }
.price-box small { color: var(--muted); font-size: 9px; }
.price-value { display: flex; align-items: baseline; gap: 7px; direction: ltr; }
.price-value strong { font-size: clamp(30px, 8vw, 42px); line-height: 1; letter-spacing: -.04em; background: linear-gradient(135deg, #fff, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-value small { color: #d7dbee; font-weight: 700; }

.pay-button { position: relative; overflow: hidden; height: 64px; padding: 0 18px; border: 0; border-radius: 17px; color: #051013; background: linear-gradient(110deg, #7a6cff, #59bdf8 48%, #55e7f2); box-shadow: 0 14px 35px rgba(85,231,242,.18); display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; cursor: pointer; transition: transform .2s, filter .2s, opacity .2s; }
.pay-button:not(:disabled):hover { transform: translateY(-2px); filter: saturate(1.15) brightness(1.05); }
.pay-button:disabled { cursor: not-allowed; opacity: .38; box-shadow: none; }
.pay-shine { position: absolute; inset: 0; transform: translateX(-110%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent); }
.pay-button:not(:disabled):hover .pay-shine { animation: shine .9s ease; }
@keyframes shine { to { transform: translateX(110%); } }
.pay-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(0,0,0,.10); font-size: 18px; }
.pay-copy { display: grid; text-align: right; line-height: 1.25; }
.pay-copy b { font-size: 13px; }
.pay-copy small { font-size: 9px; opacity: .62; }
.arrow { font-size: 22px; }
.secure-note { text-align: center; color: var(--muted); font-size: 9px; }
.secure-note span { color: var(--green); }

.form-message { margin-top: 14px; padding: 11px 13px; border-radius: 12px; font-size: 11px; }
.form-message.error { color: #ffc2ce; background: rgba(255,125,152,.08); border: 1px solid rgba(255,125,152,.22); }
.form-message.success { color: #a9ffd4; background: rgba(126,245,186,.08); border: 1px solid rgba(126,245,186,.22); }
.link-section { position: relative; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.section-caption { display: block; margin-bottom: 10px; color: var(--muted); font-size: 10px; font-weight: 700; }
.action-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.store-link, .contact-link { min-height: 57px; padding: 10px 14px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--text); text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .2s, border-color .2s, background .2s; }
.store-link:hover, .contact-link:hover { transform: translateY(-2px); border-color: rgba(85,231,242,.34); background: rgba(85,231,242,.06); }
.store-link svg { width: 24px; fill: #fff; }
.store-link span { display: grid; line-height: 1.15; direction: ltr; text-align: left; }
.store-link small { color: var(--muted); font: 600 7px var(--latin); }
.store-link strong { font-size: 13px; }
.contact-link i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.trust-strip { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.trust-strip article { padding: 13px; border-radius: 16px; border: 1px solid var(--line); background: rgba(14,17,31,.64); display: flex; gap: 10px; align-items: center; }
.trust-strip article > span { flex: none; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--cyan); background: rgba(85,231,242,.08); border: 1px solid rgba(85,231,242,.15); font: 800 9px var(--latin); }
.trust-strip div { display: grid; }
.trust-strip strong { font-size: 10px; }
.trust-strip small { color: var(--muted); font-size: 8px; }
.site-footer { padding: 24px 10px 28px; text-align: center; color: #666e86; font: 600 9px var(--latin); }

.modal-backdrop { position: fixed; inset: 0; z-index: 500; padding: 20px; display: grid; place-items: center; background: rgba(2,3,9,.76); backdrop-filter: blur(16px); }
.confirm-modal { position: relative; width: min(430px, 100%); padding: 30px; border-radius: 28px; background: linear-gradient(155deg, rgba(31,31,61,.98), rgba(12,15,27,.99)); border: 1px solid rgba(139,115,255,.35); box-shadow: 0 40px 120px rgba(0,0,0,.68), inset 0 1px 0 rgba(255,255,255,.06); text-align: center; animation: modal-in .3s cubic-bezier(.2,.9,.3,1) both; }
.confirm-modal::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(350px 180px at 100% 0%, rgba(85,231,242,.10), transparent 65%); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.97); } }
.modal-close { position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 11px; color: #e5e7f4; background: rgba(255,255,255,.05); cursor: pointer; font-size: 20px; }
.modal-kicker { color: var(--cyan); font: 800 8px var(--latin); letter-spacing: .15em; }
.confirm-modal h3 { margin: 8px 0 4px; font-size: 24px; }
.confirm-sub { margin: 0; color: var(--muted); font-size: 11px; }
.confirm-avatar { position: relative; width: 88px; height: 88px; margin: 22px auto 10px; }
.confirm-avatar span { position: absolute; inset: -10px; border-radius: 50%; background: radial-gradient(circle, rgba(85,231,242,.25), transparent 70%); }
.confirm-avatar img { position: relative; width: 88px; height: 88px; object-fit: cover; border-radius: 27px; border: 1px solid rgba(85,231,242,.30); background: #0e1323; }
.confirm-name { display: block; font-size: 17px; }
.confirm-id { display: block; margin: 2px 0 20px; color: var(--muted); font-size: 11px; }
.check-row { position: relative; min-height: 52px; padding: 0 14px; margin-top: 8px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.025); display: flex; align-items: center; gap: 10px; text-align: right; cursor: pointer; font-size: 11px; }
.check-row input { position: absolute; opacity: 0; pointer-events: none; }
.check-box { width: 24px; height: 24px; flex: none; border-radius: 8px; border: 1px solid rgba(139,115,255,.6); background: rgba(139,115,255,.06); }
.check-row input:checked + .check-box { background: linear-gradient(135deg, var(--violet), var(--cyan)); border-color: transparent; box-shadow: 0 0 0 4px rgba(85,231,242,.08); }
.check-row input:checked + .check-box::after { content: "✓"; display: grid; place-items: center; height: 100%; color: #061014; font-weight: 900; }
.rules-link { margin-right: 4px; color: #c9bfff; }
.confirm-actions { margin-top: 15px; display: grid; grid-template-columns: 1.7fr 1fr; gap: 9px; }
.confirm-yes, .confirm-no { min-height: 52px; border-radius: 14px; font-weight: 800; cursor: pointer; }
.confirm-yes { border: 0; color: #061014; background: linear-gradient(110deg, var(--violet), var(--cyan)); }
.confirm-yes:disabled { opacity: .35; cursor: not-allowed; }
.confirm-no { color: #e7e8f3; border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.confirm-yes.wide { width: 100%; margin-top: 18px; }
.rules-list { margin: 20px 0 0; padding: 0 20px 0 0; text-align: right; color: #cbd0df; font-size: 11px; }
.rules-list li { margin-bottom: 8px; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 800; transform: translate(-50%, 16px); min-width: 220px; max-width: calc(100% - 32px); padding: 12px 16px; border-radius: 14px; color: #071115; background: linear-gradient(110deg, #8b73ff, #55e7f2); text-align: center; font-weight: 800; font-size: 11px; opacity: 0; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.toast.show { animation: toast-in .3s ease forwards; }
@keyframes toast-in { to { opacity: 1; transform: translate(-50%, 0); } }

@media (max-width: 650px) {
  .mini-top { top: 10px; inset-inline: 10px; }
  .online-chip span { display: none; }
  .clock-chip { min-width: 94px; padding: 7px 10px; }
  .page-shell { width: min(100% - 18px, 620px); padding-top: 76px; }
  .brand-mark { width: 104px; height: 104px; }
  .brand-mark img { width: 92px; }
  .brand-block h1 { font-size: 28px; }
  .purchase-card { padding: 20px 15px; border-radius: 23px; }
  .card-head { display: grid; }
  .shop-state { width: max-content; }
  .id-row { grid-template-columns: 1fr; }
  .verify-button { height: 52px; }
  .price-box { align-items: flex-start; }
  .price-value strong { font-size: 30px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { min-height: 58px; }
  .action-grid { grid-template-columns: 1fr; }
  .confirm-modal { padding: 26px 18px 20px; border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}


/* ==================================================================
   V4 — NEON PORTAL / PREMIUM CHECKOUT
   ================================================================== */

:root {
  --v4-cyan: #4af2ff;
  --v4-blue: #3ba8ff;
  --v4-violet: #8b66ff;
  --v4-pink: #e36cff;
  --v4-panel: rgba(12, 18, 35, .94);
  --v4-panel-soft: rgba(21, 29, 52, .82);
}

body {
  background:
    radial-gradient(900px 620px at 50% -120px, rgba(67, 117, 255, .18), transparent 68%),
    radial-gradient(680px 560px at -120px 65%, rgba(0, 226, 233, .13), transparent 72%),
    radial-gradient(720px 620px at 110% 92%, rgba(127, 79, 255, .13), transparent 72%),
    #040711;
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 35%, rgba(74, 242, 255, .025) 48%, transparent 60%),
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.035), transparent 26%);
  animation: scene-sweep 12s ease-in-out infinite alternate;
}

@keyframes scene-sweep {
  to { transform: translate3d(0, 26px, 0); opacity: .72; }
}

/* ---------- Cinematic intro ---------- */
.intro-overlay {
  overflow: hidden;
  gap: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(35, 63, 116, .56), transparent 24%),
    radial-gradient(circle at 50% 50%, #0a1021 0%, #03050c 58%, #020308 100%);
  transition:
    opacity .75s cubic-bezier(.22,.75,.2,1),
    visibility .75s ease,
    transform .75s cubic-bezier(.22,.75,.2,1);
}

.intro-overlay.done {
  opacity: 0;
  transform: scale(1.06);
}

.intro-grid {
  position: absolute;
  inset: -20%;
  opacity: .30;
  background:
    linear-gradient(rgba(88, 202, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 202, 255, .08) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(760px) rotateX(67deg) translateY(36%);
  mask-image: radial-gradient(circle at center, #000 8%, transparent 66%);
  animation: intro-grid-move 3.2s linear both;
}

@keyframes intro-grid-move {
  from { background-position: 0 0; opacity: 0; }
  28% { opacity: .34; }
  to { background-position: 0 124px; opacity: .18; }
}

.intro-streak {
  position: absolute;
  width: 52vw;
  height: 2px;
  top: 50%;
  filter: blur(.2px);
  background: linear-gradient(90deg, transparent, rgba(74,242,255,.80), transparent);
  opacity: 0;
}

.intro-streak-a {
  right: -52vw;
  transform: rotate(-8deg);
  animation: intro-streak-a 1.5s .16s cubic-bezier(.16,.8,.2,1) both;
}

.intro-streak-b {
  left: -52vw;
  transform: rotate(8deg);
  background: linear-gradient(90deg, transparent, rgba(139,102,255,.82), transparent);
  animation: intro-streak-b 1.5s .30s cubic-bezier(.16,.8,.2,1) both;
}

@keyframes intro-streak-a {
  0% { right: -52vw; opacity: 0; }
  18% { opacity: 1; }
  70% { opacity: .65; }
  100% { right: 100vw; opacity: 0; }
}
@keyframes intro-streak-b {
  0% { left: -52vw; opacity: 0; }
  18% { opacity: 1; }
  70% { opacity: .65; }
  100% { left: 100vw; opacity: 0; }
}

.intro-portal {
  position: relative;
  width: min(390px, 76vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: scale(.72);
  opacity: 0;
  animation: portal-enter .72s .08s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes portal-enter {
  to { transform: scale(1); opacity: 1; }
}

.portal-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid transparent;
}

.portal-ring-1 {
  width: 100%;
  height: 100%;
  border-top-color: rgba(74,242,255,.80);
  border-right-color: rgba(59,168,255,.22);
  border-bottom-color: rgba(139,102,255,.78);
  box-shadow:
    0 0 34px rgba(74,242,255,.12),
    inset 0 0 34px rgba(139,102,255,.08);
  animation: portal-spin 5.8s linear infinite;
}

.portal-ring-2 {
  width: 78%;
  height: 78%;
  border-left-color: rgba(255,255,255,.45);
  border-bottom-color: rgba(74,242,255,.72);
  border-style: dashed;
  animation: portal-spin-reverse 3.8s linear infinite;
}

.portal-ring-3 {
  width: 58%;
  height: 58%;
  border: 1px solid rgba(139,102,255,.40);
  box-shadow:
    0 0 46px rgba(74,242,255,.15),
    inset 0 0 42px rgba(59,168,255,.15);
  animation: portal-pulse 1.35s ease-in-out infinite alternate;
}

@keyframes portal-spin { to { transform: rotate(360deg); } }
@keyframes portal-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes portal-pulse {
  to { transform: scale(1.07); opacity: .60; }
}

.intro-core {
  position: relative;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(42, 61, 101, .82), rgba(10, 15, 31, .96));
  border: 1px solid rgba(116, 226, 255, .38);
  box-shadow:
    0 32px 90px rgba(0,0,0,.62),
    0 0 72px rgba(74,242,255,.22),
    inset 0 1px 0 rgba(255,255,255,.15);
  overflow: hidden;
  transform: rotate(-5deg) scale(.80);
  animation: intro-core-enter .74s .28s cubic-bezier(.16,1.15,.3,1) forwards;
}

.intro-core::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    transparent 0 35%,
    rgba(74,242,255,.42) 42%,
    transparent 48% 72%,
    rgba(139,102,255,.38) 78%,
    transparent 84%
  );
  animation: intro-core-scan 2.2s linear infinite;
}

.intro-core::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 51px;
  background: linear-gradient(145deg, rgba(25, 39, 69, .91), rgba(7, 10, 22, .96));
}

.intro-core-glow {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border-radius: 38px;
  background: radial-gradient(circle, rgba(74,242,255,.20), transparent 67%);
  animation: intro-core-glow 1s ease-in-out infinite alternate;
}

.intro-core img {
  position: relative;
  z-index: 3;
  width: 144px;
  filter:
    drop-shadow(0 18px 24px rgba(0,0,0,.40))
    drop-shadow(0 0 20px rgba(74,242,255,.24));
}

@keyframes intro-core-enter {
  to { transform: rotate(0) scale(1); }
}
@keyframes intro-core-scan { to { transform: rotate(360deg); } }
@keyframes intro-core-glow { to { opacity: .55; transform: scale(1.08); } }

.portal-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 24px var(--v4-cyan);
  opacity: 0;
  animation: spark-pop 1.3s ease-in-out infinite;
}
.spark-1 { top: 10%; left: 28%; animation-delay: .14s; }
.spark-2 { top: 34%; right: 5%; animation-delay: .48s; }
.spark-3 { bottom: 9%; right: 30%; animation-delay: .82s; }
.spark-4 { bottom: 30%; left: 7%; animation-delay: 1.08s; }
@keyframes spark-pop {
  0%, 100% { opacity: 0; transform: scale(.2); }
  42% { opacity: 1; transform: scale(1); }
}

.intro-copy {
  margin-top: -32px;
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: intro-copy-in .62s .62s cubic-bezier(.16,1,.3,1) forwards;
}

.intro-eyebrow {
  margin-bottom: 9px;
  color: #8a9cba !important;
  font: 800 8px var(--latin) !important;
  letter-spacing: .28em !important;
}

.intro-copy strong {
  margin: 0 !important;
  font: 900 clamp(29px, 7vw, 48px) var(--latin) !important;
  letter-spacing: .12em !important;
  text-indent: .12em;
  background: linear-gradient(100deg, #fff, #bcefff 46%, #b7aaff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(74,242,255,.18));
}

.intro-copy b {
  color: var(--v4-cyan);
  font: 800 10px var(--latin);
  letter-spacing: .48em;
  text-indent: .48em;
}

@keyframes intro-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.intro-system {
  margin-top: 18px;
  height: 31px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #acb7cd;
  border: 1px solid rgba(116, 226, 255, .20);
  background: rgba(9, 14, 28, .72);
  font: 700 8px var(--latin);
  letter-spacing: .12em;
  opacity: 0;
  animation: intro-system-in .45s 1s ease forwards;
}

.intro-system-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62ffc1;
  box-shadow: 0 0 12px #62ffc1;
  animation: system-dot 1s ease-in-out infinite alternate;
}

@keyframes intro-system-in { to { opacity: 1; } }
@keyframes system-dot { to { opacity: .42; } }

.intro-progress {
  position: relative;
  width: min(280px, 62vw);
  height: 4px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.06);
}

.intro-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background:
    linear-gradient(90deg, var(--v4-violet), var(--v4-blue), var(--v4-cyan));
  box-shadow: 0 0 22px rgba(74,242,255,.60);
  animation: intro-progress 1.65s .18s cubic-bezier(.2,.75,.2,1) both;
}

@keyframes intro-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- Brand ---------- */
.page-shell {
  width: min(700px, calc(100% - 30px));
  padding-top: 92px;
}

.brand-mark {
  width: 148px;
  height: 148px;
  margin-bottom: 17px;
}

.brand-mark .mark-frame {
  inset: 5px;
  border-radius: 42px;
  border-color: rgba(92, 212, 255, .32);
  background:
    linear-gradient(145deg, rgba(76, 121, 196, .14), rgba(123, 83, 255, .12));
  box-shadow:
    0 22px 70px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.brand-mark .mark-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50px;
  border: 1px solid rgba(74,242,255,.10);
}

.brand-mark img {
  width: 132px;
  filter:
    drop-shadow(0 18px 22px rgba(0,0,0,.38))
    drop-shadow(0 0 24px rgba(74,242,255,.18));
}

.official-pill {
  min-height: 29px;
  padding: 0 14px;
  color: #d8efff;
  background:
    linear-gradient(90deg, rgba(74,242,255,.08), rgba(139,102,255,.09));
  border-color: rgba(74,242,255,.24);
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}

.brand-block h1 {
  max-width: 660px;
  margin-top: 21px;
  font-size: clamp(31px, 6vw, 46px);
  background: linear-gradient(105deg, #fff 15%, #d6f7ff 54%, #c2b6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 55px rgba(78, 190, 255, .09);
}

.brand-block > p {
  font-size: 15px;
  color: #bbc6da;
}

.notice-pill {
  min-height: 36px;
  margin-top: 18px;
  padding-inline: 15px;
  background: linear-gradient(90deg, rgba(255,209,102,.08), rgba(255,125,152,.06));
  box-shadow: 0 9px 30px rgba(0,0,0,.20);
}

/* ---------- Purchase card ---------- */
.purchase-card {
  isolation: isolate;
  margin-top: 29px;
  padding: 0;
  border: 0;
  border-radius: 34px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.purchase-card::before {
  z-index: -3;
  inset: -1px;
  border-radius: 35px;
  background:
    linear-gradient(140deg, rgba(79, 231, 255, .85), rgba(74,112,255,.32) 32%, rgba(139,102,255,.74) 68%, rgba(227,108,255,.46));
  opacity: .58;
  filter: blur(.2px);
}

.purchase-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 1px;
  border-radius: 33px;
  background:
    radial-gradient(560px 260px at 100% 0%, rgba(49, 183, 255, .18), transparent 68%),
    radial-gradient(480px 280px at 0% 100%, rgba(139, 102, 255, .15), transparent 68%),
    linear-gradient(155deg, rgba(17, 26, 49, .98), rgba(7, 11, 24, .99));
  box-shadow:
    0 42px 120px rgba(0,0,0,.58),
    0 0 70px rgba(59,168,255,.09),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.card-accent {
  top: 0;
  right: 46px;
  left: 46px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, var(--v4-violet), var(--v4-cyan), transparent);
  box-shadow: 0 0 18px rgba(74,242,255,.54);
}

.card-corner-glow {
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  top: -64px;
  right: -56px;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(74,242,255,.12);
  pointer-events: none;
}

.card-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.card-orbit-a {
  width: 170px;
  height: 170px;
  top: -72px;
  left: -72px;
}
.card-orbit-b {
  width: 110px;
  height: 110px;
  top: -42px;
  left: -42px;
  border-color: rgba(74,242,255,.08);
}

.purchase-hero {
  position: relative;
  z-index: 2;
  padding: 30px 30px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.purchase-title-wrap {
  min-width: 0;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--v4-cyan);
  font-size: 8px;
  letter-spacing: .15em;
}

.card-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v4-cyan);
  box-shadow: 0 0 12px var(--v4-cyan);
}

.purchase-title-wrap h2 {
  margin: 7px 0 3px;
  font-size: 27px;
  letter-spacing: -.03em;
}

.purchase-title-wrap p {
  margin: 0;
  max-width: 430px;
  color: #9daac1;
  font-size: 11px;
}

.diamond-ready {
  flex: none;
  min-width: 142px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  background:
    linear-gradient(145deg, rgba(75, 202, 255, .11), rgba(135, 101, 255, .10));
  border: 1px solid rgba(85, 211, 255, .20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 12px 36px rgba(0,0,0,.18);
}

.diamond-gem {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #06111b;
  background:
    linear-gradient(135deg, #d8ffff, var(--v4-cyan) 45%, #7e9cff);
  box-shadow:
    0 0 0 5px rgba(74,242,255,.06),
    0 9px 24px rgba(74,242,255,.18);
  font-size: 20px;
  animation: gem-float 2.6s ease-in-out infinite;
}

@keyframes gem-float {
  50% { transform: translateY(-3px) rotate(4deg); }
}

.diamond-ready div {
  display: grid;
  text-align: left;
  line-height: 1.1;
}

.diamond-ready strong {
  color: #fff;
  font-size: 22px;
}

.diamond-ready small {
  margin-top: 5px;
  color: #7e8ca8;
  font: 800 7px var(--latin);
  letter-spacing: .12em;
}

.purchase-status-row {
  position: relative;
  z-index: 2;
  padding: 0 30px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.shop-state {
  position: static;
}

.encrypted-chip {
  min-height: 29px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aab7cd;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  font-size: 9px;
}

.encrypted-chip i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #052016;
  background: #6ff5bd;
  font-style: normal;
  font-size: 10px;
}

.step-rail {
  position: relative;
  z-index: 2;
  margin: 0 30px 22px;
  padding: 11px;
  border-radius: 19px;
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.step-rail article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-rail article > span {
  flex: none;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #8390a8;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  font: 800 8px var(--latin);
}

.step-rail article.active > span {
  color: #05131d;
  background: linear-gradient(135deg, var(--v4-cyan), #87a6ff);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(74,242,255,.20);
}

.step-rail article div {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.step-rail article strong {
  color: #d8deeb;
  font-size: 9px;
  white-space: nowrap;
}

.step-rail article small {
  color: #6f7d98;
  font-size: 7px;
  white-space: nowrap;
}

.step-rail > i {
  height: 1px;
  background:
    linear-gradient(90deg, rgba(74,242,255,.38), rgba(139,102,255,.24));
}

.purchase-card form,
.purchase-card > .form-message,
.purchase-card > .link-section {
  position: relative;
  z-index: 2;
  margin-inline: 30px;
}

.purchase-card form {
  padding: 24px;
  border-radius: 25px;
  background:
    radial-gradient(460px 160px at 100% 0%, rgba(74,242,255,.06), transparent 72%),
    linear-gradient(150deg, rgba(8, 13, 28, .76), rgba(9, 14, 29, .90));
  border: 1px solid rgba(255,255,255,.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 18px 50px rgba(0,0,0,.18);
}

.field-group {
  gap: 8px;
  margin-bottom: 16px;
}

.field-group > span {
  color: #c7cfdd;
  font-size: 10px;
}

.control-wrap {
  height: 59px;
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(17, 25, 46, .95), rgba(8, 12, 25, .98));
  border: 1px solid rgba(113, 183, 255, .20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 8px 26px rgba(0,0,0,.16);
}

.control-wrap:focus-within {
  border-color: rgba(74,242,255,.72);
  box-shadow:
    0 0 0 4px rgba(74,242,255,.08),
    0 12px 32px rgba(0,0,0,.20);
}

.package-field .control-wrap {
  border-color: rgba(74,242,255,.42);
  background:
    linear-gradient(145deg, rgba(20, 37, 61, .96), rgba(8, 13, 28, .99));
}

.control-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--v4-cyan);
  background: rgba(74,242,255,.075);
  border: 1px solid rgba(74,242,255,.16);
}

.verify-button {
  height: 59px;
  min-width: 143px;
  border-radius: 17px;
  border: 1px solid rgba(74,242,255,.30);
  background:
    linear-gradient(135deg, rgba(44, 134, 189, .32), rgba(46, 68, 121, .46));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 11px 26px rgba(0,0,0,.18);
}

.verify-button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(74,242,255,.65);
  background:
    linear-gradient(135deg, rgba(44, 160, 207, .44), rgba(75, 77, 163, .48));
}

.profile-box {
  min-height: 78px;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(62, 135, 186, .12), rgba(74, 94, 151, .15));
  border: 1px solid rgba(107, 218, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.profile-box::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 52%;
  right: -1px;
  top: 24%;
  border-radius: 99px;
  background: linear-gradient(var(--v4-cyan), var(--v4-violet));
  box-shadow: 0 0 12px rgba(74,242,255,.50);
}

.price-box {
  min-height: 112px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(230px 100px at 12% 100%, rgba(139,102,255,.22), transparent 70%),
    linear-gradient(135deg, rgba(70, 71, 153, .31), rgba(23, 65, 95, .34));
  border: 1px solid rgba(139,102,255,.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.075),
    0 17px 44px rgba(0,0,0,.18);
}

.price-box span {
  color: #f1f3fa;
  font-size: 13px;
}

.price-box small {
  color: #8e9ab2;
}

.price-value strong {
  font-size: clamp(38px, 8vw, 50px);
  background:
    linear-gradient(105deg, #fff 8%, #aeefff 45%, #83e9ff 68%, #c0afff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 17px rgba(74,242,255,.14));
}

.pay-button {
  height: 72px;
  margin-top: 2px;
  border-radius: 20px;
  color: #041319;
  background:
    linear-gradient(105deg, #7b68ff, #5d8dfd 35%, #3fbce8 68%, #52f0e4);
  box-shadow:
    0 17px 42px rgba(57, 176, 234, .18),
    inset 0 1px 0 rgba(255,255,255,.34);
}

.pay-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.18);
}

.pay-button:not(:disabled) {
  animation: pay-breathe 2.2s ease-in-out infinite alternate;
}

@keyframes pay-breathe {
  to {
    box-shadow:
      0 20px 54px rgba(65, 212, 239, .28),
      0 0 0 5px rgba(74,242,255,.035),
      inset 0 1px 0 rgba(255,255,255,.40);
  }
}

.pay-icon {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: rgba(2, 23, 31, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.pay-copy b { font-size: 14px; }
.pay-copy small { opacity: .70; }

.purchase-card > .link-section:last-of-type {
  margin-bottom: 30px;
}

.link-section {
  margin-top: 20px;
  padding: 18px 0 0;
}

.store-link,
.contact-link {
  min-height: 61px;
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border-color: rgba(255,255,255,.09);
}

.store-link:hover,
.contact-link:hover {
  background:
    linear-gradient(145deg, rgba(74,242,255,.08), rgba(139,102,255,.07));
}

/* ---------- Trust strip ---------- */
.trust-strip {
  gap: 10px;
  margin-top: 17px;
}

.trust-strip article {
  position: relative;
  min-height: 70px;
  padding: 15px;
  overflow: hidden;
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(20, 29, 50, .86), rgba(7, 11, 23, .88));
  border-color: rgba(122, 177, 242, .13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 15px 36px rgba(0,0,0,.18);
}

.trust-strip article::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: -36px;
  bottom: -44px;
  border-radius: 50%;
  background: rgba(74,242,255,.08);
  filter: blur(18px);
}

.trust-strip article > span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(74,242,255,.11), rgba(139,102,255,.09));
}

.trust-strip strong { font-size: 11px; }
.trust-strip small { font-size: 8px; }

/* ---------- Confirmation modal ---------- */
.confirm-modal {
  width: min(460px, 100%);
  padding: 34px;
  border-radius: 32px;
  border-color: rgba(95, 203, 255, .25);
  background:
    radial-gradient(390px 210px at 100% 0%, rgba(74,242,255,.12), transparent 68%),
    radial-gradient(330px 200px at 0% 100%, rgba(139,102,255,.13), transparent 68%),
    linear-gradient(155deg, rgba(24, 32, 58, .99), rgba(7, 10, 22, .995));
}

.confirm-avatar {
  width: 104px;
  height: 104px;
}

.confirm-avatar img {
  width: 104px;
  height: 104px;
  border-radius: 31px;
}

.confirm-yes {
  background:
    linear-gradient(105deg, #7b68ff, #55bdf5 58%, #52eee1);
}

/* ---------- Responsive ---------- */
@media (max-width: 650px) {
  .intro-portal {
    width: min(330px, 84vw);
  }

  .intro-core {
    width: 142px;
    height: 142px;
    border-radius: 42px;
  }

  .intro-core::after {
    border-radius: 41px;
  }

  .intro-core img {
    width: 120px;
  }

  .intro-copy {
    margin-top: -20px;
  }

  .page-shell {
    width: min(100% - 16px, 700px);
    padding-top: 78px;
  }

  .brand-mark {
    width: 126px;
    height: 126px;
  }

  .brand-mark img {
    width: 112px;
  }

  .purchase-card {
    border-radius: 27px;
  }

  .purchase-card::after {
    border-radius: 26px;
  }

  .purchase-hero {
    padding: 24px 18px 15px;
    align-items: flex-start;
  }

  .diamond-ready {
    min-width: 105px;
    min-height: 61px;
    padding: 8px;
  }

  .diamond-gem {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .diamond-ready strong {
    font-size: 17px;
  }

  .diamond-ready small {
    font-size: 5.5px;
  }

  .purchase-status-row {
    padding-inline: 18px;
  }

  .step-rail {
    margin-inline: 18px;
    grid-template-columns: 1fr 15px 1fr 15px 1fr;
  }

  .step-rail article {
    justify-content: center;
  }

  .step-rail article div {
    display: none;
  }

  .purchase-card form,
  .purchase-card > .form-message,
  .purchase-card > .link-section {
    margin-inline: 18px;
  }

  .purchase-card form {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .price-box {
    min-height: 98px;
    padding: 17px;
  }

  .pay-button {
    height: 66px;
  }

  .purchase-card > .link-section:last-of-type {
    margin-bottom: 22px;
  }
}

@media (max-width: 430px) {
  .purchase-hero {
    display: grid;
  }

  .diamond-ready {
    width: 100%;
    justify-content: flex-start;
  }

  .purchase-status-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-ring,
  .intro-core::before,
  .portal-spark,
  .diamond-gem,
  .pay-button:not(:disabled) {
    animation: none !important;
  }
}


/* ==================================================================
   V4.1 — MOBILE / SAFARI / DIAMOND FIX
   ================================================================== */

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: #040711;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

*, *::before, *::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

/* iOS Safari */
.online-chip,
.clock-chip,
.modal-backdrop {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.intro-grid {
  -webkit-mask-image: radial-gradient(circle at center, #000 8%, transparent 66%);
  mask-image: radial-gradient(circle at center, #000 8%, transparent 66%);
}

/* The intro also has a CSS-only exit path if Safari delays JS. */
.intro-overlay {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@supports (-webkit-touch-callout: none) {
  .intro-overlay {
    min-height: -webkit-fill-available;
  }
}

.diamond-ready {
  overflow: visible;
}

.diamond-gem {
  width: 52px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  animation: diamond-float 2.7s ease-in-out infinite;
}

.diamond-gem img {
  display: block;
  width: 50px;
  height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 5px 9px rgba(0,0,0,.38))
    drop-shadow(0 0 9px rgba(74,242,255,.78))
    drop-shadow(0 0 18px rgba(78,132,255,.35));
}

@keyframes diamond-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}

.page-shell,
.purchase-card,
.purchase-card form,
.purchase-hero,
.purchase-status-row,
.step-rail,
.id-row,
.price-box,
.action-grid,
.trust-strip,
.site-footer {
  min-width: 0;
  max-width: 100%;
}

.page-shell {
  width: min(700px, calc(100vw - 24px));
}

.purchase-card {
  width: 100%;
}

@media (max-width: 650px) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .mini-top {
    top: max(8px, env(safe-area-inset-top));
    left: 8px;
    right: 8px;
    inset-inline: 8px;
    gap: 8px;
  }

  .online-chip,
  .clock-chip {
    min-height: 34px;
    padding: 6px 9px;
  }

  .clock-chip {
    min-width: 82px;
  }

  .clock-chip small {
    display: none;
  }

  .page-shell {
    width: 100%;
    max-width: 100%;
    padding:
      calc(68px + env(safe-area-inset-top))
      10px
      calc(24px + env(safe-area-inset-bottom));
  }

  .brand-block {
    width: 100%;
  }

  .brand-mark {
    width: 112px;
    height: 112px;
  }

  .brand-mark img {
    width: 100px;
  }

  .official-pill {
    max-width: calc(100vw - 28px);
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.45;
  }

  .brand-block h1 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.35;
    text-wrap: balance;
  }

  .brand-block > p {
    font-size: 13px;
  }

  .notice-pill {
    max-width: 100%;
    border-radius: 14px;
    line-height: 1.6;
    justify-content: center;
  }

  .purchase-card {
    margin-top: 22px;
    border-radius: 26px;
    overflow: hidden;
  }

  .purchase-card::before {
    border-radius: 27px;
  }

  .purchase-card::after {
    border-radius: 25px;
  }

  .card-orbit,
  .card-corner-glow {
    display: none;
  }

  .purchase-hero {
    padding: 20px 16px 13px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .purchase-title-wrap h2 {
    font-size: 23px;
  }

  .purchase-title-wrap p {
    font-size: 10px;
    line-height: 1.7;
  }

  .diamond-ready {
    min-width: 102px;
    min-height: 58px;
    padding: 8px 9px;
    border-radius: 16px;
    gap: 6px;
  }

  .diamond-gem {
    width: 42px;
    height: 36px;
  }

  .diamond-gem img {
    width: 41px;
    height: 35px;
  }

  .diamond-ready strong {
    font-size: 16px;
  }

  .diamond-ready small {
    font-size: 5.5px;
    letter-spacing: .08em;
  }

  .purchase-status-row {
    padding: 0 16px 13px;
    flex-wrap: wrap;
  }

  .encrypted-chip,
  .shop-state {
    min-height: 28px;
    max-width: 100%;
  }

  .step-rail {
    margin: 0 16px 16px;
    padding: 9px;
    grid-template-columns: 1fr 10px 1fr 10px 1fr;
    border-radius: 15px;
  }

  .step-rail article {
    justify-content: center;
  }

  .step-rail article div {
    display: none;
  }

  .step-rail article > span {
    width: 29px;
    height: 29px;
    border-radius: 9px;
  }

  .purchase-card form,
  .purchase-card > .form-message,
  .purchase-card > .link-section {
    margin-inline: 10px;
  }

  .purchase-card form {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .field-group {
    margin-bottom: 12px;
  }

  .control-wrap,
  select,
  input {
    min-width: 0;
    width: 100%;
  }

  select,
  input {
    height: 54px;
    font-size: 16px; /* prevents iOS Safari focus zoom */
  }

  .id-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .verify-button {
    width: 100%;
    min-width: 0;
    height: 52px;
  }

  .profile-box {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 10px;
  }

  .profile-box img {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .profile-copy strong,
  .profile-copy small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-box {
    width: 100%;
    min-height: 98px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-value {
    width: 100%;
    justify-content: flex-start;
  }

  .price-value strong {
    font-size: clamp(34px, 11vw, 45px);
  }

  .pay-button {
    width: 100%;
    min-width: 0;
    height: 64px;
    padding-inline: 12px;
  }

  .pay-copy {
    min-width: 0;
  }

  .pay-copy b,
  .pay-copy small {
    white-space: normal;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .store-link,
  .contact-link {
    width: 100%;
  }

  .trust-strip {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-strip article {
    min-height: 58px;
  }

  .site-footer {
    width: 100%;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .modal-backdrop {
    padding:
      max(12px, env(safe-area-inset-top))
      12px
      max(12px, env(safe-area-inset-bottom));
    align-items: center;
    overflow-y: auto;
  }

  .confirm-modal {
    width: 100%;
    max-width: 430px;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 430px) {
  .purchase-hero {
    grid-template-columns: 1fr;
  }

  .diamond-ready {
    width: fit-content;
    max-width: 100%;
  }

  .purchase-status-row {
    align-items: stretch;
    flex-direction: column;
  }

  .encrypted-chip,
  .shop-state {
    width: fit-content;
    max-width: 100%;
  }
}

/* Reduced Motion on iPhone: keep a visible fade rather than skipping the intro. */
@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    animation: mobile-reduced-intro 1.25s ease both !important;
  }

  .intro-grid,
  .intro-streak,
  .portal-ring,
  .portal-spark,
  .intro-core::before,
  .diamond-gem,
  .pay-button:not(:disabled) {
    animation: none !important;
  }

  @keyframes mobile-reduced-intro {
    0%, 64% {
      opacity: 1;
      visibility: visible;
    }
    100% {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
  }
}


/* ==================================================================
   V4.2 — FINAL POLISH
   ================================================================== */

:root {
  --final-cyan: #5beaff;
  --final-blue: #5d8dff;
  --final-violet: #9b74ff;
  --final-green: #69f5c3;
}

/* Browser / app icon is supplied in <head>. */

.purchase-card {
  box-shadow:
    0 48px 140px rgba(0,0,0,.62),
    0 0 80px rgba(69,161,255,.10);
}

.purchase-card::after {
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(64, 199, 255, .16), transparent 68%),
    radial-gradient(440px 260px at 0% 100%, rgba(137, 94, 255, .14), transparent 68%),
    linear-gradient(155deg, rgba(16, 25, 47, .985), rgba(7, 11, 24, .995));
}

.purchase-title-wrap h2 {
  text-shadow: 0 8px 28px rgba(0,0,0,.26);
}

.diamond-ready {
  border-color: rgba(91,234,255,.25);
  background:
    radial-gradient(110px 70px at 18% 50%, rgba(91,234,255,.11), transparent 66%),
    linear-gradient(145deg, rgba(37, 70, 111, .26), rgba(68, 50, 119, .17));
}

.diamond-ready.diamond-tick {
  animation: diamond-ready-pop .6s cubic-bezier(.2,.8,.2,1);
}

@keyframes diamond-ready-pop {
  0% { transform: scale(.97); }
  42% {
    transform: scale(1.028);
    border-color: rgba(91,234,255,.58);
    box-shadow: 0 0 0 5px rgba(91,234,255,.055), 0 15px 42px rgba(0,0,0,.22);
  }
  100% { transform: scale(1); }
}

/* New checkout journey: no boring 01/02/03 row */
.checkout-journey {
  position: relative;
  z-index: 2;
  margin: 0 30px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: center;
  direction: rtl;
}

.checkout-journey article {
  position: relative;
  min-width: 0;
  min-height: 64px;
  padding: 10px 10px;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.065);
  background:
    linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.014));
  overflow: hidden;
  transition:
    border-color .25s ease,
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.checkout-journey article::after {
  content: "";
  position: absolute;
  inset: auto -35px -48px auto;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(91,234,255,.07);
  filter: blur(22px);
  opacity: 0;
  transition: opacity .25s ease;
}

.checkout-journey article.active {
  border-color: rgba(91,234,255,.37);
  background:
    radial-gradient(130px 70px at 92% 50%, rgba(91,234,255,.10), transparent 72%),
    linear-gradient(145deg, rgba(48,82,125,.25), rgba(46,47,95,.19));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 12px 30px rgba(0,0,0,.18);
  transform: translateY(-1px);
}

.checkout-journey article.active::after,
.checkout-journey article.done::after {
  opacity: 1;
}

.checkout-journey article.done {
  border-color: rgba(105,245,195,.20);
}

.journey-icon {
  position: relative;
  z-index: 1;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #8592aa;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  transition: all .25s ease;
}

.journey-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-diamond img {
  width: 29px;
  height: 24px;
  filter: saturate(.7) brightness(.78);
  transition: filter .25s ease;
}

.checkout-journey article.active .journey-icon {
  color: #06141d;
  border-color: transparent;
  background:
    linear-gradient(135deg, #d8ffff, var(--final-cyan) 47%, #879fff);
  box-shadow:
    0 0 0 5px rgba(91,234,255,.05),
    0 0 24px rgba(91,234,255,.20);
}

.checkout-journey article.active .journey-diamond img,
.checkout-journey article.done .journey-diamond img {
  filter:
    drop-shadow(0 0 8px rgba(91,234,255,.58))
    saturate(1.12)
    brightness(1.08);
}

.checkout-journey article.done .journey-icon {
  color: #062219;
  border-color: transparent;
  background: linear-gradient(135deg, #bfffe8, #69f5c3);
}

.checkout-journey article div {
  min-width: 0;
  display: grid;
  text-align: right;
  line-height: 1.35;
}

.checkout-journey article strong {
  color: #d9e1ef;
  font-size: 9px;
  white-space: nowrap;
}

.checkout-journey article small {
  color: #73829b;
  font-size: 7px;
  white-space: nowrap;
}

.checkout-journey article.active strong {
  color: #fff;
}

.journey-state {
  position: absolute;
  inset-inline-end: 8px;
  bottom: 7px;
  color: #63718b;
  font: 700 5.5px var(--latin);
  letter-spacing: .06em;
  opacity: .68;
}

.checkout-journey article.active .journey-state {
  color: #7eefff;
}

.checkout-journey article.done .journey-state {
  color: #69f5c3;
}

.journey-link {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}

.journey-link i {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(91,234,255,.72), rgba(155,116,255,.62), transparent);
  transform: translateX(-100%);
  animation: journey-flow 2.8s ease-in-out infinite;
}

@keyframes journey-flow {
  0%, 18% { transform: translateX(-100%); opacity: 0; }
  42% { opacity: 1; }
  82%, 100% { transform: translateX(100%); opacity: 0; }
}

/* Price chronometer */
.price-box {
  overflow: hidden;
}

.price-scan {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 28%;
  pointer-events: none;
  transform: skewX(-16deg);
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.price-box.price-tick .price-scan {
  animation: price-scan .72s cubic-bezier(.2,.75,.2,1);
}

.price-box.price-tick .price-value strong {
  animation: price-focus .72s cubic-bezier(.2,.75,.2,1);
}

@keyframes price-scan {
  0% { left: -35%; opacity: 0; }
  22% { opacity: .8; }
  100% { left: 118%; opacity: 0; }
}

@keyframes price-focus {
  0% { transform: translateY(4px) scale(.97); filter: blur(.25px); }
  45% { transform: translateY(-1px) scale(1.035); filter: none; }
  100% { transform: translateY(0) scale(1); }
}

.price-value strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.035em;
}

/* Slightly richer field styling */
.purchase-card form {
  background:
    radial-gradient(460px 170px at 100% 0%, rgba(91,234,255,.052), transparent 72%),
    radial-gradient(420px 160px at 0% 100%, rgba(155,116,255,.045), transparent 72%),
    linear-gradient(150deg, rgba(8, 13, 28, .78), rgba(9, 14, 29, .91));
}

.control-wrap {
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.control-wrap:hover {
  border-color: rgba(113, 205, 255, .34);
}

.pay-button:not(:disabled):hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
}

/* ---------- Better mobile composition ---------- */
@media (max-width: 650px) {
  /* Native phone clock already exists; don't show another large clock. */
  .clock-chip {
    display: none;
  }

  .mini-top {
    top: max(10px, env(safe-area-inset-top));
    justify-content: flex-end;
  }

  .online-chip {
    min-height: 31px;
    padding: 6px 10px;
    background: rgba(7,13,26,.72);
  }

  .page-shell {
    padding-top: calc(58px + env(safe-area-inset-top));
  }

  .brand-mark {
    width: 104px;
    height: 104px;
    margin-bottom: 12px;
  }

  .brand-mark img {
    width: 94px;
  }

  .official-pill {
    min-height: 27px;
    font-size: 6.6px;
    letter-spacing: .10em;
  }

  .brand-block h1 {
    margin-top: 17px;
    font-size: clamp(27px, 8.5vw, 34px);
  }

  .notice-pill {
    margin-top: 13px;
  }

  .purchase-card {
    margin-top: 18px;
  }

  .purchase-hero {
    padding: 19px 15px 12px;
  }

  .purchase-title-wrap h2 {
    font-size: 22px;
  }

  .purchase-title-wrap p {
    font-size: 9.5px;
  }

  .diamond-ready {
    min-width: 97px;
    min-height: 55px;
  }

  .diamond-ready strong {
    font-size: 15px;
  }

  .diamond-ready small {
    font-size: 5.2px;
  }

  .purchase-status-row {
    padding: 0 15px 12px;
    gap: 7px;
  }

  .shop-state,
  .encrypted-chip {
    font-size: 8px;
  }

  .checkout-journey {
    margin: 0 12px 14px;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
  }

  .checkout-journey article {
    min-height: 52px;
    padding: 7px 5px;
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 5px;
    border-radius: 14px;
  }

  .journey-icon {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .journey-icon svg {
    width: 16px;
    height: 16px;
  }

  .journey-diamond img {
    width: 24px;
    height: 20px;
  }

  .checkout-journey article strong {
    font-size: 7.6px;
  }

  .checkout-journey article small {
    display: none;
  }

  .journey-state {
    display: none;
  }

  .purchase-card form {
    margin-inline: 8px;
    padding: 15px 11px;
  }

  .field-group > span {
    font-size: 9px;
  }

  .control-wrap {
    height: 53px;
    border-radius: 15px;
  }

  .price-box {
    min-height: 94px;
    padding: 15px;
  }

  .price-box > div:first-of-type span {
    font-size: 11px;
  }

  .price-value strong {
    font-size: clamp(34px, 12vw, 44px);
  }

  .pay-button {
    height: 62px;
    border-radius: 18px;
  }

  .secure-note {
    font-size: 7.5px;
  }

  .link-section {
    margin-top: 16px;
  }

  .store-link {
    min-height: 56px;
  }

  .trust-strip {
    margin-top: 12px;
  }

  .trust-strip article {
    min-height: 54px;
    padding: 11px;
  }

  .site-footer {
    margin-top: 28px;
  }
}

@media (max-width: 390px) {
  .checkout-journey {
    gap: 0;
  }

  .checkout-journey article {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 47px;
  }

  .checkout-journey article div {
    display: none;
  }

  .journey-link {
    width: 8px;
  }

  .purchase-title-wrap p {
    display: none;
  }

  .diamond-ready {
    width: 100%;
  }
}


/* ==================================================================
   V4.3 — CUSTOM PACKAGE LIST + MOBILE BALANCE
   ================================================================== */

.package-field {
  position: relative;
}

.package-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.package-picker {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.package-picker-button {
  position: relative;
  width: 100%;
  min-height: 62px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 11px;
  color: #f7fbff;
  text-align: left;
  direction: ltr;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(91,234,255,.42);
  background:
    radial-gradient(180px 70px at 4% 50%, rgba(91,234,255,.11), transparent 72%),
    linear-gradient(145deg, rgba(18,37,62,.97), rgba(7,12,27,.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 10px 28px rgba(0,0,0,.18);
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.package-picker-button:hover:not(:disabled),
.package-picker.open .package-picker-button {
  border-color: rgba(91,234,255,.78);
  box-shadow:
    0 0 0 4px rgba(91,234,255,.065),
    0 14px 34px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.package-picker-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.package-picker-gem {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(91,234,255,.10), rgba(139,102,255,.10));
  border: 1px solid rgba(91,234,255,.16);
}

.package-picker-gem img {
  width: 33px;
  height: 28px;
  filter:
    drop-shadow(0 0 7px rgba(91,234,255,.68))
    drop-shadow(0 0 13px rgba(91,234,255,.25));
}

.package-picker-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.package-picker-copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-picker-copy small {
  overflow: hidden;
  color: #7e8ca7;
  font-size: 8px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: rtl;
  text-align: left;
}

.package-picker-chevron {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 12px;
  color: #70efff;
  background: rgba(91,234,255,.07);
  border: 1px solid rgba(91,234,255,.18);
}

.package-picker-chevron i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .24s ease;
}

.package-picker.open .package-picker-chevron i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.package-picker-menu {
  position: relative;
  max-height: 318px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px;
  display: grid;
  gap: 5px;
  border-radius: 18px;
  border: 1px solid rgba(91,234,255,.18);
  background:
    radial-gradient(260px 130px at 0 0, rgba(91,234,255,.055), transparent 70%),
    linear-gradient(160deg, rgba(10,17,33,.985), rgba(6,10,23,.995));
  box-shadow:
    0 18px 48px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.035);
  scrollbar-width: thin;
  scrollbar-color: rgba(91,234,255,.34) transparent;
  transform-origin: top;
  animation: package-menu-open .24s cubic-bezier(.2,.8,.2,1);
}

.package-picker-menu[hidden] {
  display: none !important;
}

@keyframes package-menu-open {
  from {
    opacity: 0;
    transform: translateY(-7px) scaleY(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.package-picker-menu::-webkit-scrollbar {
  width: 5px;
}

.package-picker-menu::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(91,234,255,.32);
}

.package-picker-option {
  width: 100%;
  min-height: 56px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 10px;
  color: #eef4ff;
  text-align: left;
  direction: ltr;
  cursor: pointer;
  border-radius: 13px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.package-picker-option:hover {
  transform: translateX(2px);
  border-color: rgba(91,234,255,.14);
  background: rgba(91,234,255,.045);
}

.package-picker-option.selected {
  border-color: rgba(91,234,255,.28);
  background:
    linear-gradient(90deg, rgba(91,234,255,.10), rgba(139,102,255,.065));
  box-shadow: inset 3px 0 0 rgba(91,234,255,.74);
}

.package-option-gem {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.055);
}

.package-option-gem img {
  width: 29px;
  height: 24px;
  filter: drop-shadow(0 0 6px rgba(91,234,255,.32));
}

.package-option-main {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.package-option-main strong {
  color: #f8fbff;
  font-size: 13px;
  white-space: nowrap;
}

.package-option-main small {
  color: #71809a;
  font-size: 8px;
  direction: rtl;
  text-align: left;
  white-space: nowrap;
}

.package-picker-option.selected .package-option-main strong {
  color: #bff9ff;
}

.package-option-check {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 8px;
  color: transparent;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.055);
  font-size: 11px;
  transition: all .18s ease;
}

.package-picker-option.selected .package-option-check {
  color: #061b20;
  background: linear-gradient(135deg, #c9ffff, #5beaff);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(91,234,255,.20);
}

.package-picker-empty {
  padding: 18px;
  text-align: center;
  color: #7d899f;
  font-size: 10px;
}

#purchaseForm.package-changed {
  animation: package-form-pulse .58s ease;
}

@keyframes package-form-pulse {
  35% {
    filter: brightness(1.045);
  }
}

/* ---------------- Mobile composition ---------------- */
@media (max-width: 650px) {
  .page-shell {
    padding-left: 9px;
    padding-right: 9px;
  }

  .brand-block,
  .purchase-title-wrap {
    text-align: center;
  }

  .brand-block h1,
  .brand-block > p,
  .purchase-title-wrap h2,
  .purchase-title-wrap p {
    margin-inline: auto;
  }

  .card-kicker {
    justify-content: center;
  }

  .purchase-hero {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    padding-inline: 14px;
  }

  .diamond-ready {
    width: auto !important;
    min-width: 142px;
    margin-inline: auto;
    justify-content: center;
  }

  .purchase-status-row {
    justify-content: center;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    text-align: center;
  }

  .shop-state,
  .encrypted-chip {
    width: auto !important;
    margin-inline: 0;
  }

  .checkout-journey {
    direction: rtl;
  }

  .checkout-journey article {
    justify-items: center;
    text-align: center;
  }

  .checkout-journey article div {
    text-align: center;
  }

  .field-group > span,
  .section-caption {
    width: 100%;
    text-align: center;
  }

  .package-picker {
    width: 100%;
  }

  .package-picker-button {
    min-height: 60px;
    grid-template-columns: 40px minmax(0, 1fr) 36px;
    padding: 8px;
  }

  .package-picker-copy {
    text-align: center;
  }

  .package-picker-copy small {
    text-align: center;
  }

  .package-picker-menu {
    max-height: min(296px, 45svh);
    padding: 5px;
  }

  .package-picker-option {
    min-height: 54px;
    padding: 7px 9px;
  }

  .package-option-main {
    text-align: center;
  }

  .package-option-main small {
    text-align: center;
  }

  .profile-box {
    text-align: center;
  }

  .profile-copy {
    text-align: center;
  }

  .price-box {
    text-align: center;
    justify-items: center;
  }

  .price-box > div:first-of-type {
    justify-items: center;
  }

  .price-value {
    width: 100%;
    justify-content: center;
  }

  .pay-button {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .pay-copy {
    text-align: center;
  }

  .secure-note {
    padding-inline: 8px;
  }

  .action-grid {
    gap: 8px;
  }

  .store-link {
    justify-content: center;
  }

  .trust-strip article {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    text-align: center;
  }

  .trust-strip article > div {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .purchase-card {
    border-radius: 24px;
  }

  .purchase-title-wrap h2 {
    font-size: 24px;
  }

  .purchase-title-wrap p {
    display: block !important;
    max-width: 330px;
  }

  .diamond-ready {
    min-width: 134px;
  }

  .checkout-journey {
    grid-template-columns: 1fr 8px 1fr 8px 1fr;
  }

  .checkout-journey article {
    min-height: 50px;
    padding: 7px 4px;
  }

  .checkout-journey article div {
    display: none;
  }

  .package-picker-menu {
    max-height: min(270px, 42svh);
  }

  .price-value strong {
    font-size: clamp(32px, 11.5vw, 43px);
  }
}
