:root {
  --bg: #f7fbfc;
  --page: #f7fbfc;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --text: #101d35;
  --muted: #526174;
  --muted-2: #69758a;
  --green: #078f85;
  --green-2: #0bae9f;
  --mint: #effbf8;
  --mint-2: #e2f7ef;
  --blue: #0b63ce;
  --blue-soft: #eef6ff;
  --purple: #8c66dd;
  --purple-soft: #f0e9ff;
  --orange: #e46510;
  --orange-soft: #fff0e3;
  --amber: #ffdfa0;
  --amber-soft: #fff8ea;
  --coral: #8c2f1a;
  --danger: #8c2f1a;
  --danger-soft: #fff3ed;
  --card: #ffffff;
  --line: #dfe9ee;
  --line-soft: #e8eff1;
  --shadow: 0 18px 45px rgba(14, 31, 53, 0.06);
  --shadow-soft: 0 14px 34px rgba(14, 31, 53, 0.045);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

/* Global legal footer */
.cmel-site-footer {
  margin-top: 0;
  padding: 28px 18px;
  border-top: 1px solid #dfe9ee;
  background: #ffffff;
}

.cmel-site-footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cmel-site-footer-brand {
  color: #101d35;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cmel-site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.cmel-site-footer-links a {
  color: #526174;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.cmel-site-footer-links a:hover {
  color: #078f85;
}

@media (max-width: 760px) {
  .cmel-site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cmel-site-footer-links {
    justify-content: flex-start;
  }
}
