/* ═══════════════════════════════════════
   SYNAPSE Z — style.css
   Theme: Light, rose-violet, refined
═══════════════════════════════════════ */

:root {
  /* Palette */
  --white:       #ffffff;
  --bg:          #faf8ff;
  --bg2:         #f3f0ff;
  --surface:     #ffffff;
  --surface2:    #fdf6ff;

  --border:      rgba(167, 139, 250, 0.22);
  --border-soft: rgba(167, 139, 250, 0.12);

  --p:           #d946ef;   /* fuchsia-500 */
  --p-dark:      #a21caf;   /* fuchsia-700 */
  --v:           #7c3aed;   /* violet-700  */
  --v-light:     #a78bfa;   /* violet-400  */
  --v-pale:      #ede9fe;   /* violet-100  */

  --txt:         #1e1b2e;
  --txt-2:       #5b5072;
  --txt-3:       #9585af;

  --shadow-sm:   0 1px 3px rgba(124, 58, 237, 0.08), 0 1px 2px rgba(124, 58, 237, 0.04);
  --shadow-md:   0 4px 16px rgba(124, 58, 237, 0.12), 0 1px 4px rgba(124, 58, 237, 0.06);
  --shadow-lg:   0 12px 40px rgba(124, 58, 237, 0.16);
  --shadow-glow: 0 0 40px rgba(217, 70, 239, 0.28), 0 4px 20px rgba(124, 58, 237, 0.22);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 100px;

  --font-head:   'Outfit', sans-serif;
  --font-body:   'Outfit', sans-serif;

  --nav-h:       64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--txt);
}
.section-head p {
  color: var(--txt-2);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fdf0ff, #ede9fe);
  border: 1px solid var(--border);
  color: var(--v);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--p) 0%, var(--v) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(217, 70, 239, 0.38), 0 6px 28px rgba(124, 58, 237, 0.3);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--v);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: var(--v-pale);
  border-color: var(--v-light);
  transform: translateY(-1px);
}

.btn--xl { padding: 17px 38px; font-size: 1.05rem; border-radius: var(--radius); }
.btn--full { width: 100%; }

/* ═══════════════════════════
   NAV
═══════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--txt);
  flex-shrink: 0;
}
.nav__logo em { color: var(--p); font-style: normal; }
.nav__logo-icon { width: 26px; height: 26px; flex-shrink: 0; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  display: block;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--txt-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--v); background: var(--v-pale); }

.nav__dl-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--p), var(--v));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(217, 70, 239, 0.3);
  border: none;
  cursor: pointer;
}
.nav__dl-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav__dl-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--white);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  list-style: none;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile a {
  display: block;
  padding: 10px 14px;
  color: var(--txt-2);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav__mobile a:hover { background: var(--v-pale); color: var(--v); }
.nav__mobile .nav__dl-btn {
  margin-left: 0;
  margin-top: 8px;
  justify-content: center;
}

/* ═══════════════════════════
   BREADCRUMB
═══════════════════════════ */
.breadcrumb-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb {
  padding: 10px 20px;
  font-size: 0.82rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb a {
  color: var(--v);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current] span { color: var(--txt-3); }
.bc-sep { color: var(--txt-3); display: flex; align-items: center; }
.bc-sep svg { width: 6px; height: 10px; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(217,70,239,0.18), transparent 70%);
  top: -120px; left: -80px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,0.14), transparent 70%);
  top: 0; right: -60px;
  animation: orb-drift 14s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(217,70,239,0.1), transparent 70%);
  bottom: 40px; left: 40%;
  animation: orb-drift 10s ease-in-out infinite alternate;
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167,139,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, 18px) scale(1.08); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fdf0ff, #ede9fe);
  border: 1px solid rgba(167,139,250,0.35);
  color: var(--v);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 22px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--p);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(217,70,239,0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(217,70,239,0); }
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--txt);
}
.hero__title-em {
  background: linear-gradient(135deg, var(--p), var(--v));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__br { display: none; }
@media (max-width: 500px) { .hero__br { display: block; } }

.hero__desc {
  color: var(--txt-2);
  font-size: clamp(0.97rem, 2vw, 1.1rem);
  max-width: 560px;
  margin: 0 auto 28px;
}
.hero__desc strong { color: var(--txt); }

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ═══════════════════════════
   SHARE ROW
═══════════════════════════ */
.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-3);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.15s;
  flex-shrink: 0;
}
.share-btn svg { width: 16px; height: 16px; }
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }

