/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 11 2026 | 16:53:50 */
:root {
  --jv-black: #0a0a0c;
  --jv-deep: #0d0d12;
  --jv-surface: #13131a;
  --jv-muted: #1a1a24;
  --jv-border: #252532;
  --jv-text-dim: #4a4a5e;
  --jv-text: #8a8a9e;
  --jv-text-bright: #c8c8d8;
  --jv-white: #e8e8f0;
  --jv-cyan: #00f0ff;
  --jv-magenta: #ff0066;
  --jv-amber: #ffaa00;
  --jv-cyan-dim: #00f0ff22;
  --jv-magenta-dim: #ff006622;
}

/* ============================================
   BODY & GLOBAL OVERRIDES
   ============================================ */
body {
  cursor: crosshair;
}


/* ============================================
   SCANLINE OVERLAY (fixed, covers full page)
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 99999;
}

/* GRAIN OVERLAY */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 99998;
  opacity: 0.6;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes jv-glitch-skew {
  0%, 100% { transform: skew(0deg); }
  20% { transform: skew(-2deg); }
  40% { transform: skew(0.5deg); }
  60% { transform: skew(-0.3deg); }
  80% { transform: skew(1deg); }
}

@keyframes jv-glitch-clip-1 {
  0%, 100% { clip-path: inset(0 0 96% 0); }
  10% { clip-path: inset(40% 0 20% 0); }
  20% { clip-path: inset(80% 0 5% 0); }
  30% { clip-path: inset(10% 0 70% 0); }
  40% { clip-path: inset(50% 0 30% 0); }
  50% { clip-path: inset(0 0 96% 0); }
}

@keyframes jv-glitch-clip-2 {
  0%, 100% { clip-path: inset(96% 0 0 0); }
  15% { clip-path: inset(20% 0 40% 0); }
  30% { clip-path: inset(60% 0 10% 0); }
  45% { clip-path: inset(5% 0 80% 0); }
  60% { clip-path: inset(96% 0 0 0); }
}

@keyframes jv-flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.8; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
  99% { opacity: 0.9; }
}

@keyframes jv-neon-pulse {
  0%, 100% { text-shadow: 0 0 7px var(--jv-cyan), 0 0 20px var(--jv-cyan), 0 0 40px var(--jv-cyan); }
  50% { text-shadow: 0 0 4px var(--jv-cyan), 0 0 10px var(--jv-cyan), 0 0 20px var(--jv-cyan); }
}

@keyframes jv-drift-up {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jv-horizontal-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes jv-typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes jv-blink-caret {
  0%, 100% { border-color: var(--jv-cyan); }
  50% { border-color: transparent; }
}

@keyframes jv-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.jv-cursor-glow {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 100000000;
  transform: translate(-50%, -50%);
}

/* ============================================
   SECTION LABELS (reusable)
   ============================================ */
.jv-section-label {
  font-family: var(--jv-mono) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.5em !important;
  text-transform: uppercase !important;
  color: var(--jv-magenta) !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.jv-section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--jv-magenta);
  flex-shrink: 0;
}

.jv-section-title {
  font-family: var(--jv-display) !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  letter-spacing: 0.04em !important;
  color: var(--jv-white) !important;
  line-height: 1 !important;
  margin-bottom: 3rem !important;
}

/* ============================================
   ABOUT SECTION — native Elementor widgets
   ============================================ */
.jv-about-section .elementor-section {
  max-width: 1200px;
  margin: 0 auto;
}

.jv-portrait-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--jv-surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jv-portrait-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--jv-cyan-dim) 0%, transparent 50%),
    linear-gradient(225deg, var(--jv-magenta-dim) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.jv-portrait-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--jv-border);
  z-index: 3;
  pointer-events: none;
}

.jv-portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  mix-blend-mode: luminosity;
}

.jv-about-body p {
  font-family: var(--jv-serif) !important;
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
  color: var(--jv-text) !important;
  margin-bottom: 1.5rem !important;
}

.jv-about-body p:first-of-type::first-letter {
  font-family: var(--jv-display);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  color: var(--jv-cyan);
  text-shadow: 0 0 20px var(--jv-cyan-dim);
}

/* Stats row */
.jv-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--jv-border);
}

.jv-stat { text-align: center; }

.jv-stat-number {
  font-family: var(--jv-display) !important;
  font-size: 2.5rem !important;
  color: var(--jv-cyan) !important;
  line-height: 1 !important;
}

.jv-stat-label {
  font-family: var(--jv-mono) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em !important;
  color: var(--jv-text-dim) !important;
  margin-top: 0.4rem !important;
  text-transform: uppercase !important;
}

/* ============================================
   BOOK CARDS — native Elementor columns
   ============================================ */
.jv-book-card {
  position: relative;
  background: var(--jv-surface) !important;
  border: 1px solid var(--jv-border) !important;
  padding: 2rem !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
  overflow: hidden;
}

