:root {
  --bg-1: #0f1424;
  --bg-2: #111b2d;
  --text: #e9f1ff;
  --text-dim: #a8b8d5;
  --line: rgba(137, 171, 231, 0.14);
  --accent: #4d9ef2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(1000px 600px at 10% -20%, #1f3760 0%, transparent 60%),
              radial-gradient(1000px 700px at 90% 5%, #1f2f49 0%, transparent 55%),
              linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 55%, #0b111e 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

.container {
  width: min(980px, calc(100% - 34px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 20, 0.62);
  border-bottom: 1px solid rgba(132, 160, 225, 0.12);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand strong {
  display: block;
  font-size: 0.97rem;
}

.brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-links a {
  color: #bdd4f9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
}

main {
  padding: 40px 0 56px;
}

.hero {
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  margin: 0;
  line-height: 1.16;
}

h1 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
  color: var(--text-dim);
}

a {
  color: #9fcbff;
}

a:hover {
  color: #d9ecff;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(21, 32, 53, 0.66), rgba(11, 17, 28, 0.58));
  padding: 16px;
  margin-top: 14px;
}

.card p + p {
  margin-top: 8px;
}

.hero-kicker {
  margin: 0;
  color: #8fc0ff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead,
.card-lead {
  max-width: 74ch;
  color: #d3e5ff;
}

.card h3 {
  font-size: 1rem;
  margin: 14px 0 8px;
}

.card h3:first-child {
  margin-top: 0;
}

.card a {
  text-underline-offset: 2px;
}

.legal-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-chip {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(143, 182, 240, 0.2);
  background: rgba(12, 20, 34, 0.55);
}

.summary-chip strong {
  display: block;
  margin-bottom: 4px;
  color: #e7f1ff;
  font-size: 0.92rem;
}

.summary-chip span {
  color: #b4c7e4;
  font-size: 0.84rem;
}

.note-card {
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(128, 171, 237, 0.22);
  background: rgba(16, 27, 45, 0.58);
}

.note-card p {
  color: #d4e5ff;
}

.note-card--warning {
  border-color: rgba(242, 169, 90, 0.28);
  background: rgba(242, 169, 90, 0.1);
}

.note-card--warning p {
  color: #ffe8cc;
}

.tiny {
  font-size: 0.84rem;
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #c8d9f6;
}

.list li + li {
  margin-top: 6px;
}

.kv {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 8px 14px;
}

.kv dt {
  color: #a5c2ee;
  font-weight: 700;
}

.kv dd {
  margin: 0;
  color: #d5e5ff;
}

.disclaimer {
  border-radius: 12px;
  padding: 12px;
  background: rgba(242, 169, 90, 0.12);
  border: 1px solid rgba(242, 169, 90, 0.3);
  color: #ffe7c8;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(132, 160, 225, 0.1);
  padding: 18px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.footer-company {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(18, 30, 50, 0.45), rgba(11, 17, 28, 0.4));
  padding: 12px 14px;
  margin-bottom: 10px;
}

.footer-company img {
  width: 140px;
  height: auto;
}

.footer-company p {
  font-size: 0.84rem;
  color: #bdd2f5;
}

.footer-company p + p {
  margin-top: 2px;
}

.footer-company strong {
  color: #e9f2ff;
}

.footer-meta {
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(18, 30, 50, 0.38), rgba(11, 17, 28, 0.34));
  padding: 12px 14px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-meta p {
  margin: 0;
  color: #c0d6fb;
  font-size: 0.84rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #eef6ff;
  background: linear-gradient(135deg, var(--accent) 0%, #5cc8ff 100%);
  border-color: rgba(177, 225, 255, 0.5);
  box-shadow: 0 10px 24px rgba(35, 108, 196, 0.42);
  padding: 10px 16px;
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(146, 174, 231, 0.35);
  background: rgba(30, 48, 80, 0.25);
  padding: 10px 16px;
}

.btn-apple-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-download {
  margin-top: 6px;
  justify-self: start;
}

.footer-socials {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(136, 173, 236, 0.32);
  background: rgba(15, 27, 44, 0.72);
  color: #c8dcff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
  color: #eef5ff;
  border-color: rgba(163, 196, 250, 0.62);
  background: rgba(30, 55, 90, 0.9);
  transform: translateY(-1px);
}

.footer-social-link.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-company a,
.footer-legal-links a {
  color: #a9c8fb;
  text-decoration: none;
}

.footer-company a:hover,
.footer-legal-links a:hover {
  color: #d7e8ff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #a9c8fb;
  text-decoration: none;
  font-size: 0.82rem;
}

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

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-links a {
  font-size: 0.84rem;
}

.footer-note {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-note p {
  margin: 0;
  color: #8ea4ca;
  font-size: 0.82rem;
}

.footer-note a {
  color: #a9c8fb;
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .container {
    width: min(980px, calc(100% - 24px));
  }

  main {
    padding: 32px 0 48px;
  }

  h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .card {
    padding: 14px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .kv {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span {
    display: none;
  }

  .footer-company {
    grid-template-columns: 1fr;
  }

  .footer-company img {
    width: 160px;
  }

  .footer-download {
    justify-self: stretch;
    width: 100%;
  }

  .header-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(980px, calc(100% - 16px));
  }

  .header-inner {
    min-height: 60px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  main {
    padding: 26px 0 42px;
  }

  .hero {
    margin-bottom: 12px;
  }

  .card {
    margin-top: 10px;
    padding: 12px;
  }

  .list {
    padding-left: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

.visit-tracking-pixel {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
