/* LURAR — Google-clean + iOS liquid glass */

:root {
  --bg: #f6f8fc;
  --bg-2: rgba(255, 255, 255, 0.28);
  --elev: rgba(255, 255, 255, 0.36);
  --card: rgba(255, 255, 255, 0.34);
  --line: rgba(255, 255, 255, 0.62);
  --line-2: rgba(60, 64, 67, 0.16);
  --text: #202124;
  --muted: #5f6368;
  --accent: #1a73e8;
  --accent-2: #174ea6;
  --accent-ink: #ffffff;
  --lime: #1a73e8;
  --lime-2: #174ea6;
  --lime-ink: #ffffff;
  --violet: #9334e6;
  --cyan: #1a73e8;
  --danger: #d93025;
  --ok: #188038;
  --font: "Inter", "Google Sans", "Segoe UI", system-ui, sans-serif;
  --display: var(--font);
  --header: 64px;
  --radius: 22px;
  --shadow: 0 10px 40px rgba(32, 33, 36, 0.08);
  --shadow-2: 0 18px 50px rgba(32, 33, 36, 0.12);
  --glass: blur(28px) saturate(180%);
  --max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.glass-orbit {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42rem 28rem at 8% -8%, rgba(66, 133, 244, 0.28), transparent 58%),
    radial-gradient(36rem 24rem at 92% 6%, rgba(234, 67, 53, 0.16), transparent 55%),
    radial-gradient(30rem 22rem at 70% 88%, rgba(251, 188, 5, 0.18), transparent 50%),
    radial-gradient(28rem 20rem at 12% 78%, rgba(52, 168, 83, 0.16), transparent 52%);
}

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

img, svg { max-width: 100%; display: block; }

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

button, input, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  z-index: 80;
}

.skip-link:focus { top: 12px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

h1, h2, h3, .brand-copy strong {
  font-family: var(--display);
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 16px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 12px; }
h3 { font-size: 1.0625rem; margin: 0 0 8px; }
.h2-sm { font-size: 1.25rem; margin: 0 0 16px; font-weight: 600; }

.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 58ch;
  margin: 0 0 24px;
  line-height: 1.55;
}

.fineprint {
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 0;
  padding-top: 10px;
}

.glass-bar,
.feature-card,
.plan-card,
.news-card,
.support-card,
.checksum-box,
.contact-form,
.dl-card,
.build-row,
.security-points li,
.security-points article,
.cta-band__inner,
.app-window {
  background: var(--card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .glass-bar { box-shadow: var(--shadow-2); }

body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark { width: 32px; height: 32px; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 1rem; font-weight: 600; }
.brand-copy small { color: var(--muted); font-size: 0.6875rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-start;
}

.primary-nav .menu-item {
  list-style: none;
  margin: 0;
}

.primary-nav a,
.primary-nav .menu-item a {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  color: var(--text);
  background: var(--bg-2);
}

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 10px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
}

.mobile-menu, .mobile-overlay { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.btn svg { width: 16px; height: 16px; }
.btn--sm { padding: 6px 12px; font-size: 0.8125rem; }
.btn--lg { padding: 10px 20px; font-size: 0.9375rem; }
.btn--full { width: 100%; }
.btn--lime {
  background: linear-gradient(180deg, #4c8df6, var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.28);
}
.btn--lime:hover { transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text);
  backdrop-filter: blur(16px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.62); }

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 48px;
  background: var(--bg);
}

.hero-glow { display: none; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero h1 em {
  font-style: normal;
  color: inherit;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.8125rem;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

/* Download card */
.dl-card {
  border-radius: 24px;
  padding: 20px;
}

.dl-card h3 { font-size: 1.125rem; }
.dl-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0 0 16px;
}
.dl-card__hint, .dl-card__all {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8125rem;
}
.dl-card__all { color: var(--accent); }
.dl-card__all:hover { text-decoration: underline; }

/* App mockup — Windows 11 */
.app-window {
  border-radius: 20px;
  overflow: hidden;
}

.app-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  background: rgba(255,255,255,0.35);
  color: var(--muted);
  font-size: 0.75rem;
}

.app-window__bar p { margin: 0; flex: 1; color: var(--text); }
.dot { display: none; }

.app-window__tools {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.75rem;
  background: rgba(255,255,255,0.25);
}

.app-window__tools span {
  padding: 4px 10px;
  border-radius: var(--radius);
  background: transparent;
}

.app-window__tools .is-accent {
  color: #fff;
  background: var(--accent);
}

.app-window__body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 200px;
  background: #fff;
}

