.unlock-page {
  background: radial-gradient(circle at top, #1b342c 0%, #0b1412 45%, #060a09 100%);
  color: var(--sand);
}

.topo {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23a7b7ad' stroke-width='1' opacity='0.12'%3E%3Cpath d='M14 92c34-14 64-18 96-10 40 10 76 8 112-6 40-16 62-20 84-8'/%3E%3Cpath d='M8 156c44-10 82-8 116 6 38 16 76 18 114 4 30-12 56-12 74-4'/%3E%3Cpath d='M12 220c36-12 68-10 98 4 44 22 80 24 128 6 30-12 50-12 66-6'/%3E%3Cpath d='M32 40c36 18 70 24 108 20 44-6 78-2 120 12'/%3E%3Cpath d='M48 280c40 12 74 14 110 4 38-10 70-8 106 6'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
}

.unlock-page main {
  position: relative;
  z-index: 1;
}

.unlock-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.unlock-hero h1 {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: rise 0.8s ease-out;
}

.store-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.store-actions .store-link {
  padding: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.store-actions .store-badge {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.unlock-panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(155, 193, 122, 0.25);
  background: rgba(15, 23, 20, 0.85);
  box-shadow: 0 20px 40px rgba(6, 10, 9, 0.4);
}

.panel-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.panel-card ol {
  margin-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(242, 239, 231, 0.75);
  font-size: 15px;
}

.unlock-section {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(155, 193, 122, 0.25);
  background: rgba(10, 15, 13, 0.75);
}

.unlock-section h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.unlock-section p {
  color: rgba(242, 239, 231, 0.7);
}

@media (max-width: 980px) {
  .unlock-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
}

@media (prefers-color-scheme: light) {
  .unlock-page {
    background: radial-gradient(circle at top, #f6f2e8 0%, #fdfcf9 45%, #ffffff 100%);
    color: #1a2220;
  }

  .panel-card,
  .unlock-section {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(17, 26, 23, 0.12);
  }

  .panel-card ol,
  .unlock-section p {
    color: rgba(26, 34, 32, 0.7);
  }

  .topo {
    opacity: 0.15;
    mix-blend-mode: multiply;
  }
}

@media (prefers-reduced-motion: reduce) {
  .unlock-hero h1 {
    animation: none;
  }
}
