/* PuffDown landing — shared styles (dark, calm-premium, teal accent) */
:root {
  --bg: #0E1116;
  --card: #1A1F26;
  --card-2: #151A21;
  --text: #E7ECF2;
  --muted: rgba(231, 236, 242, 0.62);
  --accent: #2DD4BF;
  --accent-2: #F5A44B;
  --accent-ink: #06251F;
  --border: rgba(255, 255, 255, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.site-header { padding: 18px 0; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; color: var(--accent); text-decoration: none; }
.brand img { border-radius: 6px; display: block; }
.site-nav { display: flex; gap: 22px; }
.site-nav a { color: var(--text); text-decoration: none; font-size: 0.95rem; }
.site-nav a:hover { color: var(--accent); }
.btn-small { padding: 9px 16px; font-size: 0.88rem; border-radius: 10px; white-space: nowrap; }

.hero { padding: 72px 0 56px; text-align: center; }
.app-name {
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
h1 { font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.15; margin: 0 0 18px; font-weight: 800; }
.hero-sub { max-width: 640px; margin: 0 auto 24px; color: var(--muted); font-size: 1.08rem; }

.trust { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.trust li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
  color: var(--accent);
}

.cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
.btn:active { transform: scale(0.97); }
.btn-store { background: var(--accent); color: var(--accent-ink); }
.btn-store:hover { opacity: 0.9; }

section { padding: 48px 0; }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin: 0 0 24px; text-align: center; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.about-copy h2 { text-align: left; margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin: 0 0 14px; }
.about-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.about-points li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.about-points strong { color: var(--text); }
.about-shots { display: flex; gap: 16px; justify-content: center; }
.about-shots img {
  width: 48%;
  max-width: 220px;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6);
}
.about-shots img:nth-child(2) { margin-top: 34px; }

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--accent); }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.contact { text-align: center; }
.contact .container {
  background: linear-gradient(160deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
}
.contact h2 { margin-bottom: 12px; }
.contact p { max-width: 560px; margin: 0 auto 22px; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  text-align: center;
  font-size: 0.9rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 18px; }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.lang-nav { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; margin-bottom: 18px; color: var(--muted); }
.lang-nav a { color: var(--muted); text-decoration: none; }
.lang-nav a:hover { color: var(--accent); }
.lang-current { color: var(--accent); font-weight: 600; }
.lang-label { opacity: 0.7; }
.powered { margin: 0; }
.powered a { color: var(--muted); text-decoration: none; }
.powered a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-copy h2 { text-align: center; }
  .about-shots { margin-top: 8px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .cta { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .site-nav { display: none; }
  .header-cta { padding: 8px 14px; font-size: 0.85rem; }
}

/* --- counter mockup, secondary button --- */
.counter-mock {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 8px rgba(45, 212, 191, 0.14), 0 20px 50px -20px rgba(45, 212, 191, 0.55);
}
.counter-mock .n { font-size: 48px; font-weight: 800; line-height: 1; }
.counter-mock .plus { font-size: 13px; font-weight: 700; opacity: 0.75; margin-top: 4px; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); opacity: 1; }

.free-note { color: var(--muted); font-size: 0.9rem; margin: 16px 0 0; }

[dir="rtl"] .footer-links,
[dir="rtl"] .lang-nav,
[dir="rtl"] .trust,
[dir="rtl"] .cta,
[dir="rtl"] .about-points { direction: rtl; }