.app-window aside {
  padding: 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  background: #f9f9f9;
}

.app-window aside ul { list-style: none; margin: 8px 0 0; padding: 0; }
.app-window aside li { padding: 4px 0; }
.app-window aside .is-on { color: var(--text); font-weight: 600; }

.app-files { font-size: 0.75rem; }
.app-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.6fr;
  padding: 7px 12px;
  border-bottom: 1px solid #f3f2f1;
  color: var(--muted);
}
.app-row--head { color: var(--muted); font-size: 0.6875rem; background: #fafafa; }
.app-row.is-sel { background: #deecf9; color: var(--text); }

.app-window__status {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  font-size: 0.6875rem;
  color: var(--muted);
  background: #f3f3f3;
  border-top: 1px solid var(--line);
}
.app-window__status .ok { color: var(--ok); }

/* Sections */
.section { padding: 56px 0; }
.section--tight { padding-top: 8px; }

.section-head { margin-bottom: 28px; max-width: 640px; }
.section-head.row-head,
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  max-width: none;
}

.formats-band {
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 20px 0;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
}

.formats-band__label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.format-pills {
  display: flex;
  gap: 6px;
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
}

.format-pills--wrap { flex-wrap: wrap; overflow: visible; }

.format-pills li {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-grid,
.plan-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card,
.plan-card,
.news-card,
.support-card,
.checksum-box,
.contact-form {
  border-radius: 24px;
  padding: 20px;
}

.icon-wrap {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #deecf9;
  color: var(--accent);
  margin-bottom: 12px;
}

.icon-wrap svg { width: 18px; height: 18px; }

.feature-card p,
.news-card p,
.support-card p { color: var(--muted); margin: 0; }

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list span {
  display: block;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-list p { color: var(--muted); margin: 0; }

.security-band {
  margin: 0;
  padding: 56px 0;
  background: rgba(255,255,255,0.18);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.security-band__grid,
.split,
.download-layout,
.support-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.security-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.security-points li,
.security-points article {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.security-points strong { display: block; margin-bottom: 4px; }
.security-points span { color: var(--muted); }

.plan-card.is-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.plan-card__tag {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 16px;
}

.plan-card__price b {
  font-size: 1.75rem;
  font-weight: 600;
}

.plan-card__price small { color: var(--muted); }

.plan-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
.plan-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.plan-card li svg { width: 16px; height: 16px; color: var(--ok); flex: 0 0 auto; margin-top: 3px; }

.news-card time { color: var(--muted); font-size: 0.75rem; }
.news-card h3 a:hover { color: var(--accent); text-decoration: underline; }

.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

.cta-band {
  padding: 24px 0 64px;
}

.cta-band__inner {
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

/* Inner pages */
.page-hero {
  padding: 40px 0 8px;
  background: var(--bg);
}

.page-hero .lead { margin-bottom: 0; }

.build-table { display: grid; gap: 8px; }

.build-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.build-row__os { display: flex; gap: 12px; align-items: center; }
.build-row__os svg { width: 20px; height: 20px; }
.build-row__os span, .build-row p { color: var(--muted); font-size: 0.8125rem; margin: 0; }
.build-row__os strong { display: block; }
.build-row .is-disabled {
  cursor: not-allowed;
  opacity: .58;
  pointer-events: none;
}

.checksum-box code {
  display: block;
  margin-top: 12px;
  padding: 12px;
  background: var(--bg-2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.8125rem;
  overflow: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.compare-table th { color: var(--muted); font-weight: 600; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details p { color: var(--muted); margin: 8px 0 0; }

.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.875rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 8px 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #005a9e;
  outline-offset: 1px;
  border-color: var(--accent);
}

.hp { position: absolute; left: -9999px; }
.form-ok { color: var(--ok); }
.form-err { color: var(--danger); }

.prose, .prose-wide { max-width: 68ch; }
.prose p, .prose-wide p { color: var(--muted); }
.prose a, .prose-wide a { color: var(--accent); text-decoration: underline; }

/* Footer */
.site-footer {
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand p { color: var(--muted); }
.footer-meta { font-size: 0.8125rem; }
.site-footer h4 {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: var(--muted); font-size: 0.875rem; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

/* Modal */
.download-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.download-modal[hidden] { display: none; }

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.download-modal__panel {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-2);
}

.download-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.download-modal__file { color: var(--text); font-family: Consolas, "Courier New", monospace; font-size: 0.875rem; }
.download-modal__note { color: var(--muted); }
.download-modal__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.pagination-wrap { margin-top: 24px; }

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu, .mobile-overlay { display: block; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    z-index: 45;
  }
  .mobile-overlay[hidden] { display: none; }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(28px) saturate(180%);
    z-index: 50;
    padding: 20px;
    border-left: 1px solid var(--line);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__top,
  .mobile-nav { display: grid; gap: 8px; }
  .mobile-menu__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .mobile-menu__close {
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.2rem;
  }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }
  .hero-grid,
  .feature-grid,
  .plan-grid,
  .news-grid,
  .step-list,
  .security-band__grid,
  .split,
  .download-layout,
  .support-grid,
  .contact-grid,
  .footer-grid,
  .section-head.row-head,
  .cta-band__inner,
  .footer-bottom,
  .build-row {
    grid-template-columns: 1fr;
  }
  .header-actions .btn--ghost { display: none; }
  .app-window__body { grid-template-columns: 1fr; }
  .app-window aside { display: none; }
}

.header-inner.glass-bar {
  width: min(var(--max), calc(100% - 32px));
  border-radius: 999px;
  padding: 0 14px;
  height: 52px;
}

.lang-dropdown { position: relative; }
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
}
.lang-dropdown__toggle svg { width: 18px; height: 12px; border-radius: 2px; }
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-2);
  z-index: 50;
}
.lang-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.8125rem;
}
.lang-dropdown__menu a:hover,
.lang-dropdown__menu a.is-active { background: rgba(26,115,232,0.1); }
.lang-dropdown__menu svg { width: 18px; height: 12px; }

.dl-stage {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.dl-stage[hidden] { display: none; }
.dl-stage__mist {
  position: absolute;
  inset: 0;
  background: rgba(246, 248, 252, 0.42);
  backdrop-filter: blur(18px);
}
.dl-stage__card {
  position: relative;
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  border-radius: 32px;
  text-align: center;
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(36px) saturate(190%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 24px 80px rgba(32,33,36,0.16), inset 0 1px 0 #fff;
}
.dl-stage__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}
.dl-orb {
  width: 148px;
  height: 148px;
  margin: 0 auto 18px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 -20px 40px rgba(26,115,232,0.08);
}
.dl-orb__shine {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), transparent 48%);
  z-index: 2;
  pointer-events: none;
}
.dl-orb__liquid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(76,141,246,0.55), rgba(26,115,232,0.85));
  transition: height 0.35s ease;
}
.dl-orb[data-kind="mac"] .dl-orb__liquid { background: linear-gradient(180deg, rgba(160,160,165,0.5), rgba(50,50,55,0.8)); }
.dl-orb[data-kind="linux"] .dl-orb__liquid { background: linear-gradient(180deg, rgba(251,188,5,0.45), rgba(234,67,53,0.7)); }
.dl-orb.is-done .dl-orb__liquid { height: 100% !important; }
.dl-file {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.dl-file__ext {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.dl-file strong { display: block; font-size: 0.75rem; font-weight: 600; }
.dl-stage__file {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 8px;
  word-break: break-all;
}
.dl-stage__status { margin: 0 0 16px; font-weight: 600; }
.dl-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(32,33,36,0.08);
  overflow: hidden;
}
.dl-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  background-size: 200% 100%;
  animation: dl-flow 1.4s linear infinite;
  transition: width 0.25s ease;
}
@keyframes dl-flow {
  to { background-position: 200% 0; }
}
.dl-file.is-in {
  animation: dl-drop 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes dl-drop {
  from { transform: translateY(-28px) scale(0.86); opacity: 0; }
  to { transform: none; opacity: 1; }
}
