@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Murble — shared styles for privacy / support / terms pages. */
:root {
  --accent: #2E5AA8;
  --accent-2: #4A83D4;
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --surface-hover: #F1F3F5;
  --text: #0B0E14;
  --muted: #495057;
  --border: rgba(0, 0, 0, 0.1);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --accent: #2F6FE0;
    --accent-2: #659CFF;
    --bg: #000000;
    --surface: #0A0A0A;
    --surface-hover: #141414;
    --text: #F8F9FA;
    --muted: #868E96;
    --border: rgba(255, 255, 255, 0.15);
    color-scheme: dark;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  /* Distinctive subtle noise texture overlay to break the flat digital feel */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.hero {
  position: relative;
  padding: 80px 20px 24px;
  text-align: center;
}
.hero .icon { width: 96px; height: 96px; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 24px 48px -12px rgba(46, 90, 168, .2); }
.hero h1 { margin: 24px 0 8px; font-size: 2.8rem; font-weight: 700; }
.hero p { margin: 0 auto; max-width: 480px; color: var(--muted); font-size: 1.15rem; letter-spacing: -0.01em; }
.lang-picker {
  position: absolute; top: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-picker:hover { background: var(--surface-hover); border-color: rgba(91, 63, 184, 0.4); }
.lang-picker svg { width: 14px; height: 14px; fill: var(--muted); flex: none; }
.lang-picker select {
  appearance: none; -webkit-appearance: none; border: 0; background: transparent;
  color: var(--text); font: inherit; font-size: .85rem; font-weight: 600;
  padding-right: 18px; cursor: pointer; outline: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='5'><path d='M0 0l4 5 4-5z' fill='%23888'/></svg>");
  background-repeat: no-repeat; background-position: right center;
}
main { max-width: 680px; margin: 24px auto 0; padding: 0 20px 80px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; margin: 24px 0;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}
.card h2 { margin: 0 0 12px; font-size: 1.25rem; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.card h2 .dot {
  width: 14px; height: 14px; border-radius: 4px; flex: none;
  background: var(--accent-2);
}
.card p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.updated { text-align: center; color: var(--muted); font-size: .85rem; margin: 22px 0 4px; }
.contact {
  text-align: center; margin-top: 26px; padding: 26px 24px;
  background: linear-gradient(135deg, rgba(58,109,196,.10), rgba(91,63,184,.10));
  border: 1px solid var(--border); border-radius: 18px;
}
.contact a.btn {
  display: inline-block; margin-top: 12px; padding: 10px 22px; border-radius: 999px;
  background: linear-gradient(135deg, #3A6DC4, #5B3FB8); color: #fff; font-weight: 600;
  text-decoration: none;
}
.contact p { color: var(--muted); font-size: .9rem; margin: 6px 0 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
footer { text-align: center; padding: 0 20px 48px; color: var(--muted); font-size: .9rem; }
[data-lang] { display: none; }

@media (max-width: 640px) {
  .hero {
    padding: 86px 18px 14px;
  }
  .hero .icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  .hero h1 {
    font-size: clamp(2rem, 13vw, 2.55rem);
    margin-top: 18px;
  }
  .hero p {
    font-size: 1rem;
  }
  .lang-picker {
    top: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }
  main {
    margin-top: 12px;
    padding: 0 16px 56px;
  }
  .card {
    padding: 22px 20px;
    margin: 16px 0;
  }
  .card h2 {
    align-items: flex-start;
    font-size: 1.08rem;
    gap: 10px;
  }
  .card h2 .dot {
    margin-top: .35em;
  }
  .card p {
    font-size: .98rem;
  }
  .contact {
    border-radius: 14px;
    padding: 22px 18px;
  }
  footer {
    padding-bottom: 36px;
  }
}

@media (hover: none) {
  .card:hover {
    transform: none;
  }
}
