:root {
  color-scheme: dark;
  --ink: #f4f1e9;
  --muted: #aaa9a2;
  --line: rgba(244, 241, 233, 0.14);
  --mint: #8ef0c0;
  --black: #050706;
}

* {
  box-sizing: border-box;
}

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

body.body-4,
body.body-5 {
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.sticky-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  height: 76px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.86);
  backdrop-filter: blur(22px);
}

.nav-grid.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-logo-link.desktop {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo-link.desktop::after {
  content: "ROVE";
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0.28em;
}

.nav-logo-link .nav-logo,
.nav-logo-link.mobile,
.list-item-6 {
  display: none !important;
}

.sticky-nav .nav-grid::after {
  content: "Legal";
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-2,
.section-3 {
  min-height: auto;
  padding: clamp(72px, 10vw, 144px) clamp(24px, 7vw, 104px);
  background: var(--black);
}

.terms-of-use-wrapper {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0;
}

.terms-of-use-h1 {
  max-width: 700px;
  margin: 0 0 64px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.terms-of-use-h1 strong {
  font-weight: inherit;
}

.text-block-10 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.text-block-10 strong {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.text-block-10.center {
  text-align: left;
}

.paragraph-4,
.paragraph-5,
.terms-of-use-wrapper li,
.list-item-3,
.list-item-4,
.list-item-5 {
  margin-top: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.terms-of-use-wrapper ul {
  margin: 10px 0 28px;
  padding-left: 22px;
  list-style: disc;
}

.terms-of-use-wrapper li + li {
  margin-top: 8px;
}

.terms-of-use-wrapper a {
  color: var(--mint);
  text-decoration-color: rgba(142, 240, 192, 0.4);
  text-underline-offset: 3px;
}

.footer {
  background: #090c0a;
}

.footer > .grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px clamp(24px, 5vw, 72px);
}

.nav-grid.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-grid.footer .list-item-2::after {
  content: "ROVE";
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.26em;
}

.nav-grid.footer .list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.nav-grid.footer .link-block {
  color: var(--muted);
  text-decoration: none;
}

.nav-grid.footer .link-block:hover {
  color: var(--ink);
}

.footer-text {
  color: inherit;
  font-size: 13px;
}

@media (max-width: 680px) {
  .sticky-nav {
    height: 64px;
  }

  .section-2,
  .section-3 {
    padding-top: 64px;
  }

  .terms-of-use-h1 {
    margin-bottom: 44px;
  }

  .nav-grid.footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-grid.footer .list-item {
    justify-content: flex-start;
  }
}
