/* ============================================
   FilerFrog — Site Styles
   Premium utility-tool aesthetic: dense, product-forward, calm.
   ============================================ */

:root {
  --bg: #fbfaf7;
  --bg-elevated: #ffffff;
  --bg-card: #f4f3ee;
  --bg-deep: #efeee8;

  --text: #0e1614;
  --text-muted: #4a5450;
  --text-dim: #8a8e8b;
  --text-faint: #b6b9b4;

  --accent: #15803d;
  --accent-bright: #166534;
  --accent-soft: rgba(21, 128, 61, 0.08);
  --accent-softer: rgba(21, 128, 61, 0.04);
  --accent-glow: rgba(21, 128, 61, 0.18);

  --surface-border: #e7e4dc;
  --surface-border-strong: #d8d4ca;
  --surface-border-inset: rgba(14, 22, 20, 0.05);

  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --nav-height: 68px;
  --container: 1120px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shadow-sm: 0 1px 2px rgba(14, 22, 20, 0.04), 0 1px 1px rgba(14, 22, 20, 0.04);
  --shadow-md: 0 6px 18px rgba(14, 22, 20, 0.06), 0 2px 6px rgba(14, 22, 20, 0.04);
  --shadow-lg: 0 24px 56px rgba(14, 22, 20, 0.10), 0 10px 22px rgba(14, 22, 20, 0.06);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav--scrolled {
  background: rgba(251, 250, 247, 0.92);
  border-bottom-color: var(--surface-border);
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav__logo-img {
  height: 30px;
  width: auto;
}
.nav__version {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 2px 8px;
  letter-spacing: 0;
  margin-left: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__link--cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white !important;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 4px 14px var(--accent-glow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav__link--cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 22px var(--accent-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  gap: 10px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 20px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 32px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 24px;
  border: 1px solid var(--surface-border-strong);
}
.btn--ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--text-dim);
  transform: translateY(-1px);
}
.btn-icon { flex-shrink: 0; }

/* ── Hero ───────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__grid {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(var(--surface-border-inset) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-border-inset) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -240px;
  right: -160px;
  opacity: 0.10;
}
.hero__glow--2 {
  width: 480px;
  height: 480px;
  background: #4ade80;
  bottom: -200px;
  left: -160px;
  opacity: 0.06;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50%      { box-shadow: 0 0 0 6px var(--accent-softer); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero__highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.hero__subtitle {
  font-size: 1.06rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__meta svg { color: var(--accent); }

/* ── Hero mockup: stylized Windows context menu ────────── */
.hero__mockup {
  position: relative;
  min-height: 380px;
}
.ctx-window {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  transform: rotate(-1.2deg);
}
.ctx-window__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 0 14px;
  height: 36px;
  border-bottom: 1px solid var(--surface-border);
  background: var(--bg);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.ctx-window__path {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ctx-window__path svg { color: var(--accent); flex-shrink: 0; }
.ctx-window__controls {
  display: inline-flex;
  margin-left: auto;
  align-self: stretch;
}
.ctx-ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 100%;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  cursor: default;
}
.ctx-ctrl:hover { background: var(--bg-card); }
.ctx-ctrl--close { border-top-right-radius: var(--radius-lg); }
.ctx-ctrl--close:hover { background: #e81123; color: white; }
.ctx-window__body {
  display: flex;
  gap: 16px;
  padding: 20px 20px 28px;
}
.ctx-file {
  width: 88px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
}
.ctx-file--selected {
  background: rgba(21, 128, 61, 0.10);
  outline: 1px dashed rgba(21, 128, 61, 0.4);
  color: var(--text);
}
.ctx-file__thumb {
  width: 76px;
  height: 56px;
  border-radius: 6px;
  margin: 0 auto 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--surface-border);
}
.ctx-file__thumb--1 {
  background-image: linear-gradient(135deg, #5b8def 0%, #a3c4ff 50%, #ffd6a5 100%);
}
.ctx-file__thumb--2 {
  background-image: linear-gradient(135deg, #4ade80 0%, #fde68a 50%, #f59e0b 100%);
}

.ctx-menu {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 220px;
  font-size: 0.84rem;
  color: var(--text);
}
.ctx-menu--primary {
  top: 96px;
  left: 28px;
  transform: rotate(0.6deg);
  z-index: 2;
}
.ctx-menu--ff {
  top: 130px;
  left: 232px;
  transform: rotate(-0.4deg);
  z-index: 3;
  min-width: 240px;
}
.ctx-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: default;
  position: relative;
}
.ctx-menu__item--dim { color: var(--text-dim); }
.ctx-menu__item--active {
  background: linear-gradient(180deg, rgba(21,128,61,0.10), rgba(21,128,61,0.06));
  color: var(--text);
  font-weight: 500;
}
.ctx-menu__item--hover {
  background: linear-gradient(180deg, rgba(21,128,61,0.10), rgba(21,128,61,0.06));
}
.ctx-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}
.ctx-icon--logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.ctx-icon--logo img { width: 16px; height: 16px; object-fit: contain; }
.ctx-menu__arrow {
  margin-left: auto;
  color: var(--text-dim);
  font-weight: 600;
}
.ctx-menu__sep {
  height: 1px;
  background: var(--surface-border);
  margin: 6px 4px;
}

/* ── Stats ───────────────────────────────── */
.stats {
  padding: 32px 0 64px;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats__item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--surface-border);
}
.stats__item:last-child { border-right: none; }
.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.stats__item span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Section header ─────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}
.section-header__subtitle {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Features ───────────────────────────── */
.features {
  padding: 72px 0 96px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--surface-border-strong);
}
.feature__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.feature p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.feature__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.feature__tags li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 3px 9px;
  letter-spacing: 0;
}