.jv-book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--jv-cyan), var(--jv-magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.jv-book-card:hover::before { transform: scaleX(1); }

.jv-book-card:hover {
  border-color: var(--jv-cyan) !important;
  box-shadow: 0 0 30px var(--jv-cyan-dim), inset 0 0 30px rgba(0, 240, 255, 0.02);
  transform: translateY(-4px);
}

.jv-book-card .jv-book-year {
  font-family: var(--jv-mono) !important;
  font-size: 0.6rem !important;
  color: var(--jv-amber) !important;
  letter-spacing: 0.2em !important;
}

.jv-book-card .jv-book-title {
  font-family: var(--jv-display) !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.06em !important;
  color: var(--jv-white) !important;
  margin: 0.6rem 0 0.8rem !important;
}

.jv-book-card .jv-book-desc {
  font-family: var(--jv-serif) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: var(--jv-text-dim) !important;
  font-style: italic !important;
}

.jv-book-tag {
  display: inline-block;
  font-family: var(--jv-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--jv-border);
  color: var(--jv-text-dim);
  margin-right: 0.5rem;
  margin-top: 0.8rem;
  transition: all 0.3s;
}

.jv-book-card:hover .jv-book-tag {
  border-color: var(--jv-cyan);
  color: var(--jv-cyan);
}

/* ============================================
   EXCERPT SECTION — Elementor Text widget
   ============================================ */
.jv-excerpt-section {
  max-width: 900px !important;
  margin: 0 auto !important;
  text-align: center !important;
  position: relative;
}

.jv-excerpt-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.jv-excerpt-quote {
  font-family: var(--jv-serif) !important;
  font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.7 !important;
  color: var(--jv-text-bright) !important;
  position: relative;
}

.jv-excerpt-quote::before {
  content: '\201C';
  font-family: var(--jv-display);
  font-size: 8rem;
  color: var(--jv-cyan);
  opacity: 0.15;
  position: absolute;
  top: -3rem;
  left: -2rem;
  line-height: 1;
}

.jv-excerpt-cite {
  display: block !important;
  margin-top: 2rem !important;
  font-family: var(--jv-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--jv-magenta) !important;
  font-style: normal !important;
}

/* ============================================
   CTA / NEWSLETTER — Elementor Form or HTML
   ============================================ */
.jv-cta-section {
  text-align: center;
}

.jv-cta-title {
  font-family: var(--jv-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  color: var(--jv-white) !important;
  letter-spacing: 0.06em !important;
}

.jv-cta-desc {
  font-family: var(--jv-serif) !important;
  font-size: 1.1rem !important;
  color: var(--jv-text) !important;
  font-style: italic !important;
  margin-bottom: 2.5rem !important;
}

/* Style Elementor Pro form to match */
.jv-cta-section .elementor-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
}

.jv-cta-section .elementor-field-group {
  flex: 1;
}

.jv-cta-section .elementor-field {
  background: var(--jv-surface) !important;
  border: 1px solid var(--jv-border) !important;
  border-right: none !important;
  padding: 1rem 1.2rem !important;
  font-family: var(--jv-mono) !important;
  font-size: 0.75rem !important;
  color: var(--jv-text-bright) !important;
  letter-spacing: 0.05em !important;
  border-radius: 0 !important;
}

.jv-cta-section .elementor-field::placeholder {
  color: var(--jv-text-dim) !important;
}

.jv-cta-section .elementor-field:focus {
  border-color: var(--jv-cyan) !important;
}

.jv-cta-section .elementor-button {
  background: transparent !important;
  border: 1px solid var(--jv-magenta) !important;
  color: var(--jv-magenta) !important;
  font-family: var(--jv-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0 !important;
  transition: all 0.3s !important;
}

.jv-cta-section .elementor-button:hover {
  background: var(--jv-magenta) !important;
  color: var(--jv-black) !important;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.jv-cta-warning {
  font-family: var(--jv-mono) !important;
  font-size: 0.55rem !important;
  color: var(--jv-text-dim) !important;
  margin-top: 1rem !important;
  letter-spacing: 0.1em !important;
}

/* ============================================
   FOOTER — Elementor columns
   ============================================ */
.jv-footer {
  border-top: 1px solid var(--jv-border) !important;
}

.jv-footer,
.jv-footer * {
  font-family: var(--jv-mono) !important;
  font-size: 0.6rem !important;
  color: var(--jv-text-dim) !important;
  letter-spacing: 0.1em !important;
}

.jv-footer a {
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: color 0.3s !important;
}

.jv-footer a:hover {
  color: var(--jv-cyan) !important;
}

.jv-footer .jv-end-tx {
  font-family: var(--jv-display) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.3em !important;
  color: var(--jv-border) !important;
}

/* ============================================
   SCROLL REVEAL (applied by JS)
   ============================================ */
.jv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.jv-reveal.jv-visible {
  opacity: 1;
  transform: translateY(0);
}

.jv-reveal-delay-1 { transition-delay: 0.15s; }
.jv-reveal-delay-2 { transition-delay: 0.30s; }
.jv-reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   NAVIGATION OVERRIDE (Elementor Nav widget)
   ============================================ */
.jv-nav .elementor-nav-menu a {
  font-family: var(--jv-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--jv-text-dim) !important;
  transition: color 0.3s, text-shadow 0.3s !important;
}

.jv-nav .elementor-nav-menu a:hover {
  color: var(--jv-cyan) !important;
  text-shadow: 0 0 10px var(--jv-cyan-dim) !important;
}

.jv-nav .jv-nav-logo {
  font-family: var(--jv-display) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.4em !important;
  color: var(--jv-cyan) !important;
  animation: jv-flicker 4s infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .jv-excerpt-quote::before {
    font-size: 5rem;
    top: -2rem;
    left: 0;
  }
  .jv-stats-row {
    gap: 1rem;
  }
}
