/* ============================================
   Auto Flow — Website Styles
   Matches extension dark UI aesthetic
   ============================================ */

:root {
  --bg-deep: #0a0a0b;
  --bg-body: #0d0b18;
  --bg-surface: #131320;
  --bg-elevated: #1a1a2e;
  --bg-card: #141422;
  --bg-card-hover: #1c1c32;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-1: #e8e8ed;
  --text-2: #9b9baf;
  --text-3: #6b6b80;
  --blue: #5b9bff;
  --blue-dim: rgba(91, 155, 255, 0.1);
  --blue-glow: rgba(91, 155, 255, 0.25);
  --green: #3dd68c;
  --green-dim: rgba(61, 214, 140, 0.1);
  --red: #ff6b6b;
  --red-dim: rgba(255, 107, 107, 0.1);
  --gold: #ffd56d;
  --gold-glow: rgba(255, 213, 109, 0.3);
  --gold-dim: rgba(255, 213, 109, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --header-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --content-max: 1120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 32px); }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-body);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #7db5ff; }
img { max-width: 100%; height: auto; display: block; }
code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--blue-dim);
  border: 1px solid rgba(91, 155, 255, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}
strong { font-weight: 600; color: var(--text-1); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.2; }

/* --- Utilities --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.2s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 20px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { background: #6da8ff; color: #fff; box-shadow: 0 0 30px var(--blue-glow); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text-1);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.btn-review { border-color: rgba(255,213,109,0.2); color: var(--gold); }
.btn-review:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); box-shadow: 0 0 16px var(--gold-glow); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius); }
.btn-discord {
  background: #5865F2; color: #fff;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.3);
}
.btn-discord:hover { background: #6d79f5; color: #fff; transform: translateY(-1px); }
.btn-telegram { border-color: rgba(38, 165, 228, 0.2); color: #26a5e4; }
.btn-telegram:hover { border-color: #26a5e4; color: #26a5e4; background: rgba(38, 165, 228, 0.1); box-shadow: 0 0 16px rgba(38, 165, 228, 0.25); }
.btn-continue {
  background: var(--green); color: #0a0a0b; border: none;
  padding: 14px 36px; border-radius: var(--radius); cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 20px rgba(61, 214, 140, 0.2);
  animation: greenBreathe 2.5s ease-in-out infinite;
  transition: all 0.2s var(--ease);
}
.btn-continue:hover {
  background: #4de09a; transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7), 0 0 32px rgba(61, 214, 140, 0.35);
}
@keyframes greenBreathe {
  0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 16px rgba(61, 214, 140, 0.15); }
  50% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.65), 0 0 28px rgba(61, 214, 140, 0.3); }
}
.btn-install {
  background: var(--blue); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-sm);
  box-shadow: 0 0 12px var(--blue-glow);
}
.btn-install:hover { background: #6da8ff; color: #fff; }
.btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  color: var(--text-2); border: 1px solid var(--border);
  transition: all 0.2s var(--ease);
}
.btn-icon:hover { color: #5865F2; border-color: #5865F2; background: rgba(88,101,242,0.1); }

/* ============================================
   CHANGELOG MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card {
  position: relative;
  width: 90%; max-width: 520px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }
.modal-glow {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.modal-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.modal-version-badge {
  background: linear-gradient(135deg, #ffe9a6, #ffd56d, #ffbf4a);
  color: #1a1a2e; font-weight: 700; font-size: 13px;
  padding: 4px 12px; border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.modal-date { color: var(--text-3); font-size: 13px; }
.modal-title {
  font-size: 24px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-1), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-changelog {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; padding: 0;
}
.modal-changelog li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2); line-height: 1.5;
}
.tag {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.tag-new { background: var(--green-dim); color: var(--green); }
.tag-improved { background: var(--blue-dim); color: var(--blue); }
.tag-fixed { background: var(--red-dim); color: var(--red); }
.modal-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.modal-actions .btn-discord { flex: 1; justify-content: center; padding: 12px; border-radius: var(--radius); }
.modal-actions .btn-continue { flex: 1; text-align: center; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.header-inner {
  max-width: var(--content-max); margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-1);
}
.logo-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-ring img { width: 28px; height: 28px; }
.header-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; }
.version-pill {
  font-size: 11px; padding: 2px 8px; border-radius: 12px;
  background: var(--blue-dim); color: var(--blue);
  font-weight: 500; border: 1px solid rgba(91,155,255,0.15);
}
.header-nav { display: flex; gap: 32px; }
.header-nav .nav-link {
  color: var(--text-2); font-size: 14px; font-weight: 500;
  transition: color 0.2s var(--ease); text-decoration: none;
}
.header-nav .nav-link:hover { color: var(--text-1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
  flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-2); border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 24px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.35;
}
.hero-orb--1 {
  width: 500px; height: 500px; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(91,155,255,0.4) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 400px; height: 400px; bottom: 5%; left: -10%;
  background: radial-gradient(circle, rgba(255,213,109,0.2) 0%, transparent 70%);
}
.hero-orb--3 {
  width: 300px; height: 300px; top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(61,214,140,0.1) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--content-max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 20px;
  background: var(--gold-dim); border: 1px solid rgba(255,213,109,0.15);
  color: var(--gold); font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-2);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--text-1); }
.stat-label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border-hover); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-screenshot-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.03),
    0 0 40px rgba(91,155,255,0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s var(--ease);
}
.hero-screenshot-wrapper:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.hero-screenshot { width: 100%; display: block; }

/* ============================================
   SCREENSHOT LABELS
   ============================================ */