/* ── How it works ──────────────────────── */
.how {
  padding: 80px 0 88px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(21,128,61,0.025) 30%, rgba(21,128,61,0.025) 70%, transparent 100%);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}
.how__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.how__step {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
}
.how__step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.how__step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Screenshot ─────────────────────────── */
.screenshot {
  padding: 80px 0 90px;
}
.screenshot__frame {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.screenshot__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 0 16px;
  height: 38px;
  background: var(--bg);
  border-bottom: 1px solid var(--surface-border);
}
.screenshot__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.screenshot__title svg { color: var(--accent); }
.screenshot__controls {
  display: inline-flex;
  margin-left: auto;
  align-self: stretch;
}
.screenshot__controls .ctx-ctrl--close { border-top-right-radius: var(--radius); }
.screenshot__img {
  width: 100%;
  display: block;
}
.screenshot__caption {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.84rem;
  margin-top: 18px;
}

/* ── Ad section ─────────────────────────── */
.ad-section {
  padding: 36px 0;
}
.ad-slot {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.ad-slot__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ad-slot ins.adsbygoogle {
  display: block;
  min-height: 90px;
}

/* ── Download ───────────────────────────── */
.download {
  padding: 88px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}
.download__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.download__card-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.download__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.download__meta {
  flex: 1;
  min-width: 200px;
}
.download__meta h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}
.download__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  align-items: center;
}
.download__specs strong { color: var(--text); font-weight: 600; }
.download__sep { color: var(--text-faint); }
.download__btn { padding: 12px 20px; font-size: 0.9rem; }
.download__assurances {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--surface-border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.download__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.download__assurances svg { color: var(--accent); }

/* ── Team ───────────────────────────────── */
.team {
  padding: 80px 0;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 28px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.team-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.team-card p {
  color: var(--text-dim);
  font-size: 0.82rem;
}
.team-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
.team-card__link:hover { color: var(--accent-bright); }

/* ── Support ────────────────────────────── */
.support {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}
.support__card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.support__text { flex: 1; min-width: 240px; }
.support__text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
  color: var(--text);
}
.support__text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.support__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--accent);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.support__email:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--accent-glow);
}

/* ── Footer ─────────────────────────────── */
.footer {
  padding: 32px 0;
  background: var(--bg);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer__link {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--accent-bright); }
.footer__links {
  display: flex;
  gap: 18px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__mockup {
    max-width: 480px;
    margin: 0 auto;
  }
  .how__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--surface-border); }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__links.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(251, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--surface-border);
  }
  .nav__links.active .nav__link { padding: 6px 0; }
  .nav__link--cta { justify-content: center; }
  .nav__toggle { display: flex; }
  .nav__version { display: none; }

  .hero { padding-top: calc(var(--nav-height) + 36px); padding-bottom: 56px; }
  .ctx-menu--primary { left: 12px; }
  .ctx-menu--ff { left: 196px; }
  .ctx-window__path { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .download__card-main { flex-direction: column; align-items: flex-start; }
  .download__btn { width: 100%; }
  .support__card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid var(--surface-border); }
  .stats__item:last-child { border-bottom: none; }
  .ctx-menu--ff {
    left: auto;
    right: 0;
    top: 170px;
    min-width: 210px;
  }
}
