* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
}

/* BUTTONS */
.btn {
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
}

.primary {
  background: #5cf4ec;
  color: #000;
}

.secondary {
  border: 1px solid #5cf4ec;
  color: #5cf4ec;
}

.full {
  width: 100%;
}
.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 244, 236, 0.18), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.simple-card {
  width: 100%;
  max-width: 720px;
  padding: 34px 24px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(92, 244, 236, 0.18);
  box-shadow: 0 0 50px rgba(92, 244, 236, 0.08);
}

.simple-logo {
  height: 62px;
  width: auto;
  margin-bottom: 22px;
}

.simple-card h1 {
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.simple-card p:not(.eyebrow) {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 560px;
}
.policy-page {
  min-height: 100vh;
  padding: 42px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 244, 236, 0.14), transparent 34%),
    #050505;
}

.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.policy-wrap h1 {
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.policy-wrap h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: #5cf4ec;
}

.policy-wrap p {
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 14px;
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::selection {
  background: rgba(92, 244, 236, 0.28);
  color: #fff;
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  box-shadow: 0 0 24px rgba(92, 244, 236, 0.28);
}

.btn.secondary:hover {
  background: rgba(92, 244, 236, 0.08);
  border-color: #5cf4ec;
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid #5cf4ec;
  outline-offset: 3px;
}