.share-btn--text {
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-head);
}
.share-btn--text svg { width: 14px; height: 14px; }
.share-row--label { gap: 8px; }

.sb-x      { background: #000; }
.sb-fb     { background: #1877f2; }
.sb-li     { background: #0a66c2; }
.sb-rd     { background: #ff4500; }
.sb-pt     { background: #e60023; }

/* ═══════════════════════════
   HERO STATS
═══════════════════════════ */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 20px 28px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero__stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--p), var(--v));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero__stat span {
  font-size: 0.75rem;
  color: var(--txt-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════
   SECTION IMAGES
═══════════════════════════ */
.hero__img-wrap,
.section-img-wrap,
.howto__img-wrap {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero__img,
.section-img,
.howto__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════
   SECTIONS COMMON
═══════════════════════════ */
.section { padding: 80px 0; }

/* ═══════════════════════════
   FEATURES
═══════════════════════════ */
.features { background: var(--bg2); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--v-light);
}
.feat-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #fdf0ff, #ede9fe);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--v);
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--txt);
}
.feat-card p { font-size: 0.9rem; color: var(--txt-2); line-height: 1.6; }

/* ═══════════════════════════
   CHANGELOG
═══════════════════════════ */
.changelog { background: var(--white); }

.cl-timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cl-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.cl-entry:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.cl-entry__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 3px;
}
.cl-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--v));
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--v-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cl-dot--latest {
  width: 15px; height: 15px;
  box-shadow: 0 0 0 3px rgba(217,70,239,0.3);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.cl-dot--muted {
  background: var(--border);
  box-shadow: 0 0 0 2px var(--border-soft);
}
.cl-date {
  font-size: 0.78rem;
  color: var(--txt-3);
  font-weight: 500;
}
.cl-entry__body {
  padding-bottom: 0;
}
.cl-entry__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cl-version {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--v);
  background: var(--v-pale);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 10px;
}
.cl-version--muted {
  color: var(--txt-3);
  background: var(--bg2);
  border-color: var(--border-soft);
}
.cl-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--p), var(--v));
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}
.cl-entry h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.cl-entry--latest .cl-entry__body {
  background: linear-gradient(135deg, #fdf6ff, #f3f0ff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.cl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cl-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--txt-2);
  line-height: 1.5;
}
.cl-list li::before {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 6px;
  margin-top: 1px;
  white-space: nowrap;
}
.cl-fix::before { content: 'Fix'; background: #fee2e2; color: #dc2626; }
.cl-new::before { content: 'New'; background: #d1fae5; color: #059669; }
.cl-perf::before { content: 'Perf'; background: #dbeafe; color: #2563eb; }
.cl-list code {
  background: var(--v-pale);
  color: var(--v);
  font-size: 0.82em;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
}

/* ═══════════════════════════
   HOW TO
═══════════════════════════ */
.howto { background: var(--bg); }
.steps {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--p), var(--v));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 10px;
}
.step-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #fdf0ff, #ede9fe);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v);
  margin: 0 auto 14px;
}
.step-icon svg { width: 22px; height: 22px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.step-card p { font-size: 0.88rem; color: var(--txt-2); line-height: 1.55; }
.step-arrow {
  color: var(--v-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.step-arrow svg { width: 32px; height: 12px; }

/* ═══════════════════════════
   SPECS
═══════════════════════════ */
.specs { background: var(--bg2); }
.specs-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.specs-table tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s;
}
.specs-table tbody tr:last-child { border-bottom: none; }
.specs-table tbody tr:hover { background: var(--bg2); }
.specs-table th, .specs-table td {
  padding: 13px 18px;
  font-size: 0.92rem;
  text-align: left;
}
.specs-table th { color: var(--txt-3); font-weight: 500; width: 44%; }
.specs-table td { color: var(--txt); font-weight: 600; }
.spec-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--p), var(--v));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}
.specs-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.specs-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.specs-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt);
}
.specs-checks svg { width: 18px; height: 18px; color: var(--v); flex-shrink: 0; }
.specs-cta-meta {
  text-align: center;
  font-size: 0.78rem;
  color: var(--txt-3);
  margin-top: 10px;
}

