/* Soko Vibe — shared landing & legal page styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --radius: 20px;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── NAV ─── */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand svg { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; color: var(--gray-600); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 30px 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2352525b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s;
}
.lang-select:hover { border-color: var(--black); }
.lang-select:focus { outline: none; border-color: var(--black); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(0,0,0,0.05), transparent 60%),
    radial-gradient(1200px 500px at 80% 110%, rgba(0,0,0,0.05), transparent 60%),
    var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }
.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 900px;
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}
.hero p.sub {
  margin-top: 24px;
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--gray-500);
  max-width: 640px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s;
  border: none;
  cursor: pointer;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-light { background: var(--white); color: var(--black); border: 1.5px solid var(--gray-200); }
.btn-light:hover { border-color: var(--black); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; }
.stat .num { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.stat .lbl { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ─── LOGOS TICKER ─── */
.ticker { border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.ticker-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; color: var(--gray-400); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }

/* ─── SECTIONS ─── */
section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); }
h2 { font-size: clamp(30px, 4.5vw, 48px); letter-spacing: -0.03em; font-weight: 800; margin-top: 12px; }
.lead { color: var(--gray-500); font-size: 17px; max-width: 640px; margin-top: 16px; }
.section-head { text-align: center; }
.section-head .lead { margin-left: auto; margin-right: auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.feature {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: var(--gray-300); }
.feature .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
}
.feature h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.feature p { margin-top: 8px; color: var(--gray-500); font-size: 15px; }

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--radius); background: var(--gray-50); border: 1px solid var(--gray-100); }
.step .n {
  font-size: 13px; font-weight: 700; color: var(--white); background: var(--black);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; }
.step p { margin-top: 8px; color: var(--gray-500); font-size: 14px; }

/* ─── APP PREVIEW ─── */
.app-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.app-section .phone {
  width: 300px; height: 600px;
  border-radius: 44px;
  border: 10px solid var(--black);
  background: var(--black);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}
.phone-screen { position: absolute; inset: 0; border-radius: 36px; background: var(--white); padding: 20px; overflow: hidden; }
.phone-card { border: 1px solid var(--gray-200); border-radius: 16px; padding: 14px; margin-top: 12px; }
.phone-img { height: 110px; border-radius: 10px; background: linear-gradient(135deg, var(--gray-200), var(--gray-400)); }
.phone-line { height: 10px; border-radius: 5px; background: var(--gray-200); margin-top: 10px; }
.phone-line.short { width: 60%; }
.app-side h2 { margin-top: 12px; }
.app-badges { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  transition: border-color .2s, transform .15s;
}
.store-badge:hover { border-color: var(--black); transform: translateY(-1px); }
.store-badge svg { width: 20px; height: 20px; }
.store-badge small { display: block; font-size: 10px; color: var(--gray-500); font-weight: 500; }
.checklist { margin-top: 24px; list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--gray-600); font-size: 15px; }
.checklist svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; align-items: stretch; }
.price-card {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: var(--gray-300); }
.price-card.popular { border: 2px solid var(--black); }
.price-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--black); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 18px; font-weight: 700; }
.price-amount { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-top: 6px; }
.price-duration { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.price-feature { font-size: 14px; color: var(--gray-600); margin: 8px 0 16px; }
.price-cta { margin-top: auto; }
.price-note { text-align: center; color: var(--gray-500); font-size: 14px; margin-top: 24px; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--gray-500); font-size: 15px; }

/* ─── CTA ─── */
.cta-band { background: var(--black); color: var(--white); border-radius: 28px; padding: 72px 40px; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.7); margin-top: 14px; font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 32px; background: var(--white); color: var(--black); }
.cta-band .btn:hover { box-shadow: 0 10px 30px rgba(255,255,255,.2); }

/* ─── FOOTER ─── */
footer.site { border-top: 1px solid var(--gray-200); padding: 56px 24px 32px; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-inner h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 14px; }
.footer-inner a { display: block; color: var(--gray-600); font-size: 14px; padding: 4px 0; }
.footer-inner a:hover { color: var(--black); }
.footer-brand p { color: var(--gray-500); font-size: 14px; margin-top: 10px; max-width: 260px; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; border-top: 1px solid var(--gray-200); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--gray-400); font-size: 13px; }

/* ─── LEGAL / DOC PAGES ─── */
.doc { min-height: 100vh; padding: 120px 24px 60px; }
.doc-inner { max-width: 820px; margin: 0 auto; }
.doc h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; font-weight: 800; }
.doc .last-updated { color: var(--gray-400); font-size: 13px; margin-top: 8px; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 20px;
}
.doc-card h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-top: 0; }
.doc-card .body { white-space: pre-line; color: var(--gray-600); font-size: 15px; margin-top: 12px; line-height: 1.75; }
.doc-card .body p { margin: 10px 0; }
.doc .back-home { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-600); font-weight: 600; font-size: 14px; margin-bottom: 32px; transition: color .2s; }
.doc .back-home:hover { color: var(--black); }

/* ─── CONTACT / SUPPORT ─── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.contact-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; background: var(--white); text-align: center; }
.contact-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-card h3 { font-size: 17px; font-weight: 700; }
.contact-card p { margin-top: 8px; color: var(--gray-500); font-size: 14px; }
.contact-card a { color: var(--black); font-weight: 600; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.hero h1 { animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both; }
.hero p.sub { animation: fadeUp .8s .12s cubic-bezier(.22,1,.36,1) both; }
.hero .hero-actions { animation: fadeUp .8s .22s cubic-bezier(.22,1,.36,1) both; }
.hero .hero-stats { animation: fadeUp .8s .32s cubic-bezier(.22,1,.36,1) both; }
.hero .hero-badge { animation: fadeIn .6s .05s both; }

@media (max-width: 860px) {
  .app-section { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 20px; }
  .doc { padding: 100px 20px 48px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-band { padding: 48px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero h1, .hero p.sub, .hero .hero-actions, .hero .hero-stats, .hero .hero-badge { animation: none; transition: none; opacity: 1; transform: none; }
}
