:root {
  --bg: #0b0d12;
  --surface: #11151d;
  --surface-2: #171c25;
  --surface-3: #1d2430;
  --line: #28303d;
  --line-strong: #394352;
  --text: #f5f7fb;
  --muted: #9ca6b5;
  --muted-2: #6f7b8c;
  --accent: #6d8cff;
  --accent-strong: #5577f3;
  --accent-soft: #1a2547;
  --success: #4ed79a;
  --success-soft: #112a22;
  --danger: #ff6b72;
  --danger-soft: #32191d;
  --warning: #f1c875;
  --shadow: 0 26px 70px rgba(0,0,0,.32);
  --header-bg: rgba(11,13,18,.94);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 17px;
  --safe-bottom: max(20px, env(safe-area-inset-bottom));
}

html[data-theme="light"] {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-2: #f8f9fb;
  --surface-3: #eef1f5;
  --line: #dde2e9;
  --line-strong: #c8d0db;
  --text: #111722;
  --muted: #667184;
  --muted-2: #8994a4;
  --accent: #315eea;
  --accent-strong: #234dcc;
  --accent-soft: #e9efff;
  --success: #129a64;
  --success-soft: #e8f8f1;
  --danger: #dc3e4b;
  --danger-soft: #fff0f1;
  --warning: #a36f0d;
  --shadow: 0 24px 65px rgba(33,43,58,.10);
  --header-bg: rgba(243,245,248,.94);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }


.startup-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 1;
  transition: opacity .38s ease, visibility .38s ease;
}
.startup-loader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.startup-loader-inner { width: min(76vw, 330px); text-align: center; }
.startup-loader strong { display: block; font-size: 24px; letter-spacing: .22em; font-weight: 800; }
.startup-loader small { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .32em; font-weight: 800; }
.startup-loader-lines { height: 18px; margin: 18px auto 0; display: flex; align-items: center; justify-content: center; gap: 5px; }
.startup-loader-lines span { width: 30px; height: 2px; border-radius: 999px; background: var(--line-strong); overflow: hidden; position: relative; }
.startup-loader-lines span::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-110%); animation: loadingLine 1.05s ease-in-out infinite; }
.startup-loader-lines span:nth-child(2)::after { animation-delay: .09s; }
.startup-loader-lines span:nth-child(3)::after { animation-delay: .18s; }
.startup-loader-lines span:nth-child(4)::after { animation-delay: .27s; }
.startup-loader-lines span:nth-child(5)::after { animation-delay: .36s; }
@keyframes loadingLine { 0%, 18% { transform: translateX(-110%); } 58%, 100% { transform: translateX(110%); } }

.app-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 max(20px, calc((100vw - 1080px)/2));
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.icon-button, .theme-toggle, .modal-back {
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-button:hover, .theme-toggle:hover, .modal-back:hover { border-color: var(--line-strong); background: var(--surface-3); }
.icon-button:active, .theme-toggle:active, .modal-back:active { transform: scale(.96); }
.icon-button {
  width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center;
}
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent); color: white; font-size: 14px; font-weight: 800; letter-spacing: -.02em;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 22%, transparent);
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 16px; line-height: 1; letter-spacing: .08em; }
.brand-copy small { font-size: 9px; letter-spacing: .20em; color: var(--muted); font-weight: 700; }
.brand.compact .brand-mark { width: 42px; height: 42px; }
.theme-toggle {
  height: 44px; padding: 0 14px; border-radius: 14px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
}
.theme-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon.sun { display: none; }
html[data-theme="light"] .theme-icon.sun { display: block; }
html[data-theme="light"] .theme-icon.moon { display: none; }

