/* ---------- tokens ---------- */
:root{
  --bg: #0A1620;
  --surface: #0E2130;
  --surface-2: #142E40;
  --border: #1E3D50;
  --text: #E7F3FA;
  --muted: #7FA3B8;
  --accent: #2FC4E8;
  --accent-ink: #04181F;
  --accent-2: #3D8CF2;
  --accent-3: #6BCBE8;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --shadow-soft: 0 12px 30px -14px rgba(0,0,0,0.55);
}

*{ box-sizing: border-box; -webkit-tap-highlight-color: rgba(47,196,232,0.25); }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg{ display: block; }

a{ color: inherit; text-decoration: none; }

.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus{ left: 16px; top: 16px; }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- ambient animated background ---------- */
.ambient-bg{
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.grid-overlay{
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.14;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 85%);
}

.orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.orb-1{
  width: 460px; height: 460px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(47,196,232,0.5), transparent 70%);
  animation: drift1 22s ease-in-out infinite;
}
.orb-2{
  width: 380px; height: 380px;
  top: 30vh; right: -140px;
  background: radial-gradient(circle, rgba(61,140,242,0.4), transparent 70%);
  animation: drift2 26s ease-in-out infinite;
}
.orb-3{
  width: 340px; height: 340px;
  top: 80vh; left: 8vw;
  background: radial-gradient(circle, rgba(61,140,242,0.32), transparent 70%);
  animation: drift3 30s ease-in-out infinite;
}

@keyframes drift1{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(60px, 90px) scale(1.12); }
}
@keyframes drift2{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(-70px, 60px) scale(1.08); }
}
@keyframes drift3{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(50px, -70px) scale(1.15); }
}

.particles{ position: absolute; inset: 0; }
.particle{
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  box-shadow: 0 0 8px 1px var(--accent);
  animation: rise linear infinite;
}
.particle:nth-child(3n){ background: var(--accent-2); box-shadow: 0 0 8px 1px var(--accent-2); }
.particle:nth-child(4n){ background: var(--accent-3); box-shadow: 0 0 8px 1px var(--accent-3); }

.p1{ left: 6%;  animation-duration: 16s; animation-delay: 0s; }
.p2{ left: 15%; animation-duration: 20s; animation-delay: 2s; }
.p3{ left: 24%; animation-duration: 14s; animation-delay: 5s; }
.p4{ left: 33%; animation-duration: 22s; animation-delay: 1s; }
.p5{ left: 42%; animation-duration: 17s; animation-delay: 6s; }
.p6{ left: 51%; animation-duration: 19s; animation-delay: 3s; }
.p7{ left: 60%; animation-duration: 15s; animation-delay: 8s; }
.p8{ left: 69%; animation-duration: 21s; animation-delay: 4s; }
.p9{ left: 78%; animation-duration: 18s; animation-delay: 7s; }
.p10{ left: 87%; animation-duration: 16s; animation-delay: 2.5s; }
.p11{ left: 93%; animation-duration: 20s; animation-delay: 5.5s; }
.p12{ left: 3%;  animation-duration: 24s; animation-delay: 9s; }

@keyframes rise{
  0%{ transform: translateY(8vh); opacity: 0; }
  8%{ opacity: 0.7; }
  92%{ opacity: 0.5; }
  100%{ transform: translateY(-108vh); opacity: 0; }
}

/* ---------- glow text ---------- */
.glow-text{
  color: var(--accent);
  text-shadow: 0 0 12px rgba(47,196,232,0.55), 0 0 32px rgba(47,196,232,0.25);
  animation: text-pulse 3.6s ease-in-out infinite;
}
.glow-word{
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(47,196,232,0.5);
}

@keyframes text-pulse{
  0%, 100%{ text-shadow: 0 0 12px rgba(47,196,232,0.55), 0 0 32px rgba(47,196,232,0.25); }
  50%{ text-shadow: 0 0 20px rgba(47,196,232,0.85), 0 0 46px rgba(47,196,232,0.4); }
}

.hero-tagline{
  max-width: 58ch;
  margin: 0 auto 18px;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-mono);
}

/* ---------- scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- top nav ---------- */
.topbar{
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 800px;
  background: rgba(24, 33, 36, 0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 16px;
  box-shadow: var(--shadow-soft);
}

.brand{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}
.brand-mark{
  color: var(--accent);
  display: inline-flex;
}
.brand-accent{ color: var(--accent); }
.brand-text.small{ font-size: 0.95rem; }

.nav-links{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  padding: 0;
  min-width: 0;
}

.nav-link{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color .15s ease, color .15s ease;
}
.nav-link svg{ opacity: 0.9; }
.nav-link:hover{ color: var(--text); background: var(--surface-2); }
.nav-link.is-active{ color: var(--accent-ink); background: var(--accent); }

.nav-discord{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease;
}
.nav-discord:hover{ border-color: var(--accent); color: var(--accent); }

.nav-toggle{
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-pill);
  padding: 8px;
  cursor: pointer;
}