/* ═══════════════════════════
   COMPARISON
═══════════════════════════ */
.compare { background: var(--white); }
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp-table th, .cmp-table td {
  padding: 13px 18px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-soft);
}
.cmp-table th {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--txt-3);
  background: var(--bg2);
  padding: 14px 18px;
}
.cmp-table td:first-child { text-align: left; color: var(--txt-2); font-weight: 500; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: var(--bg); }
.cmp-us {
  background: linear-gradient(180deg, #fdf0ff 0%, #ede9fe 100%) !important;
  color: var(--v) !important;
  font-weight: 700 !important;
}
.cmp-table th.cmp-us {
  color: var(--p) !important;
  background: linear-gradient(180deg, #fce7ff, #ede9fe) !important;
  font-size: 0.9rem !important;
}

/* ═══════════════════════════
   FAQ
═══════════════════════════ */
.faq { background: var(--bg2); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--v-light);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--txt);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow {
  width: 16px; height: 16px;
  color: var(--v-light);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); color: var(--v); }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.91rem;
  color: var(--txt-2);
  line-height: 1.65;
}
.faq-link { color: var(--v); text-decoration: underline; }
.faq-link:hover { color: var(--p); }

/* ═══════════════════════════
   DOWNLOAD CTA
═══════════════════════════ */
.download { background: var(--white); }
.dl-box {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #fdf0ff 0%, #ede9fe 50%, #fdf0ff 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 64px 32px 52px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dl-box__glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(217,70,239,0.2), transparent 70%);
  pointer-events: none;
}
.dl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(167,139,250,0.4);
  color: var(--v);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.dl-box h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--txt);
  margin-bottom: 12px;
}
.dl-box p {
  color: var(--txt-2);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.dl-meta {
  margin-top: 14px !important;
  margin-bottom: 28px !important;
  font-size: 0.8rem !important;
  color: var(--txt-3) !important;
}

/* ═══════════════════════════
   ARTICLES
═══════════════════════════ */
.articles { background: var(--bg2); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.article-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-decoration: none;
  color: var(--txt);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--v-light);
}
.art-tag {
  display: inline-block;
  background: var(--v-pale);
  border: 1px solid var(--border);
  color: var(--v);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.article-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--txt);
  line-height: 1.35;
}
.article-card p { font-size: 0.83rem; color: var(--txt-2); line-height: 1.5; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand .nav__logo { justify-content: center; margin-bottom: 4px; }
.footer-brand p { font-size: 0.85rem; color: var(--txt-3); }
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--txt-2);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.footer-links a:hover { color: var(--v); background: var(--v-pale); }
.footer-legal { font-size: 0.78rem; color: var(--txt-3); }

/* ═══════════════════════════
   SCROLL REVEAL
═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 900px) {
  .specs-layout { grid-template-columns: 1fr; }
  .specs-cta-card { position: static; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__dl-btn { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 44px 0 52px; }
  .hero__stats { padding: 16px 16px; }
  .hero__stat { padding: 0 14px; }
  .hero__stat strong { font-size: 1.25rem; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }

  .feat-grid { grid-template-columns: 1fr 1fr; }

  .cl-entry { grid-template-columns: 80px 1fr; gap: 12px; }
  .cl-date { font-size: 0.72rem; }

  .steps { gap: 8px; }
  .step-card { min-width: 160px; max-width: 100%; }
  .step-arrow { display: none; }

  .dl-box { padding: 44px 20px 40px; border-radius: 20px; }

  .articles-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
  }
  .hero__stat-sep { width: 48px; height: 1px; }
  .hero__stat { flex-direction: row; justify-content: space-between; width: 100%; padding: 0; }
  .hero__stat strong { font-size: 1.1rem; }

  .feat-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }

  .share-row { gap: 6px; }

  .cl-entry { grid-template-columns: 1fr; gap: 8px; }
  .cl-entry:not(:last-child)::before { display: none; }
  .cl-entry__aside { flex-direction: row; align-items: center; }

  .cmp-table th, .cmp-table td { padding: 10px 10px; font-size: 0.82rem; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 1.7rem; }
  .btn--xl { padding: 14px 22px; font-size: 0.95rem; }
}
