:root {
  --bg: #07050a;
  --bg-2: #0c0811;
  --surface: rgba(18, 12, 25, .82);
  --surface-solid: #130d1a;
  --surface-soft: rgba(255, 255, 255, .035);
  --border: rgba(255,255,255,.09);
  --border-bright: rgba(204,130,255,.24);
  --text: #f8f5fb;
  --muted: #a69eae;
  --muted-2: #756d7d;
  --purple: #8f3cff;
  --purple-2: #b84dff;
  --pink: #e052ff;
  --green: #76e6a6;
  --danger: #ff748d;
  --gold: #e8c98b;
  --shadow: 0 32px 100px rgba(0,0,0,.52);
  --radius: 26px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-width: 320px; color: var(--text); background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6; overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.page-noise { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .025; 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.ambient { position: fixed; pointer-events: none; z-index: -2; border-radius: 50%; filter: blur(110px); opacity: .19; }
.ambient-one { width: 470px; height: 470px; background: #6f20ff; left: -230px; top: 12%; }
.ambient-two { width: 400px; height: 400px; background: #e23dff; right: -250px; top: 42%; }
.ambient-three { width: 420px; height: 420px; background: #5220bd; left: 38%; bottom: -300px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 118px 0; }

.top-ticker { height: 28px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.055); background: #0b0710; color: #8d8296; font-size: 8px; font-weight: 800; letter-spacing: .22em; }
.ticker-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 26px; animation: ticker 34s linear infinite; }
.ticker-track i { color: #9c44ff; font-style: normal; font-size: 7px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 80; background: rgba(7,5,10,.73); backdrop-filter: blur(24px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,.065); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 45px; height: 45px; padding: 2px; border-radius: 14px; background: linear-gradient(145deg, rgba(223,139,255,.9), rgba(100,35,255,.2), rgba(255,255,255,.3)); box-shadow: 0 10px 30px rgba(132,49,255,.2); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.brand-copy, .footer-brand > div { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 13px; letter-spacing: .15em; }
.brand-copy small { margin-top: 6px; color: #b47cf3; font-size: 8px; letter-spacing: .24em; }
.nav-links { display: flex; align-items: center; gap: 27px; color: #b3aaba; font-size: 12px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 10px 0; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: linear-gradient(90deg, var(--purple), var(--pink)); transition: right .25s ease; }
.nav-links > a:hover { color: #fff; }
.nav-links > a:hover::after { right: 0; }
.nav-cta { min-height: 43px; padding: 0 17px; display: inline-flex; align-items: center; gap: 18px; border-radius: 999px; color: white; background: rgba(143,60,255,.13); border: 1px solid rgba(184,77,255,.34); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.nav-cta b { color: #dca9ff; font-size: 16px; }
.nav-toggle { display: none; width: 42px; height: 42px; place-items: center; gap: 4px; background: rgba(255,255,255,.035); border: 1px solid var(--border); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 17px; height: 1px; background: white; display: block; }

.hero { position: relative; min-height: 860px; padding-top: 88px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(142,55,255,.19), rgba(142,55,255,.04) 46%, transparent 68%); right: -120px; top: 10px; pointer-events: none; }
.hero-grid-lines { position: absolute; inset: 0; z-index: -1; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 54px; }
.status-pill { width: fit-content; padding: 8px 13px; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: rgba(118,230,166,.055); border: 1px solid rgba(118,230,166,.17); color: #a8d7ba; font-size: 10px; font-weight: 700; letter-spacing: .07em; }
.status-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(118,230,166,.35); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(118,230,166,0); } 100% { box-shadow: 0 0 0 0 rgba(118,230,166,0); } }
h1,h2,h3,p { margin-top: 0; }
h1 { margin: 24px 0 25px; max-width: 720px; font-size: clamp(48px, 6.2vw, 79px); line-height: .99; letter-spacing: -.058em; }
h1 em { font-style: normal; background: linear-gradient(112deg, #fff 10%, #d9b2ff 45%, #a65aff 75%, #f08cff); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 8px 35px rgba(166,90,255,.16)); }
.hero-lead { max-width: 660px; color: #b9b0c1; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0; }
.btn { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 1px solid transparent; border-radius: 14px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease, background .23s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #7430f6 0%, #a63ff9 52%, #d34cff 100%); box-shadow: 0 15px 42px rgba(137,57,255,.3), inset 0 1px 0 rgba(255,255,255,.26); }
.btn-primary::before { content: ""; position: absolute; top: -50%; left: -45%; width: 32%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transform: rotate(20deg); transition: left .55s ease; }
.btn-primary:hover::before { left: 120%; }
.btn-primary:hover { box-shadow: 0 22px 56px rgba(137,57,255,.4), inset 0 1px 0 rgba(255,255,255,.26); }
.btn-primary span,.btn-primary b { position: relative; z-index: 1; }
.btn-primary b { font-size: 17px; }
.btn-secondary { color: #e7e0ec; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.18); }
.play-dot { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 8px; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); max-width: 610px; padding: 19px 0; border-block: 1px solid rgba(255,255,255,.07); }
.proof-item { display: flex; align-items: center; gap: 12px; padding-right: 14px; }
.proof-item + .proof-item { padding-left: 19px; border-left: 1px solid rgba(255,255,255,.07); }
.proof-item > span { color: #8f7c9f; font-size: 9px; letter-spacing: .15em; }
.proof-item div { display: grid; }
.proof-item strong { font-size: 13px; }
.proof-item small { color: #7e7585; font-size: 9px; margin-top: 2px; }
.microcopy { display: flex; align-items: flex-start; gap: 8px; max-width: 650px; margin-top: 17px; color: #776e7e; font-size: 10px; }
.microcopy span { color: #ad72e1; }

.hero-visual { min-height: 590px; display: grid; place-items: center; }
.visual-stage { position: relative; width: min(100%, 535px); aspect-ratio: 1 / 1.06; display: grid; place-items: center; perspective: 1200px; }
.stage-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(185,94,255,.16); }
.ring-one { width: 96%; height: 96%; animation: spin 28s linear infinite; }
.ring-two { width: 77%; height: 77%; border-style: dashed; animation: spin 20s linear infinite reverse; }
.ring-one::before,.ring-two::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #bd67ff; box-shadow: 0 0 18px #b350ff; left: 11%; top: 18%; }
@keyframes spin { to { transform: rotate(360deg); } }
.vip-pass { position: relative; z-index: 3; width: 71%; aspect-ratio: .68; padding: 25px; overflow: hidden; border-radius: 34px; background: linear-gradient(145deg, rgba(38,25,51,.97), rgba(12,8,17,.98)); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 45px 90px rgba(0,0,0,.55), 0 0 80px rgba(134,45,255,.13), inset 0 1px 0 rgba(255,255,255,.15); transform: rotateY(-7deg) rotateX(2deg) rotateZ(-2deg); display: flex; flex-direction: column; }
.vip-pass::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, rgba(255,255,255,.09), transparent 28%, transparent 70%, rgba(191,77,255,.11)); pointer-events: none; }
.vip-pass::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(143,60,255,.19); filter: blur(55px); right: -100px; top: -100px; }
.pass-shine { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.07) 48%, transparent 62%); transform: translateX(-100%); animation: pass-shine 5.5s ease-in-out infinite; }
@keyframes pass-shine { 0%,35% { transform: translateX(-100%); } 70%,100% { transform: translateX(100%); } }
.pass-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.pass-chip { width: 35px; height: 27px; padding: 5px; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: 7px; background: linear-gradient(145deg,#e8d5ff,#7e41b7); }
.pass-chip i { border: 1px solid rgba(43,17,63,.35); border-radius: 2px; }
.pass-status { display: flex; align-items: center; gap: 7px; color: #b8a9c2; font-size: 8px; letter-spacing: .15em; }
.pass-status b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.pass-logo { position: relative; z-index: 2; margin-top: 30px; width: 112px; height: 112px; align-self: center; border-radius: 27px; padding: 2px; background: linear-gradient(145deg,rgba(233,177,255,.65),rgba(125,48,255,.12)); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.pass-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 25px; mix-blend-mode: screen; }
.pass-content { position: relative; z-index: 2; margin-top: 29px; }
.pass-content span { color: #8e7f99; font-size: 7px; letter-spacing: .2em; }
.pass-content h2 { margin: 8px 0 0; font-size: clamp(29px,4vw,40px); line-height: .91; letter-spacing: -.055em; background: linear-gradient(120deg,#fff,#c596ff 68%,#ed89ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pass-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: end; margin-top: auto; }
.pass-bottom > div:first-child { display: grid; }
.pass-bottom small { color: #786d80; font-size: 6px; letter-spacing: .2em; }
.pass-bottom strong { font-size: 9px; letter-spacing: .12em; margin-top: 4px; }
.qr-art { width: 40px; height: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 3px; border: 1px solid rgba(255,255,255,.15); border-radius: 5px; }
.qr-art i { background: rgba(255,255,255,.72); border-radius: 1px; }
.qr-art i:nth-child(2),.qr-art i:nth-child(4),.qr-art i:nth-child(9) { opacity: .15; }
.chart-card { position: absolute; z-index: 1; width: 190px; height: 145px; left: -11px; top: 18%; padding: 17px; border-radius: 19px; background: rgba(15,10,21,.82); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 25px 55px rgba(0,0,0,.38); backdrop-filter: blur(17px); transform: rotate(-6deg); }
.mini-label { color: #766b7f; font-size: 7px; letter-spacing: .18em; }
.chart-bars { height: 80px; display: flex; align-items: end; gap: 12px; padding: 8px 4px 0; }
.chart-bars i { position: relative; width: 7px; height: var(--h); margin-bottom: var(--y); background: #d05c86; border-radius: 2px; }
.chart-bars i::before { content: ""; position: absolute; left: 3px; top: -9px; bottom: -10px; width: 1px; background: inherit; }
.chart-bars i.up { background: #8a53ee; }
.chart-line { height: 1px; background: rgba(255,255,255,.07); }
.chart-line span { display: block; width: 70%; height: 1px; background: linear-gradient(90deg,transparent,#b75dff); transform: rotate(-9deg) translateY(-20px); }
.floating-chip { position: absolute; z-index: 5; min-height: 57px; padding: 10px 13px; display: flex; align-items: center; gap: 10px; border-radius: 15px; background: rgba(13,9,18,.86); border: 1px solid rgba(255,255,255,.11); box-shadow: 0 18px 45px rgba(0,0,0,.38); backdrop-filter: blur(16px); }
.floating-chip span { display: grid; }
.floating-chip small { color: #756b7e; font-size: 6px; letter-spacing: .15em; }
.floating-chip strong { margin-top: 2px; font-size: 10px; }
.chip-live { right: -3%; top: 23%; }
.chip-live > i { width: 29px; height: 29px; border-radius: 9px; background: linear-gradient(145deg,#7d35ff,#d24cff); position: relative; }
.chip-live > i::after { content: "▶"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 8px; }
.chip-signal { left: -3%; bottom: 25%; }
.signal-icon { width: 29px; height: 29px; display: grid !important; place-items: center; border-radius: 9px; background: rgba(118,230,166,.08); color: var(--green); border: 1px solid rgba(118,230,166,.17); font-size: 16px; }
.chip-free { right: 2%; bottom: 10%; }
.chip-free > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-size: 15px; font-weight: 900; }
.trust-banner { margin-top: 66px; min-height: 76px; padding: 0 25px; display: flex; align-items: center; gap: 26px; border-radius: 18px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.075); }
.trust-banner > span { color: #805c9e; font-size: 8px; font-weight: 900; letter-spacing: .18em; white-space: nowrap; }
.trust-divider { width: 1px; height: 25px; background: rgba(255,255,255,.09); }
.trust-banner p { margin: 0; flex: 1; color: #9b91a3; font-size: 12px; }
.trust-banner p strong { color: #e8e1ec; }
.trust-badges { display: flex; gap: 7px; }
.trust-badges b { padding: 7px 10px; border-radius: 8px; color: #746b7c; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); font-size: 7px; letter-spacing: .1em; }

.risk-strip { background: linear-gradient(90deg,rgba(143,60,255,.12),rgba(229,82,255,.05),rgba(143,60,255,.09)); border-block: 1px solid rgba(255,255,255,.07); }
.risk-inner { min-height: 72px; display: flex; align-items: center; gap: 15px; }
.risk-icon { min-width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #dcb1ff; background: rgba(151,62,255,.12); border: 1px solid rgba(184,77,255,.22); font-size: 12px; font-weight: 900; }
.risk-inner p { margin: 0; flex: 1; color: #9d93a5; font-size: 11px; }
.risk-inner p strong { color: #c9c0cf; }
.risk-inner a { color: #b47ce2; font-size: 10px; font-weight: 800; white-space: nowrap; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #bd83ed; font-size: 9px; letter-spacing: .22em; font-weight: 900; }
.eyebrow span { width: 29px; height: 1px; background: linear-gradient(90deg,var(--purple),var(--pink)); }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading h2,.experience-copy h2,.register-copy h2 { margin: 18px 0; font-size: clamp(37px,4.5vw,58px); line-height: 1.05; letter-spacing: -.052em; }
.section-heading p,.experience-copy > p,.register-copy > p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }
.centered p { margin-inline: auto; max-width: 620px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: 7px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card { min-height: 292px; padding: 26px; position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.042),rgba(255,255,255,.015)); border: 1px solid var(--border); transition: transform .28s ease,border-color .28s ease,background .28s ease; }
.feature-card::before { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: rgba(143,60,255,.1); filter: blur(55px); right: -80px; top: -80px; opacity: 0; transition: opacity .3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(191,104,255,.25); background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.019)); }
.feature-card:hover::before { opacity: 1; }
.feature-large { grid-row: span 2; min-height: 600px; }
.feature-wide { grid-column: span 2; min-height: 220px; }
.feature-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.feature-number { color: #665e6e; font-size: 8px; letter-spacing: .17em; }
.feature-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: rgba(143,60,255,.09); border: 1px solid rgba(184,77,255,.17); }
.feature-icon svg { width: 19px; height: 19px; fill: none; stroke: #c18aef; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { position: relative; z-index: 2; margin: 33px 0 12px; font-size: 20px; letter-spacing: -.025em; }
.feature-card p { position: relative; z-index: 2; color: #958c9e; font-size: 13px; margin-bottom: 0; line-height: 1.75; }
.feature-visual { position: relative; height: 255px; margin: 29px -7px 18px; overflow: hidden; border-radius: 20px; background: radial-gradient(circle at 50% 20%,rgba(153,60,255,.24),transparent 50%),#0c0811; border: 1px solid rgba(255,255,255,.07); }
.live-pill { position: absolute; left: 18px; top: 18px; padding: 7px 10px; display: flex; align-items: center; gap: 7px; border-radius: 999px; color: #f3b7c4; background: rgba(255,91,127,.08); border: 1px solid rgba(255,91,127,.18); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.live-pill i { width: 5px; height: 5px; border-radius: 50%; background: #ff718e; box-shadow: 0 0 8px #ff718e; }
.live-wave { position: absolute; inset: 60px 20px 45px; display: flex; justify-content: center; align-items: center; gap: 7px; }
.live-wave i { width: 5px; height: 42%; border-radius: 99px; background: linear-gradient(to top,#7135dd,#d562ff); animation: wave 1.35s ease-in-out infinite alternate; opacity: .65; }
.live-wave i:nth-child(2){height:65%;animation-delay:.12s}.live-wave i:nth-child(3){height:86%;animation-delay:.23s}.live-wave i:nth-child(4){height:52%;animation-delay:.34s}.live-wave i:nth-child(5){height:78%;animation-delay:.45s}.live-wave i:nth-child(6){height:45%;animation-delay:.56s}.live-wave i:nth-child(7){height:64%;animation-delay:.67s}
@keyframes wave { to { transform: scaleY(.55); opacity: 1; } }
.live-visual b { position: absolute; left: 18px; bottom: 17px; font-size: 18px; line-height: .95; letter-spacing: -.03em; color: rgba(255,255,255,.82); }
.micro-chart { height: 80px; margin-top: 34px; display: flex; align-items: end; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.07); }
.micro-chart i { flex: 1; height: 34%; border-radius: 3px 3px 0 0; background: linear-gradient(to top,rgba(116,48,246,.22),#9d49ee); }
.micro-chart i:nth-child(2){height:53%}.micro-chart i:nth-child(3){height:41%}.micro-chart i:nth-child(4){height:72%}.micro-chart i:nth-child(5){height:63%}.micro-chart i:nth-child(6){height:88%;background:linear-gradient(to top,rgba(118,230,166,.16),#72d99f)}
.lesson-stack { margin-top: 27px; display: grid; gap: 8px; }
.lesson-stack span { padding: 10px 11px; border-radius: 9px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.055); color: #7f7588; font-size: 7px; letter-spacing: .12em; }
.indicator-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.indicator-pills span { padding: 7px 10px; border-radius: 999px; color: #a482bc; background: rgba(143,60,255,.07); border: 1px solid rgba(184,77,255,.13); font-size: 8px; }
.community-row { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.community-row h3 { margin-top: 10px; }
.community-row p { max-width: 570px; }
.avatar-stack { min-width: 210px; display: flex; justify-content: flex-end; }
.avatar-stack span,.avatar-stack b { width: 48px; height: 48px; margin-left: -9px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#24172f,#100b16); border: 2px solid #100b16; color: #c8a3e7; font-size: 9px; }
.avatar-stack span:nth-child(2){background:linear-gradient(145deg,#3b1d62,#17101f)}.avatar-stack span:nth-child(3){background:linear-gradient(145deg,#572171,#1a1022)}.avatar-stack span:nth-child(4){background:linear-gradient(145deg,#2d1c56,#110b1a)}
.avatar-stack b { background: #17101f; color: #83768d; }

.experience-section { position: relative; border-block: 1px solid rgba(255,255,255,.065); background: linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.008)); overflow: hidden; }
.experience-section::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(128,43,255,.09); filter: blur(110px); left: -280px; bottom: -320px; }
.experience-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 105px; }
.experience-copy > p { max-width: 580px; }
.program-list { margin-top: 37px; display: grid; gap: 11px; }
.program-list article { padding: 18px; display: grid; grid-template-columns: 43px 1fr; gap: 15px; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.02); }
.program-list article > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: #ad72de; background: rgba(143,60,255,.09); font-size: 8px; font-weight: 900; }
.program-list strong { font-size: 13px; }
.program-list p { margin: 3px 0 0; color: #7e7585; font-size: 10px; }
.experience-panel { position: relative; padding: 30px; overflow: hidden; border-radius: 32px; background: linear-gradient(145deg,rgba(29,19,38,.98),rgba(11,8,16,.99)); border: 1px solid rgba(255,255,255,.11); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08); }
.panel-glow { position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(161,62,255,.16); filter: blur(65px); right: -75px; top: -90px; }
.panel-header { position: relative; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; }
.panel-header > div { display: grid; }
.panel-header small { color: #7f7189; font-size: 7px; letter-spacing: .2em; }
.panel-header strong { margin-top: 6px; font-size: 21px; }
.panel-header > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; color: #d8a6ff; background: rgba(143,60,255,.11); border: 1px solid rgba(184,77,255,.2); font-size: 9px; font-weight: 900; }
.schedule-card { position: relative; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.022); margin-bottom: 9px; }
.schedule-card.active { background: linear-gradient(90deg,rgba(143,60,255,.12),rgba(255,255,255,.025)); border-color: rgba(184,77,255,.18); }
.schedule-time { display: grid; }
.schedule-time small { color: #6f6577; font-size: 6px; letter-spacing: .17em; }
.schedule-time strong { margin-top: 3px; font-size: 12px; }
.schedule-card > span { padding: 6px 8px; border-radius: 7px; color: #826d94; background: rgba(255,255,255,.035); font-size: 6px; font-weight: 900; letter-spacing: .12em; }
.schedule-card.active > span { color: #ddb5fa; background: rgba(143,60,255,.1); }
.panel-footer { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.panel-footer i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.panel-footer p { margin: 0; color: #6f6577; font-size: 9px; }

.steps-section { background: radial-gradient(circle at 50% 0,rgba(143,60,255,.08),transparent 36%); }
.steps-line { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.steps-line::before { content: ""; position: absolute; left: 8%; right: 8%; top: 44px; height: 1px; background: linear-gradient(90deg,transparent,rgba(176,91,255,.35),rgba(176,91,255,.35),transparent); }
.step-card { position: relative; min-height: 305px; padding: 28px 24px; border-radius: 22px; background: rgba(255,255,255,.022); border: 1px solid rgba(255,255,255,.075); transition: transform .25s ease,border-color .25s ease; }
.step-card:hover { transform: translateY(-4px); border-color: rgba(185,93,255,.23); }
.step-head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.step-head > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #d7a9fb; background: #120b19; border: 1px solid rgba(184,77,255,.24); font-size: 8px; font-weight: 900; box-shadow: 0 0 0 8px #08050b; }
.step-head i { width: 5px; height: 5px; border-radius: 50%; background: #7034a1; }
.step-card h3 { margin: 67px 0 11px; font-size: 18px; }
.step-card p { color: #8a818f; font-size: 12px; line-height: 1.75; }
.step-card a { color: #bd85e7; font-size: 10px; font-weight: 800; }

.register-section { position: relative; background: linear-gradient(180deg,rgba(255,255,255,.012),transparent); border-top: 1px solid rgba(255,255,255,.055); }
.register-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: start; }
.register-copy { position: sticky; top: 120px; }
.register-copy > p strong { color: #d2bfdf; }
.external-link { max-width: 520px; margin: 29px 0; padding: 17px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border-radius: 14px; color: #918698; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.075); font-size: 10px; }
.external-link b { color: #c28def; white-space: nowrap; }
.security-card { max-width: 520px; padding: 18px; display: flex; align-items: flex-start; gap: 14px; border-radius: 17px; background: rgba(118,230,166,.035); border: 1px solid rgba(118,230,166,.12); }
.security-icon { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(118,230,166,.07); }
.security-icon svg { width: 20px; height: 20px; fill: none; stroke: #82dba7; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.security-card strong { font-size: 12px; }
.security-card p { margin: 4px 0 0; color: #7f8e84; font-size: 10px; line-height: 1.6; }
.owner-card { max-width: 520px; margin-top: 13px; padding: 15px 17px; display: flex; align-items: center; gap: 13px; border-radius: 17px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.065); }
.owner-avatar { width: 44px; height: 44px; padding: 2px; border-radius: 13px; background: linear-gradient(145deg,#b26aff,#553078); }
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.owner-card > div:nth-child(2) { display: grid; flex: 1; }
.owner-card small { color: #6f6677; font-size: 6px; letter-spacing: .16em; }
.owner-card strong { font-size: 12px; }
.owner-card span { color: #7f7487; font-size: 8px; }
.owner-card > i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(118,230,166,.08); color: var(--green); border: 1px solid rgba(118,230,166,.16); font-size: 10px; font-style: normal; }
.registration-card { position: relative; padding: 34px; overflow: hidden; border-radius: 30px; background: linear-gradient(145deg,rgba(28,19,37,.98),rgba(11,8,16,.99)); border: 1px solid rgba(255,255,255,.115); box-shadow: var(--shadow),inset 0 1px 0 rgba(255,255,255,.08); }
.registration-card::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(144,56,255,.13); filter: blur(65px); right: -100px; top: -110px; pointer-events: none; }
.form-accent { position: absolute; left: 34px; right: 34px; top: 0; height: 1px; background: linear-gradient(90deg,transparent,#b858ff,transparent); box-shadow: 0 0 17px #9d43ef; }
.form-header { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.form-header > div:first-child { display: grid; }
.form-header span { color: #9068ae; font-size: 7px; letter-spacing: .2em; font-weight: 900; }
.form-header h3 { margin: 6px 0 0; font-size: 25px; letter-spacing: -.035em; }
.free-badge { padding: 9px 11px; display: grid; text-align: right; border-radius: 11px; background: rgba(143,60,255,.09); border: 1px solid rgba(184,77,255,.16); }
.free-badge small { color: #705d7f; font-size: 5px; letter-spacing: .14em; }
.free-badge strong { color: #d6a6fb; font-size: 10px; letter-spacing: .11em; }
.form-progress { position: relative; z-index: 2; margin: 28px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; }
.form-progress span { display: flex; align-items: center; gap: 7px; color: #665d6d; font-size: 8px; font-weight: 800; }
.form-progress span.active { color: #cba2e9; }
.form-progress i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.075); font-style: normal; font-size: 7px; }
.form-progress .active i { background: rgba(143,60,255,.12); border-color: rgba(184,77,255,.24); }
.form-progress b { height: 1px; background: linear-gradient(90deg,rgba(184,77,255,.35),rgba(255,255,255,.06)); }
.field { position: relative; z-index: 2; display: grid; gap: 8px; margin-bottom: 18px; }
.field > span { color: #c7becd; font-size: 11px; font-weight: 700; }
.field > span b { color: #b960ff; }
.field input,.field select { width: 100%; height: 54px; color: white; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.085); border-radius: 13px; outline: none; padding: 0 15px; transition: border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.field input::placeholder { color: #5f5666; }
.field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#74687c 50%),linear-gradient(135deg,#74687c 50%,transparent 50%); background-position: calc(100% - 18px) 23px,calc(100% - 13px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus,.field select:focus { background-color: rgba(255,255,255,.045); border-color: rgba(184,77,255,.55); box-shadow: 0 0 0 4px rgba(143,60,255,.08),0 0 30px rgba(143,60,255,.06); }
.field small { color: #6d6474; font-size: 8px; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap > i { position: absolute; left: 15px; z-index: 2; color: #8e639e; font-style: normal; font-size: 13px; }
.input-wrap input { padding-left: 38px; }
.input-wrap.icon-right input { padding-left: 15px; padding-right: 40px; }
.input-wrap.icon-right > i { left: auto; right: 15px; }
.checkbox-stack { position: relative; z-index: 2; margin-top: 5px; display: grid; gap: 9px; }
.check-row { position: relative; display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; cursor: pointer; }
.check-row input { position: absolute; opacity: 0; pointer-events: none; }
.custom-check { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12); transition: .2s ease; }
.custom-check::after { content: "✓"; opacity: 0; color: white; font-size: 10px; transform: scale(.5); transition: .2s ease; }
.check-row input:checked + .custom-check { background: linear-gradient(145deg,#7430f6,#c247f5); border-color: transparent; box-shadow: 0 7px 17px rgba(143,60,255,.22); }
.check-row input:checked + .custom-check::after { opacity: 1; transform: scale(1); }
.check-row em { color: #928897; font-size: 9px; line-height: 1.55; font-style: normal; }
.form-message { position: relative; z-index: 2; margin-top: 17px; padding: 12px 13px; border-radius: 11px; font-size: 9px; }
.form-message.error { color: #ff9baf; background: rgba(255,87,116,.07); border: 1px solid rgba(255,87,116,.18); }
.submit-btn { position: relative; z-index: 2; width: 100%; margin-top: 21px; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.privacy-line { position: relative; z-index: 2; margin: 13px 0 0; text-align: center; color: #645b6b; font-size: 8px; }

.faq-section { border-top: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.008); }
.faq-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 92px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 120px; margin-bottom: 0; }
.faq-grid .section-heading .btn { margin-top: 18px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.09); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.09); }
.faq-list summary { min-height: 88px; display: grid; grid-template-columns: 38px 1fr 28px; align-items: center; gap: 12px; color: #d6ceda; font-size: 13px; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #796c83; font-size: 8px; letter-spacing: .12em; }
.faq-list summary > i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #a875ce; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08); font-size: 16px; font-style: normal; transition: transform .25s ease; }
.faq-list details[open] summary > i { transform: rotate(45deg); }
.faq-list details p { margin: -10px 40px 25px 50px; color: #887f90; font-size: 11px; line-height: 1.75; }

.final-cta { padding: 58px 0; }
.final-cta-inner { min-height: 190px; padding: 32px 38px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 28px; border-radius: 28px; background: radial-gradient(circle at 78% 20%,rgba(177,69,255,.18),transparent 35%),linear-gradient(145deg,#181020,#0c0811); border: 1px solid rgba(255,255,255,.11); box-shadow: var(--shadow); }
.final-logo { width: 72px; height: 72px; padding: 2px; border-radius: 20px; background: linear-gradient(145deg,#c178ff,#57288c); }
.final-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.final-cta-inner > div:nth-child(2) span { color: #9169ae; font-size: 7px; letter-spacing: .2em; font-weight: 900; }
.final-cta-inner h2 { margin: 8px 0 0; max-width: 720px; font-size: clamp(24px,3vw,39px); line-height: 1.08; letter-spacing: -.04em; }

.site-footer { padding: 55px 0 28px; border-top: 1px solid rgba(255,255,255,.06); background: #060409; }
.footer-top { padding-bottom: 37px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
.footer-brand .brand-mark img { border-radius: 10px; }
.footer-brand strong { font-size: 11px; letter-spacing: .14em; }
.footer-brand small { margin-top: 5px; color: #78588f; font-size: 7px; letter-spacing: .16em; }
.footer-nav { display: flex; gap: 26px; color: #7f7587; font-size: 10px; }
.footer-nav a:hover { color: #c5a4df; }
.footer-bottom { padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.06); color: #5f5665; font-size: 8px; }
.footer-bottom p { margin: 0; max-width: 720px; }
.footer-bottom > div { display: flex; gap: 20px; white-space: nowrap; }
.footer-bottom a { color: #765a8a; }

.mobile-cta { display: none; }
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s ease,visibility .25s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,2,5,.82); backdrop-filter: blur(12px); }
.modal-card { position: relative; width: min(100%,570px); padding: 38px; overflow: hidden; border-radius: 28px; text-align: center; background: linear-gradient(145deg,#1b1224,#0c0811); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); transform: translateY(15px) scale(.98); transition: transform .25s ease; }
.modal.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-card::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(143,60,255,.14); filter: blur(65px); left: 50%; top: -150px; transform: translateX(-50%); }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 17px; border: 0; background: transparent; color: #85788e; font-size: 27px; cursor: pointer; }
.success-ring { position: relative; width: 72px; height: 72px; margin: 0 auto 19px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(118,230,166,.18); box-shadow: 0 0 0 9px rgba(118,230,166,.035); }
.success-mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: #b9f1ce; background: rgba(118,230,166,.09); font-size: 22px; }
.modal-kicker { position: relative; color: #9971b8; font-size: 7px; letter-spacing: .2em; font-weight: 900; }
.modal-card h2 { position: relative; margin: 10px auto; max-width: 440px; font-size: 31px; line-height: 1.08; letter-spacing: -.045em; }
.modal-card > p { position: relative; color: #9a90a2; font-size: 11px; }
.message-preview { position: relative; margin: 22px 0; padding: 18px; max-height: 190px; overflow: auto; text-align: left; white-space: pre-wrap; border-radius: 14px; color: #aaa0b1; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.07); font-size: 9px; line-height: 1.75; }
.modal-actions { position: relative; display: flex; justify-content: center; gap: 10px; }
.modal-note { color: #625969 !important; font-size: 8px !important; margin: 16px 0 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease,transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }.delay-3 { transition-delay: .3s; }

@media (max-width: 1030px) {
  .section-pad { padding: 96px 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .status-pill,.hero-actions,.microcopy { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-proof { margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 560px; }
  .trust-banner { margin-top: 30px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .feature-large { grid-row: auto; min-height: 470px; }
  .feature-wide { grid-column: span 2; }
  .feature-visual { height: 150px; }
  .experience-grid,.register-shell,.faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .experience-copy,.register-copy,.faq-grid .section-heading { position: static; }
  .steps-line { grid-template-columns: repeat(2,1fr); }
  .steps-line::before { display: none; }
  .step-card h3 { margin-top: 45px; }
  .final-cta-inner { grid-template-columns: 70px 1fr; }
  .final-cta-inner .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .section-pad { padding: 78px 0; }
  .top-ticker { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 11px; }
  .nav-toggle { display: grid; }
  .nav-links { display: none; position: absolute; top: 70px; left: 14px; right: 14px; padding: 14px; border-radius: 18px; background: rgba(13,8,18,.98); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: 12px; }
  .nav-cta { justify-content: space-between; margin-top: 5px; }
  .hero { min-height: auto; padding-top: 60px; }
  h1 { font-size: clamp(43px,13.5vw,66px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 0; border-bottom: 0; }
  .proof-item { padding: 13px 0; }
  .proof-item + .proof-item { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .hero-visual { min-height: 440px; margin-top: 12px; }
  .visual-stage { width: 390px; max-width: 115%; }
  .vip-pass { width: 65%; padding: 18px; border-radius: 25px; }
  .pass-logo { width: 75px; height: 75px; margin-top: 19px; border-radius: 20px; }
  .pass-logo img { border-radius: 18px; }
  .pass-content { margin-top: 19px; }
  .pass-content h2 { font-size: 27px; }
  .chart-card { width: 135px; height: 105px; padding: 12px; left: 0; }
  .chart-bars { height: 55px; gap: 8px; }
  .floating-chip { min-height: 47px; padding: 8px 9px; }
  .chip-live { right: 0; }.chip-signal { left: 0; }.chip-free { right: 3%; }
  .floating-chip small { font-size: 5px; }.floating-chip strong { font-size: 8px; }
  .trust-banner { padding: 18px; flex-wrap: wrap; gap: 12px; text-align: left; }
  .trust-divider { display: none; }.trust-banner p { flex-basis: 100%; }
  .risk-inner { padding: 16px 0; align-items: flex-start; }.risk-inner a { display: none; }
  .section-heading h2,.experience-copy h2,.register-copy h2 { font-size: clamp(34px,11vw,49px); }
  .benefit-grid,.steps-line { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; }
  .feature-large { min-height: auto; }
  .feature-visual { height: 220px; }
  .community-row { align-items: flex-start; flex-direction: column; }
  .avatar-stack { min-width: 0; justify-content: flex-start; }
  .experience-panel,.registration-card { padding: 24px 18px; border-radius: 24px; }
  .external-link { align-items: flex-start; flex-direction: column; }
  .faq-list summary { min-height: 78px; grid-template-columns: 30px 1fr 26px; font-size: 12px; }
  .faq-list details p { margin-left: 42px; margin-right: 15px; }
  .final-cta { padding: 20px 0 88px; }
  .final-cta-inner { padding: 27px 20px; grid-template-columns: 53px 1fr; gap: 17px; }
  .final-logo { width: 53px; height: 53px; border-radius: 15px; }.final-logo img { border-radius: 13px; }
  .final-cta-inner .btn { grid-column: 1 / -1; width: 100%; }
  .footer-top,.footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-nav { flex-wrap: wrap; gap: 15px 22px; }
  .footer-bottom > div { width: 100%; justify-content: space-between; }
  .mobile-cta { position: fixed; z-index: 75; left: 10px; right: 10px; bottom: 10px; min-height: 62px; padding: 9px 9px 9px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 17px; background: rgba(16,10,22,.93); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 55px rgba(0,0,0,.55); backdrop-filter: blur(18px); }
  .mobile-cta > div { display: grid; }.mobile-cta small { color: #776a80; font-size: 6px; letter-spacing: .13em; }.mobile-cta strong { font-size: 11px; }
  .mobile-cta a { padding: 12px 14px; border-radius: 11px; background: linear-gradient(135deg,#7932f6,#c447f7); font-size: 9px; font-weight: 900; }
  .modal-card { padding: 30px 18px; }.modal-actions { flex-direction: column; }.modal-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .visual-stage { width: 350px; }
  .chip-signal { bottom: 19%; }
  .trust-badges { flex-wrap: wrap; }
}

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

/* === Premium purple motion upgrade === */
:root {
  --premium-purple-1: #7e32ff;
  --premium-purple-2: #bf49ff;
  --premium-purple-3: #5020c6;
  --premium-cyan: #8e76ff;
}
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(130, 49, 255, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(193, 73, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 115%, rgba(115, 46, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #040208 0%, #08040f 28%, #05030a 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(198, 93, 255, 0.04) 50%, transparent 58%),
    radial-gradient(circle at center, rgba(132, 47, 255, 0.06), transparent 65%);
  mix-blend-mode: screen;
  animation: pageGlowShift 10s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes pageGlowShift {
  0% { transform: translate3d(0,0,0) scale(1); opacity: .75; }
  100% { transform: translate3d(0,-10px,0) scale(1.04); opacity: 1; }
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0%;
  height: 4px;
  z-index: 999;
  background: linear-gradient(90deg, var(--premium-purple-1), var(--premium-purple-2), #ffffff);
  box-shadow: 0 0 18px rgba(152, 69, 255, .8), 0 0 36px rgba(152, 69, 255, .35);
}
.fx-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.fx-particle {
  --size: 4px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #d7a4ff 42%, rgba(144, 58, 255, 0.45) 65%, transparent 72%);
  box-shadow: 0 0 14px rgba(170, 80, 255, .8);
  opacity: 0;
  animation: floatParticle var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatParticle {
  0% { transform: translate3d(0, 20px, 0) scale(.6); opacity: 0; }
  10% { opacity: .7; }
  85% { opacity: .5; }
  100% { transform: translate3d(var(--drift, 80px), -115vh, 0) scale(1.25); opacity: 0; }
}
.hero-grid-lines {
  opacity: .5;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
}
.hero-copy h1 em,
.hero-copy h1 .gradient-word,
.section-heading h2 .gradient-word,
.final-cta-inner h2 .gradient-word {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #dfc0ff 20%, #bf49ff 50%, #f5ecff 78%, #9e59ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 26px rgba(191, 73, 255, .18);
}
.status-pill,
.nav-cta,
.btn,
.trust-badges b,
.pass-status,
.floating-chip,
.feature-card,
.step-card,
.experience-panel,
.registration-card,
.final-cta-inner,
.trust-banner,
.security-card,
.external-link,
.modal-card {
  backdrop-filter: blur(14px) saturate(125%);
}
.site-header {
  background: linear-gradient(to bottom, rgba(6,4,10,.86), rgba(6,4,10,.58));
  border-bottom-color: rgba(196, 116, 255, .1);
}
.nav-links > a,
.footer-nav a {
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}
.nav-links > a:hover,
.footer-nav a:hover {
  color: #efe0ff;
  text-shadow: 0 0 18px rgba(189, 92, 255, .45);
  transform: translateY(-1px);
}
.btn {
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.32) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .8s ease;
  z-index: -1;
}
.btn:hover::before,
.nav-cta:hover::before {
  transform: translateX(130%);
}
.btn-primary,
.mobile-cta a,
.nav-cta {
  background: linear-gradient(135deg, #6e2bff 0%, #b946ff 52%, #8c6dff 100%);
  box-shadow: 0 14px 32px rgba(111, 43, 255, .28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover,
.mobile-cta a:hover,
.nav-cta:hover {
  box-shadow: 0 18px 48px rgba(111, 43, 255, .42), 0 0 20px rgba(185, 70, 255, .36);
}
.hero-lead {
  color: #cfc3d8;
}
.hero-visual { perspective: 1600px; }
.visual-stage {
  filter: drop-shadow(0 36px 65px rgba(0,0,0,.35));
}
.visual-stage::before {
  content: "";
  position: absolute;
  inset: 10% 10% auto;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(123, 53, 255, 0.26), transparent 65%);
  filter: blur(30px);
  animation: stagePulse 5s ease-in-out infinite;
}
@keyframes stagePulse {
  0%,100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}
.stage-ring {
  border-color: rgba(180, 94, 255, .24);
  box-shadow: 0 0 40px rgba(151, 73, 255, .08), inset 0 0 35px rgba(151, 73, 255, .07);
}
.ring-one { animation-duration: 18s !important; }
.ring-two { animation-duration: 24s !important; }
.vip-pass {
  transform-style: preserve-3d;
  background:
    linear-gradient(165deg, rgba(255,255,255,.17), rgba(255,255,255,.04) 26%, rgba(85, 32, 198, .22) 88%),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, rgba(25,16,36,.96), rgba(8,5,14,.98));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(190, 92, 255, .08) inset,
    0 0 45px rgba(152, 69, 255, .18);
}
.vip-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,.45), rgba(255,255,255,0), rgba(183, 84, 255, .65));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .8;
  pointer-events: none;
}
.pass-shine {
  background: linear-gradient(110deg, transparent 10%, rgba(255,255,255,.4) 36%, rgba(190, 123, 255, .18) 50%, transparent 72%);
  animation: shineSweep 4.5s ease-in-out infinite;
}
@keyframes shineSweep {
  0% { transform: translateX(-120%) skewX(-18deg); }
  50%, 100% { transform: translateX(130%) skewX(-18deg); }
}
.pass-logo {
  box-shadow: 0 18px 36px rgba(112, 47, 255, .24);
}
.pass-content h2 {
  text-shadow: 0 0 28px rgba(191, 73, 255, .24);
}
.floating-chip,
.chart-card {
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.28), 0 0 28px rgba(143,60,255,.08);
}
.floating-chip { animation: floatChip 5.2s ease-in-out infinite; }
.chip-live { animation-delay: .1s; }
.chip-signal { animation-delay: .9s; }
.chip-free { animation-delay: 1.6s; }
@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.feature-card,
.step-card,
.experience-panel,
.registration-card,
.final-cta-inner,
.trust-banner,
.security-card,
.external-link,
.modal-card,
.chart-card {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.feature-card:hover,
.step-card:hover,
.experience-panel:hover,
.registration-card:hover,
.final-cta-inner:hover,
.trust-banner:hover,
.security-card:hover,
.external-link:hover,
.chart-card:hover {
  border-color: rgba(195, 92, 255, .24);
  box-shadow: 0 20px 70px rgba(0,0,0,.35), 0 0 28px rgba(149, 62, 255, .18);
}
.feature-card::after,
.step-card::after,
.experience-panel::after,
.registration-card::after,
.final-cta-inner::after,
.trust-banner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255,255,255,.08), transparent 28%, transparent 72%, rgba(191,73,255,.08));
  opacity: 0;
  transition: opacity .35s ease;
}
.feature-card:hover::after,
.step-card:hover::after,
.experience-panel:hover::after,
.registration-card:hover::after,
.final-cta-inner:hover::after,
.trust-banner:hover::after { opacity: 1; }
.feature-number,
.eyebrow,
.modal-kicker,
.status-pill {
  letter-spacing: .18em;
}
.risk-strip {
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), rgba(128, 49, 255, .08), rgba(255,255,255,.02));
}
.risk-inner a,
.external-link b,
.footer-bottom a {
  color: #c28bff;
}
.form-shell::before {
  background: radial-gradient(circle at 18% 12%, rgba(191,73,255,.12), transparent 26%), radial-gradient(circle at 80% 82%, rgba(126,50,255,.12), transparent 32%);
}
input:focus, select:focus {
  box-shadow: 0 0 0 4px rgba(145, 73, 255, .12), 0 0 24px rgba(145, 73, 255, .18);
}
.modal-card {
  box-shadow: 0 40px 90px rgba(0,0,0,.56), 0 0 45px rgba(149, 62, 255, .16);
}
@media (max-width: 760px) {
  .fx-particles { opacity: .7; }
  .scroll-progress { height: 3px; }
}
@media (prefers-reduced-motion: reduce) {
  .fx-particle,
  body::before,
  .floating-chip,
  .pass-shine,
  .visual-stage::before { animation: none !important; }
}


/* === Added professional detail section === */
.pro-section {
  position: relative;
  padding: 42px 0 28px;
}
.pro-shell {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(19,12,28,.92), rgba(9,6,15,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.32), 0 0 28px rgba(154, 72, 255, .08);
  overflow: hidden;
}
.pro-shell::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(188,74,255,.22), transparent 62%);
  filter: blur(20px);
  animation: stagePulse 7s ease-in-out infinite;
}
.pro-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: end;
}
.pro-head h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.045em;
}
.pro-head p {
  margin: 0;
  color: #a89caf;
  font-size: 13px;
  line-height: 1.8;
}
.pro-grid {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pro-card {
  position: relative;
  min-height: 214px;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  overflow: hidden;
}
.pro-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(190,92,255,.22), transparent 68%);
  filter: blur(16px);
}
.pro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,.08) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: cardSweep 7s ease-in-out infinite;
}
.pro-card:nth-child(2)::after { animation-delay: 1s; }
.pro-card:nth-child(3)::after { animation-delay: 2s; }
.pro-card:nth-child(4)::after { animation-delay: 3s; }
@keyframes cardSweep {
  0%, 12% { transform: translateX(-125%); opacity: 0; }
  20% { opacity: 1; }
  38%, 100% { transform: translateX(135%); opacity: 0; }
}
.pro-card small {
  display: inline-block;
  color: #a87ff0;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 800;
}
.pro-card strong {
  position: relative;
  display: block;
  margin: 15px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
  color: #fff;
  text-shadow: 0 0 24px rgba(191,73,255,.18);
}
.pro-card strong span {
  display: inline-block;
  min-width: .9em;
}
.pro-card p {
  position: relative;
  margin: 0;
  color: #988fa1;
  font-size: 12px;
  line-height: 1.8;
}
.signature-row {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.signature-card {
  position: relative;
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.024);
  border: 1px solid rgba(255,255,255,.08);
}
.signature-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #742fff, #bf49ff);
  box-shadow: 0 10px 24px rgba(116,47,255,.28);
}
.signature-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}
.signature-card p {
  margin: 0;
  color: #958a9d;
  font-size: 11px;
  line-height: 1.75;
}
@media (max-width: 1030px) {
  .pro-head, .pro-grid, .signature-row { grid-template-columns: 1fr 1fr; }
  .signature-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pro-section { padding: 18px 0 12px; }
  .pro-shell { padding: 22px 16px; border-radius: 24px; }
  .pro-head { grid-template-columns: 1fr; gap: 14px; }
  .pro-head h2 { font-size: clamp(28px, 9.2vw, 42px); }
  .pro-grid { grid-template-columns: 1fr; }
  .signature-row { grid-template-columns: 1fr; }
  .pro-card { min-height: auto; }
}


/* === Sultan upgrade === */
:root {
  --sultan-gold-1: #d8a84f;
  --sultan-gold-2: #ffdb92;
  --sultan-gold-3: #8a5a12;
}
body {
  background:
    radial-gradient(circle at 10% 10%, rgba(130, 49, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(216, 168, 79, 0.10), transparent 24%),
    radial-gradient(circle at 80% 26%, rgba(193, 73, 255, 0.12), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 219, 146, 0.06), transparent 25%),
    radial-gradient(circle at 50% 115%, rgba(115, 46, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #040208 0%, #08040f 28%, #05030a 100%);
}
.brand-mark,
.pass-logo,
.final-logo,
.owner-avatar {
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 10px 30px rgba(0,0,0,.35), 0 0 24px rgba(216,168,79,.12);
}
.status-pill,
.trust-badges b,
.free-badge,
.pass-status {
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 10px 20px rgba(0,0,0,.18), 0 0 18px rgba(216,168,79,.10);
}
.eyebrow span,
.feature-number,
.signature-icon,
.free-badge,
.status-pulse {
  background: linear-gradient(135deg, var(--premium-purple-1), var(--premium-purple-2), var(--sultan-gold-1));
}
.btn-primary,
.mobile-cta a,
.nav-cta {
  background: linear-gradient(135deg, #6d2bff 0%, #b946ff 48%, #d7aa57 100%);
}
.btn-secondary {
  border-color: rgba(216,168,79,.18);
}
.btn-secondary:hover {
  background: rgba(216,168,79,.07);
  box-shadow: 0 12px 28px rgba(216,168,79,.09), 0 0 18px rgba(191,73,255,.12);
}
.hero-copy h1 em,
.hero-copy h1 .gradient-word,
.section-heading h2 .gradient-word,
.final-cta-inner h2 .gradient-word,
.pro-head h2 .gradient-word {
  background: linear-gradient(90deg, #ffffff 0%, #f2ddff 18%, #bf49ff 48%, #ffdc9e 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.trust-banner,
.final-cta-inner,
.pro-shell,
.registration-card,
.experience-panel,
.feature-card,
.step-card,
.summary-panel {
  box-shadow: 0 28px 90px rgba(0,0,0,.36), 0 0 0 1px rgba(255,255,255,.04) inset, 0 0 32px rgba(191,73,255,.08), 0 0 18px rgba(216,168,79,.05);
}
.royal-benefit-shell {
  position: relative;
  margin: 28px 0 34px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(18,11,27,.92), rgba(10,6,16,.96));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.royal-benefit-shell::before,
.royal-benefit-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}
.royal-benefit-shell::before {
  width: 340px;
  height: 340px;
  left: -120px;
  top: -100px;
  background: radial-gradient(circle at center, rgba(191,73,255,.16), transparent 68%);
}
.royal-benefit-shell::after {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -110px;
  background: radial-gradient(circle at center, rgba(216,168,79,.13), transparent 68%);
}
.royal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.royal-benefit-card {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.royal-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255,255,255,.08) 49%, transparent 63%);
  transform: translateX(-140%);
  animation: royalSweep 9s ease-in-out infinite;
}
.royal-benefit-card:nth-child(2n)::before { animation-delay: 1.3s; }
.royal-benefit-card:nth-child(3n)::before { animation-delay: 2.6s; }
@keyframes royalSweep {
  0%, 12% { transform: translateX(-140%); opacity: 0; }
  20% { opacity: .9; }
  36%, 100% { transform: translateX(140%); opacity: 0; }
}
.royal-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,168,79,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.28), 0 0 26px rgba(191,73,255,.14), 0 0 18px rgba(216,168,79,.10);
}
.royal-emoji {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 26px;
  background: linear-gradient(145deg, rgba(109,43,255,.25), rgba(216,168,79,.16));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 22px rgba(0,0,0,.24);
}
.royal-benefit-card small {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 8px;
  color: #caa0f2;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 800;
}
.royal-benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}
.royal-benefit-card p,
.royal-benefit-card li {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #a99eb1;
  font-size: 12px;
  line-height: 1.82;
}
.royal-benefit-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 18px;
}
.royal-bonus-card { grid-column: span 1; }
.royal-benefit-summary {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.summary-panel {
  padding: 22px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.check-list-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.check-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(255,255,255,.06);
  color: #eee7f4;
  font-size: 12px;
}
.summary-disclaimer p {
  color: #a89caf;
  font-size: 12px;
  line-height: 1.84;
}
.summary-disclaimer .btn { margin-top: 10px; }
@media (max-width: 1030px) {
  .royal-grid,
  .royal-benefit-summary { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .royal-benefit-shell { padding: 18px 14px; border-radius: 24px; }
  .royal-grid { grid-template-columns: 1fr; }
  .royal-benefit-card { grid-template-columns: 50px 1fr; padding: 18px 16px; min-height: auto; }
  .royal-emoji { width: 46px; height: 46px; border-radius: 15px; font-size: 22px; }
  .royal-benefit-card h3 { font-size: 18px; }
  .summary-panel { padding: 18px 16px; }
}


/* === Orderly layout + purple flame animation update === */
.hero-visual, .visual-stage { overflow: visible; }
.purple-flame-set {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 6%;
  height: 110px;
  pointer-events: none;
  z-index: 0;
  filter: blur(.2px) drop-shadow(0 0 22px rgba(174, 81, 255, .35)) drop-shadow(0 0 44px rgba(122, 47, 255, .2));
}
.flame {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 80px;
  border-radius: 50% 50% 46% 46% / 68% 68% 34% 34%;
  background: radial-gradient(circle at 50% 14%, rgba(255,255,255,.95) 0 8%, rgba(239,216,255,.9) 10%, rgba(194,110,255,.78) 26%, rgba(123,48,255,.52) 56%, rgba(88,31,198,.18) 72%, transparent 76%);
  mix-blend-mode: screen;
  transform-origin: center bottom;
  animation: purpleFlame 3.4s ease-in-out infinite;
  opacity: .92;
}
.flame::before,
.flame::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 52%;
  height: 64%;
  border-radius: 50% 50% 38% 38% / 64% 64% 34% 34%;
  background: radial-gradient(circle at 50% 16%, rgba(255,255,255,.7) 0 10%, rgba(197,116,255,.48) 28%, rgba(123,48,255,.22) 68%, transparent 76%);
  filter: blur(.2px);
}
.flame::before { left: -8%; transform: rotate(-12deg); }
.flame::after { right: -8%; transform: rotate(12deg); }
.flame-1 { left: 8%; height: 68px; width: 38px; animation-delay: -.4s; }
.flame-2 { left: 26%; height: 92px; width: 52px; animation-delay: -1.1s; }
.flame-3 { left: 45%; height: 102px; width: 56px; animation-delay: -.2s; }
.flame-4 { left: 66%; height: 84px; width: 46px; animation-delay: -1.8s; }
.flame-5 { left: 84%; height: 72px; width: 40px; animation-delay: -.9s; }
@keyframes purpleFlame {
  0%,100% { transform: translateY(0) scale(1) rotate(-2deg); opacity: .78; }
  20% { transform: translateY(-8px) scale(1.04,.94) rotate(2deg); opacity: .95; }
  42% { transform: translateY(-18px) scale(.96,1.1) rotate(-3deg); opacity: .86; }
  66% { transform: translateY(-6px) scale(1.06,.92) rotate(3deg); opacity: 1; }
  82% { transform: translateY(-14px) scale(.98,1.05) rotate(-1deg); opacity: .9; }
}
.pro-shell {
  padding-bottom: 28px;
}
.signature-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.signature-card {
  min-height: 112px;
}
.section-heading.split-heading {
  align-items: end;
}
.royal-benefit-shell {
  margin-top: 24px;
}
.royal-grid {
  align-items: stretch;
}
.royal-benefit-card,
.summary-panel,
.pro-card,
.signature-card,
.feature-card,
.step-card {
  backdrop-filter: blur(14px) saturate(125%);
}
.royal-benefit-card h3,
.feature-card h3,
.step-card h3,
.signature-card strong,
.pro-card strong {
  letter-spacing: -.03em;
}
.owner-card,
.external-link,
.security-card,
.signature-card,
.pro-card,
.royal-benefit-card,
.summary-panel {
  position: relative;
  overflow: hidden;
}
.owner-card::after,
.external-link::after,
.security-card::after,
.signature-card::after,
.pro-card::after,
.summary-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.05) 50%, transparent 82%);
  transform: translateX(-140%);
  animation: slowSweep 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes slowSweep {
  0%, 20% { transform: translateX(-140%); opacity: 0; }
  30% { opacity: 1; }
  50%, 100% { transform: translateX(140%); opacity: 0; }
}
@media (max-width: 1030px) {
  .signature-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .purple-flame-set {
    left: 10%;
    right: 10%;
    bottom: 5%;
    height: 84px;
  }
  .flame-1 { left: 4%; }
  .flame-2 { left: 22%; height: 74px; width: 42px; }
  .flame-3 { left: 43%; height: 82px; width: 44px; }
  .flame-4 { left: 64%; height: 70px; width: 38px; }
  .flame-5 { left: 82%; height: 60px; width: 34px; }
  .signature-row { grid-template-columns: 1fr; }
  .signature-card { min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .flame, .flame::before, .flame::after, .owner-card::after, .external-link::after, .security-card::after, .signature-card::after, .pro-card::after, .summary-panel::after { animation: none !important; }
}


/* === Final luxury refinement === */
.risk-strip {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 24px rgba(0,0,0,.08);
}
#benefit.section-pad {
  padding-top: 84px;
}
#benefit .section-heading {
  margin-bottom: 24px;
}
#benefit .section-heading h2 {
  max-width: 820px;
}
#benefit .section-heading p {
  max-width: 560px;
}
.royal-benefit-shell {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 32px 100px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.03) inset, 0 0 34px rgba(191,73,255,.10), 0 0 20px rgba(216,168,79,.06);
}
.royal-benefit-card {
  min-height: 184px;
  border-radius: 26px;
}
.royal-benefit-card h3 {
  font-size: 24px;
}
.royal-benefit-card p,
.royal-benefit-card li {
  font-size: 12.5px;
}
.summary-panel {
  border-radius: 26px;
}
.final-cta-inner {
  background:
    radial-gradient(circle at 90% 18%, rgba(216,168,79,.16), transparent 26%),
    radial-gradient(circle at 16% 30%, rgba(177,69,255,.18), transparent 35%),
    linear-gradient(145deg,#17101f,#0c0811);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,116,255,.12), rgba(216,168,79,.12), transparent);
}
.brand-copy strong {
  text-shadow: 0 0 16px rgba(191,73,255,.15);
}
.hero-proof .proof-item,
.trust-banner,
.royal-benefit-card,
.summary-panel,
.registration-card,
.feature-card,
.step-card,
.experience-panel,
.final-cta-inner {
  backdrop-filter: blur(16px) saturate(130%);
}
@media (max-width: 760px) {
  #benefit.section-pad {
    padding-top: 68px;
  }
  .royal-benefit-card {
    min-height: auto;
  }
  .royal-benefit-card h3 {
    font-size: 20px;
  }
}