.main-content {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: 52px 0 30px;
}
.activation-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel-heading { display: block; }
.eyebrow, .stage-kicker, .drawer-label {
  margin: 0 0 8px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .18em;
}
.panel-heading h1 { margin: 0; font-size: clamp(31px, 6vw, 46px); line-height: 1.05; letter-spacing: -.045em; }
.lead { max-width: 560px; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.stepper { margin: 30px 0; padding: 18px 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-2); display: flex; align-items: center; }
.step { width: 64px; display: grid; justify-items: center; gap: 7px; color: var(--muted-2); transition: color .25s ease; }
.step span { width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 10px; display: grid; place-items: center; font-size: 11px; font-weight: 800; transition: all .25s ease; }
.step p { margin: 0; font-size: 9px; font-weight: 700; }
.step.is-active, .step.is-complete { color: var(--text); }
.step.is-active span { color: white; background: var(--accent); border-color: var(--accent); }
.step.is-complete span { color: var(--success); border-color: color-mix(in srgb, var(--success) 45%, var(--line)); background: var(--success-soft); }
.step-line { flex: 1; height: 1px; background: var(--line); position: relative; }
.step-line::after { content: ""; position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: var(--accent); transition: transform .35s ease; }
.step-line.is-complete::after { transform: scaleX(1); }

