/* ============================================================
   doczy/review — Apple-style clean white design
   Inter · #1d1d1f · #0071e3 · Pure white / #f5f5f7
   ============================================================ */

:root {
  --white:        #ffffff;
  --off-white:    #f5f5f7;
  --text:         #1d1d1f;
  --text-2:       #6e6e73;
  --text-3:       #86868b;
  --blue:         #0071e3;
  --blue-hover:   #0077ed;
  --blue-soft:    rgba(0,113,227,.08);
  --border:       rgba(0,0,0,.08);
  --border-2:     rgba(0,0,0,.12);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.05);
  --shadow-md:    0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:    0 24px 64px rgba(0,0,0,.10);
  --r-sm:         8px;
  --r:            14px;
  --r-lg:         20px;
  --r-xl:         28px;
  --r-pill:       999px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);

  /* action colours */
  --fill:         #30a64a;
  --fill-bg:      rgba(48,166,74,.09);
  --replace:      #e07b0a;
  --replace-bg:   rgba(224,123,10,.09);
  --remove:       #cc3333;
  --remove-bg:    rgba(204,51,51,.09);
  --keep:         #5c5c5e;
  --keep-bg:      rgba(92,92,94,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.brand-mark {
  width: 30px; height: 30px;
  background: var(--text);
  color: var(--white);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -.3px;
  display: flex; align-items: center; justify-content: center;
}
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -.3px; }
.brand-sep  { color: var(--text-3); margin: 0 1px; }
.nav-links  { display: flex; gap: 24px; margin-left: 8px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right  { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-status { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 5px; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot-green { background: #30a64a; }
.dot-red   { background: #cc3333; }
.btn-nav {
  font-size: 13px; font-weight: 500;
  background: var(--text); color: var(--white);
  border-radius: var(--r-pill); padding: 6px 16px;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-nav:hover { background: #3a3a3c; transform: scale(1.02); }
.btn-signout {
  font-size: 13px; font-weight: 500; color: var(--text-3);
  text-decoration: none; padding: 6px 10px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.btn-signout:hover { color: var(--text); background: var(--off-white); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.s-hero {
  background: var(--white);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}
.h1-accent {
  background: linear-gradient(135deg, #0071e3 0%, #5ac8fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; font-weight: 400; color: var(--text-2);
  line-height: 1.6; max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero card visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.06);
  padding: 0;
  width: 100%; max-width: 420px;
  overflow: hidden;
}
.hc-bar {
  background: #f0f0f0;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.hc-dot { width: 12px; height: 12px; border-radius: 50%; }
.hc-title {
  font-size: 11px; font-weight: 500; color: var(--text-2);
  flex: 1; text-align: center; margin-left: -36px;
}
.hc-pct {
  font-size: 11px; font-weight: 600; color: var(--blue);
  background: var(--blue-soft); border-radius: 4px; padding: 1px 6px;
}
.hc-progress { height: 3px; background: #e8e8e8; }
.hc-prog-fill { height: 100%; background: var(--blue); border-radius: 0 2px 2px 0; transition: width 1.5s; }
.hc-rows { padding: 4px 0; }
.hc-row {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid #f5f5f7;
  font-size: 12px;
}
.hc-row:last-child { border-bottom: none; }
.hc-field { font-weight: 600; color: var(--text); flex: 0 0 130px; font-size: 11px; }
.hc-val   { flex: 1; color: var(--text-2); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hc-replaced { color: var(--replace); font-weight: 500; }
.hc-fill     { color: var(--fill); font-weight: 500; }
.hc-remove   { color: var(--remove); font-weight: 500; }
.hc-keep     { color: var(--keep); }
.hc-badge {
  flex-shrink: 0; font-size: 10px; font-weight: 600;
  border-radius: 4px; padding: 2px 6px;
  text-transform: uppercase; letter-spacing: .04em;
}
.b-replaced { background: var(--replace-bg); color: var(--replace); }
.b-fill     { background: var(--fill-bg);    color: var(--fill); }
.b-remove   { background: var(--remove-bg);  color: var(--remove); }
.b-keep     { background: var(--keep-bg);    color: var(--keep); }
.hc-foot {
  display: flex; justify-content: space-between;
  padding: 8px 14px; background: #fafafa;
  font-size: 10px; color: var(--text-3);
  border-top: 1px solid var(--border);
}

/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}
.floating { animation: float 5s ease-in-out infinite; }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.s-stats {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 52px; font-weight: 800; letter-spacing: -.04em;
  color: var(--text); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-2); font-weight: 400; }

/* ─────────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.6;
}

/* ─────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────── */
.s-features { padding: 100px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-icon { font-size: 32px; margin-bottom: 18px; }
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.feat-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.s-how { padding: 100px 0; background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-size: 48px; font-weight: 900; letter-spacing: -.05em;
  color: var(--blue); opacity: .15; line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.02em; }
.step-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.s-cta-band {
  background: var(--text);
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--white); letter-spacing: -.03em; margin-bottom: 16px;
}
.cta-inner p {
  font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 36px;
}
.btn-cta-white {
  display: inline-block;
  background: var(--white); color: var(--text);
  font-size: 15px; font-weight: 600; border-radius: var(--r-pill);
  padding: 14px 32px; text-decoration: none;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.btn-cta-white:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}

/* ─────────────────────────────────────────────
   APP SECTION
───────────────────────────────────────────── */
.s-app {
  background: var(--off-white);
  padding: 100px 0;
}
.app-intro {
  text-align: center;
  margin-bottom: 48px;
}
.app-intro h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 16px;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: box-shadow .3s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-error { border-color: rgba(204,51,51,.2); }
.card-head {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.card-head h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 4px;
}
.card-sub { font-size: 13px; color: var(--text-2); }
.step-pill {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-2);
}
.step-pill-active {
  background: var(--blue-soft); border-color: rgba(0,113,227,.2);
  color: var(--blue);
}
.step-pill-done {
  background: rgba(48,166,74,.1); border-color: rgba(48,166,74,.2);
  color: var(--fill);
}
.status-pill {
  margin-left: auto; font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--r-pill); background: var(--off-white); color: var(--text-2);
  border: 1px solid var(--border); white-space: nowrap;
}

/* ─────────────────────────────────────────────
   FORM ELEMENTS
───────────────────────────────────────────── */
.stack { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.tag-sm {
  font-size: 11px; font-weight: 500; color: var(--text-3);
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 6px;
}
input[type="text"], input[type="password"], input[type="email"] {
  width: 100%;
  font-family: inherit; font-size: 14px;
  background: var(--white); color: var(--text);
  border: 1px solid var(--border-2); border-radius: var(--r);
  padding: 10px 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input[type="text"]:focus, input[type="password"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
input[type="file"] {
  font-size: 13px; color: var(--text-2);
  padding: 8px 0; cursor: pointer;
}
.hint { font-size: 12px; color: var(--text-3); }

/* Drop zones */
.dz {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  background: var(--off-white); border: 2px dashed var(--border-2);
  border-radius: var(--r-lg); padding: 36px 24px; cursor: pointer;
  transition: background .2s, border-color .2s;
  gap: 8px;
}
.dz:hover, .dz.dragover {
  background: var(--blue-soft); border-color: var(--blue);
}
.dz.has-file { background: rgba(48,166,74,.06); border-color: var(--fill); }
.dz-icon { font-size: 28px; }
.dz-text { display: flex; flex-direction: column; gap: 2px; }
.dz-primary  { font-size: 14px; font-weight: 600; color: var(--text); }
.dz-secondary{ font-size: 12px; color: var(--text-3); }
.dz-filename {
  font-size: 13px; font-weight: 600; color: var(--fill);
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dz-sm { padding: 22px 16px; }
.dz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Advanced / details */
.advanced {
  border: 1px solid var(--border); border-radius: var(--r); padding: 0;
  overflow: hidden;
}
.advanced summary {
  padding: 12px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer; user-select: none; color: var(--text-2);
  list-style: none;
}
.advanced summary::-webkit-details-marker { display: none; }
.advanced[open] summary { border-bottom: 1px solid var(--border); }
.advanced .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 16px;
}
.advanced .field { padding: 0 16px 16px; }
.advanced .form-row + .field { border-top: 1px solid var(--border); padding-top: 16px; }

/* Upload summary */
.upload-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  background: var(--blue-soft); border: 1px solid rgba(0,113,227,.15);
  border-radius: var(--r); padding: 10px 14px;
  font-size: 13px;
}
.us-label { font-weight: 600; color: var(--blue); }
.us-item { color: var(--text-2); }
.us-item:empty { display: none; }

/* Actions row */
.actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
button, a.btn-primary, a.btn-outline, a.btn-ghost-lg, a.btn-primary-lg {
  font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: none; gap: 6px;
  transition: transform .15s var(--ease-spring), box-shadow .2s, background .15s, opacity .15s;
}

.btn-primary {
  background: var(--blue); color: var(--white);
  font-size: 14px; font-weight: 600; border-radius: var(--r-pill);
  padding: 9px 22px;
}
.btn-primary:hover { background: var(--blue-hover); transform: scale(1.02); }
.btn-primary:disabled { opacity: .45; transform: none; cursor: not-allowed; }

.btn-lg { font-size: 16px; padding: 13px 30px; }

.btn-primary-lg {
  background: var(--blue); color: var(--white);
  font-size: 16px; font-weight: 600; border-radius: var(--r-pill);
  padding: 14px 32px;
}
.btn-primary-lg:hover { background: var(--blue-hover); transform: scale(1.02); box-shadow: 0 6px 20px rgba(0,113,227,.3); }

.btn-ghost-lg {
  background: transparent; color: var(--text-2);
  font-size: 16px; font-weight: 500; border-radius: var(--r-pill);
  padding: 14px 24px;
}
.btn-ghost-lg:hover { color: var(--text); background: var(--off-white); }

.btn-outline {
  background: transparent; color: var(--text);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border-2); border-radius: var(--r-pill);
  padding: 9px 20px;
}
.btn-outline:hover { background: var(--off-white); border-color: rgba(0,0,0,.2); }
.btn-outline:disabled { opacity: .45; cursor: not-allowed; }

.btn-danger {
  background: var(--remove-bg); color: var(--remove);
  font-size: 14px; font-weight: 600; border-radius: var(--r-pill);
  padding: 9px 20px; border: 1px solid rgba(204,51,51,.2);
}
.btn-danger:hover { background: rgba(204,51,51,.15); }
.btn-danger:disabled { opacity: .45; cursor: not-allowed; }

/* ─────────────────────────────────────────────
   PROGRESS CARD
───────────────────────────────────────────── */
.status-block {
  display: flex; align-items: center; gap: 20px;
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 20px 24px; margin-bottom: 18px;
}
.status-pct {
  font-size: 48px; font-weight: 900; letter-spacing: -.05em;
  color: var(--text); flex-shrink: 0;
}
.status-rows { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.status-line { font-size: 13px; color: var(--text-2); }

.prog-bar-wrap {
  height: 6px; background: var(--off-white); border-radius: var(--r-pill);
  overflow: hidden; margin-bottom: 16px;
}
.prog-bar-fill {
  height: 100%; width: 0%;
  background: var(--blue);
  border-radius: var(--r-pill);
  transition: width .6s var(--ease);
}

.current-pill {
  display: inline-flex; align-items: center;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 6px 14px;
  font-size: 12px; color: var(--text-2);
  margin-bottom: 16px; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.mid-download {
  display: flex; align-items: center; gap: 12px;
  background: rgba(48,166,74,.07); border: 1px solid rgba(48,166,74,.2);
  border-radius: var(--r); padding: 12px 16px; margin-bottom: 16px;
}
.mid-download a { text-decoration: none; }

.job-controls {
  display: flex; gap: 10px; margin-bottom: 20px;
}

/* Timeline */
.timeline-wrap {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 18px 20px; margin-bottom: 20px;
  border: 1px solid var(--border);
}
.tl-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.tl-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); }
.tl-count { font-size: 12px; font-weight: 600; color: var(--text-2); }
.tl-ruler {
  position: relative; height: 22px;
  border-bottom: 1px solid var(--border-2); margin-bottom: 6px;
}
.tl-tick {
  position: absolute; top: 0;
  display: flex; flex-direction: column; align-items: center;
  transform: translateX(-50%);
}
.tl-tick span { font-size: 10px; color: var(--text-3); white-space: nowrap; }
.tl-tick-line { width: 1px; height: 6px; background: var(--border-2); margin-top: 2px; }
.tl-rows { display: flex; flex-direction: column; gap: 5px; max-height: 240px; overflow-y: auto; }
.tl-empty { font-size: 12px; color: var(--text-3); text-align: center; padding: 20px 0; }
.tl-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  gap: 8px; align-items: center;
}
.tl-name {
  font-size: 11px; color: var(--text-2); overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.tl-track { position: relative; height: 14px; background: rgba(0,0,0,.05); border-radius: 4px; overflow: hidden; }
.tl-bar {
  position: absolute; top: 0; height: 100%;
  border-radius: 4px; min-width: 2px;
  transition: width .4s var(--ease), left .4s var(--ease);
}
.tl-bar-active  { background: var(--blue); }
.tl-bar-done    { background: var(--fill); }
.tl-bar-error   { background: var(--remove); }
.tl-bar-pending { background: var(--keep-bg); }
.tl-badge { font-size: 10px; color: var(--text-3); text-align: right; }

/* Action counters */
.counters {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin-bottom: 20px;
}
.ct {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 10px; text-align: center;
  transition: transform .15s var(--ease-spring);
}
@keyframes bump { 0%,100% { transform: scale(1); } 40% { transform: scale(1.12); } }
.ct.bumped { animation: bump .3s var(--ease-spring); }
.ct .n   { font-size: 24px; font-weight: 800; letter-spacing: -.03em; }
.ct .lbl { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.ct-keep    .n { color: var(--keep); }
.ct-replace .n { color: var(--replace); }
.ct-fill    .n { color: var(--fill); }
.ct-remove  .n { color: var(--remove); }
.ct-error   .n { color: var(--text-3); }

/* Animated dots in "Working..." heading */
.dots span {
  opacity: 0;
  animation: dot-fade 1.5s infinite;
}
.dots span:nth-child(2) { animation-delay: .3s; }
.dots span:nth-child(3) { animation-delay: .6s; }
@keyframes dot-fade { 0%,80%,100% { opacity: 0; } 40% { opacity: 1; } }

/* Log */
.log-wrap {
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.log-wrap summary {
  padding: 10px 14px; font-size: 12px; font-weight: 600; cursor: pointer;
  color: var(--text-2); user-select: none; list-style: none;
}
.log-wrap summary::-webkit-details-marker { display: none; }
.log-wrap pre {
  padding: 12px 14px; font-size: 11px; line-height: 1.6;
  color: var(--text-2); background: var(--off-white);
  max-height: 200px; overflow-y: auto;
  white-space: pre-wrap; word-break: break-all;
  margin: 0; border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────
   RESULTS CARD
───────────────────────────────────────────── */
.check { color: var(--fill); }
.results-summary {
  font-size: 15px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 24px;
}

.totals {
  width: 100%; border-collapse: collapse; margin-top: 24px;
  font-size: 13px;
}
.totals th, .totals td {
  padding: 9px 12px; border-bottom: 1px solid var(--border);
  text-align: left;
}
.totals th { font-weight: 600; color: var(--text-3); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.totals td:last-child { font-weight: 600; text-align: right; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--text);
  padding: 32px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
footer .brand-name { color: rgba(255,255,255,.8); }
footer .brand-sep  { color: rgba(255,255,255,.3); }
footer .hint       { color: rgba(255,255,255,.4); }

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-wrap     { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { order: -1; }
  .hero-card     { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .counters      { grid-template-columns: repeat(3, 1fr); }
  .tl-row        { grid-template-columns: 110px 1fr 40px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dz-grid       { grid-template-columns: 1fr; }
  .nav-links     { display: none; }
  .card          { padding: 24px 20px; }
  .counters      { grid-template-columns: repeat(2, 1fr); }
  .tl-row        { grid-template-columns: 90px 1fr 36px; }
  .advanced .form-row { grid-template-columns: 1fr; }
}
