:root {
  --bg: #050814;
  --bg-2: #070b1c;
  --bg-3: #0a1028;
  --text: #f4f7ff;
  --muted: #8b9bb8;
  --accent: #5b6cff;
  --accent-2: #7c83ff;
  --cyan: #67e8f9;
  --line: rgba(148, 163, 184, 0.18);
  --card: rgba(10, 16, 40, 0.72);
  --wrap: min(1120px, calc(100% - 40px));
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  padding-top: 72px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(91, 108, 255, 0.28), transparent 60%),
    radial-gradient(700px 420px at 8% 18%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(800px 500px at 50% 110%, rgba(168, 85, 247, 0.12), transparent 55%),
    var(--bg);
}
a { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: var(--wrap); margin: 0 auto; }

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(5, 8, 20, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
body.nav-open .top {
  background: #050814;
  backdrop-filter: none;
}
.bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  justify-self: start;
}
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: contain;
}
.brand strong { font-size: 17px; letter-spacing: -0.02em; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}
.bar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
  grid-column: 3;
}
.account-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  flex: 0 0 auto;
}
.account-btn svg { width: 20px; height: 20px; }
.account-btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); }
.account-btn.is-in {
  color: var(--accent-2);
  border-color: rgba(124, 131, 255, 0.45);
  background: rgba(91, 108, 255, 0.16);
}
.account-btn[hidden] { display: none !important; }
.nav-burger,
.nav-burger::before,
.nav-burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-burger { position: relative; }
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-burger::before { top: -6px; }
.nav-burger::after { top: 6px; }
#site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
  grid-column: 2;
}
#site-nav a,
#site-nav .js-download {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
#site-nav a:hover,
#site-nav .js-download:hover { color: var(--text); }
#site-nav .js-download {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
#site-nav .btn-nav { display: none; }
.btn-top {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #6d74ff, #4f46e5);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 28px -12px rgba(79, 70, 229, 0.9);
  cursor: pointer;
}
.btn:hover { filter: brightness(1.08); }
.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-shine > span {
  position: relative;
  z-index: 1;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  transform: skewX(-25deg);
  pointer-events: none;
  animation: btn-shine 7s ease-out infinite;
}
@keyframes btn-shine {
  0% { left: -80%; }
  11% { left: 130%; }
  11.01%, 100% { left: -80%; }
}
.btn:disabled {
  cursor: not-allowed;
  filter: none;
  opacity: 0.92;
}
.btn-ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); }
.btn-ghost:disabled:hover { background: transparent; }

.hero { padding: 56px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 span {
  color: #c4b5fd;
  background-image: linear-gradient(
    90deg,
    #d946ef,
    #a78bfa,
    #818cf8,
    #93c5fd,
    #a78bfa,
    #d946ef
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: all-of-it-shift 18s ease-in-out infinite;
}
@keyframes all-of-it-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 17px;
}
.hero-cta {
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-cta .btn { min-width: 168px; }
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.trust li,
.cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust svg,
.cta-points svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% -8% 8%;
  background:
    radial-gradient(circle at 70% 40%, rgba(34, 197, 94, 0.28), transparent 42%),
    radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.28), transparent 46%);
  filter: blur(28px);
  z-index: 0;
}
.hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px -24px rgba(0, 0, 0, 0.7);
}
.hero-frame img,
.hero-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.68;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #050814;
}
.hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #6d74ff, #4f46e5);
  box-shadow: 0 10px 28px -12px rgba(79, 70, 229, 0.9);
  cursor: pointer;
}
.hero-play[hidden] { display: none; }
.hero-play::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.hero-legend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 8px 12px;
  list-style: none;
  border-radius: 999px;
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(10px);
  color: #d7def0;
  font-size: 12px;
  font-weight: 600;
}
.hero-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-legend li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237c83ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5 6.5 11.5 12.5 4.5'/></svg>");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.features {
  padding: 72px 0 80px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 11, 28, 0.4), transparent 40%);
}
.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker::before,
.kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.5), transparent);
}
.features h2,
.pricing h2,
.faq h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-lead {
  margin: 10px auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
}
.pay-flag {
  width: fit-content;
  margin: 14px auto 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  text-align: center;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 6px rgba(91, 108, 255, 0.06);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #c9d4f0;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.feature-grid p {
  margin: 0 auto;
  max-width: 22ch;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  padding: 72px 0 48px;
  border-top: 1px solid var(--line);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 0;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 22px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.plan-1 { border-color: rgba(96, 165, 250, 0.45); box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.08), 0 20px 50px -28px rgba(37, 99, 235, 0.55); }
