:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --paper: #ffffff;
  --line: rgba(21, 25, 35, 0.11);
  --text: #151923;
  --muted: #5f6b7a;
  --soft: #354052;
  --cyan: #0b958d;
  --gold: #c98a12;
  --red: #c84443;
  --shadow: 0 24px 70px rgba(21, 25, 35, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent 320px), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  display: block;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.navlinks a {
  color: inherit;
}

.navlinks a:hover {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: clamp(70px, 9vw, 112px) 0 clamp(42px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 860px;
  margin-top: 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  font-weight: 850;
}

.lead {
  max-width: 760px;
  margin-top: 20px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
}

.content {
  padding: clamp(44px, 7vw, 76px) 0;
}

.notice {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(11, 149, 141, 0.18);
  border-radius: 8px;
  background: rgba(11, 149, 141, 0.08);
  color: var(--soft);
}

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

.legal-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.12;
}

.legal-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
}

.legal-card p + p,
.legal-card ul + p,
.legal-card p + ul {
  margin-top: 12px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15.5px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 7px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 750;
  background: var(--cyan);
  color: #ffffff;
}

.button:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

@media (max-width: 720px) {
  .navlinks {
    display: none;
  }

  .shell {
    width: min(100% - 28px, 1040px);
  }
}
