@font-face {
  font-family: 'Outfit';
  src: url('fonts/outfit-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/outfit-latin-ext-wght-normal.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-latin-wght-normal.woff2') format('woff2');
  font-weight: 200 800; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-latin-ext-wght-normal.woff2') format('woff2');
  font-weight: 200 800; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --canvas: #FAF8FF;
  --canvas-2: #F3EFFD;
  --surface: #FFFFFF;
  --surface-2: #F7F4FE;
  --glass: rgba(255, 255, 255, 0.72);
  --line: rgba(22, 17, 42, 0.08);
  --line-2: rgba(22, 17, 42, 0.14);
  --ink: #16112A;
  --ink-2: #4A4360;
  --ink-3: #7D7694;
  --brand: #5B3FA8;
  --brand-2: #8B6BD6;
  --brand-soft: #EEE8FC;
  --brand-ink: #4A2F96;
  --amber: #E8A317;
  --amber-soft: #FDF3DC;
  --coral: #FF6B4A;
  --pink: #E8376F;
  --cyan: #0EA5C6;
  --green: #0F9D6B;
  --grad-brand: linear-gradient(135deg, #5B3FA8 0%, #8B5CF6 45%, #E8376F 100%);
  --grad-text: linear-gradient(100deg, #5B3FA8 0%, #A35BFF 38%, #E8376F 72%, #F59E0B 100%);
  --grad-cta: linear-gradient(120deg, #3B2477 0%, #5B3FA8 40%, #9D3FA0 75%, #E8376F 100%);
  --shadow-sm: 0 1px 2px rgba(22, 17, 42, .06), 0 2px 8px rgba(22, 17, 42, .04);
  --shadow: 0 2px 6px rgba(22, 17, 42, .05), 0 18px 40px -18px rgba(60, 35, 130, .28);
  --shadow-lg: 0 30px 80px -28px rgba(60, 35, 130, .45), 0 8px 24px -12px rgba(22, 17, 42, .18);
  --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #0D0A17;
    --canvas-2: #120E20;
    --surface: #17122A;
    --surface-2: #1D1733;
    --glass: rgba(23, 18, 42, 0.72);
    --line: rgba(243, 240, 255, 0.08);
    --line-2: rgba(243, 240, 255, 0.16);
    --ink: #F3F0FF;
    --ink-2: #BDB5D6;
    --ink-3: #8C84A6;
    --brand: #B6A2F2;
    --brand-2: #9C83EA;
    --brand-soft: rgba(139, 107, 214, 0.16);
    --brand-ink: #CBBBFA;
    --amber-soft: rgba(232, 163, 23, 0.14);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow: 0 2px 6px rgba(0, 0, 0, .3), 0 18px 40px -18px rgba(0, 0, 0, .6);
    --shadow-lg: 0 30px 80px -28px rgba(0, 0, 0, .8), 0 8px 24px -12px rgba(0, 0, 0, .5);
    --grad-text: linear-gradient(100deg, #C4B2FF 0%, #D08BFF 35%, #FF7BA9 70%, #FFC24D 100%);
    color-scheme: dark;
  }
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }
p { margin: 0; }
::selection { background: #8B6BD6; color: #fff; }
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 3px; border-radius: 8px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: var(--canvas); padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 12px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.aura { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aura i { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.aura .a1 { width: 560px; height: 560px; background: #A78BFA; top: -160px; left: -140px; animation: drift1 22s ease-in-out infinite; }
.aura .a2 { width: 480px; height: 480px; background: #FF8FB1; top: 40px; right: -160px; animation: drift2 26s ease-in-out infinite; }
.aura .a3 { width: 420px; height: 420px; background: #FFD27A; bottom: -180px; left: 38%; opacity: .42; animation: drift3 30s ease-in-out infinite; }
@media (prefers-color-scheme: dark) {
  .aura i { opacity: .28; }
  .aura .a3 { opacity: .16; }
}
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(22, 17, 42, .06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}
@media (prefers-color-scheme: dark) { .grain { background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px); } }
@keyframes drift1 { 50% { transform: translate(60px, 40px) scale(1.08); } }
@keyframes drift2 { 50% { transform: translate(-50px, 60px) scale(.94); } }
@keyframes drift3 { 50% { transform: translate(-70px, -40px) scale(1.1); } }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brand b { color: var(--brand); font-weight: 700; }
.mark {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(91, 63, 168, .7);
}
.mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--ink-2); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: var(--brand-soft); }
.nav-cta { margin-left: 8px; }
.menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; place-items: center; }
.menu-btn svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: grid; }
  .nav.open { background: var(--canvas); border-bottom-color: var(--line); }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--canvas); padding: 8px var(--gutter) 20px; border-bottom: 1px solid var(--line); gap: 2px;
    box-shadow: 0 30px 40px -20px rgba(22, 17, 42, .25);
  }
  .nav.open .nav-links a { padding: 14px 12px; font-size: 17px; border-radius: 12px; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: 16px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s, background .2s;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 28px -12px rgba(91, 63, 168, .8); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(91, 63, 168, .9); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-2); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 15px; border-radius: 13px; }
.store {
  display: inline-flex; align-items: center; gap: 12px; height: 60px; padding: 0 22px 0 16px;
  border-radius: 18px; background: #16112A; color: #fff; border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 14px 30px -16px rgba(22, 17, 42, .7); transition: transform .2s, box-shadow .2s;
  position: relative;
}
.store:hover { transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex: none; }
.store span { display: flex; flex-direction: column; line-height: 1.15; }
.store small { font-size: 11.5px; opacity: .7; font-weight: 600; letter-spacing: .02em; }
.store strong { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.store .soon {
  position: absolute; top: -9px; right: -8px; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  background: var(--amber); color: #2A1B00; padding: 3px 9px; border-radius: 999px; box-shadow: 0 4px 10px -4px rgba(232, 163, 23, .8);
}
@media (prefers-color-scheme: dark) { .store { background: #fff; color: #16112A; border-color: transparent; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.section { position: relative; padding: clamp(64px, 8vw, 104px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); margin: 16px 0 18px; }
.section-head p { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); }
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero { position: relative; padding: 148px 0 72px; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: 14px; font-weight: 700; color: var(--ink-2);
}
.pill .dot { display: grid; place-items: center; height: 24px; padding: 0 9px; border-radius: 999px; background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.hero h1 { font-size: clamp(50px, 8.2vw, 96px); letter-spacing: -0.035em; line-height: .98; margin: 22px 0 24px; }
.hero h1 .grad { display: inline-block; padding-bottom: .08em; }
.hero .lead { font-size: clamp(18px, 1.9vw, 21px); color: var(--ink-2); max-width: 520px; line-height: 1.55; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; color: var(--ink-3); font-size: 14.5px; font-weight: 600; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 18px; height: 18px; color: var(--green); }
.stage { position: relative; height: 640px; display: grid; place-items: center; }
.phone {
  position: relative; width: 300px; height: 616px; border-radius: 48px; padding: 11px;
  background: linear-gradient(160deg, #2A2342, #120E1F); box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
  transform: rotate(-3deg);
}
.phone::before { content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; border-radius: 20px; background: #0A0712; z-index: 3; }
.screen {
  position: relative; height: 100%; border-radius: 38px; overflow: hidden;
  background: linear-gradient(180deg, #F6F2FF 0%, #FBF9FF 40%, #fff 100%); color: #16112A;
  font-size: 12px;
}
.screen .glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(50px); opacity: .5; }
.screen .g1 { background: #B9A4FF; top: -120px; left: -60px; }
.screen .g2 { background: #FFB3C9; top: -80px; right: -120px; }
.s-top { position: relative; display: flex; justify-content: space-between; padding: 18px 26px 0; font-weight: 700; font-size: 12.5px; }
.s-top i { display: inline-block; width: 16px; height: 9px; border-radius: 3px; border: 1.5px solid #16112A; margin-left: 4px; position: relative; top: 1px; }
.s-body { position: relative; padding: 22px 16px 0; }
.s-hello { font-size: 12px; color: #7D7694; font-weight: 600; }
.s-title { font-family: var(--font-display); font-size: 25px; font-weight: 700; letter-spacing: -0.03em; margin: 2px 0 12px; }
.s-title b { color: #5B3FA8; }
.s-search { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; border-radius: 13px; background: rgba(255, 255, 255, .85); border: 1px solid rgba(22, 17, 42, .07); color: #7D7694; font-weight: 600; box-shadow: 0 4px 14px -8px rgba(60, 35, 130, .3); }
.s-search svg { width: 14px; height: 14px; }
.s-chips { display: flex; gap: 6px; margin: 12px 0 14px; }
.s-chips span { padding: 6px 10px; border-radius: 999px; background: #fff; border: 1px solid rgba(22, 17, 42, .07); font-weight: 700; font-size: 11px; white-space: nowrap; }
.s-chips span.on { background: #5B3FA8; color: #fff; border-color: #5B3FA8; }
.ev { border-radius: 18px; background: #fff; box-shadow: 0 8px 22px -12px rgba(60, 35, 130, .35), 0 0 0 1px rgba(22, 17, 42, .05); overflow: hidden; margin-bottom: 11px; }
.ev-cover { position: relative; height: 84px; padding: 10px; display: flex; justify-content: space-between; align-items: flex-start; }
.ev-cover.c1 { background: linear-gradient(135deg, #1F7A4D, #4FBF7F); }
.ev-cover.c2 { background: linear-gradient(135deg, #6C4BE8, #A35BFF); }
.ev-cover.c3 { background: linear-gradient(135deg, #6F4E37, #C19A6B); }
.ev-cover .emo { font-size: 34px; line-height: 1; position: absolute; right: 12px; bottom: 6px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2)); }
.ev-cover .tag { background: rgba(255, 255, 255, .92); color: #16112A; font-weight: 800; font-size: 10px; padding: 4px 8px; border-radius: 999px; }
.ev-body { padding: 10px 12px 12px; }
.ev-body h4 { font-size: 13.5px; letter-spacing: -0.01em; line-height: 1.25; }
.ev-meta { display: flex; gap: 8px; color: #7D7694; font-weight: 600; font-size: 10.5px; margin-top: 4px; }
.ev-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; }
.faces { display: flex; }
.faces i { width: 21px; height: 21px; border-radius: 50%; border: 2px solid #fff; margin-left: -6px; display: grid; place-items: center; font-style: normal; font-size: 9px; font-weight: 800; color: #fff; }
.faces i:first-child { margin-left: 0; }
.faces i:nth-child(1) { background: #F59E0B; }
.faces i:nth-child(2) { background: #EC4899; }
.faces i:nth-child(3) { background: #0EA5E9; }
.faces i:nth-child(4) { background: #5B3FA8; }
.seats { font-size: 10px; font-weight: 800; color: #5B3FA8; background: #EEE8FC; padding: 4px 8px; border-radius: 999px; }
.s-tabs {
  position: absolute; left: 12px; right: 12px; bottom: 12px; height: 58px; border-radius: 22px;
  background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -12px rgba(60, 35, 130, .45), 0 0 0 1px rgba(22, 17, 42, .05);
  display: flex; justify-content: space-around; align-items: center;
}
.s-tabs span { width: 22px; height: 22px; color: #A39BB8; display: grid; place-items: center; }
.s-tabs span.on { color: #5B3FA8; }
.s-tabs span.plus { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, #5B3FA8, #E8376F); color: #fff; box-shadow: 0 8px 16px -8px rgba(91, 63, 168, .9); }
.s-tabs svg { width: 20px; height: 20px; }
.float {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 11px 16px 11px 11px;
  border-radius: 18px; background: var(--glass); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow); font-size: 14px; font-weight: 700; white-space: nowrap;
  animation: bob 6s ease-in-out infinite;
}
.float small { display: block; font-size: 12px; color: var(--ink-3); font-weight: 600; }
.float .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.float .ic svg { width: 19px; height: 19px; }
.f1 { top: 150px; left: -80px; }
.f1 .ic { background: linear-gradient(135deg, #10B981, #047857); }
.f2 { top: 300px; right: -50px; animation-delay: -2s; }
.f2 .ic { background: linear-gradient(135deg, #F59E0B, #B45309); }
.f3 { bottom: 60px; left: -70px; animation-delay: -4s; }
.f3 .ic { background: linear-gradient(135deg, #8B5CF6, #E8376F); }
@keyframes bob { 50% { transform: translateY(-10px); } }
@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 20px; }
  .hero .copy { text-align: center; }
  .hero .lead { margin: 0 auto; }
  .hero .actions, .trust { justify-content: center; }
  .stage { height: 600px; }
}
@media (max-width: 520px) {
  .stage { height: 540px; }
  .phone { transform: rotate(-3deg) scale(.86); }
  .f1 { left: -4px; top: 40px; } .f2 { right: -4px; top: 230px; } .f3 { left: 4px; bottom: 40px; }
  .float { font-size: 13px; padding: 9px 13px 9px 9px; }
  .float .ic { width: 32px; height: 32px; border-radius: 10px; }
  .hero .actions .store { flex: 1 1 100%; justify-content: center; }
}
.marquee { position: relative; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.track { display: flex; gap: 12px; width: max-content; animation: scroll 48s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.track span { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-weight: 700; font-size: 15.5px; color: var(--ink-2); white-space: nowrap; }
.track span em { font-style: normal; font-size: 19px; }
@keyframes scroll { to { transform: translateX(-50%); } }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 32px;
  display: flex; flex-direction: column;
}
.card .num { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--brand); background: var(--brand-soft); width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; }
.card h3 { font-size: clamp(25px, 2.6vw, 32px); margin: 18px 0 10px; }
.card p { color: var(--ink-2); font-size: 16.5px; max-width: 430px; }
.card .viz { margin-top: auto; padding-top: 28px; }
.b1 { grid-column: span 7; }
.b2 { grid-column: span 5; }
.b3 { grid-column: span 5; }
.b4 { grid-column: span 7; }
@media (max-width: 900px) { .b1, .b2, .b3, .b4 { grid-column: span 12; } .card { padding: 26px; } }
.mini { display: grid; gap: 10px; }
.mini-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); }
.mini-row .emo { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; flex: none; }
.mini-row .t { font-weight: 700; font-size: 15px; line-height: 1.3; }
.mini-row .m { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.mini-row .d { margin-left: auto; font-size: 12.5px; font-weight: 800; color: var(--brand); background: var(--brand-soft); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.e-green { background: linear-gradient(135deg, #1F7A4D, #4FBF7F); }
.e-violet { background: linear-gradient(135deg, #6C4BE8, #A35BFF); }
.e-coffee { background: linear-gradient(135deg, #6F4E37, #C19A6B); }
.e-sun { background: linear-gradient(135deg, #FF6B4A, #FF9E2C); }
.qr-wrap { display: flex; align-items: center; gap: 20px; }
.qr { width: 132px; height: 132px; padding: 12px; border-radius: 22px; background: #fff; box-shadow: 0 10px 30px -14px rgba(60, 35, 130, .5), 0 0 0 1px rgba(22, 17, 42, .06); flex: none; position: relative; }
.qr svg { width: 100%; height: 100%; }
.qr::after { content: ''; position: absolute; left: 10px; right: 10px; height: 2px; top: 14px; background: linear-gradient(90deg, transparent, #10B981, transparent); box-shadow: 0 0 12px #10B981; animation: scan 2.6s ease-in-out infinite; }
@keyframes scan { 50% { top: 116px; } }
.qr-side { display: grid; gap: 8px; }
.badge-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; font-weight: 700; font-size: 14px; background: var(--surface-2); border: 1px solid var(--line); width: fit-content; }
.badge-chip.ok { color: var(--green); }
.badge-chip svg { width: 16px; height: 16px; }
.lock-card { border-radius: 20px; padding: 18px; background: var(--surface-2); border: 1px solid var(--line); }
.lock-card .row { display: flex; align-items: center; gap: 12px; }
.lock-card .ic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, #5B3FA8, #8B5CF6); color: #fff; flex: none; }
.lock-card .ic svg { width: 20px; height: 20px; }
.lock-card .addr { font-weight: 700; font-size: 15px; filter: blur(5px); user-select: none; }
.lock-card .hint { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.bar { height: 8px; border-radius: 8px; background: var(--line); margin-top: 16px; overflow: hidden; }
.bar i { display: block; height: 100%; width: 68%; border-radius: 8px; background: var(--grad-brand); }
.bar-foot { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-3); font-weight: 700; margin-top: 8px; }
.chat { display: grid; gap: 9px; }
.bubble { max-width: 78%; padding: 11px 15px; border-radius: 20px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.bubble.in { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.bubble.out { margin-left: auto; color: #fff; background: linear-gradient(135deg, #5B3FA8, #A35BFF 60%, #E8376F); border-bottom-right-radius: 6px; }
.bubble small { display: block; font-size: 12px; opacity: .7; font-weight: 700; margin-bottom: 2px; }
.plan { display: flex; align-items: center; gap: 12px; margin-top: 4px; padding: 12px; border-radius: 18px; border: 1.5px dashed var(--line-2); }
.plan .emo { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex: none; }
.plan b { display: block; font-size: 14.5px; }
.plan span { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.principle .ic { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.principle .ic svg { width: 24px; height: 24px; }
.principle h3 { font-size: 23px; margin-bottom: 10px; }
.principle p { color: var(--ink-2); font-size: 16px; }
.i-violet { background: linear-gradient(135deg, #5B3FA8, #8B5CF6); box-shadow: 0 10px 22px -12px #5B3FA8; }
.i-amber { background: linear-gradient(135deg, #F59E0B, #B45309); box-shadow: 0 10px 22px -12px #B45309; }
.i-pink { background: linear-gradient(135deg, #EC4899, #BE185D); box-shadow: 0 10px 22px -12px #BE185D; }
.i-green { background: linear-gradient(135deg, #10B981, #047857); box-shadow: 0 10px 22px -12px #047857; }
.i-cyan { background: linear-gradient(135deg, #22D3EE, #0E7490); box-shadow: 0 10px 22px -12px #0E7490; }
.i-slate { background: linear-gradient(135deg, #64748B, #334155); box-shadow: 0 10px 22px -12px #334155; }
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; } }
.dark {
  position: relative; overflow: hidden; color: #F3F0FF;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(139, 92, 246, .35), transparent 60%),
              radial-gradient(900px 500px at -10% 110%, rgba(232, 55, 111, .25), transparent 60%),
              #0E0A1A;
  border-radius: clamp(28px, 4vw, 48px);
  margin: 0 clamp(8px, 1.5vw, 20px);
}
.dark .eyebrow { color: #C4B2FF; }
.dark .section-head p { color: #BDB5D6; }
.dark .grad { background: linear-gradient(100deg, #C4B2FF, #FF8FB1 60%, #FFC24D); -webkit-background-clip: text; background-clip: text; }
.safety { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .08); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); }
.safety > div { background: #120E20; padding: 30px; transition: background .3s; }
.safety > div:hover { background: #17122B; }
.safety .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.safety .ic svg { width: 22px; height: 22px; }
.safety h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.safety p { color: #A9A1C2; font-size: 15.5px; }
.sos { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding: 18px 22px; border-radius: 20px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: #D6CFEA; font-size: 15.5px; }
.sos svg { width: 22px; height: 22px; color: #FF8FB1; flex: none; }
.sos b { color: #fff; }
@media (max-width: 900px) { .safety { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .safety { grid-template-columns: repeat(2, 1fr); } }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--ink-2); }
.checks li b { color: var(--ink); }
.checks svg { width: 24px; height: 24px; flex: none; color: var(--brand); margin-top: 1px; }
.creator { position: relative; border-radius: var(--r-xl); padding: 26px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.creator .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.creator .head b { font-family: var(--font-display); font-size: 20px; }
.creator .head span { font-size: 13px; font-weight: 800; color: var(--green); background: rgba(16, 185, 129, .12); padding: 5px 10px; border-radius: 999px; }
.field { border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); padding: 12px 14px; margin-bottom: 10px; }
.field label { display: block; font-size: 12px; color: var(--ink-3); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field div { font-weight: 700; font-size: 15.5px; margin-top: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stepper { display: flex; align-items: center; justify-content: space-between; }
.stepper i { font-style: normal; width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-2); font-weight: 800; }
.chips-sm { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.chips-sm span { font-size: 12.5px; font-weight: 800; padding: 6px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2); }
.chips-sm span.on { background: var(--brand); color: #fff; border-color: var(--brand); }
@media (prefers-color-scheme: dark) { .chips-sm span.on { color: #16112A; } }
.creator .btn { width: 100%; margin-top: 8px; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; } }
.levels { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.xp-card { border-radius: var(--r-xl); padding: 32px; color: #fff; background: linear-gradient(135deg, #3B2477 0%, #5B3FA8 45%, #9D3FA0 100%); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.xp-card::after { content: ''; position: absolute; width: 320px; height: 320px; right: -100px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 210, 122, .45), transparent 65%); }
.xp-card h3 { font-size: clamp(26px, 3vw, 34px); margin: 14px 0 10px; position: relative; }
.xp-card p { color: rgba(255, 255, 255, .8); max-width: 460px; position: relative; }
.xp-list { position: relative; display: grid; gap: 10px; margin-top: 26px; }
.xp-list div { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: 14px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .14); font-weight: 700; font-size: 15px; }
.xp-list div span { color: #FFD27A; font-family: var(--font-display); }
.xp-list div.no { opacity: .55; }
.xp-list div.no span { color: rgba(255, 255, 255, .8); }
.badges { border-radius: var(--r-xl); padding: 32px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.badges h3 { font-size: 24px; margin-bottom: 8px; }
.badges p { color: var(--ink-2); font-size: 16px; }
.badge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.badge-grid div { aspect-ratio: 1; border-radius: 22px; display: grid; place-items: center; font-size: 34px; position: relative; }
.badge-grid div::after { content: ''; position: absolute; inset: 6px; border-radius: 17px; border: 1.5px solid rgba(255, 255, 255, .35); }
.badge-grid .lk { background: var(--surface-2); border: 1.5px dashed var(--line-2); filter: grayscale(1); opacity: .45; }
.badge-grid .lk::after { display: none; }
@media (max-width: 900px) { .levels { grid-template-columns: 1fr; } }
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border-radius: 20px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: rgba(139, 107, 214, .45); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 32px; height: 32px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex: none; transition: transform .3s; }
.faq summary i svg { width: 16px; height: 16px; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; color: var(--ink-2); font-size: 16.5px; }
.cta { position: relative; overflow: hidden; border-radius: clamp(28px, 4vw, 44px); padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 72px); color: #fff; background: var(--grad-cta); text-align: center; box-shadow: var(--shadow-lg); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 20% 0%, rgba(255, 210, 122, .35), transparent 60%), radial-gradient(500px 300px at 90% 100%, rgba(34, 211, 238, .25), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(36px, 5.6vw, 68px); letter-spacing: -0.03em; }
.cta p { font-size: clamp(17px, 1.8vw, 20px); color: rgba(255, 255, 255, .85); max-width: 560px; margin: 18px auto 0; }
.cta .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.cta .store { background: #fff; color: #16112A; }
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.contact a { display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.contact a:hover { transform: translateY(-3px); border-color: var(--brand-2); }
.contact .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex: none; }
.contact .ic svg { width: 21px; height: 21px; }
.contact b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.contact span span { font-size: 14.5px; color: var(--ink-3); font-weight: 600; word-break: break-word; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.footer { padding: 64px 0 36px; margin-top: 24px; border-top: 1px solid var(--line); background: var(--surface); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid p { color: var(--ink-3); font-size: 15px; margin-top: 14px; max-width: 300px; }
.foot-grid h4 { font-family: var(--font-body); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-grid a { color: var(--ink-2); font-weight: 600; font-size: 15.5px; transition: color .2s; }
.foot-grid a:hover { color: var(--brand); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; font-weight: 600; }
.foot-bottom .age { display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .age b { font-family: var(--font-display); font-size: 12px; padding: 3px 8px; border-radius: 8px; border: 1.5px solid currentColor; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > div:first-child { grid-column: span 2; } }
.doc-hero { position: relative; padding: 140px 0 48px; overflow: hidden; }
.doc-hero .wrap { position: relative; z-index: 1; max-width: 860px; }
.doc-hero h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -0.03em; margin: 16px 0 16px; }
.doc-hero p { color: var(--ink-2); font-size: 18.5px; max-width: 640px; }
.doc-meta { display: inline-flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.doc-meta span { font-size: 13.5px; font-weight: 700; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.doc { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.doc-card { border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(24px, 5vw, 56px); }
.md { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.md h1, .md h2, .md h3 { color: var(--ink); margin: 1.6em 0 .6em; }
.md h1 { font-size: 30px; } .md h2 { font-size: 24px; } .md h3 { font-size: 19px; }
.md > :first-child { margin-top: 0; }
.md p { margin: 0 0 1em; }
.md ul { padding-left: 1.3em; margin: 0 0 1em; }
.md li { margin: .35em 0; }
.md li::marker { color: var(--brand-2); }
.md b, .md strong { color: var(--ink); }
.md a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.skel { height: 16px; border-radius: 8px; background: linear-gradient(90deg, var(--surface-2), var(--line), var(--surface-2)); background-size: 200% 100%; animation: sh 1.4s linear infinite; margin: 12px 0; }
.skel.w1 { width: 40%; height: 26px; } .skel.w2 { width: 92%; } .skel.w3 { width: 78%; } .skel.w4 { width: 85%; }
@keyframes sh { to { background-position: -200% 0; } }
.note { display: flex; gap: 14px; padding: 18px 20px; border-radius: 18px; background: var(--brand-soft); color: var(--ink-2); font-size: 15.5px; margin-top: 18px; }
.note svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 1px; }
.note.warn { background: var(--amber-soft); }
.note.warn svg { color: #B45309; }
.note b { color: var(--ink); }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps li { counter-increment: s; display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 18px; background: var(--surface-2); border: 1px solid var(--line); font-size: 16.5px; color: var(--ink-2); }
.steps li::before { content: counter(s); width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; background: var(--grad-brand); color: #fff; font-family: var(--font-display); font-weight: 700; }
.steps li b { color: var(--ink); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.two > div { border-radius: 20px; padding: 22px; border: 1px solid var(--line); background: var(--surface-2); }
.two h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.two h3 i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; }
.two h3 i svg { width: 16px; height: 16px; }
.two ul { margin: 0; padding-left: 1.1em; color: var(--ink-2); font-size: 15.5px; display: grid; gap: 6px; }
.doc h2.sec { font-size: clamp(24px, 3vw, 30px); margin: 44px 0 16px; }
.doc h2.sec:first-child { margin-top: 0; }
@media (max-width: 720px) { .two { grid-template-columns: 1fr; } }
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rule { border-radius: 24px; padding: 26px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.rule .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.rule .ic svg { width: 22px; height: 22px; }
.rule h3 { font-size: 21px; margin-bottom: 10px; }
.rule ul { margin: 0; padding-left: 1.1em; color: var(--ink-2); font-size: 15.5px; display: grid; gap: 7px; }
.rule li::marker { color: var(--brand-2); }
@media (max-width: 760px) { .rules { grid-template-columns: 1fr; } }
.nf { min-height: 100vh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; padding: 120px var(--gutter) 60px; }
.nf .inner { position: relative; z-index: 1; }
.nf h1 { font-size: clamp(90px, 18vw, 180px); letter-spacing: -0.05em; }
.nf p { color: var(--ink-2); font-size: 19px; margin: 8px 0 30px; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
.org-title { font-size: clamp(34px, 5vw, 56px); margin: 16px 0 0; }
.lnk { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.doc-card .btn { margin-top: 20px; }
.xp-card .eyebrow { color: #FFD27A; position: relative; }
.screen::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(180deg, rgba(255,255,255,0), #fff 55%); z-index: 1; }
.s-tabs { z-index: 2; }
.contact .ic + span { display: block; }
.store span.lbl { display: block; }
.brand { white-space: nowrap; }
@media (max-width: 900px) { .nav .nav-cta { display: none; } }
.doc-hero .aura, .doc-hero .grain { -webkit-mask-image: linear-gradient(#000 55%, transparent); mask-image: linear-gradient(#000 55%, transparent); }
.two p.md { margin-top: 12px; font-size: 15px; line-height: 1.6; }
.aura i{filter:none;opacity:1;will-change:transform}
.aura .a1{width:900px;height:900px;top:-420px;left:-380px;background:radial-gradient(circle,rgba(167,139,250,.55) 0%,rgba(167,139,250,0) 62%)}
.aura .a2{width:800px;height:800px;top:-240px;right:-400px;background:radial-gradient(circle,rgba(255,143,177,.45) 0%,rgba(255,143,177,0) 62%)}
.aura .a3{width:760px;height:760px;bottom:-460px;left:30%;background:radial-gradient(circle,rgba(255,210,122,.4) 0%,rgba(255,210,122,0) 62%)}
@media (prefers-color-scheme:dark){.aura .a1{background:radial-gradient(circle,rgba(139,92,246,.28) 0%,rgba(139,92,246,0) 62%)}.aura .a2{background:radial-gradient(circle,rgba(232,55,111,.2) 0%,rgba(232,55,111,0) 62%)}.aura .a3{background:radial-gradient(circle,rgba(245,158,11,.1) 0%,rgba(245,158,11,0) 62%)}}
.float,.pill{-webkit-backdrop-filter:none;backdrop-filter:none;background:var(--surface)}
