:root {
  --bg: #030712;
  --bg-2: #071027;
  --panel: #091638;
  --panel-2: #0b1b42;
  --line: rgba(137, 170, 219, 0.2);
  --text: #f7fbff;
  --muted: #9baac7;
  --cyan: #28d6ff;
  --blue: #2a76ff;
  --green: #35ff4d;
  --green-2: #0dca34;
  --purple: #8d4bff;
  --danger: #ff6685;
  --radius: 18px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 5%, rgba(38, 91, 173, .24), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(39, 216, 255, .1), transparent 23%),
    linear-gradient(180deg, #050b19 0%, #030611 58%, #071126 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body.modal-open { overflow: hidden; }
.page-noise {
  position: fixed;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  z-index: 100;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.aurora {
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .13;
  z-index: -2;
}
.aurora-one { background: var(--blue); top: 10vh; left: -25vw; }
.aurora-two { background: var(--purple); right: -28vw; bottom: 5vh; }

.particle-field { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.particle-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(106, 228, 255, .65);
  box-shadow: 0 0 12px rgba(40, 214, 255, .8);
  animation: particleFloat var(--d) ease-in-out var(--delay) infinite alternate;
}
@keyframes particleFloat {
  to { transform: translate3d(30px, -55px, 0); opacity: .18; }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 950; font-style: italic; letter-spacing: -1px; font-size: 24px; }
.brand img { width: 34px; height: 34px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { color: #b6c2da; transition: color .2s; }
.site-nav a:hover { color: white; }
.nav-order {
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .2s ease;
}
.nav-order:hover { background: white; color: #051021; transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 850px;
  height: 100vh;
  max-height: 1020px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 60px;
  padding: 120px max(24px, calc((100vw - 1240px) / 2)) 70px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(transparent, #030611);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(84, 144, 211, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 144, 211, .12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  transform: perspective(800px) rotateX(62deg) scale(1.3) translateY(24%);
  transform-origin: bottom;
}
.hero-copy { position: relative; z-index: 2; padding-top: 40px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--cyan); font-weight: 900; font-size: 12px; letter-spacing: .28em; margin: 0 0 20px; }
.eyebrow span { width: 35px; height: 2px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.hero h1 { margin: 0; font-size: clamp(120px, 15vw, 224px); line-height: .72; letter-spacing: -.1em; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-style: italic; text-transform: uppercase; white-space: nowrap; }
.hero-fc { color: #f4f8ff; text-shadow: 0 10px 45px rgba(97,159,255,.28); }
.hero-27 {
  color: transparent;
  -webkit-text-stroke: 2px rgba(191, 219, 255, .68);
  text-shadow: 0 0 35px rgba(42,118,255,.3);
}
.hero h2 { margin: 26px 0 0; font-family: Impact, "Arial Black", sans-serif; font-style: italic; letter-spacing: .04em; font-size: clamp(35px, 4vw, 58px); }
.hero-description { max-width: 650px; margin: 18px 0 0; color: #aebad1; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.primary-cta {
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: linear-gradient(100deg, var(--cyan), #5ce1ff);
  color: #04101d;
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 17px 20px;
  clip-path: polygon(0 0, 94% 0, 100% 26%, 100% 100%, 6% 100%, 0 74%);
  box-shadow: 0 0 35px rgba(40,214,255,.25);
  transition: .25s ease;
}
.primary-cta:hover { transform: translateY(-3px); filter: brightness(1.1); }
.platform-chip { display: flex; align-items: center; gap: 10px; color: #c4d0e6; font-size: 13px; font-weight: 750; }
.ps-symbol { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: white; }

.hero-visual { position: relative; z-index: 2; min-height: 590px; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,214,255,.16), rgba(42,118,255,.04) 50%, transparent 68%);
  filter: blur(5px);
}
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(91, 191, 255, .18); }
.orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 17px var(--cyan); top: 11%; left: 18%; }
.orbit-one { width: 510px; height: 510px; animation: orbitSpin 18s linear infinite; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: orbitSpin 13s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-card-stack { position: relative; width: 360px; height: 470px; transform: rotate(6deg); }
.floating-card { position: absolute; inset: 0; border-radius: 26px; clip-path: polygon(0 0, 89% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%); }
.floating-card-back { background: linear-gradient(145deg, rgba(142,75,255,.7), rgba(19,39,88,.35)); transform: translate(35px, 22px) rotate(6deg); filter: blur(.2px); opacity: .62; }
.floating-card-front {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), transparent 28%),
    radial-gradient(circle at 25% 15%, rgba(40,214,255,.55), transparent 28%),
    linear-gradient(155deg, #173d73, #07162f 60%, #0d072a);
  border: 1px solid rgba(164,221,255,.35);
  box-shadow: 0 40px 70px rgba(0,0,0,.52), inset 0 0 45px rgba(74,184,255,.08);
  animation: cardFloat 5s ease-in-out infinite;
}
.floating-card-front::before { content: "FC"; position: absolute; top: 38px; left: 35px; font-weight: 950; font-style: italic; font-size: 44px; color: rgba(255,255,255,.88); }
.floating-card-front::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(120deg, transparent 0 18px, rgba(255,255,255,.03) 19px 20px); }
.floating-card-front > span { position: relative; z-index: 2; font-family: Impact, "Arial Black", sans-serif; font-style: italic; font-size: 180px; letter-spacing: -.08em; color: #eff8ff; text-shadow: 0 0 35px rgba(40,214,255,.45); }
.ball-mark { position: absolute; z-index: 2; bottom: 42px; right: 44px; width: 82px; height: 82px; border-radius: 50%; border: 8px solid rgba(255,255,255,.8); box-shadow: 0 0 28px rgba(40,214,255,.45); }
.ball-mark::before, .ball-mark::after { content: ""; position: absolute; inset: 16px; border: 4px solid rgba(255,255,255,.7); transform: rotate(45deg); }
.ball-mark::after { inset: 27px; background: rgba(255,255,255,.68); border: 0; border-radius: 50%; }
@keyframes cardFloat { 50% { transform: translateY(-14px) rotate(-1deg); } }
.visual-stat { position: absolute; padding: 12px 16px; min-width: 85px; background: rgba(6,16,38,.82); border: 1px solid rgba(117,184,255,.24); backdrop-filter: blur(12px); box-shadow: 0 18px 45px rgba(0,0,0,.35); transform: skewX(-8deg); }
.visual-stat b, .visual-stat span { display: block; transform: skewX(8deg); }
.visual-stat b { font-size: 28px; line-height: 1; }
.visual-stat span { font-size: 10px; letter-spacing: .2em; color: var(--cyan); margin-top: 5px; }
.stat-one { top: 16%; left: 3%; }
.stat-two { right: 0; top: 32%; }
.stat-three { left: 7%; bottom: 16%; }
.hero-scroll { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.45); letter-spacing: .3em; font-size: 9px; writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px; }
.hero-scroll span { width: 1px; height: 42px; background: linear-gradient(var(--cyan), transparent); }

.editions-section { position: relative; z-index: 2; padding: 110px max(24px, calc((100vw - 1240px) / 2)) 130px; background: linear-gradient(180deg, #030611, #071127); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 55px; }
.section-heading > p { color: var(--cyan); font-weight: 950; letter-spacing: .4em; font-size: 12px; margin: 0 0 12px; }
.section-heading h2 { margin: 0; font-family: Impact, "Arial Black", sans-serif; font-style: italic; letter-spacing: .045em; font-size: clamp(44px, 7vw, 82px); }
.section-heading span { display: block; color: var(--muted); margin-top: 15px; font-size: 16px; }
.edition-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; align-items: stretch; }
.edition-card { position: relative; min-width: 0; background: linear-gradient(180deg, rgba(11,28,67,.92), rgba(5,14,34,.98)); border: 1px solid rgba(113,154,211,.18); box-shadow: 0 30px 60px rgba(0,0,0,.26); overflow: hidden; clip-path: polygon(0 0, 93% 0, 100% 6%, 100% 100%, 7% 100%, 0 94%); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.edition-card:hover { transform: translateY(-10px); border-color: rgba(40,214,255,.55); box-shadow: 0 35px 70px rgba(0,0,0,.42), 0 0 40px rgba(40,214,255,.08); }
.edition-card.is-featured { border-color: rgba(53,255,77,.45); transform: translateY(-12px); }
.edition-card.is-featured:hover { transform: translateY(-18px); }
.featured-ribbon { position: absolute; z-index: 3; right: 14px; top: 14px; background: var(--green); color: #04110b; padding: 7px 12px; font-weight: 950; font-size: 10px; letter-spacing: .13em; clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%); }
.edition-image-wrap { position: relative; aspect-ratio: .94; background: #0b1836; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); }
.edition-image-wrap::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(5,14,34,.95)); }
.edition-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.edition-card:hover .edition-image-wrap img { transform: scale(1.045); }
.edition-index { position: absolute; z-index: 2; bottom: 7px; right: 17px; font-family: Impact, "Arial Black", sans-serif; font-size: 76px; font-style: italic; color: white; line-height: 1; text-shadow: 0 10px 25px rgba(0,0,0,.5); }
.edition-content { padding: 24px 24px 28px; }
.edition-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; }
.edition-title-row p { margin: 0 0 6px; color: var(--cyan); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.edition-title-row h3 { margin: 0; font-size: 22px; }
.edition-title-row strong { font-size: 21px; white-space: nowrap; }
.edition-content ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 11px; color: #b7c3da; font-size: 13px; }
.edition-content li { display: flex; gap: 10px; align-items: flex-start; }
.edition-content li span { color: var(--green); font-weight: 950; }
.order-button { width: 100%; border: 1px solid rgba(69,184,255,.32); background: rgba(22,105,174,.13); color: white; padding: 15px 16px; display: flex; justify-content: space-between; font-weight: 950; font-size: 12px; letter-spacing: .12em; clip-path: polygon(0 0, 94% 0, 100% 28%, 100% 100%, 6% 100%, 0 72%); transition: .2s ease; }
.order-button:hover { background: var(--cyan); color: #04101d; box-shadow: 0 0 25px rgba(40,214,255,.28); }
.is-featured .order-button { background: var(--green); color: #04110b; border-color: var(--green); }

.site-footer { padding: 28px max(24px, calc((100vw - 1240px) / 2)); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 30px; align-items: center; background: #030711; }
.footer-brand { font-size: 18px; }
.footer-brand img { width: 27px; height: 27px; }
.site-footer p { margin: 0; color: #6f7e9b; font-size: 12px; text-align: right; }

.order-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; }
.order-overlay.is-open { opacity: 1; visibility: visible; }
.overlay-backdrop { position: absolute; inset: 0; background: rgba(0,2,10,.82); backdrop-filter: blur(12px); }
.order-shell {
  position: relative;
  width: min(680px, 100%);
  max-height: min(880px, calc(100vh - 40px));
  overflow: auto;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 35%),
    linear-gradient(180deg, #0a1538 0%, #07112d 100%);
  border: 1px solid rgba(106,163,232,.25);
  box-shadow: var(--shadow), 0 0 70px rgba(24,101,255,.12);
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
  transform: translateY(24px) scale(.97);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(40,214,255,.4) transparent;
}
.order-overlay.is-open .order-shell { transform: translateY(0) scale(1); }
.modal-header { height: 66px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
.modal-brand { display: flex; align-items: center; gap: 9px; }
.modal-brand img { width: 27px; height: 27px; }
.modal-brand b { font-style: italic; font-size: 17px; }
.modal-brand span { margin-left: 8px; color: #7788a8; font-size: 11px; letter-spacing: .12em; font-weight: 800; }
.close-modal { width: 38px; height: 38px; border: 0; background: transparent; color: #c9d5e9; font-size: 28px; line-height: 1; border-radius: 50%; }
.close-modal:hover { background: rgba(255,255,255,.08); }
.modal-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 0 24px; margin-top: -2px; }
.modal-progress span { height: 2px; background: rgba(255,255,255,.08); transition: background .3s, box-shadow .3s; }
.modal-progress span.active { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.modal-stage { display: none; padding: 24px 28px 30px; min-height: 450px; }
.modal-stage.is-active { display: block; animation: stageIn .35s cubic-bezier(.2,.8,.2,1); }
@keyframes stageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.back-button { border: 0; background: transparent; color: #cdd8eb; font-size: 12px; font-weight: 900; letter-spacing: .08em; padding: 0; margin-bottom: 26px; }
.back-button:hover { color: var(--cyan); }
.stage-heading h2 { margin: 0; font-family: Impact, "Arial Black", sans-serif; font-style: italic; letter-spacing: .045em; font-size: clamp(38px, 8vw, 60px); }
.stage-heading p { margin: 9px 0 0; color: #93a4c4; line-height: 1.55; }
.stage-heading.compact h2 { font-size: clamp(36px, 7vw, 50px); }

.psn-search-form { margin-top: 34px; }
.psn-search-form label, .demo-card-form label { display: block; margin-bottom: 9px; color: #6f84aa; font-size: 10px; font-weight: 950; letter-spacing: .18em; }
.search-control { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; min-height: 58px; border: 1px solid rgba(80,134,204,.35); background: rgba(3,10,29,.48); box-shadow: inset 0 0 20px rgba(0,0,0,.2); transition: border .2s, box-shadow .2s; }
.search-control:focus-within { border-color: var(--green); box-shadow: 0 0 0 2px rgba(53,255,77,.12), 0 0 25px rgba(53,255,77,.08); }
.search-icon { width: 18px; height: 18px; margin-left: 17px; border: 3px solid #6681ac; border-radius: 50%; position: relative; }
.search-icon::after { content: ""; position: absolute; width: 8px; height: 3px; background: #6681ac; transform: rotate(45deg); right: -6px; bottom: -3px; border-radius: 2px; }
.search-control input { min-width: 0; border: 0; outline: 0; background: transparent; color: white; font-weight: 750; padding: 0 14px 0 2px; }
.search-control input::placeholder { color: #5d6f90; }
.search-control button { height: 42px; margin-right: 7px; min-width: 112px; border: 0; background: white; color: #071127; font-size: 11px; font-weight: 950; letter-spacing: .08em; clip-path: polygon(0 0, 92% 0, 100% 24%, 100% 100%, 8% 100%, 0 76%); transition: .2s; }
.search-control button:hover { background: var(--green); box-shadow: 0 0 20px rgba(53,255,77,.25); }
.search-control button:disabled { opacity: .65; cursor: wait; }
.search-control button.is-loading::after { content: ""; display: inline-block; width: 10px; height: 10px; margin-left: 7px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -1px; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-message { min-height: 20px; margin: 9px 0 0; font-size: 12px; color: #7f92b3; }
.form-message.is-error { color: var(--danger); }
.form-message.is-info { color: var(--cyan); }
.profile-result { margin-top: 20px; display: flex; align-items: center; gap: 14px; padding: 14px; background: rgba(9,25,61,.86); border: 1px solid rgba(69,132,204,.25); }
.profile-result[hidden] { display: none; }
.profile-result img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #13234c; border: 2px solid rgba(255,255,255,.12); }
.profile-main { display: grid; flex: 1; min-width: 0; }
.profile-main span { color: var(--green); font-size: 9px; font-weight: 950; letter-spacing: .16em; }
.profile-main strong { margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-main small { color: #7385a7; margin-top: 3px; }
.online-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); margin-right: 7px; }
.wide-action { width: 100%; border: 0; margin-top: 22px; min-height: 54px; background: var(--green); color: #04110b; font-weight: 950; font-size: 12px; letter-spacing: .1em; display: flex; align-items: center; justify-content: center; gap: 13px; clip-path: polygon(0 0, 96% 0, 100% 28%, 100% 100%, 4% 100%, 0 72%); transition: .2s ease; }
.wide-action:hover:not(:disabled) { filter: brightness(1.08); box-shadow: 0 0 28px rgba(53,255,77,.2); transform: translateY(-1px); }
.wide-action:disabled { opacity: .28; cursor: not-allowed; }
.wide-action.cyan { background: var(--cyan); color: #04101d; }
.wide-action.cyan:hover { box-shadow: 0 0 28px rgba(40,214,255,.22); }

.order-summary-bar { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 13px; margin-top: 24px; padding: 13px; background: rgba(4,13,34,.55); border: 1px solid rgba(111,156,218,.2); }
.order-summary-bar > img { width: 54px; height: 54px; object-fit: cover; background: #101e43; }
.order-summary-bar > div { min-width: 0; display: grid; gap: 4px; }
.order-summary-bar > div > span { font-weight: 850; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-summary-bar small { color: #7f91b1; }
.order-summary-bar small b { color: white; }
.order-summary-bar > strong { white-space: nowrap; }
.method-label { margin: 28px 0 10px; color: #6f84aa; font-size: 10px; font-weight: 950; letter-spacing: .18em; }
.payment-methods { display: grid; gap: 10px; }
.payment-method { width: 100%; display: grid; grid-template-columns: 57px 1fr 22px; gap: 13px; align-items: center; min-height: 66px; padding: 10px 13px; text-align: left; color: white; background: rgba(7,19,48,.72); border: 1px solid rgba(91,134,193,.22); }
.payment-method.is-selected { border-color: rgba(40,214,255,.55); background: rgba(15,56,100,.45); }
.payment-method.is-disabled { opacity: .42; cursor: not-allowed; }
.payment-method > span:nth-child(2) { display: grid; gap: 3px; }
.payment-method small { color: #7184a7; }
.payment-method i { width: 15px; height: 15px; border-radius: 50%; border: 2px solid #6f86aa; }
.payment-method.is-selected i { border: 4px solid var(--cyan); box-shadow: 0 0 10px rgba(40,214,255,.5); }
.visa-badge, .apple-badge { display: grid; place-items: center; width: 50px; height: 28px; background: white; color: #1839a5; font-weight: 1000; font-style: italic; font-size: 12px; border-radius: 3px; }
.apple-badge { background: #080a0f; color: white; font-style: normal; }
.payment-total { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); }
.payment-total span { color: #8d9dba; }
.payment-total strong { font-size: 23px; }

.demo-alert { margin-top: 22px; padding: 14px 16px; border-left: 3px solid var(--cyan); background: rgba(40,214,255,.08); }
.demo-alert b { color: var(--cyan); font-size: 11px; letter-spacing: .13em; }
.demo-alert p { margin: 5px 0 0; color: #9eb0cc; font-size: 12px; line-height: 1.5; }
.demo-card-visual { position: relative; overflow: hidden; width: min(390px, 100%); aspect-ratio: 1.62; margin: 24px auto; padding: 24px; border-radius: 20px; background: linear-gradient(135deg, #1f70c7, #0b1b4d 58%, #56189c); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 28px 55px rgba(0,0,0,.4), inset 0 0 45px rgba(255,255,255,.07); display: flex; flex-direction: column; justify-content: space-between; }
.demo-card-visual::before { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; border: 38px solid rgba(255,255,255,.06); right: -80px; top: -85px; }
.card-shine { position: absolute; inset: -120% 40% -120% -50%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent); transform: rotate(20deg); animation: cardShine 4s ease-in-out infinite; }
@keyframes cardShine { 0%,40% { transform: translateX(-80%) rotate(20deg); } 75%,100% { transform: translateX(240%) rotate(20deg); } }
.card-top, .card-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .12em; }
.card-top b { font-size: 23px; font-style: italic; }
.card-chip { position: relative; z-index: 2; width: 48px; height: 36px; border-radius: 7px; background: linear-gradient(135deg, #fae08a, #aa7821); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.card-chip::before, .card-chip::after { content: ""; position: absolute; background: rgba(66,42,8,.22); }
.card-chip::before { left: 50%; top: 0; width: 1px; height: 100%; }
.card-chip::after { left: 0; top: 50%; width: 100%; height: 1px; }
.card-digits { position: relative; z-index: 2; font-size: clamp(19px, 5vw, 27px); letter-spacing: .12em; font-weight: 750; text-shadow: 0 2px 5px rgba(0,0,0,.3); }
.demo-card-form input { width: 100%; height: 58px; padding: 0 17px; border: 1px solid rgba(84,139,211,.35); background: rgba(3,10,29,.55); color: white; outline: 0; font-size: 18px; letter-spacing: .08em; }
.demo-card-form input:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(40,214,255,.1); }

.stage-processing { text-align: center; padding-top: 80px; }
.processing-visual { position: relative; width: 116px; height: 116px; margin: 0 auto 22px; display: grid; place-items: center; }
.processing-ring { width: 100px; height: 100px; border-radius: 50%; border: 3px solid rgba(40,214,255,.13); border-top-color: var(--cyan); animation: spin 1s linear infinite; box-shadow: 0 0 35px rgba(40,214,255,.12); }
.processing-ring span { position: absolute; inset: 17px; border-radius: 50%; border: 2px solid rgba(141,75,255,.2); border-bottom-color: var(--purple); animation: spin .75s linear infinite reverse; }
.processing-pulse { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 28px var(--cyan); animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.65); opacity: .6; } }
.stage-processing h2, .stage-success h2 { margin: 0; color: var(--cyan); font-family: Impact, "Arial Black", sans-serif; font-style: italic; letter-spacing: .06em; font-size: 40px; }
.stage-processing p, .stage-success > p { color: #8799b9; margin: 9px 0 0; }
.processing-track { width: min(380px, 100%); height: 4px; background: rgba(255,255,255,.08); margin: 38px auto 13px; overflow: hidden; }
.processing-track span { display: block; width: 5%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--green)); box-shadow: 0 0 12px var(--cyan); transition: width .75s ease; }
.stage-processing small { color: #7590b5; }

.stage-success { text-align: center; padding-top: 50px; }
.success-check { width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--green); box-shadow: 0 0 35px rgba(53,255,77,.45); animation: successPop .45s cubic-bezier(.2,1.5,.4,1); }
.success-check span { color: #04110b; font-size: 48px; font-weight: 1000; line-height: 1; }
@keyframes successPop { from { transform: scale(.2) rotate(-20deg); opacity: 0; } }
.stage-success h2 { color: white; }
.success-details { margin: 30px 0 0; border-top: 1px solid rgba(255,255,255,.1); }
.success-details > div { display: grid; grid-template-columns: 1fr 1.5fr; gap: 15px; align-items: center; min-height: 50px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); text-align: left; }
.success-details dt { color: #7486a6; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.success-details dd { margin: 0; text-align: right; font-weight: 800; overflow-wrap: anywhere; }
.success-details > div:first-child dd { color: var(--green); }
.recipient-with-avatar { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.recipient-with-avatar img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: 980px; height: auto; padding-top: 160px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-description { max-width: 700px; }
  .hero-visual { min-height: 520px; margin-top: -10px; }
  .edition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .edition-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 28px); height: 72px; }
  .site-nav a { display: none; }
  .nav-order { padding: 10px 13px; font-size: 10px; }
  .brand { font-size: 20px; }
  .brand img { width: 29px; height: 29px; }
  .hero { min-height: 900px; padding: 125px 18px 50px; gap: 20px; }
  .hero h1 { font-size: clamp(100px, 36vw, 155px); }
  .hero h2 { font-size: 37px; }
  .hero-description { font-size: 14px; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 430px; transform: scale(.83); margin: -30px -35px 0; }
  .hero-card-stack { width: 310px; height: 405px; }
  .floating-card-front > span { font-size: 150px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 340px; height: 340px; }
  .visual-stat { min-width: 72px; padding: 9px 12px; }
  .visual-stat b { font-size: 23px; }
  .editions-section { padding: 80px 16px 95px; }
  .section-heading h2 { font-size: 50px; }
  .edition-grid { grid-template-columns: 1fr; }
  .edition-card, .edition-card:last-child { width: 100%; grid-column: auto; transform: none; }
  .edition-card.is-featured { transform: none; }
  .edition-card:hover, .edition-card.is-featured:hover { transform: translateY(-6px); }
  .site-footer { flex-direction: column; text-align: center; }
  .site-footer p { text-align: center; }
  .order-overlay { padding: 0; align-items: end; }
  .order-shell { width: 100%; max-height: 94vh; clip-path: none; border-radius: 20px 20px 0 0; }
  .modal-header { padding: 0 17px; }
  .modal-brand span { display: none; }
  .modal-stage { padding: 20px 18px 26px; }
  .stage-heading h2 { font-size: 43px; }
  .search-control { grid-template-columns: 40px 1fr; padding-bottom: 7px; }
  .search-control button { grid-column: 1 / -1; width: calc(100% - 14px); margin: 0 7px; }
  .search-control input { height: 48px; }
  .search-icon { margin-left: 14px; }
  .order-summary-bar { grid-template-columns: 48px 1fr; }
  .order-summary-bar > strong { grid-column: 2; }
  .payment-method { grid-template-columns: 52px 1fr 18px; }
  .stage-processing { padding-top: 60px; }
}

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