@font-face { font-family: 'Neue Montreal'; src: url('./fonts/NeueMontreal-Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Neue Montreal'; src: url('./fonts/NeueMontreal-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Neue Montreal'; src: url('./fonts/NeueMontreal-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Neue Montreal'; src: url('./fonts/NeueMontreal-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: #060606; overflow-x: hidden; }
body {
  font-family: 'Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #ffffff;
}
img { max-width: 100%; height: auto; }
a { color: #ffffff; text-decoration: none; }
a:hover { color: #62d9f7; }

.page-wrap {
  background: #060606;
  min-height: 100vh;
  padding: 24px clamp(24px, 3vw, 48px) 0;
  box-sizing: border-box;
}

.pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #111111;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.pill a, .pill button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(12px, 1.4vw, 22px);
  border-radius: 7px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pill a:hover, .pill button:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
.pill a.is-on {
  background: #ffffff;
  color: #111111;
  font-weight: 500;
}
.pill a.cta {
  background: #ffffff;
  color: #0947cf;
  font-weight: 600;
  gap: 10px;
}
.pill a.cta:hover { background: #62d9f7; color: #0a0a0a; }

[data-social] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
[data-social] a {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: background 0.25s ease, color 0.25s ease;
}
[data-social] a:hover {
  background: #1c1c1c;
  color: #ffffff;
}
[data-social] svg {
  display: block;
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #ffffff; color: #0947cf; }
.btn-light:hover { background: #62d9f7; color: #0a0a0a; }
.btn-dark { background: #0a0a0a; color: #ffffff; }
.btn-dark:hover { background: #1c1c1c; color: #ffffff; }
.btn-blue { background: #0947cf; color: #ffffff; }
.btn-blue:hover { background: #62d9f7; color: #0a0a0a; }
.btn-mark {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.btn-light .btn-mark, .btn-cta-mark { background: #0947cf; color: #ffffff; }
.btn-blue .btn-mark { background: #ffffff; color: #0947cf; }

.legal-hero {
  background: #0947cf;
  border-radius: 20px;
  overflow: hidden;
  padding: 28px clamp(16px, 3vw, 40px) 64px;
}
.legal-hero header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  grid-template-rows: repeat(3, 7px);
  gap: 2px;
}
.brand-mark span { width: 7px; height: 7px; display: block; }
.legal-body {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 8px 8px 80px;
}
.legal-body h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.legal-body .lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 40px;
  max-width: 560px;
}
.legal-body h2 {
  margin: 40px 0 12px;
  font-size: 22px;
  font-weight: 500;
}
.legal-body p, .legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.legal-body p { margin: 0 0 16px; }
.legal-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0 36px;
}
.legal-body ul { margin: 0 0 16px; padding-left: 20px; }
.updated { font-size: 13px; letter-spacing: 0.18em; color: #62d9f7; margin-bottom: 18px; }

.site-foot {
  background: #0947cf;
  border-radius: 20px;
  padding: 48px clamp(24px, 5vw, 80px);
  margin-bottom: 24px;
}
.site-foot .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}
.site-foot .cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
}
.site-foot .col { display: flex; flex-direction: column; gap: 12px; min-width: 140px; }
.site-foot .col a { font-size: 15px; transition: color 0.25s ease; }
.bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.28);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
}
.bar a.credit {
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
}
.bar a.credit:hover { color: #62d9f7; }

.mob-actions { display: none; align-items: center; gap: 8px; flex: none; }
.mob-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #ffffff;
  color: #0947cf;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.mob-cta:hover { background: #62d9f7; color: #0a0a0a; }
[data-menu-btn] {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  font-size: 18px;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
[data-mobile-menu] {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6,6,6,0.4);
  padding: 76px 12px 24px;
}
[data-mobile-menu].is-open { display: block; }
[data-mobile-menu] .sheet {
  background: #ffffff;
  border-radius: 22px;
  padding: 10px 8px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
[data-mobile-menu] a {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 17px;
  color: #5a5a5a;
  transition: background 0.25s ease, color 0.25s ease;
}
[data-mobile-menu] a:hover { background: #f3f3f3; color: #111111; }

@media (max-width: 1100px) {
  .desk-only-fixed { position: static !important; transform: none !important; box-shadow: none !important; }
}
@media (max-width: 900px) {
  [data-desk-nav], [data-desk-cta] { display: none !important; }
  .mob-actions { display: flex !important; }
  [data-menu-btn] { display: inline-flex !important; }
  .legal-hero { overflow: visible; padding: 20px 16px 48px; }
  .legal-hero header { position: relative; z-index: 90; flex-wrap: nowrap; }
  .legal-hero header .pill.desk { display: none; }
  .legal-hero h1 { font-size: clamp(32px, 10vw, 56px) !important; }
  .legal-hero > div { padding-top: 40px !important; }
}
@media (max-width: 700px) {
  .page-wrap { padding: 12px 12px 0; }
  .btn { padding: 13px 18px; font-size: 15px; }
  .legal-body { margin-top: 32px; padding: 0 4px 48px; }
  .site-foot { padding: 36px 20px 28px; margin-bottom: 12px; }
  .bar {
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.08em;
  }
  .bar [data-social] { width: 100%; justify-content: flex-start; }
}
