/* ===================================================================
   e-xml.ru — современный лэндинг
   Тёмная XML-тема с акцентами и стеклянным эффектом.
   =================================================================== */

:root {
  --bg:           #0a0e1a;
  --bg-elev:      #0f1422;
  --bg-card:      rgba(20, 26, 44, 0.65);
  --border:       rgba(120, 145, 200, 0.15);
  --border-soft:  rgba(120, 145, 200, 0.08);

  --text:         #e8edf7;
  --text-muted:   #97a3bd;
  --text-dim:     #6b7894;

  --accent:       #6ea8ff;
  --accent-2:     #b388ff;
  --accent-3:     #4cd8c1;
  --accent-soft:  rgba(110, 168, 255, 0.12);

  --xml-bracket:  #6ea8ff;
  --xml-tag:      #b388ff;
  --xml-attr:     #4cd8c1;
  --xml-string:   #ffd566;

  --shadow-lg:    0 30px 80px -20px rgba(0, 0, 0, 0.55);

  --radius:       14px;
  --radius-lg:    20px;

  --maxw:         1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse at top left, rgba(110, 168, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(179, 136, 255, 0.06), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent-2);
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

code, pre, .mono {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-feature-settings: "calt" 1, "ss01" 1;
}

/* ─── header ────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 32px;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark .tag {
  color: var(--xml-bracket);
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: all 0.2s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── buttons ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #4d7fe6);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(110, 168, 255, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px rgba(110, 168, 255, 0.7);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--bg-card);
}

/* ─── hamburger (mobile) ────────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

/* ─── hero ──────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 90px 32px 110px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.xml-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}

.xml-blob-1 {
  width: 540px;
  height: 540px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

.xml-blob-2 {
  width: 480px;
  height: 480px;
  top: 80px;
  right: -160px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  animation-delay: -6s;
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-22px) scale(1.05); }
}

.xml-floater {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(110, 168, 255, 0.18);
  white-space: pre;
  user-select: none;
}

.xml-floater-1 {
  top: 14%;
  left: 4%;
  transform: rotate(-4deg);
  animation: floater 22s ease-in-out infinite;
}

.xml-floater-2 {
  bottom: 8%;
  right: 4%;
  transform: rotate(3deg);
  animation: floater 22s ease-in-out infinite reverse;
}

@keyframes floater {
  0%,100% { transform: translate(0,0) rotate(-4deg); opacity: 0.18; }
  50%     { transform: translate(8px,-12px) rotate(-3deg); opacity: 0.28; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 168, 255, 0.3);
  color: var(--accent);
  margin-bottom: 26px;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(110, 168, 255, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(110, 168, 255, 0.45); }
  50%     { box-shadow: 0 0 0 7px rgba(110, 168, 255, 0); }
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 60%, var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  color: var(--accent-3);
  font-weight: 700;
}

/* ─── section base ──────────────────────────────────────────────── */

.section {
  position: relative;
  padding: 80px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 50px;
}

/* ─── audience cards ────────────────────────────────────────────── */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  display: block;
  padding: 32px 28px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(110, 168, 255, 0.18), rgba(179, 136, 255, 0.18));
  margin-bottom: 18px;
  color: var(--accent);
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

.audience-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.audience-card h3.row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  border: 1px solid rgba(110, 168, 255, 0.25);
}

.audience-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
  line-height: 1.55;
}

.audience-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ─── feature grid ──────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── news timeline ─────────────────────────────────────────────── */

.news-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 44px;
}

.news-timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.news-item {
  position: relative;
  padding-bottom: 28px;
}

.news-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(110, 168, 255, 0.1);
}

.news-item-major::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(110, 168, 255, 0.18), 0 0 24px rgba(110, 168, 255, 0.5);
  width: 14px;
  height: 14px;
  left: -39px;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 6px rgba(110, 168, 255, 0.18), 0 0 24px rgba(110, 168, 255, 0.5); }
  50%     { box-shadow: 0 0 0 9px rgba(110, 168, 255, 0.08), 0 0 28px rgba(110, 168, 255, 0.7); }
}

.news-date {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.2s ease;
}

.news-card:hover {
  border-color: var(--accent);
}

.news-item-major .news-card {
  border-color: rgba(110, 168, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(110, 168, 255, 0.06), rgba(179, 136, 255, 0.05)),
    var(--bg-card);
}

.news-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-tag-new {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.news-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  flex: 1;
}

.news-item-major .news-card h3 {
  font-size: 18px;
}

.news-card p,
.news-card ul {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.news-card ul {
  padding-left: 18px;
  list-style: disc;
}

.news-card ul li {
  margin-bottom: 4px;
  list-style: disc;
}

.news-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ─── contact ───────────────────────────────────────────────────── */

.contact {
  padding-bottom: 120px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(110, 168, 255, 0.08), rgba(179, 136, 255, 0.05)),
    var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 168, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-title {
  text-align: left !important;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  color: var(--text);
}

.contact-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
}

/* ─── footer ────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 50px 32px 30px;
  background: var(--bg-elev);
}

.footer-cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-cols h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-cols a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
}

.footer-cols a:hover {
  color: var(--accent);
}

.footer-tag {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 280px;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── downloads page (kais.html / xc.html) ─────────────────────── */

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.page-header {
  margin-bottom: 50px;
}

.crumbs {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.crumbs a {
  color: var(--text-muted);
}

.crumbs a:hover {
  color: var(--accent);
}

.page h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.page-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
}

.download-list {
  display: grid;
  gap: 14px;
}

.download-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.2s ease, transform 0.18s ease;
}

.download-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.download-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(110, 168, 255, 0.18), rgba(179, 136, 255, 0.12));
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
}

.download-info h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.download-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.download-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin: 50px 0 18px;
}

.callout {
  margin-top: 40px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(110, 168, 255, 0.08), rgba(179, 136, 255, 0.05));
  border: 1px solid rgba(110, 168, 255, 0.25);
  border-radius: var(--radius);
}

.callout h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.callout p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ─── privacy ───────────────────────────────────────────────────── */

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.prose h1 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.prose .updated {
  font-size: 13px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 30px;
}

.prose h2 {
  font-size: 20px;
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
}

.prose p,
.prose ul {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 22px;
}

.prose ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── responsive ────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .audience-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }
  .site-nav,
  .header-actions {
    display: none;
  }
  .site-nav.open,
  .header-actions.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-elev);
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
  }
  .site-nav.open a {
    padding: 10px 0;
  }
  .header-actions.open {
    top: auto;
    margin-top: 0;
    border-top: 1px solid var(--border-soft);
    padding-top: 14px;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 60px 20px 80px;
  }
  .xml-floater-1,
  .xml-floater-2 {
    display: none;
  }
  .section {
    padding: 60px 20px;
  }
  .audience-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .news-timeline {
    padding-left: 32px;
  }
  .news-item::before {
    left: -28px;
  }
  .news-item-major::before {
    left: -29px;
  }
  .download-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .download-icon {
    margin-bottom: 8px;
  }
}

/* ─── reduced motion ────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}