.stage-wrap { position: relative; }
.stage { animation: stageIn .28s ease both; }
.stage[hidden] { display: none !important; }
@keyframes stageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.stage-title-row { display: flex; align-items: center; gap: 13px; }
.step-badge { width: 44px; height: 44px; border-radius: 14px; background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line)); color: var(--accent); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.stage-kicker { margin-bottom: 4px; font-size: 9px; }
.stage h2 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.stage-description { margin: 13px 0 22px 57px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.field-label { display: block; margin: 0 0 8px; font-size: 11px; font-weight: 700; color: var(--muted); }
.input-shell { min-height: 56px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 16px; padding: 0 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.input-shell:focus-within { border-color: color-mix(in srgb, var(--accent) 58%, var(--line)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent); }
.input-shell svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: var(--muted-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.input-shell input, .input-shell textarea { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 14px; }
.input-shell input { height: 54px; }
.input-shell textarea { resize: vertical; min-height: 92px; padding: 16px 0; line-height: 1.55; }
.input-shell input::placeholder, .input-shell textarea::placeholder { color: var(--muted-2); }
.textarea-shell { align-items: flex-start; }
.textarea-shell svg { margin-top: 17px; }
.primary-button {
  width: 100%; min-height: 54px; margin-top: 18px; border: 0; border-radius: 16px; padding: 0 19px; background: var(--accent); color: white; font-size: 13px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease; box-shadow: 0 15px 34px color-mix(in srgb, var(--accent) 20%, transparent);
}
.primary-button:hover { background: var(--accent-strong); }
.primary-button:active { transform: translateY(1px) scale(.995); }
.primary-button:disabled { opacity: .55; cursor: wait; box-shadow: none; }
.primary-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.text-button { display: block; margin: 15px auto 0; border: 0; background: transparent; color: var(--muted); font-size: 11px; font-weight: 700; cursor: pointer; }
.text-button:hover { color: var(--text); }
.microcopy { margin: 12px auto 0; max-width: 560px; color: var(--muted-2); font-size: 10px; line-height: 1.55; text-align: center; }
.success-note, .ready-card { margin: 19px 0; border: 1px solid color-mix(in srgb, var(--success) 32%, var(--line)); background: var(--success-soft); border-radius: 16px; padding: 14px; display: flex; align-items: center; gap: 12px; }
.success-note svg, .ready-card svg { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: var(--success); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.success-note div, .ready-card div { display: grid; gap: 2px; }
.success-note strong, .ready-card strong { font-size: 12px; }
.success-note span, .ready-card span { color: var(--muted); font-size: 10px; line-height: 1.4; }

.ad-progress-card { margin-top: 20px; padding: 18px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; }
.ad-progress-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--muted); }
.ad-progress-top strong { color: var(--text); }
.progress-track { height: 7px; margin-top: 13px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.progress-fill { width: 0%; height: 100%; border-radius: inherit; background: var(--accent); transition: width .3s ease; }
.ad-dots { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 13px; }
.ad-dot { height: 34px; border: 1px solid var(--line); border-radius: 11px; display: grid; place-items: center; color: var(--muted-2); font-size: 10px; font-weight: 800; }
.ad-dot.done { color: var(--success); background: var(--success-soft); border-color: color-mix(in srgb, var(--success) 34%, var(--line)); }

.result-stage { padding: 16px 0 2px; text-align: center; }
.result-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 24px; display: grid; place-items: center; }
.result-icon.success { background: var(--success-soft); color: var(--success); border: 1px solid color-mix(in srgb, var(--success) 34%, var(--line)); }
.result-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.result-stage h2 { margin-top: 4px; font-size: 30px; }
.result-stage > p:not(.stage-kicker) { max-width: 520px; margin: 12px auto 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.public-stats {
  margin-top: 18px;
  padding: 23px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.public-stat { min-width: 0; padding: 10px 8px; text-align: center; }
.public-stat strong { display: block; color: var(--accent); font-size: clamp(22px, 5.3vw, 31px); line-height: 1.05; letter-spacing: -.035em; font-weight: 800; }
.public-stat small { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; line-height: 1.3; }

.community-section {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.community-heading h2 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.community-heading > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.community-list { display: grid; gap: 9px; margin-top: 20px; }
.community-item {
  min-height: 68px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-2);
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 11px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.community-item:hover { border-color: var(--line-strong); background: var(--surface-3); transform: translateX(2px); }
.community-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-3); color: var(--accent); }
.community-icon svg, .community-arrow { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.community-item > span:nth-child(2) { display: grid; gap: 2px; }
.community-item strong { font-size: 12px; }
.community-item small { color: var(--muted); font-size: 9px; }
.community-arrow { color: var(--muted-2); width: 17px; }
.footer { padding: 28px 20px calc(28px + var(--safe-bottom)); color: var(--muted-2); text-align: center; font-size: 10px; }
.footer span { margin: 0 7px; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.52); opacity: 0; transition: opacity .25s ease; }
.drawer-backdrop.is-open { opacity: 1; }
.side-drawer { position: fixed; z-index: 60; inset: 0 auto 0 0; width: min(88vw, 390px); background: var(--surface); border-right: 1px solid var(--line); transform: translateX(-102%); transition: transform .3s cubic-bezier(.2,.8,.2,1); box-shadow: 28px 0 70px rgba(0,0,0,.25); display: flex; flex-direction: column; }
.side-drawer.is-open { transform: translateX(0); }
.drawer-header { height: 78px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; padding: 0; overflow: hidden; }
.drawer-body-empty { min-height: 1px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.78); display: grid; place-items: center; padding: 20px; }
.modal-backdrop[hidden] { display: none !important; }
.ad-modal { width: min(100%, 430px); border-radius: 26px; background: var(--surface); border: 1px solid var(--line-strong); padding: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.48); text-align: center; animation: modalIn .25s ease both; }
@keyframes modalIn { from { opacity: 0; transform: scale(.97) translateY(8px); } to { opacity: 1; transform: none; } }
.modal-back { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; }
.modal-back svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ad-modal-icon { width: 64px; height: 64px; margin: 15px auto 16px; border-radius: 21px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); }
.ad-modal-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ad-modal h2 { margin: 0; font-size: 25px; letter-spacing: -.03em; }
.ad-modal > p:not(.stage-kicker) { margin: 10px auto 0; max-width: 340px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.countdown-box { width: 112px; margin: 20px auto 0; padding: 14px 10px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-2); display: grid; }
.countdown-box span { font-size: 26px; font-weight: 800; }
.countdown-box small { color: var(--muted); font-size: 8px; }

body.drawer-open, body.modal-open { overflow: hidden; }