/* ---------- layout / sections ---------- */
.section{
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
  scroll-margin-top: 100px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.section-title{
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 0 12px;
}

.section-sub{
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 40px;
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  text-align: center;
  padding-top: 84px;
  overflow: hidden;
}

.hero-glow{
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 480px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(47,196,232,0.16), transparent 70%);
  pointer-events: none;
  z-index: -2;
}

.hero-blocks{
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hb{
  position: absolute;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  will-change: transform;
  animation: float 7s ease-in-out infinite alternate;
}
.hb-1{ width: 64px; height: 64px; top: 18%; left: 12%; animation-delay: 0s; }
.hb-2{ width: 44px; height: 44px; top: 30%; right: 14%; animation-delay: -2.5s; }
.hb-3{ width: 34px; height: 34px; top: 65%; left: 20%; animation-delay: -4.5s; }

@keyframes float{
  from{ transform: translateY(0px) rotate(0deg); }
  to{ transform: translateY(-16px) rotate(4deg); }
}

.hero-title{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.06;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero-sub{
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.hero-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover{
  background: #5DD8F2;
  box-shadow: 0 10px 26px -12px rgba(47,196,232,0.6);
}
.btn-primary:active{ background: #1FA0BE; box-shadow: none; }

.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); }
.btn-ghost:active{ background: rgba(47,196,232,0.1); border-color: var(--accent); color: var(--accent); }

.hero-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.feature-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.feature-icon{
  display: inline-flex;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3{
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.feature-card p{
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

/* ---------- stats row ---------- */
.stats-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.stat-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.stat-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(47,196,232,0.14), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.stat-card:hover{
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -20px rgba(47,196,232,0.35);
}
.stat-card:hover::before{ opacity: 1; }
.stat-icon{
  display: inline-flex;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 14px;
}
.stat-num{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-label{
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ---------- cards / grids ---------- */
.grid{ display: grid; gap: 18px; }
.grid-clients{ grid-template-columns: repeat(3, 1fr); }
.grid-guides{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .15s ease, transform .15s ease;
}

.client-card .card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.client-icon{
  display: inline-flex;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--tint, var(--accent));
}
.badge{
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border);
}
.badge-mono{ font-family: var(--font-mono); }

.client-card h3{ font-family: var(--font-display); margin: 0 0 8px; font-size: 1.1rem; }
.client-card p{ color: var(--muted); margin: 0 0 18px; font-size: 0.92rem; }

.tag{
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(47,196,232,0.14);
  color: var(--accent);
}
.tag-alt{ background: rgba(61,140,242,0.16); color: var(--accent-2); }
.tag-quiet{ background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); }

.card{ position: relative; }
.card:hover{
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -22px rgba(47,196,232,0.4);
}
.client-card:hover .client-icon{ color: var(--accent); }

.guide-card{ display: block; }
.guide-num{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.guide-card h3{ font-family: var(--font-display); margin: 0 0 8px; font-size: 1.08rem; }
.guide-card p{ color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ---------- faq ---------- */
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }

.faq-item .chev{ color: var(--muted); transition: transform .18s ease; flex-shrink: 0; }
.faq-item[open] .chev{ transform: rotate(180deg); color: var(--accent); }

.faq-item p{
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 68ch;
}

.faq-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  flex-wrap: wrap;
}
.faq-cta h3{ font-family: var(--font-display); margin: 0 0 4px; font-size: 1.15rem; }
.faq-cta p{ color: var(--muted); margin: 0; }

/* ---------- footer ---------- */
.footer{
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a{ color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover{ color: var(--accent); }
.footer-note{
  width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
  opacity: 0.75;
}

/* ---------- responsive ---------- */
@media (max-width: 860px){
  .grid-clients{ grid-template-columns: repeat(2, 1fr); }
  .stats-row{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  .nav-toggle{ display: inline-flex; }
  .nav-links{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.is-open{ display: flex; }
  .nav-link{ justify-content: flex-start; }
  .nav-discord{ display: none; }
  .hero-features{ grid-template-columns: 1fr; }
  .grid-clients{ grid-template-columns: 1fr; }
  .grid-guides{ grid-template-columns: 1fr; }
  .stats-row{ grid-template-columns: repeat(2, 1fr); }
  .section{ padding: 72px 20px; }
}

/* ---------- additions: card download button + steps grid ---------- */
.client-card{ display: flex; flex-direction: column; }
.card-download{
  margin-top: 18px;
  width: 100%;
  justify-content: center;
  padding: 11px 18px;
  font-size: 0.9rem;
}
.card-vt{
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.84rem;
  color: var(--muted);
  border-color: var(--border);
}
.card-vt:hover{ color: var(--accent); border-color: var(--accent); }
.card-vt svg{ opacity: 0.8; }

/* ---------- live VT scan badge ---------- */
.vt-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border);
}
.vt-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  flex: 0 0 auto;
}
.vt-badge[data-state="clean"]{
  color: #6EE7A8;
  border-color: rgba(110,231,168,0.28);
  background: rgba(110,231,168,0.1);
}
.vt-badge[data-state="clean"] .vt-dot{ background: #6EE7A8; box-shadow: 0 0 6px 0 rgba(110,231,168,0.7); }
.vt-badge[data-state="flagged"]{
  color: #F2A65A;
  border-color: rgba(242,166,90,0.3);
  background: rgba(242,166,90,0.1);
}
.vt-badge[data-state="flagged"] .vt-dot{ background: #F2A65A; }
.vt-badge[data-state="error"]{ color: var(--muted); }
.vt-badge[data-state="pending"] .vt-dot{ animation: vtPulse 1.4s ease-in-out infinite; }
@keyframes vtPulse{
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ---------- live Discord member count ---------- */
.discord-count{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
  padding: 2px 7px;
  margin-left: 2px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  white-space: nowrap;
}
.discord-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  flex: 0 0 auto;
}
.discord-count[data-state="live"]{ color: var(--text); }
.discord-count[data-state="live"] .discord-dot{
  background: #6EE7A8;
  box-shadow: 0 0 6px 0 rgba(110,231,168,0.7);
}

/* Below 980px the full nav (brand + links + discord button) gets tight —
   drop the live-count pill first and keep just the Discord link itself. */
@media (max-width: 980px){
  .discord-count{ display: none; }
}
.grid-steps{ grid-template-columns: 1fr; }
.step-card{ display: flex; gap: 20px; align-items: flex-start; }
.step-card .guide-num{ flex-shrink: 0; }
.step-card .step-body h3{ font-family: var(--font-display); margin: 0 0 8px; font-size: 1.08rem; }
.step-card .step-body p{ color: var(--muted); margin: 0; font-size: 0.94rem; }
.step-card code{
  font-family: var(--font-mono);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85em;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hb{ animation: none; }
  .btn{ transition: none; }
  .orb, .particle, .glow-text{ animation: none; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .card:hover, .stat-card:hover{ transform: none; }
}

/* ---------- Xtra Debug download warning modal ---------- */
.download-modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:20px;visibility:hidden;opacity:0;pointer-events:none;transition:opacity .18s ease,visibility .18s ease}
.download-modal.is-open{visibility:visible;opacity:1;pointer-events:auto}
.download-modal-backdrop{position:absolute;inset:0;background:rgba(4,8,9,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.download-dialog{position:relative;width:min(100%,520px);background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:30px;box-shadow:0 28px 80px rgba(0,0,0,.48);transform:translateY(8px) scale(.98);transition:transform .18s ease}
.download-modal.is-open .download-dialog{transform:translateY(0) scale(1)}
.download-modal-close{position:absolute;top:16px;right:16px;display:grid;place-items:center;width:36px;height:36px;padding:0;border:1px solid var(--border);border-radius:var(--radius-pill);background:var(--surface-2);color:var(--muted);cursor:pointer}
.download-modal-close:hover{color:var(--text);border-color:var(--accent);background:var(--surface)}
.download-warning-icon{display:inline-grid;place-items:center;width:46px;height:46px;margin-bottom:18px;border-radius:14px;color:var(--accent-2);background:rgba(61,140,242,.12);border:1px solid rgba(61,140,242,.22)}
.download-modal-eyebrow{margin:0 0 8px;color:var(--accent);font-family:var(--font-mono);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase}
.download-dialog h2{margin:0 42px 10px 0;font-family:var(--font-display);font-size:1.45rem;line-height:1.2}
.download-modal-text{margin:0;color:var(--muted);font-size:.94rem}
.download-modal-text a{color:var(--accent);text-decoration:underline;text-underline-offset:3px}
.understand-check{display:flex;align-items:center;gap:11px;margin-top:24px;color:var(--text);font-size:.92rem;font-weight:500;cursor:pointer;user-select:none}
.understand-check input{position:absolute;opacity:0;pointer-events:none}
.custom-checkbox{display:inline-grid;place-items:center;width:21px;height:21px;flex:0 0 21px;border:1.5px solid var(--border);border-radius:7px;background:var(--surface-2);color:var(--accent-ink);transition:background-color .15s ease,border-color .15s ease,transform .15s ease}
.custom-checkbox svg{width:15px;height:15px;opacity:0;transform:scale(.65);transition:opacity .15s ease,transform .15s ease}
.understand-check input:checked + .custom-checkbox{background:var(--accent);border-color:var(--accent)}
.understand-check input:checked + .custom-checkbox svg{opacity:1;transform:scale(1)}
.understand-check:hover .custom-checkbox{border-color:var(--accent)}
.download-dialog-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:26px}
.download-dialog-actions .btn{border:0;cursor:pointer}
.download-dialog-actions .btn-ghost{border:1px solid var(--border)}
.xtra-confirm-download:disabled{opacity:.42;cursor:not-allowed;transform:none}
.xtra-confirm-download:disabled:hover{background:var(--accent)}
body.modal-open{overflow:hidden}
@media(max-width:560px){.download-dialog{padding:24px;border-radius:var(--radius-md)}.download-dialog-actions{flex-direction:column-reverse}.download-dialog-actions .btn{width:100%;justify-content:center}}
@media(prefers-reduced-motion:reduce){.download-modal,.download-dialog,.custom-checkbox,.custom-checkbox svg{transition:none}}
