:root {
  --bg: #f9fdfc;
  --panel: #ffffff;
  --panel-soft: #eefcf8;
  --text: #12303a;
  --muted: #4f6d77;
  --brand: #1f9d8b;
  --accent: #ffd166;
  --line: #d7efe8;
  --shadow: 0 20px 50px rgba(31, 157, 139, 0.12);
  --glow: rgba(31, 157, 139, 0.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(31, 157, 139, 0.18), transparent 42%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: var(--brand);
}
a:hover {
  color: var(--accent);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.menu a {
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
}
.menu a:hover {
  background: var(--panel-soft);
}
.menu-pill {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(19, 37, 83, 0.08);
}
main {
  min-height: 80vh;
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 60px 0 40px;
  align-items: center;
}
.hero figure {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: block;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(85, 115, 255, 0.3);
  font-size: 14px;
  color: var(--muted);
}
h1 {
  font-size: clamp(42px, 4vw, 56px);
  margin: 12px 0;
  line-height: 1.2;
}
.lead {
  font-size: 20px;
  color: #232d3f;
}
.btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(85, 115, 255, 0.25);
}
.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn:hover {
  filter: brightness(1.05);
}
.section-title {
  margin-top: 40px;
  font-size: 32px;
}
.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(15, 29, 61, 0.06);
}
.card h3 {
  margin: 0 0 8px;
}
.muted {
  color: var(--muted);
}
.privacy-banner {
  margin: 0 auto;
  margin-top: 32px;
  background: linear-gradient(130deg, rgba(85, 115, 255, 0.2), rgba(255, 180, 87, 0.2));
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.privacy-banner p {
  margin: 0;
  font-size: 16px;
  color: #1c2340;
}
.privacy-banner a {
  font-weight: 700;
}
.policy-highlight {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.policy-highlight h2 {
  margin-top: 0;
}
footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 28px 0 48px;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
footer a {
  color: var(--brand);
}
.toc {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.toc strong {
  display: block;
  margin-bottom: 8px;
}
.toc a {
  color: var(--text);
}
.toc a:hover {
  color: var(--brand);
}
article {
  max-width: 780px;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 24px;
}
.legal-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 20px 45px rgba(10, 18, 32, 0.08);
}
.legal-section h2 {
  margin-top: 0;
}
aside {
  position: sticky;
  top: 120px;
}
form {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 12px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #1b1f32;
}
input,
select,
textarea {
  background: #f6f8ff;
  border: 1px solid var(--line);
  color: #060b1b;
  padding: 14px;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
}
textarea {
  min-height: 280px;
  resize: vertical;
}
.btn.cookie {
  align-self: flex-start;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}
@media (max-width: 850px) {
  h1 {
    font-size: 34px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  aside {
    position: static;
  }
}


.appstore-badge{max-width:220px;margin-top:14px}
.consent-block{border:1px solid var(--line);background:var(--panel-soft);border-radius:14px;padding:10px 14px}
.consent-block legend{font-weight:700;color:var(--text);padding:0 4px}
.consent-inline{display:flex;flex-direction:row;align-items:flex-start;gap:10px;font-weight:500;color:#1b1f32}
.consent-inline input[type="checkbox"]{margin-top:2px;width:18px;height:18px;flex:0 0 auto}
.legal-raw p{margin:0 0 12px}
.legal-raw ul{margin:0 0 14px 18px}
