@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

body.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 80px;
  overflow: hidden;
  position: relative;
  user-select: none;
}

body.privacy {
  padding: 64px 24px;
}

.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ghost {
  position: absolute;
}

.pos1 { left: 8%; top: 14%; }
.pos2 { left: 85%; top: 18%; }
.pos3 { left: 78%; top: 65%; }
.pos4 { left: 12%; top: 72%; }
.pos5 { left: 50%; top: 6%; }

.sq { width: 28px; height: 28px; background: #FF1E3C; border-radius: 20%; opacity: 0.07; }
.ci { width: 22px; height: 22px; background: #00FF66; border-radius: 50%; opacity: 0.06; }
.tr { width: 0; height: 0; border-left: 17px solid transparent; border-right: 17px solid transparent; border-bottom: 34px solid #0033FF; opacity: 0.06; }
.sq2 { width: 20px; height: 20px; background: #FF1E3C; border-radius: 20%; opacity: 0.055; }
.ci2 { width: 18px; height: 18px; background: #00FF66; border-radius: 50%; opacity: 0.05; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, 30px) rotate(12deg); }
  66% { transform: translate(-20px, 50px) rotate(-6deg); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-50px, 25px) rotate(-15deg); }
  66% { transform: translate(30px, -40px) rotate(8deg); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -45px) rotate(10deg); }
  66% { transform: translate(-40px, 20px) rotate(-12deg); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-35px, 55px) rotate(-8deg); }
  66% { transform: translate(50px, -25px) rotate(14deg); }
}

@keyframes drift5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(60px, -30px) rotate(6deg); }
  66% { transform: translate(-30px, 35px) rotate(-10deg); }
}

.d1 { animation: drift1 28s ease-in-out infinite; }
.d2 { animation: drift2 34s ease-in-out infinite; }
.d3 { animation: drift3 38s ease-in-out infinite 2s; }
.d4 { animation: drift4 32s ease-in-out infinite 5s; }
.d5 { animation: drift5 44s ease-in-out infinite 9s; }

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: clamp(3.5rem, 18vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.red { color: #FF1E3C; }

.subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.shapes {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.shape-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shape { width: 64px; height: 64px; }
.shape-red { background: #FF1E3C; border-radius: 14px; }
.shape-green { background: #00FF66; border-radius: 50%; }
.shape-blue { background: #0033FF; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 150ms ease, transform 150ms ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.btn-light { }

.btn-red {
  border-color: #FF1E3C;
  color: #FF1E3C;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.tagline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tagline-top {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
}

.tagline-bottom {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.shape-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.free-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

footer a {
  color: #FF1E3C;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-bottom: 48px;
}

.back:hover { color: #fff; }

.brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF1E3C;
  margin-bottom: 12px;
}

.date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}

.sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section h2 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.section p,
.section li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.section p + p { margin-top: 8px; }

.section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
}

strong { color: #fff; font-weight: 700; }

a { color: #FF1E3C; text-decoration: none; }
a:hover { color: #fff; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer a:hover { color: #fff; }

.footer span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}
