/* ============================================================
   BODY PRISON — Main Stylesheet
   ============================================================ */

:root {
  --bg:        #020609;
  --bg2:       #050e18;
  --bg3:       #081422;
  --red:       #e63946;
  --red-dark:  #b02030;
  --yellow:    #ffd60a;
  --purple:    #9b5de5;
  --cyan:      #00c8e0;
  --white:     #f0f8ff;
  --muted:     #4a6478;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Canvas rain ── */
#rain-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

/* ── Utility ── */
.red    { color: var(--red); }
.yellow { color: var(--yellow); }
.purple { color: var(--purple); }
.cyan   { color: var(--cyan); }
.centered { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* ── Hero entrance animations (CSS, no JS needed) ── */
.hero-animate-left {
  animation: hero-left 1s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-animate-right {
  animation: hero-right 1s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
@keyframes hero-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: none; }
}

/* ── Scroll reveal (below-the-fold sections) ── */
[data-reveal], [data-reveal-right] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal-right] {
  transform: translateX(40px);
}
[data-reveal].visible, [data-reveal-right].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(2,6,9,0.95), transparent);
  transition: background 0.3s;
}
#nav.scrolled {
  background: rgba(2,6,9,0.97);
  border-bottom: 1px solid rgba(0,200,224,0.1);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(240,248,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.btn-vault-nav {
  background: rgba(0,200,224,0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px !important;
  letter-spacing: 1px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.btn-vault-nav:hover {
  background: rgba(0,200,224,0.2) !important;
  box-shadow: 0 0 20px rgba(0,200,224,0.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 40px rgba(230,57,70,0.5), 0 8px 32px rgba(230,57,70,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(240,248,255,0.2);
  color: rgba(240,248,255,0.6);
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-large {
  font-size: 26px;
  padding: 20px 52px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 120px;
  position: relative;
  z-index: 1;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,200,224,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(230,57,70,0.08) 0%, transparent 50%);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text { flex: 1; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 16px;
}
.line-pre {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 3px;
  color: rgba(240,248,255,0.7);
  margin-bottom: 4px;
}
.title-body {
  display: block;
  font-size: clamp(80px, 12vw, 160px);
  color: var(--yellow);
  line-height: 0.9;
  position: relative;
  text-shadow: 0 0 60px rgba(255,214,10,0.3);
}
.title-prison {
  display: block;
  font-size: clamp(70px, 10vw, 130px);
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 60px rgba(230,57,70,0.35);
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-head);
  font-size: inherit;
  color: var(--yellow);
}
.glitch::before {
  left: 2px;
  color: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: glitch-top 4s infinite linear;
}
.glitch::after {
  left: -2px;
  color: var(--red);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: glitch-bot 4s infinite linear;
}
@keyframes glitch-top {
  0%, 92%, 96%, 100% { transform: none; opacity: 0; }
  93% { transform: translateX(-3px); opacity: 0.8; }
  94% { transform: translateX(3px); opacity: 0.8; }
  95% { transform: none; opacity: 0; }
}
@keyframes glitch-bot {
  0%, 94%, 98%, 100% { transform: none; opacity: 0; }
  95% { transform: translateX(4px); opacity: 0.7; }
  96% { transform: translateX(-4px); opacity: 0.7; }
  97% { transform: none; opacity: 0; }
}

.hero-sub {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: rgba(240,248,255,0.8);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(240,248,255,0.5);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Book cover */
.hero-book {
  flex: 0 0 auto;
  width: 340px;
  position: relative;
  display: flex;
  justify-content: center;
}

.book-glow {
  position: absolute;
  width: 280px; height: 380px;
  background: radial-gradient(ellipse, rgba(0,200,224,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.book-cover {
  width: 280px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: -12px 0 40px rgba(0,0,0,0.8), 0 20px 60px rgba(0,0,0,0.6);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.book-placeholder {
  display: none;
  width: 240px; height: 340px;
  background: linear-gradient(135deg, #0a1628, #0d1f38);
  border: 2px solid var(--red);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--red);
  letter-spacing: 4px;
  gap: 8px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.book-placeholder span {
  font-size: 14px;
  color: var(--cyan);
  font-family: var(--font-body);
  letter-spacing: 3px;
}

.book-shine {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 340px;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   PRISON BARS DIVIDER
   ============================================================ */
.bars-divider {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
}
.bar {
  flex: 1;
  background: linear-gradient(to bottom, var(--bg3), rgba(8,20,34,0.3));
  border-right: 1px solid rgba(0,200,224,0.08);
  animation: bar-fade var(--d, 0s) ease forwards;
  transform: scaleY(1.5);
}

.bars-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 4px;
  color: rgba(240,248,255,0.5);
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   SECTION: 3 PRISONS
   ============================================================ */
#prisons {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: rgba(240,248,255,0.5);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}
#prisons .section-title, #prisons .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.prison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prison-card {
  background: rgba(8,20,34,0.8);
  border: 1px solid rgba(0,200,224,0.1);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.prison-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.prison-card:hover {
  border-color: rgba(0,200,224,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.prison-card:hover::before { opacity: 1; }
.prison-card.featured {
  border-color: rgba(230,57,70,0.3);
  background: rgba(12,8,14,0.9);
}
.prison-card.featured::before {
  background: linear-gradient(to right, transparent, var(--red), transparent);
  opacity: 1;
}

.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.prison-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--white);
}
.prison-card p {
  font-size: 15px;
  color: rgba(240,248,255,0.55);
  line-height: 1.7;
}

/* ============================================================
   SECTION: INSIDE THE BOOK PREVIEW
   ============================================================ */
#inside {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}
#inside > .container { max-width: 1500px; }
#inside .section-sub { margin-left: auto; margin-right: auto; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.preview-card {
  background: rgba(8,20,34,0.9);
  border: 1px solid rgba(0,200,224,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(0,200,224,0.3);
}
.preview-card.featured {
  border-color: rgba(230,57,70,0.25);
  transform: scale(1.03);
}
.preview-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  border-color: rgba(230,57,70,0.5);
  box-shadow: 0 24px 60px rgba(230,57,70,0.2);
}

.preview-img-wrap {
  position: relative;
  overflow: hidden;
}
.preview-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.preview-card:hover .preview-img-wrap img {
  transform: scale(1.04);
}

.preview-overlay {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(2,6,9,0.85);
  border: 1px solid rgba(0,200,224,0.3);
  border-radius: 4px;
  padding: 4px 10px;
}
.preview-overlay span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--cyan);
  font-weight: 600;
}

.preview-label {
  padding: 20px;
}
.preview-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 10px;
}
.red-tag { color: var(--red); }
.preview-label p {
  font-size: 14px;
  color: rgba(240,248,255,0.55);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.preview-note {
  text-align: center;
  font-size: 14px;
  color: rgba(240,248,255,0.3);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .preview-card.featured { transform: none; }
  .preview-card.featured:hover { transform: translateY(-6px); }
}

/* ============================================================
   SECTION: ABOUT THE BOOK
   ============================================================ */
#book {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.book-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-left .section-title { margin-bottom: 20px; }
.body-text {
  font-size: 16px;
  color: rgba(240,248,255,0.6);
  margin-bottom: 16px;
  line-height: 1.8;
}

.book-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 1;
  min-width: 48px;
}
.pillar strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}
.pillar p {
  font-size: 14px;
  color: rgba(240,248,255,0.5);
  margin: 0;
  line-height: 1.6;
}

.book-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 60px;
}

.quote-block {
  background: rgba(5,14,24,0.9);
  border-left: 3px solid var(--cyan);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.quote-block:hover {
  border-color: var(--yellow);
  transform: translateX(6px);
}
.quote-block blockquote {
  font-size: 17px;
  font-style: italic;
  color: rgba(240,248,255,0.8);
  line-height: 1.6;
  margin-bottom: 10px;
}
.quote-block cite {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 2px;
  font-style: normal;
  text-transform: uppercase;
}

/* ============================================================
   SECTION: TRANSFORMATIONS
   ============================================================ */
#transformations {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg2));
}
#transformations .section-title { margin-bottom: 60px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(8,20,34,0.8);
  border: 1px solid rgba(0,200,224,0.1);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.testimonial.featured {
  border-color: rgba(255,214,10,0.25);
  background: rgba(10,14,6,0.9);
}

.t-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 15px;
  color: rgba(240,248,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}
.t-author span {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1px;
}

/* ============================================================
   SECTION: VAULT TEASER
   ============================================================ */
#vault-teaser {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}
.vault-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,200,224,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vault-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vault-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.vault-desc {
  font-size: 16px;
  color: rgba(240,248,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.vault-features {
  list-style: none;
  margin: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vault-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(240,248,255,0.7);
}
.check { font-size: 14px; }

.btn-vault-big {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  padding: 18px 40px;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 3px;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-vault-big:hover {
  background: rgba(0,200,224,0.1);
  box-shadow: 0 0 40px rgba(0,200,224,0.3);
  transform: translateY(-2px);
}

/* Vault door visual */
.vault-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vault-door {
  position: relative;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vault-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,224,0.2);
  box-shadow: 0 0 60px rgba(0,200,224,0.15), inset 0 0 60px rgba(0,200,224,0.05);
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.vault-door-outer {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse, #081422, #020609);
  border: 2px solid rgba(0,200,224,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(0,200,224,0.15);
}
.vault-door-inner {
  text-align: center;
  padding: 20px;
}
.vault-eye {
  margin: 0 auto 16px;
  width: 80px; height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-outer {
  width: 80px; height: 50px;
  background: radial-gradient(ellipse, #001f30, #000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,200,224,0.5);
  overflow: hidden;
}
.eye-inner {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%, #00e0ff, #0077a8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,200,224,0.6);
  animation: eye-blink 5s ease-in-out infinite;
}
.eye-pupil {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 8px rgba(0,200,224,0.4);
}
@keyframes eye-blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.05); }
}

.vault-locked {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: 8px;
}
.vault-code-hint {
  font-size: 11px;
  color: rgba(240,248,255,0.35);
  letter-spacing: 1px;
}

/* ============================================================
   SECTION: FINAL CTA
   ============================================================ */
#cta {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}
.cta-inner { text-align: center; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(240,248,255,0.5);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-price-block {
  margin-bottom: 32px;
}
.price-tag {
  display: inline-block;
  border: 1px solid rgba(255,214,10,0.3);
  border-radius: 6px;
  padding: 16px 32px;
  background: rgba(255,214,10,0.05);
}
.price-label {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--yellow);
}
.price-note {
  display: block;
  font-size: 12px;
  color: rgba(240,248,255,0.4);
  letter-spacing: 1px;
  margin-top: 4px;
}

.cta-fine {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(240,248,255,0.3);
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0,200,224,0.08);
  padding: 60px 0 40px;
}
.footer-inner { text-align: center; }

.footer-logo {
  font-family: var(--font-head);
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--red); }

.footer-tagline {
  font-size: 12px;
  color: rgba(240,248,255,0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(240,248,255,0.4);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-copy {
  font-size: 12px;
  color: rgba(240,248,255,0.2);
}

/* ============================================================
   VAULT PAGE — shared styles
   ============================================================ */
.vault-page-body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vault-page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(2,6,9,0.9);
  border-bottom: 1px solid rgba(0,200,224,0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
    padding-top: 20px;
  }
  .hero-cta { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-book { width: 240px; }
  .book-cover { width: 220px; }
  .book-placeholder { width: 180px; height: 260px; }
  #hero { padding: 120px 24px 80px; }

  .prison-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .book-section-inner,
  .vault-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vault-right { display: none; }
  #nav { padding: 16px 20px; }
  .nav-links a:not(.btn-vault-nav) { display: none; }
}