@media (max-width: 680px) {
  .topbar { height: 72px; padding: 0 18px; grid-template-columns: 44px 1fr auto; }
  .icon-button { width: 42px; height: 42px; border-radius: 14px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .theme-toggle { width: 42px; padding: 0; justify-content: center; }
  .theme-toggle span { display: none; }
  .main-content { width: min(100% - 24px, 820px); padding-top: 24px; }
  .activation-panel { padding: 20px; border-radius: 23px; }
  .panel-heading { display: block; }
  .stepper { padding: 14px 8px; margin: 22px 0; }
  .step { width: 50px; }
  .step p { display: none; }
  .step span { width: 29px; height: 29px; }
  .stage-description { margin-left: 0; }
  .public-stats { padding: 18px 8px; }
  .public-stat { padding: 8px 4px; }
  .public-stat strong { font-size: 22px; }
  .public-stat small { font-size: 8px; }
  .community-section { padding: 18px; }
  .footer { font-size: 9px; }
}

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


/* v1.3.0 DATZON Free shell */
.brand-logo {
  width: 66px;
  height: 42px;
  overflow: hidden;
  padding: 5px 7px;
  background: #f7f4ec;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.brand.compact .brand-logo { width: 62px; height: 40px; }
.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: none;
}

.tutorial-section,
.support-section {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.tutorial-section { padding: 24px; }
.section-heading h2,
.support-copy h2 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.section-heading > p:last-child,
.support-copy > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.tutorial-video-shell {
  position: relative;
  width: min(100%, 390px);
  margin: 20px auto 0;
  aspect-ratio: 1080 / 2400;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #05070a;
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}
.tutorial-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #05070a;
}
.video-sound-prompt {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 58px;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(10,12,17,.88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.video-sound-prompt[hidden] { display: none !important; }
.video-sound-prompt svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.support-section {
  padding: 20px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
}
.support-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 15px; color: var(--success); background: var(--success-soft);
  border: 1px solid color-mix(in srgb, var(--success) 32%, var(--line));
}
.support-icon svg {
  width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.support-copy .eyebrow { margin-bottom: 4px; }
.support-copy h2 { font-size: 18px; }
.support-copy > p:last-child { font-size: 10px; margin-top: 5px; }
.support-button {
  min-height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 18%, transparent);
}
.support-button:hover { background: var(--accent-strong); }
.support-button svg {
  width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 680px) {
  .tutorial-section { padding: 18px; }
  .tutorial-video-shell { width: min(100%, 340px); border-radius: 21px; }
  .support-section { grid-template-columns: 44px 1fr; padding: 18px; }
  .support-icon { width: 44px; height: 44px; border-radius: 14px; }
  .support-button { grid-column: 1 / -1; width: 100%; margin-top: 2px; }
}


/* MUSIC DATZON notification style, positioned above the header */
.toast-stack{position:fixed;z-index:140;top:calc(12px + env(safe-area-inset-top,0px));left:50%;width:min(calc(100% - 30px),530px);height:104px;transform:translateX(-50%);pointer-events:none;perspective:900px}
.ios-toast{position:absolute;inset:0 0 auto;min-height:74px;display:grid;grid-template-columns:42px minmax(0,1fr) 42px;align-items:center;gap:12px;padding:13px 14px;border:1px solid rgba(255,255,255,.28);border-radius:25px;color:rgba(255,255,255,.97);background:linear-gradient(118deg,rgba(255,255,255,.20),rgba(255,255,255,.055) 34%,rgba(255,255,255,.025) 68%,rgba(255,255,255,.11)),rgba(24,27,31,.54);-webkit-backdrop-filter:blur(15px) saturate(1.18);backdrop-filter:blur(15px) saturate(1.18);box-shadow:0 18px 40px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.34),inset 0 -1px 0 rgba(255,255,255,.08),0 0 0 .5px rgba(255,255,255,.08);overflow:hidden;transform-origin:center top;transition:transform .3s cubic-bezier(.2,.8,.2,1),opacity .26s ease,filter .3s ease}
.ios-toast::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(120% 95% at 12% -12%,rgba(255,255,255,.38),transparent 44%),linear-gradient(110deg,rgba(255,255,255,.16),transparent 35%,transparent 70%,rgba(255,255,255,.07));mix-blend-mode:screen}
.ios-toast>*{position:relative;z-index:1}.ios-toast-copy{min-width:0;display:block}.ios-toast strong{display:block;min-width:0;color:rgba(255,255,255,.97);font-size:13px;line-height:1.3;font-weight:800;text-shadow:0 1px 2px rgba(0,0,0,.28);overflow-wrap:anywhere}.ios-toast small{display:block;margin-top:3px;color:rgba(255,255,255,.72);font-size:9.2px;line-height:1.35;font-weight:500;overflow-wrap:anywhere}
.ios-toast-status,.ios-toast-bell{width:42px;height:42px;border-radius:50%;display:grid;place-items:center}.ios-toast-status{color:#1ed760;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.19);box-shadow:inset 0 1px 0 rgba(255,255,255,.16)}.ios-toast-status svg{width:25px;height:25px}.ios-toast-error .ios-toast-status{color:#ff4d61;background:rgba(255,77,97,.12);border-color:rgba(255,102,120,.28);box-shadow:inset 0 1px 0 rgba(255,255,255,.14),0 0 0 1px rgba(255,77,97,.04)}.ios-toast-progress .ios-toast-status,.ios-toast-info .ios-toast-status{color:#7db8ff;background:rgba(90,157,255,.11);border-color:rgba(122,182,255,.20)}.ios-toast-progress .ios-toast-status svg{animation:iosToastSpin 1s linear infinite}.ios-toast-bell{color:#fff;background:rgba(5,7,10,.46);border:1px solid rgba(255,255,255,.16);box-shadow:inset 0 1px 0 rgba(255,255,255,.13)}.ios-toast-bell svg{width:21px;height:21px}
.ios-toast:nth-child(1){z-index:3;transform:translateY(0) scale(1) rotateX(0);opacity:1;filter:none}.ios-toast:nth-child(2){z-index:2;transform:translateY(14px) scale(.955) rotateX(-2deg);opacity:.72;filter:brightness(.92)}.ios-toast.is-entering{transform:translateY(-24px) scale(.94) rotateX(7deg)!important;opacity:0!important}.ios-toast.is-leaving{transform:translateY(-26px) scale(.9) rotateX(9deg)!important;opacity:0!important}@keyframes iosToastSpin{to{transform:rotate(360deg)}}
html[data-theme="light"] .ios-toast{color:rgba(255,255,255,.97)}
@media(max-width:680px){.brand-mark.brand-logo{width:58px;height:38px}.brand.compact .brand-logo{width:58px;height:38px}.ios-toast{-webkit-backdrop-filter:blur(13px) saturate(1.14);backdrop-filter:blur(13px) saturate(1.14)}}
@media(prefers-reduced-motion:reduce){.ios-toast{transition:none!important;animation:none!important}.ios-toast-progress .ios-toast-status svg{animation:none!important}}
@supports not ((-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px))){.ios-toast{background:rgba(27,30,35,.94)}}


