/* ============================================================
   About-page hi-fi illustrations
   Replaces the placeholder gradients with animated product mocks.
   ============================================================ */

/* Soft "grid paper" texture behind the illustration */
.illus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  z-index: 1;
  overflow: hidden;
}
.illus::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.illus-4::before {
  background-image:
    linear-gradient(rgba(168,85,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px);
}

/* Floating "card" inside the illustration — the white device chrome */
.illus-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 24px 48px -16px rgba(31,31,46,0.28),
    0 6px 18px rgba(31,31,46,0.10),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  z-index: 1;
}
.illus-card-head {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbff;
}
.illus-card-head .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e2e8f0;
}
.illus-card-head .dot.r { background: #fca5a5; }
.illus-card-head .dot.y { background: #fcd34d; }
.illus-card-head .dot.g { background: #86efac; }
.illus-card-head .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.6px;
  margin-left: 8px;
}

/* ============================================================
   01 — THE PROBLEM   "Locked PDFs"
   PDF doc with selection sweep producing garbled fragments.
   ============================================================ */
.illus-1 .illus-card {
  width: 82%;
  aspect-ratio: 4 / 5.2;
  transform: rotate(-3deg);
}
.illus-1 .pdf-page {
  padding: 18px 20px;
  position: relative;
  height: calc(100% - 26px);
}
.illus-1 .pdf-title {
  height: 10px;
  width: 60%;
  border-radius: 3px;
  background: #1f2937;
  margin-bottom: 8px;
}
.illus-1 .pdf-line {
  height: 5px;
  border-radius: 3px;
  background: #e2e8f0;
  margin-bottom: 5px;
}
.illus-1 .pdf-line.short { width: 70%; }
.illus-1 .pdf-line.mid   { width: 85%; }

.illus-1 .pdf-table {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.illus-1 .pdf-table > div {
  background: #fff;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.illus-1 .pdf-table > div::before {
  content: "";
  display: block;
  height: 4px;
  width: 60%;
  border-radius: 3px;
  background: #cbd5e1;
}
.illus-1 .pdf-table .header {
  background: #f8fafc;
}
.illus-1 .pdf-table .header::before { background: #94a3b8; }

/* selection sweep across the table */
.illus-1 .selection {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 56%;
  bottom: 18%;
  background: rgba(79, 70, 229, 0.18);
  border: 1.5px dashed rgba(79, 70, 229, 0.7);
  border-radius: 6px;
  animation: illus1-sweep 5s ease-in-out infinite;
}
@keyframes illus1-sweep {
  0%, 8%   { transform: translateY(-32px); opacity: 0; }
  18%, 55% { transform: translateY(0); opacity: 1; }
  60%, 70% { transform: translateY(0); opacity: 1;
             background: rgba(244, 63, 94, 0.18);
             border-color: rgba(244, 63, 94, 0.75); }
  85%,100% { transform: translateY(0); opacity: 0;
             background: rgba(244, 63, 94, 0.18);
             border-color: rgba(244, 63, 94, 0.75); }
}

/* Garbled fragments escaping the table */
.illus-1 .frag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  opacity: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 6px rgba(244,63,94,0.25);
  white-space: nowrap;
}
.illus-1 .frag-1 { right: -6%; top: 38%;  animation: illus1-frag 5s ease-in-out infinite; animation-delay: 0.4s; }
.illus-1 .frag-2 { right: -10%; top: 54%; animation: illus1-frag 5s ease-in-out infinite; animation-delay: 0.6s; }
.illus-1 .frag-3 { left:  -6%;  top: 62%; animation: illus1-frag 5s ease-in-out infinite; animation-delay: 0.8s; }
.illus-1 .frag-4 { left:  -12%; top: 76%; animation: illus1-frag 5s ease-in-out infinite; animation-delay: 1s; }
@keyframes illus1-frag {
  0%, 55% { opacity: 0; transform: translate(0,0); }
  68%     { opacity: 1; transform: translate(0,0); }
  90%,100%{ opacity: 0; transform: translate(var(--dx, 24px), var(--dy, -10px)) rotate(var(--rot, 6deg)); }
}
.illus-1 .frag-1 { --dx: 30px;  --dy: -16px; --rot: 8deg;  }
.illus-1 .frag-2 { --dx: 26px;  --dy: 10px;  --rot: -6deg; }
.illus-1 .frag-3 { --dx: -28px; --dy: 12px;  --rot: -8deg; }
.illus-1 .frag-4 { --dx: -32px; --dy: -8px;  --rot: 5deg;  }

/* Lock chip top-right */
.illus-1 .lock-chip {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(244,63,94,0.45);
  z-index: 3;
  animation: illus1-pulse 2.4s ease-in-out infinite;
}
.illus-1 .lock-chip svg { width: 22px; height: 22px; }
@keyframes illus1-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 24px rgba(244,63,94,0.45); }
  50%      { transform: scale(1.06); box-shadow: 0 14px 32px rgba(244,63,94,0.55); }
}

/* Scribbled note */
.illus-1 .scribble {
  margin-top: 14px;
  height: 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'><path d='M5 18 Q 25 4, 45 16 T 90 18 T 140 14 T 195 18' stroke='%231f2937' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") left center/contain no-repeat;
  opacity: 0.55;
}

/* ============================================================
   02 — THE TECH   "AI that reads"
   Detection boxes drawing themselves over a document.
   ============================================================ */
.illus-2 .illus-card {
  width: 84%;
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
}
.illus-2 .doc {
  position: relative;
  padding: 16px 18px;
  height: calc(100% - 26px);
}
.illus-2 .doc-h    { height: 12px; width: 55%; border-radius: 3px; background: #cbd5e1; margin-bottom: 6px; }
.illus-2 .doc-p    { height: 5px;  border-radius: 3px; background: #e2e8f0; margin-bottom: 5px; }
.illus-2 .doc-p.s  { width: 80%; }
.illus-2 .doc-tbl  {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.illus-2 .doc-tbl > div { background: #fff; height: 18px; }
.illus-2 .doc-fig {
  margin-top: 10px;
  height: 52px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}
.illus-2 .doc-fig::after {
  content: "";
  position: absolute;
  inset: 14px 14px 0 14px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(124,58,237,0.18) 100%),
    repeating-linear-gradient(135deg, rgba(79,70,229,0.12) 0 6px, transparent 6px 12px);
  border-radius: 4px;
}

/* Animated detection boxes */
.illus-2 .det {
  position: absolute;
  border: 1.6px solid #4f46e5;
  border-radius: 4px;
  background: rgba(79, 70, 229, 0.06);
  opacity: 0;
  animation: illus2-draw 6s ease-in-out infinite;
}
.illus-2 .det::after {
  content: attr(data-label);
  position: absolute;
  top: -16px;
  left: -1px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: #4f46e5;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px 3px 3px 0;
  white-space: nowrap;
}
@keyframes illus2-draw {
  0%, 5%   { opacity: 0; transform: scale(0.96); }
  18%, 92% { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; transform: scale(1); }
}

.illus-2 .det-1 { top: 14px;  left: 18px;  width: 55%; height: 14px; animation-delay: 0.2s; border-color: #4f46e5; }
.illus-2 .det-1::after { background: #4f46e5; }
.illus-2 .det-2 { top: 38px;  left: 18px;  width: 84%; height: 24px; animation-delay: 0.7s; border-color: #7c3aed; }
.illus-2 .det-2::after { background: #7c3aed; }
.illus-2 .det-3 { top: 74px;  left: 18px;  width: 86%; height: 60px; animation-delay: 1.2s; border-color: #a855f7; }
.illus-2 .det-3::after { background: #a855f7; }
.illus-2 .det-4 { bottom: 16px; left: 18px; width: 86%; height: 52px; animation-delay: 1.7s; border-color: #ec4899; }
.illus-2 .det-4::after { background: #ec4899; }

/* Scanning line */
.illus-2 .scanline {
  position: absolute;
  left: 0; right: 0;
  height: 36px;
  background: linear-gradient(180deg,
    rgba(124, 58, 237, 0) 0%,
    rgba(124, 58, 237, 0.22) 40%,
    rgba(124, 58, 237, 0.55) 50%,
    rgba(124, 58, 237, 0.22) 60%,
    rgba(124, 58, 237, 0) 100%);
  pointer-events: none;
  top: 0;
  animation: illus2-scan 4.2s ease-in-out infinite;
  filter: blur(2px);
  z-index: 2;
}
@keyframes illus2-scan {
  0%, 100% { transform: translateY(0); opacity: 0; }
  15%      { opacity: 1; }
  85%      { opacity: 1; }
  100%     { transform: translateY(120%); opacity: 0; }
}

/* ============================================================
   03 — ALWAYS IMPROVING   ascending sparkline + version pills
   ============================================================ */
.illus-3 .illus-card {
  width: 86%;
  aspect-ratio: 4 / 4.4;
  height: 250px;
}
.illus-3 .chart {
  padding: 18px 18px 12px;
  position: relative;
}
.illus-3 .chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}
.illus-3 .chart-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #64748b;
  text-transform: uppercase;
}
.illus-3 .chart-num {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.illus-3 .chart-num::after { content: "%"; font-size: 14px; color: #6b7280; margin-left: 2px; }
.illus-3 .chart-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.illus-3 .chart-svg {
  width: 100%;
  height: 110px;
  display: block;
  margin-bottom: 12px;
}
.illus-3 .chart-svg path.area { fill: url(#illus3-grad); opacity: 0.9; }
.illus-3 .chart-svg path.line { fill: none; stroke: #4f46e5; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.illus-3 .chart-svg .line-anim {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: illus3-line 5s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes illus3-line {
  0%, 8%    { stroke-dashoffset: 600; }
  60%, 92%  { stroke-dashoffset: 0; }
  100%      { stroke-dashoffset: 0; opacity: 0; }
}
.illus-3 .chart-svg circle {
  fill: #fff;
  stroke: #4f46e5;
  stroke-width: 2;
  opacity: 0;
  animation: illus3-dot 5s ease-in-out infinite;
}
.illus-3 .chart-svg circle:nth-of-type(1) { animation-delay: 1.5s; }
.illus-3 .chart-svg circle:nth-of-type(2) { animation-delay: 2.2s; }
.illus-3 .chart-svg circle:nth-of-type(3) { animation-delay: 2.9s; }
.illus-3 .chart-svg circle:nth-of-type(4) { animation-delay: 3.6s; }
@keyframes illus3-dot {
  0%, 25% { opacity: 0; r: 0; }
  35%, 90% { opacity: 1; r: 3.6; }
  100%    { opacity: 0; r: 3.6; }
}

.illus-3 .pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.illus-3 .pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: illus3-pill 5s ease-in-out infinite;
}
.illus-3 .pill.live {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 6px 16px rgba(79,70,229,0.35);
}
.illus-3 .pill.live::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 3px rgba(134,239,172,0.3);
  animation: illus3-livepulse 1.6s ease-in-out infinite;
}
@keyframes illus3-livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(134,239,172, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(134,239,172, 0); }
}
.illus-3 .pill:nth-child(1) { animation-delay: 1.6s; }
.illus-3 .pill:nth-child(2) { animation-delay: 2.4s; }
.illus-3 .pill:nth-child(3) { animation-delay: 3.2s; }
.illus-3 .pill:nth-child(4) { animation-delay: 4.0s; }
@keyframes illus3-pill {
  0%, 30% { opacity: 0; transform: translateY(6px); }
  45%, 92% { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; }
}

/* ============================================================
   04 — THE OUTPUT   markdown code editor (dark)
   ============================================================ */
.illus-4 .illus-card {
  width: 88%;
  aspect-ratio: 4 / 4.6;
  background: #0f0f1a;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
}
.illus-4 .illus-card-head {
  background: #181826;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.illus-4 .illus-card-head .dot   { background: rgba(255,255,255,0.15); }
.illus-4 .illus-card-head .dot.r { background: #f87171; }
.illus-4 .illus-card-head .dot.y { background: #fbbf24; }
.illus-4 .illus-card-head .dot.g { background: #4ade80; }
.illus-4 .illus-card-head .label { color: #6b7280; }
.illus-4 .editor {
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.65;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: calc(100% - 26px);
  position: relative;
}
.illus-4 .editor .ln {
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: illus4-line 8s linear infinite;
  white-space: nowrap;
}
.illus-4 .editor .ln::before {
  content: attr(data-n);
  width: 14px;
  color: #475569;
  text-align: right;
  flex-shrink: 0;
}
.illus-4 .editor .ln:nth-child(1)  { animation-delay: 0.1s; }
.illus-4 .editor .ln:nth-child(2)  { animation-delay: 0.4s; }
.illus-4 .editor .ln:nth-child(3)  { animation-delay: 0.7s; }
.illus-4 .editor .ln:nth-child(4)  { animation-delay: 1.0s; }
.illus-4 .editor .ln:nth-child(5)  { animation-delay: 1.3s; }
.illus-4 .editor .ln:nth-child(6)  { animation-delay: 1.6s; }
.illus-4 .editor .ln:nth-child(7)  { animation-delay: 1.9s; }
.illus-4 .editor .ln:nth-child(8)  { animation-delay: 2.2s; }
.illus-4 .editor .ln:nth-child(9)  { animation-delay: 2.5s; }
.illus-4 .editor .ln:nth-child(10) { animation-delay: 2.8s; }
.illus-4 .editor .ln:nth-child(11) { animation-delay: 3.1s; }
.illus-4 .editor .ln:nth-child(12) { animation-delay: 3.4s; }
@keyframes illus4-line {
  0%, 4%    { opacity: 0; transform: translateY(6px); }
  10%, 88%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; }
}
.illus-4 .h   { color: #c4b5fd; font-weight: 700; }
.illus-4 .b   { color: #fde68a; font-weight: 700; }
.illus-4 .tg  { color: #a855f7; }
.illus-4 .st  { color: #5eead4; }
.illus-4 .nu  { color: #fda4af; }
.illus-4 .cm  { color: #64748b; font-style: italic; }
.illus-4 .cursor {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: #c4b5fd;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: illus4-blink 1s steps(2) infinite;
}
@keyframes illus4-blink {
  50% { opacity: 0; }
}

/* "MD" badge floating corner */
.illus-4 .badge-md {
  position: absolute;
  top: 120px;
  right: 80px;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.5px;
  box-shadow: 0 12px 28px rgba(124,58,237,0.45);
  z-index: 3;
  transform: rotate(8deg);
  animation: illus4-badge 3.6s ease-in-out infinite;
}
@keyframes illus4-badge {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-6px); }
}

/* ============================================================
   05 — PRIVACY   document inside a shield + 30d countdown
   ============================================================ */
.illus-5 {
  flex-direction: column;
  gap: 18px;
}
.illus-5 .shield-wrap {
  position: relative;
  width: 78%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-5 .shield-rings {
  position: absolute;
  inset: 0;
}
.illus-5 .shield-rings::before,
.illus-5 .shield-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(79,70,229,0.18);
  inset: 0;
  animation: illus5-ring 3.6s ease-out infinite;
}
.illus-5 .shield-rings::after {
  animation-delay: -1.8s;
}
@keyframes illus5-ring {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.illus-5 .shield {
  position: relative;
  width: 50%;
  aspect-ratio: 1 / 1.06;
  background: linear-gradient(160deg, #6366f1 0%, #7c3aed 60%, #a855f7 100%);
  clip-path: path('M 100 0 L 200 24 L 200 120 Q 200 176 100 212 Q 0 176 0 120 L 0 24 Z');
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -10px rgba(79,70,229,0.5);
}
/* Doc inside shield */
.illus-5 .shield-doc {
  width: 56%;
  aspect-ratio: 3 / 4;
  background: #fff;
  border-radius: 4px;
  padding: 10px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.illus-5 .shield-doc .line {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #cbd5e1 0%, #cbd5e1 var(--pct, 100%), transparent var(--pct));
}
.illus-5 .shield-doc .line:nth-child(1) { --pct: 70%; background: #4f46e5; height: 5px; }
.illus-5 .shield-doc .line:nth-child(2) { --pct: 100%; }
.illus-5 .shield-doc .line:nth-child(3) { --pct: 85%; }
.illus-5 .shield-doc .line:nth-child(4) { --pct: 95%; }
.illus-5 .shield-doc .line:nth-child(5) { --pct: 60%; }
.illus-5 .shield-doc .line.dots {
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1.4px);
  background-size: 6px 100%;
  background-repeat: repeat-x;
  background-position: left center;
  background-color: transparent;
  height: 4px;
}

/* Lock chip on shield */
.illus-5 .lock {
  position: absolute;
  right: 0;
  top: 8%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  color: #4f46e5;
}
.illus-5 .lock svg { width: 16px; height: 16px; }

/* 30d countdown card below */
.illus-5 .timer {
  background: #fff;
  border-radius: 12px;
  padding: 15px 14px;
  margin-top: -50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px -8px rgba(31,31,46,0.18), 0 0 0 1px rgba(15,23,42,0.04);
  z-index: 2;
}
.illus-5 .timer-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: conic-gradient(#4f46e5 0deg, #4f46e5 var(--deg, 240deg), #e2e8f0 var(--deg) 360deg);
  position: relative;
  animation: illus5-deg 6s linear infinite;
}
.illus-5 .timer-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
}
.illus-5 .timer-ring .n {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: #4f46e5;
  letter-spacing: -0.4px;
}
@keyframes illus5-deg {
  0%, 100% { --deg: 240deg; }
  50%      { --deg: 60deg; }
}
@property --deg {
  syntax: '<angle>';
  inherits: false;
  initial-value: 240deg;
}
.illus-5 .timer-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.illus-5 .timer-meta .lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.8px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}
.illus-5 .timer-meta .val {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
}

/* ============================================================
   06 — SIMPLE   drag-drop file → ring → check
   ============================================================ */
.illus-6 {
  flex-direction: column;
  gap: 20px;
}
.illus-6 .dropzone {
  position: relative;
  width: 78%;
  aspect-ratio: 4 / 2.6;
  background: #fff;
  border: 2px dashed #c4b5fd;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(79,70,229,0.25);
  overflow: hidden;
}
.illus-6 .dropzone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(124,58,237,0.07) 0%, transparent 60%);
  animation: illus6-glow 4s ease-in-out infinite;
}
@keyframes illus6-glow {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50%      { opacity: 1; transform: scale(1.05); }
}

/* The file being dragged in */
.illus-6 .file {
  position: relative;
  width: 56px;
  height: 72px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(79,70,229,0.25), 0 0 0 1px rgba(15,23,42,0.06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  z-index: 2;
  animation: illus6-file 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.illus-6 .file::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, transparent 50%, #ede9fe 50%);
  border-radius: 0 6px 0 4px;
}
.illus-6 .file .ext {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: #ef4444;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.illus-6 .file::after {
  content: "";
  position: absolute;
  inset: 14px 8px auto 8px;
  height: 3px;
  border-radius: 2px;
  background: #e2e8f0;
  box-shadow:
    0 7px 0 #e2e8f0,
    0 14px 0 #e2e8f0,
    0 21px 0 #e2e8f0;
}
@keyframes illus6-file {
  0%      { transform: translate(-100px, -60px) rotate(-12deg); opacity: 0; }
  18%     { transform: translate(0, 0)         rotate(0deg);   opacity: 1; }
  42%     { transform: translate(0, 0)         rotate(0deg);   opacity: 1; }
  55%     { transform: translate(0, 0)         rotate(0deg);   opacity: 0; }
  100%    { transform: translate(0, 0)         rotate(0deg);   opacity: 0; }
}

/* Processing ring + check fade in/out swap */
.illus-6 .result {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.illus-6 .result.ring {
  border: 4px solid #ede9fe;
  border-top-color: #4f46e5;
  animation:
    illus6-spin 1.1s linear infinite,
    illus6-ring-fade 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}
@keyframes illus6-spin {
  to { transform: rotate(360deg); }
}
@keyframes illus6-ring-fade {
  0%, 55%  { opacity: 0; }
  60%, 78% { opacity: 1; }
  82%,100% { opacity: 0; }
}
.illus-6 .result.check {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(22,163,74,0.4);
  animation: illus6-check 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}
.illus-6 .result.check svg {
  width: 30px; height: 30px;
}
@keyframes illus6-check {
  0%, 80%  { opacity: 0; transform: scale(0.6); }
  86%, 96% { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; transform: scale(1); }
}

/* Mini step pills */
.illus-6 .steps {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #475569;
  text-transform: uppercase;
}
.illus-6 .steps .step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(31,31,46,0.12), 0 0 0 1px rgba(15,23,42,0.05);
  transition: all 0.3s;
}
.illus-6 .steps .step .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}
.illus-6 .steps .step.active { color: #4f46e5; }
.illus-6 .steps .step.active .dot { background: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.2); }
.illus-6 .steps .step.done    { color: #16a34a; }
.illus-6 .steps .step.done    .dot { background: #16a34a; }
.illus-6 .steps .step:nth-child(1) { animation: illus6-step-1 4s ease-in-out infinite; }
.illus-6 .steps .step:nth-child(2) { animation: illus6-step-2 4s ease-in-out infinite; }
.illus-6 .steps .step:nth-child(3) { animation: illus6-step-3 4s ease-in-out infinite; }
@keyframes illus6-step-1 {
  0%,   18% { background: #4f46e5; color: #fff; }
  20%, 100% { background: #fff;    color: #16a34a; }
}
@keyframes illus6-step-2 {
  0%,   20% { background: #fff;    color: #475569; }
  22%, 78%  { background: #4f46e5; color: #fff; }
  80%, 100% { background: #fff;    color: #16a34a; }
}
@keyframes illus6-step-3 {
  0%,   80% { background: #fff;    color: #475569; }
  82%, 100% { background: #16a34a; color: #fff; }
}

/* ============================================================
   Reduced motion — kill all loops
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .illus *,
  .illus *::before,
  .illus *::after {
    animation: none !important;
  }
  .illus-1 .selection,
  .illus-2 .det,
  .illus-3 .pill,
  .illus-3 .chart-svg circle,
  .illus-4 .editor .ln,
  .illus-6 .file,
  .illus-6 .result.check { opacity: 1 !important; }
  .illus-6 .result.ring { opacity: 0 !important; }
}

/* ============================================================
   Responsive: shrink padding & illustration sizes on tablet
   ============================================================ */
@media (max-width: 960px) {
  .illus { padding: 28px; }
  .illus-1 .illus-card,
  .illus-2 .illus-card,
  .illus-3 .illus-card,
  .illus-4 .illus-card { width: 78%; }
}
