* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-dark: #050505;
  --bg-subtle: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.4);
  --text-muted: rgba(255, 255, 255, 0.25);
  --accent: rgba(255, 255, 255, 0.9);
  --border: rgba(255, 255, 255, 0.08);
}

html, body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

/* Hide scrollbar but keep scroll */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

html::-webkit-scrollbar {
  width: 4px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

.screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Vignette effect */
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 70%);
  pointer-events: none;
}

/* Noise texture */
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Content */
.content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 28px 24px;
  text-align: center;
}

.bottom-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* Privacy icon */
.privacy-icon {
  margin-bottom: 40px;
}

.eye-container {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye {
  width: 64px;
  height: 64px;
  color: var(--text-secondary);
  transition: opacity 0.3s;
}

.eye-slash {
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transform: rotate(-45deg);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  animation: slashIn 0.8s ease 0.3s both;
}

@keyframes slashIn {
  from {
    transform: rotate(-45deg) scaleX(0);
    opacity: 0;
  }
  to {
    transform: rotate(-45deg) scaleX(1);
    opacity: 1;
  }
}

/* Typography */
.headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.subheadline {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
  animation: fadeUp 0.7s ease 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefits */
.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
  width: 100%;
  max-width: 260px;
  padding: 24px 0;
  animation: fadeUp 0.7s ease 0.6s both;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

/* CTA button */
.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
  animation: fadeUp 0.7s ease 0.7s both;
}

.cta-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.cta-btn:active {
  transform: scale(0.98);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-btn:hover .btn-glow {
  opacity: 1;
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

/* Safe area support */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .content {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* Legal footer */
.legal {
  position: relative;
  z-index: 10;
  padding: 40px 28px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  font-size: 9px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin: 0 auto;
}

.legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
}

/* Larger phones */
@media (min-height: 800px) {
  .headline {
    font-size: 48px;
  }

  .content {
    padding-top: 80px;
  }

  .eye-container {
    width: 80px;
    height: 80px;
  }

  .eye {
    width: 72px;
    height: 72px;
  }

  .eye-slash {
    width: 80px;
  }
}

