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

:root {
  --accent: #F97316;
  --accent-soft: rgba(249, 115, 22, 0.2);
  --accent-glow: rgba(249, 115, 22, 0.4);
  --bg-dark: #0c0a09;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
}

html, body {
  font-family: 'Sora', -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;
}

/* Gradient background */
.gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 120%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

/* Animated lines */
.lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-soft) 50%, transparent 100%);
  animation: lineScan 3s ease-in-out infinite;
}

.line:nth-child(1) { top: 15%; animation-delay: 0s; width: 60%; left: 20%; }
.line:nth-child(2) { top: 30%; animation-delay: 0.6s; width: 40%; left: 30%; }
.line:nth-child(3) { top: 50%; animation-delay: 1.2s; width: 70%; left: 15%; }
.line:nth-child(4) { top: 70%; animation-delay: 1.8s; width: 50%; left: 25%; }
.line:nth-child(5) { top: 85%; animation-delay: 2.4s; width: 45%; left: 27%; }

@keyframes lineScan {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* 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;
}

/* Unlock icon */
.unlock-icon {
  margin-bottom: 40px;
}

.lock-body {
  position: relative;
  width: 48px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow);
}

.lock-shackle {
  position: absolute;
  top: -20px;
  left: 8px;
  width: 32px;
  height: 26px;
  border: 4px solid var(--accent);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  transform-origin: bottom right;
  animation: shackleOpen 2s ease-in-out infinite;
}

@keyframes shackleOpen {
  0%, 60% { transform: rotate(0deg); }
  30% { transform: rotate(-30deg); }
}

.lock-keyhole {
  width: 8px;
  height: 12px;
  background: var(--bg-dark);
  border-radius: 50% 50% 2px 2px;
}

/* Typography */
.headline {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Benefits */
.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
  width: 100%;
  max-width: 240px;
  padding: 24px 0;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.benefit-bar {
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-soft);
}

/* CTA button */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--accent-soft);
}

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

.cta-btn .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.cta-btn:hover .arrow {
  transform: translateX(4px);
}

/* 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: 50px;
  }

  .content {
    padding-top: 80px;
  }

  .lock-body {
    width: 56px;
    height: 52px;
  }

  .lock-shackle {
    width: 36px;
    height: 30px;
    top: -24px;
    left: 10px;
  }
}