.screenshot-label, .screenshot-caption {
  display: block; text-align: center;
  font-size: 12px; color: var(--text-3);
  padding: 8px 0 0; font-weight: 500;
  letter-spacing: 0.3px;
}
.screenshot-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; font-size: 13px;
  background: linear-gradient(transparent, rgba(10,10,11,0.9));
  color: var(--text-2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 560px; margin: 0 auto 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-subtitle { color: var(--text-2); font-size: 16px; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 96px 24px;
  max-width: var(--content-max); margin: 0 auto;
}
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  margin-bottom: 96px;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon--control { background: var(--blue-dim); color: var(--blue); }
.feature-icon--gallery { background: var(--gold-dim); color: var(--gold); }
.feature-icon--settings { background: var(--green-dim); color: var(--green); }
.feature-icon--queue { background: rgba(168,85,247,0.1); color: #a855f7; }
.feature-name { font-size: 24px; margin-bottom: 12px; }
.feature-desc { color: var(--text-2); margin-bottom: 16px; font-size: 15px; }
.feature-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-list li {
  position: relative; padding-left: 20px;
  color: var(--text-2); font-size: 14px;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
.feature-screenshots {
  display: flex; flex-direction: column; gap: 16px;
}
.screenshot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.screenshot-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.screenshot-card img { width: 100%; display: block; }
.screenshot-card .screenshot-caption {
  padding: 10px 16px; background: var(--bg-surface);
  border-top: 1px solid var(--border); text-align: left;
}

/* ============================================
   BUTTON EXPLAINER
   ============================================ */
.explainer {
  padding: 96px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.explainer .section-header { margin-bottom: 48px; }
.explainer-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.explainer-group-title {
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-3);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.explainer-items {
  display: flex; flex-direction: column; gap: 20px;
}
.explainer-item {
  display: grid; grid-template-columns: 280px 1fr; gap: 24px;
  align-items: start;
  padding: 20px; border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}
.explainer-item:hover { border-color: var(--border-hover); }
.explainer-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.explainer-img img { width: 100%; display: block; }
.explainer-info strong {
  display: block; font-size: 16px; margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.explainer-info p { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.explainer-info em { color: var(--blue); font-style: normal; font-weight: 500; }

/* ============================================
   GUIDE (Accordions)
   ============================================ */
.guide {
  padding: 96px 24px;
  max-width: 800px; margin: 0 auto;
}
.accordion-list {
  display: flex; flex-direction: column; gap: 8px;
}
.accordion {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.accordion[open] { border-color: var(--border-hover); }
.accordion-trigger {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text-1); list-style: none;
  transition: background 0.2s var(--ease);
}
.accordion-trigger:hover { background: var(--bg-card-hover); }
.accordion-trigger::-webkit-details-marker { display: none; }
.accordion-trigger::marker { display: none; content: ''; }
.accordion-icon { color: var(--blue); flex-shrink: 0; display: flex; }
.accordion-chevron {
  margin-left: auto; color: var(--text-3); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.accordion[open] .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  padding: 0 20px 20px 52px;
  color: var(--text-2); font-size: 14px; line-height: 1.7;
}
.accordion-content ol {
  padding-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.accordion-content p { margin-bottom: 12px; }
.guide-tip {
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--blue-dim); border-left: 3px solid var(--blue);
  font-size: 13px; color: var(--text-2);
}
.guide-screenshot {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.guide-screenshot img { width: 100%; display: block; }
.guide-screenshot .screenshot-caption {
  padding: 8px 12px; background: var(--bg-surface);
  border-top: 1px solid var(--border); text-align: left;
}

/* --- Guide Index --- */
.guide-index {
  max-width: 800px; margin: 0 auto 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.guide-index-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-3); margin-bottom: 14px; font-weight: 600;
}
.guide-index-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.guide-index-item {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-2); transition: all 0.2s var(--ease); text-decoration: none;
}
.guide-index-item:hover {
  background: var(--blue-dim); border-color: rgba(91,155,255,0.2);
  color: var(--blue);
}

/* --- Guide Inner Styles --- */
.guide-subheading {
  font-size: 15px; font-weight: 600; color: var(--text-1);
  margin: 24px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.button-explainer-list {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px;
}
.btn-explain {
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border: 1px solid var(--border);
}
.btn-explain strong {
  font-size: 14px; display: inline;
}
.btn-explain p {
  margin: 4px 0 0; color: var(--text-2); font-size: 13px; line-height: 1.6;
}
.btn-tag {
  display: inline-block; padding: 1px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; margin-left: 6px; vertical-align: middle;
}
.btn-tag.gold { background: var(--gold-dim); color: var(--gold); }
.btn-tag.blue { background: var(--blue-dim); color: var(--blue); }
.explain-warning {
  color: var(--gold); font-size: 12px; margin-top: 6px;
  padding: 6px 10px; border-radius: 4px;
  background: var(--gold-dim); border-left: 2px solid var(--gold);
}
.code-example {
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--bg-deep); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px;
  color: var(--text-2); line-height: 1.8; margin: 12px 0 16px;
  overflow-x: auto;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 96px 24px;
  max-width: 800px; margin: 0 auto;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,155,255,0.12) 0%, transparent 60%),
    var(--bg-body);
  border-top: 1px solid var(--border);
}
.cta-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.cta-subtitle { color: var(--text-2); font-size: 17px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-2); }
.footer-version { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; align-items: center; gap: 16px; font-size: 13px; }
.footer-credit { color: var(--text-3); }
.footer-links a { color: var(--text-3); }
.footer-links a:hover { color: var(--text-1); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 12px var(--gold-glow); }
  50% { box-shadow: 0 0 24px var(--gold-glow), 0 0 48px rgba(255,213,109,0.15); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeUp 0.7s var(--ease) both; }
.hero-visual { animation: fadeUp 0.7s 0.15s var(--ease) both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-screenshot-wrapper { transform: none; }
  .hero-screenshot-wrapper:hover { transform: none; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-row--reverse > * { direction: ltr; }
  .explainer-item { grid-template-columns: 1fr; }
  .explainer-img { max-width: 320px; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 16px;
  }
  .btn-install span { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; }
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
  .features, .explainer, .guide, .faq { padding: 64px 16px; }
  .feature-row { gap: 32px; margin-bottom: 64px; }
  .section-title { font-size: 28px; }
  .modal-card { padding: 24px; }
  .modal-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}