.plan-3 { border-color: rgba(250, 204, 21, 0.5); box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.12), 0 24px 60px -24px rgba(234, 179, 8, 0.45); }
.plan-6 { border-color: rgba(244, 114, 182, 0.5); box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.1), 0 20px 50px -28px rgba(236, 72, 153, 0.45); }
.is-featured {
  background: linear-gradient(180deg, rgba(28, 24, 12, 0.7), rgba(10, 16, 40, 0.85));
}
.plan-badge {
  position: absolute;
  top: 16px;
  right: -2px;
  margin: 0;
  padding: 6px 14px 6px 12px;
  border-radius: 8px 0 0 8px;
  background: #f59e0b;
  color: #1a1303;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.plan-6 .plan-badge { background: #ec4899; color: #fff; }
.plan-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 176px;
  margin: 0 0 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle 64px at 50% 50%, color-mix(in srgb, var(--glow) 42%, transparent), transparent 100%),
    linear-gradient(165deg, #10172e, #0b1020 55%, #15101c);
}
.plan-art img {
  height: 158px;
  width: auto;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--glow) 38%, transparent));
}
.plan-1 .plan-art { --glow: #60a5fa; }
.plan-3 .plan-art { --glow: #fbbf24; }
.plan-6 .plan-art { --glow: #f472b6; }
.plan h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 16px;
}
.plan-price strong {
  font-size: 40px;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.plan-price span {
  color: var(--muted);
  font-size: 14px;
}
.plan .btn { width: 100%; margin-top: auto; }

.how-status {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.how-status.copied {
  color: #4ade80;
}

.faq {
  padding: 72px 0 48px;
  border-top: 1px solid var(--line);
}
.faq-wrap { width: min(760px, calc(100% - 40px)); }
.plans-wrap { width: min(900px, calc(100% - 40px)); }
.faq-list {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
}
.faq-list article {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}
.faq-list h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.faq-list p,
.faq-list li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.faq-list p + p,
.faq-list p + ul,
.faq-list p + ol,
.faq-list ul + p,
.faq-list ol + p {
  margin-top: 10px;
}
.faq-list ul,
.faq-list ol {
  margin: 10px 0 0;
  padding: 0 0 0 1.1em;
}
.faq-list li { margin: 0 0 6px; }
.faq-list li:last-child { margin-bottom: 0; }
.how-crypto strong { color: #fbbf24; }
.faq-list p.how-foot {
  margin-top: 14px;
}
.handle {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-2);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.handle:hover { color: var(--text); }
.handle[hidden] { display: none !important; }
.alert {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
  color: #fecaca;
  font-size: 14px;
}
.close {
  padding: 0 0 88px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin: 36px 0 0;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.8);
}
.cta-copy h2 {
  margin: 0;
  text-align: left;
  font-size: 22px;
}
.cta-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.cta-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
}
.foot-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.foot-link {
  justify-self: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.foot-link:hover { color: var(--text); }
.foot-tag {
  margin: 0;
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .bar {
    grid-template-columns: 1fr auto;
  }
  .bar-end { grid-column: auto; }
  .nav-toggle {
    display: inline-flex;
  }
  .btn-top { display: none; }
  #site-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 31;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: #050814;
    border-bottom: 1px solid var(--line);
    grid-column: 1 / -1;
  }
  #site-nav a,
  #site-nav .js-download {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  #site-nav .btn-nav {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
    color: #fff;
  }
  body.nav-open #site-nav { display: flex; }
  .hero-grid,
  .plans,
  .cta-band,
  .foot-bar {
    grid-template-columns: 1fr;
  }
  h1 { max-width: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-copy h2 { text-align: center; }
  .cta-copy,
  .cta-band .btn { justify-self: center; }
  .foot-bar .brand,
  .foot-link { justify-self: center; }
  .foot-tag { justify-self: center; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 48px; }
  .hero-legend { display: none; }
  .plan-price strong { font-size: 34px; }
}

body.dl-open { overflow: hidden; }
.dl-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(8px);
}
.dl-overlay[hidden] { display: none !important; }
.dl-modal {
  width: min(400px, 100%);
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0a1028;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.8);
}
.dl-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.dl-close:hover { color: var(--text); }
.dl-modal h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.dl-modal .lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.dl-modal .lead + .forgot-link {
  margin-top: -12px;
}
.forgot-link {
  display: inline-block;
  margin: 2px 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(148 163 184 / 0.55);
  text-decoration: none;
}
.forgot-link:hover {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dl-modal .mode + .forgot-link {
  margin-top: -10px;
}
.dl-modal .mode {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  width: 100%;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.8);
}
.mode-btn {
  flex: 1;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.mode-btn.is-on {
  background: linear-gradient(180deg, #6d74ff, #4f46e5);
  color: #fff;
  box-shadow: 0 8px 20px -12px rgba(79, 70, 229, 0.9);
}
.dl-modal form { display: grid; gap: 8px; }
.dl-modal form[hidden] { display: none !important; }
.dl-modal label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.dl-modal input {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.dl-modal input:focus {
  outline: 2px solid rgba(91, 108, 255, 0.45);
  outline-offset: 1px;
}
#dl-status {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}
#pay-status {
  margin: 10px 0 0;
  min-height: 1.4em;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: var(--muted);
}
#dl-status.is-bad,
#pay-status.is-bad { color: #f87171; }
.dl-modal .btn {
  width: 100%;
  margin-top: 8px;
}

.account { padding: 48px 0 72px; }
.account-wrap { width: min(560px, calc(100% - 40px)); }
.account h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
}
.account .lead + .forgot-link {
  margin-top: 4px;
}
.account .kicker { margin-bottom: 10px; }
.account-id {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px 0 12px;
  margin: 0;
  border-radius: 999px;
  background: #121848;
  color: #bac4ff;
  font-size: 13px;
  font-weight: 600;
}
.pill.bad { background: #321018; color: #f87171; }
.pill.hidden { display: none !important; }
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgb(74 222 128 / 0.18);
}
.pill.bad .dot {
  background: #f87171;
  box-shadow: 0 0 0 3px rgb(248 113 113 / 0.2);
}
.account-card {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}
.account-card[hidden],
.account-status[hidden] {
  display: none !important;
}
.account-card .pill { justify-self: start; }
.account-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.account-card p.muted {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.account-card .btn {
  justify-self: start;
  min-width: 168px;
  margin-top: 6px;
}
#account-download:disabled {
  background: rgba(148, 163, 184, 0.16);
  color: rgba(226, 232, 240, 0.42);
  box-shadow: none;
  opacity: 1;
  filter: none;
}
#account-download:disabled:hover {
  filter: none;
  background: rgba(148, 163, 184, 0.16);
}
.account-card label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-card input {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.account-card input:focus {
  outline: 2px solid rgba(91, 108, 255, 0.45);
  outline-offset: 1px;
}
.account-status {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.account-card p .account-status,
.account-card p #download-hint {
  margin: 0;
}
.account-status a { color: inherit; }
.account-status.is-bad { color: #f87171; }
.account-status.is-ok { color: #86efac; }
.account-card a { color: #a5b4fc; }
#reset-done { margin-top: 0; }
.account-logout { margin-top: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  h1 span { animation: none; }
  .btn-shine::after { animation: none; }
}
