:root {
  --bg: #0B0D12;
  --bg2: #141824;
  --border: #232A3D;
  --violet: #6D4FFF;
  --violet2: #A78BFA;
  --bright: #D6CCFF;
  --teal: #2DD4C8;
  --text: #E8EAF0;
  --text2: #98A2B8;
  --text3: #7A8391;
  --white: #FFFFFF;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scrollbar-gutter: stable; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(109,79,255,.16), transparent 70%);
}
.blob-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(45,212,200,.12), transparent 70%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}
.logo-mark {
  width: auto; height: 34px;
  display: block;
}
.logo-name { font-size: 17px; font-weight: 700; color: var(--white); }
.logo-name span { color: var(--violet2); }

.title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.card {
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.legal-text h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 10px;
}
.legal-text h2:first-child { margin-top: 0; }

.legal-text p { margin-bottom: 12px; word-break: break-word; }
.legal-text p:last-child { margin-bottom: 0; }

.legal-text ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal-text li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 4px;
}

.btn-home {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  background: var(--violet);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease);
}
.btn-home:hover {
  box-shadow: 0 10px 28px -10px rgba(109,79,255,.55);
}
.btn-home:active {
  transform: scale(.96);
}
