*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9f7f4;
  color: #1c1c1e;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* --- Landing --- */

body.landing header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  background: rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 3px;
}

.lang-switcher a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #48484a;
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.lang-switcher a:hover {
  background: rgba(0,0,0,0.06);
}

.lang-switcher a.active {
  background: #fff;
  color: #1c1c1e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

body.landing main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 1.5rem;
}

.icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
}

body.landing h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.landing p {
  font-size: 1.1rem;
  color: #48484a;
  max-width: 28rem;
  line-height: 1.6;
}

.badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.badges a img {
  height: 44px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #8e8e93;
}

footer a {
  color: #48984a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* --- Privacy --- */

body.privacy header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
}

body.privacy header > a {
  color: #48984a;
  text-decoration: none;
}

body.privacy header > a:hover {
  text-decoration: underline;
}

body.privacy main {
  flex: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

body.privacy h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8e8e93;
  margin-bottom: 0.5rem;
}

body.privacy p {
  font-size: 0.95rem;
  color: #48484a;
  line-height: 1.7;
  margin-bottom: 2rem;
}
