/* ─────────────────────────────────────────────
   EnzoAI Landing Page — style.css
   Dark · Purple · Local-first · Stunning
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:           #03020c;
  --bg-surface:   #08070f;
  --bg-card:      rgba(255,255,255,0.03);
  --bg-card-hov:  rgba(255,255,255,0.06);
  --border:       rgba(255,255,255,0.07);
  --border-hov:   rgba(124,110,245,0.4);

  --accent:       #7c6ef5;
  --accent-light: #a78bfa;
  --accent-glow:  rgba(124,110,245,0.35);
  --accent-dim:   rgba(124,110,245,0.12);

  --text-primary:   #f0eeff;
  --text-secondary: #8b859e;
  --text-muted:     #4a4560;

  --tg-blue:    #2CA5E0;
  --dc-purple:  #5865F2;
  --sl-red:     #E01E5A;
  --sl-green:   #2EB67D;
  --sl-yellow:  #ECB22E;
  --sl-blue:    #36C5F0;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 64px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; border: none; background: none; }

/* ── Custom Cursor — small purple dot only ── */
html, body, a, button, * { cursor: none !important; }
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.2s;
}
.cursor-glow { display: none; }

/* ── Aurora Background ── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.aurora-orb:nth-child(1) {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #4f3de0 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: drift1 22s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(2) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7c6ef5 0%, transparent 70%);
  top: 20%; right: -10%;
  opacity: 0.35;
  animation: drift2 28s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(3) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1a0a3a 0%, transparent 70%);
  bottom: 10%; left: 30%;
  opacity: 0.6;
  animation: drift3 18s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(4) {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #5e3ee8 0%, transparent 70%);
  bottom: -10%; right: 20%;
  opacity: 0.3;
  animation: drift4 32s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(80px, 60px) scale(1.12); }
}
@keyframes drift2 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(-60px, 80px) scale(0.92); }
}
@keyframes drift3 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(40px, -70px) scale(1.08); }
}
@keyframes drift4 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(-50px, -40px) scale(1.15); }
}

/* ── Noise Texture Overlay ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Main Content Layer ── */
main, nav, footer, section { position: relative; z-index: 2; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-purple {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(3,2,12,0.7);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-hex {
  color: var(--accent-light);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 4px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 30px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: box-shadow 0.25s ease, transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  text-align: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,110,245,0.1);
  border: 1px solid rgba(124,110,245,0.25);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: badge-in 0.7s var(--ease-out-expo) both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@keyframes badge-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 820px;
  width: 100%;
  text-align: center;
  animation: hero-in 0.9s var(--ease-out-expo) 0.1s both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 400;
  text-align: center;
  animation: hero-in 0.9s var(--ease-out-expo) 0.2s both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
  animation: hero-in 0.9s var(--ease-out-expo) 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  box-shadow: 0 0 50px var(--accent-glow), 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  animation: hero-in 0.9s var(--ease-out-expo) 0.4s both;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-badge svg {
  width: 14px; height: 14px;
  color: var(--accent-light);
}

/* ── Section Shared ── */
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(124,110,245,0.2);
}
.section-h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo),
              border-color 0.3s ease,
              background 0.3s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hov);
  background: var(--bg-card-hov);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.wide {
  grid-column: span 2;
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(124,110,245,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.card-icon svg {
  width: 22px; height: 22px;
  color: var(--accent-light);
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.card-visual {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
/* Wide card extras */
.feature-card.wide .card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ── CLI Section ── */
.cli-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.cli-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cli-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.cli-check {
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .cli-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Integration Cards Grid ── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.int-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s ease;
}
.int-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hov);
  box-shadow: 0 20px 60px rgba(124,110,245,0.1);
}
.int-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.int-card-title {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
}
.int-card-body {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65;
}
@media (max-width: 768px) {
  .int-grid { grid-template-columns: 1fr; }
}

/* ── Integrations (old — keep for fallback) ── */
.integrations-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  gap: 80px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.integrations-glass::before {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.integrations-left { flex: 1; }
.integrations-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.int-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid;
  width: fit-content;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
}
.int-pill:hover { transform: translateX(6px); }
.int-pill svg { width: 22px; height: 22px; flex-shrink: 0; }
.int-pill.telegram {
  background: rgba(44,165,224,0.1);
  border-color: rgba(44,165,224,0.3);
  color: #2CA5E0;
}
.int-pill.telegram:hover { box-shadow: 0 0 20px rgba(44,165,224,0.25); }
.int-pill.discord {
  background: rgba(88,101,242,0.1);
  border-color: rgba(88,101,242,0.3);
  color: #7289da;
}
.int-pill.discord:hover { box-shadow: 0 0 20px rgba(88,101,242,0.25); }
.int-pill.slack {
  background: rgba(74,21,75,0.15);
  border-color: rgba(224,30,90,0.25);
  color: var(--text-primary);
}
.int-pill.slack:hover { box-shadow: 0 0 20px rgba(224,30,90,0.15); }
.int-pill-label { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }

/* ── Terminal ── */
.terminal-wrap {
  max-width: 740px;
  margin: 0 auto;
}
.terminal {
  background: #0d0b1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', 'Menlo', 'Consolas', monospace;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.term-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.term-dot.red    { background: #ff5f57; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green  { background: #28c840; }
.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 6px;
}
.terminal-body { padding: 28px 28px 32px; }
.term-line {
  font-size: 0.85rem;
  line-height: 1.85;
  white-space: pre;
}
.term-prompt { color: var(--accent-light); }
.term-cmd    { color: #e2e0ff; }
.term-comment{ color: var(--text-muted); }
.term-success{ color: #4ade80; }
.term-info   { color: #93c5fd; }
.term-warn   { color: #fbbf24; }
.term-cursor {
  display: inline-block;
  width: 8px; height: 15px;
  background: var(--accent-light);
  vertical-align: text-bottom;
  border-radius: 2px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Download Cards ── */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition: transform 0.3s var(--ease-out-expo),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  cursor: none;
}
.dl-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hov);
  box-shadow: 0 0 40px var(--accent-glow), 0 20px 40px rgba(0,0,0,0.4);
}
.dl-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(124,110,245,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.dl-icon svg { width: 26px; height: 26px; }
.dl-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.dl-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(124,110,245,0.1);
  border: 1px solid rgba(124,110,245,0.25);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.dl-card:hover .dl-btn {
  background: rgba(124,110,245,0.2);
  box-shadow: 0 0 16px rgba(124,110,245,0.2);
}
.dl-btn svg { width: 14px; height: 14px; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0;
}

/* ── Footer ── */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand-logo svg { width: 28px; height: 28px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text-secondary); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.wide { grid-column: span 2; }
  .feature-card.wide .card-inner { grid-template-columns: 1fr; gap: 20px; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
  .integrations-glass { flex-direction: column; gap: 40px; padding: 40px 32px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .downloads-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 80px; }
  .section { padding: 70px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