/* v1.4.0 - text-only DATZON Activation header and compact Home drawer */
.brand-text-only{
  gap:0;
  min-width:0;
  align-self:center;
}
.brand-text-only .brand-copy{
  gap:3px;
  justify-items:start;
}
.brand-text-only .brand-copy strong{
  font-size:16px;
  letter-spacing:.10em;
}
.brand-text-only .brand-copy small{
  font-size:8px;
  letter-spacing:.24em;
}
.drawer-body.drawer-nav{
  flex:1;
  padding:18px;
  overflow:auto;
}
.drawer-nav-item{
  min-height:70px;
  display:grid;
  grid-template-columns:44px 1fr 20px;
  align-items:center;
  gap:12px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:17px;
  background:var(--surface-2);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.drawer-nav-item:hover{border-color:var(--line-strong);background:var(--surface-3)}
.drawer-nav-item:active{transform:scale(.985)}
.drawer-nav-icon{
  width:44px;
  height:44px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:var(--accent-soft);
  color:var(--accent);
}
.drawer-nav-icon svg,.drawer-nav-arrow{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.drawer-nav-copy{display:grid;gap:3px;min-width:0}
.drawer-nav-copy strong{font-size:13px}
.drawer-nav-copy small{font-size:9px;color:var(--muted)}
.drawer-nav-arrow{color:var(--muted-2)}
@media(max-width:680px){
  .brand-text-only .brand-copy strong{font-size:14px}
  .brand-text-only .brand-copy small{font-size:7.5px}
}
