/* ============================================================
   EcomLaunch — Legal pages (privacy / terms)
   ============================================================ */
:root {
  --base:   #08070E;
  --s1:     #17191B;
  --royal:  #005EFF;
  --white:  #FFFFFF;
  --text:   #E6EAF2;
  --muted:  #8A93A6;
  --dim:    #5A6478;
  --hairline: rgba(255,255,255,.06);
  --font-display: "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-latin: "Geist", "Heebo", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--base);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.85;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.latin { font-family: var(--font-latin); direction: ltr; unicode-bidi: isolate; }
a { color: var(--royal); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--royal); color: #fff; }

.wrap { width: 100%; max-width: 720px; margin-inline: auto; padding-inline: 24px; }

/* nav */
.nav {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
  padding-inline: clamp(16px, 4vw, 40px);
}
.logo { display: inline-flex; align-items: center; direction: ltr; }
.logo__img { height: 38px; width: auto; display: block; }
.nav__home { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav__home:hover { color: var(--white); text-decoration: none; }

/* page */
.legal { padding-block: clamp(48px, 7vw, 80px); }
.legal h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white);
}
.legal__updated { margin-top: 12px; color: var(--dim); font-size: 14px; }
.legal__intro { margin-top: 28px; color: var(--text); font-size: clamp(16px, 1.6vw, 18px); }

.legal section { margin-top: 38px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(19px, 2.2vw, 23px); color: var(--royal); line-height: 1.4;
  margin-bottom: 12px;
}
.legal h2 .idx { font-family: var(--font-latin); margin-inline-end: 8px; }
.legal p { color: var(--text); font-size: clamp(16px, 1.5vw, 17px); }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.legal li { position: relative; padding-inline-start: 20px; color: var(--text); font-size: clamp(16px, 1.5vw, 17px); }
.legal li::before { content: ""; position: absolute; inset-inline-start: 4px; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--royal); }

/* footer */
.footer { padding-block: 40px; border-top: 1px solid var(--hairline); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.footer__left { display: flex; align-items: center; gap: 16px; color: var(--dim); font-size: 14px; }
.footer__left .logo__img { height: 28px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--muted); font-size: 14px; }
.footer__links a:hover { color: var(--white); text-decoration: none; }

@media (max-width: 560px) {
  body { line-height: 1.8; }
  .footer__inner { flex-direction: column; text-align: center; }
}
