:root {
  --bg:          #080d0a;
  --bg-card:     #0f1a14;
  --bg-card-alt: #111e17;
  --border:      #1a2720;
  --border-mid:  #223028;
  --text:        #e8f5ee;
  --muted:       #7a9488;
  --faint:       #3d5249;
  --green:       #28a85c;
  --green-dark:  #229650;
  --green-tint:  rgba(40, 168, 92, .08);
  --green-glow:  rgba(40, 168, 92, .14);
  --round:       14px;
  --round-sm:    10px;
}*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}html {
  scroll-behavior: smooth;
}body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 0;
}.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}.orb-top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40, 168, 92, .07) 0%, transparent 70%);
  top: -220px;
  right: -160px;
}.orb-bottom {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(40, 168, 92, .05) 0%, transparent 70%);
  bottom: 5%;
  left: -160px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 13, 10, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}.site-header.scrolled {
  background: rgba(8, 13, 10, .96);
}.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: auto;
  padding: 0 24px;
  height: 66px;
  position: relative;
}.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--green);
  flex-shrink: 0;
}.brand-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
}.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--round-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}.btn-invite i {
  width: 14px;
  height: 14px;
}.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }/* --- main --- */
main {
  position: relative;
  z-index: 1;
}.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}.legal-header {
  margin-bottom: 48px;
  animation: rise .6s ease both;
}.legal-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 8px;
}.legal-header p {
  color: var(--muted);
  font-size: 14px;
}@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}.legal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}.legal-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--round);
  padding: 28px 28px;
  animation: rise .6s ease both;
  transition: border-color .2s;
}.legal-section:hover {
  border-color: var(--border-mid);
}.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -.2px;
}.legal-section h2 i {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}.legal-section h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 8px;
  letter-spacing: -.1px;
}.legal-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}.legal-section p:last-child {
  margin-bottom: 0;
}.legal-section a {
  color: var(--green);
  text-decoration: none;
  transition: opacity .2s;
}.legal-section a:hover {
  opacity: .75;
  text-decoration: underline;
}
.site-footer {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}.footer-inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 24px;
}.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 52px 0 44px;
  flex-wrap: wrap;
}.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--green);
}.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}.footer-nav {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}.footer-col span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
  margin-bottom: 2px;
}.footer-col a {
  color: var(--faint);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}.footer-col a:hover {
  color: var(--green);
}.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}.footer-bottom span {
  font-size: 13px;
  color: var(--faint);
}.footer-socials {
  display: flex;
  gap: 8px;
}.footer-socials a {
  width: 33px;
  height: 33px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}.footer-socials a:hover {
  border-color: var(--green);
  color: var(--green);
}.footer-socials i {
  width: 15px;
  height: 15px;
}
@media (max-width: 680px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(8, 13, 10, .98);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 18px;
    gap: 2px;
    z-index: 99;
  }  .nav-links.open ~ .nav-buttons {
    display: flex;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    padding: 0 20px 16px;
    background: rgba(8, 13, 10, .98);
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }  .menu-toggle {
    display: flex;
  }  .legal-wrap {
    padding: 48px 16px 80px;
  }  .legal-section {
    padding: 22px 20px;
  }  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 36px;
  }  .footer-nav {
    gap: 28px;
  }
}