/* ==========================================================================
   MY BODY COUNT TRACKER - DEBLOATED, HIGH-IMPACT MOBILE-FIRST STYLES
   Design System (Inspired by Apple HIG & Appllama Anti-Slop Discipline):
     - One Accent:      #f5c800 / #ffcc01 (Electric Gold)
     - One Dark Family: #171717 / #1f1f1f / #282828 (Obsidian Black)
     - Parchment Paper: #fff8d6 / #fffdf2 (Warm Cream)
     - Urgency / Flame: #d9563f (Spicy Coral Red)
     - Neutral Text:    #ecece6 / #9e9e94
   Typography:
     - Titles:   'Borsok', Impact, sans-serif
     - Headings: 'Open Sans', -apple-system, sans-serif
     - Body:     'Open Sans', -apple-system, sans-serif
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Typography & Font Face
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Borsok';
  src: url('./borsok/boorsok.otf') format('opentype'),
       url('./borsok/boorsok.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --color-accent: #ffcc01;
  --color-primary: #f5c800;
  --color-primary-hover: #ffd83b;
  --color-dark: #171717;
  --color-dark-surface: #1e1e1e;
  --color-dark-border: #292929;
  --color-cream: #fff8d6;
  --color-cream-border: #ebdcb0;
  --color-muted-text: #9e9e94;
  --color-danger: #d9563f;
  --color-white: #ffffff;

  --font-title: 'Borsok', Impact, -apple-system, sans-serif;
  --font-heading: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --container-max: 1080px;
}

/* --------------------------------------------------------------------------
   3. Reset & Base Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: #ecece6;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Lucide Icon Standard Styling */
i[data-lucide], .lucide {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   4. Top Announcement Bar & Header
   -------------------------------------------------------------------------- */
.sticky-top-stack {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
}

.announcement-bar {
  background: linear-gradient(90deg, #ff5c8a 0%, #e6396e 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 92, 138, 0.35);
  transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.3s ease;
}

.announcement-bar.is-dismissed {
  opacity: 0;
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  pointer-events: none;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-right: 28px;
}

.announcement-bar i {
  width: 15px;
  height: 15px;
}

.announcement-close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  opacity: 0.8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.announcement-close-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.announcement-close-btn i {
  width: 16px;
  height: 16px;
}

.site-header {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-dark-border);
  background: rgba(23, 23, 23, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.brand-logo span {
  display: inline-block;
  transform: translateY(3px);
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

.header-cta-desktop {
  display: none;
}

@media (min-width: 768px) {
  .header-cta-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .header-cta-desktop:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
  }
}

/* --------------------------------------------------------------------------
   5. Primary Amazon CTA Button
   -------------------------------------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  min-height: 52px;
  padding: 14px 22px;
  background: var(--color-primary);
  background: linear-gradient(180deg, #ffcc01 0%, #f5c800 100%);
  color: var(--color-dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  border: 1px solid #ffdf59;
  box-shadow: 0 4px 18px rgba(245, 200, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 200, 0, 0.55);
}

.cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(245, 200, 0, 0.3);
}

.cta-amazon-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-cta-wrapper {
    align-items: flex-start;
    margin: 0;
  }
}

.hero-cta-subtext {
  color: #adada3;
  font-size: 0.82rem;
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .hero-cta-subtext {
    text-align: left;
  }
}

.cta-micro-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  max-width: 520px;
  gap: 14px 26px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b2b2a6;
  margin-top: 16px;
}

@media (max-width: 899px) {
  .cta-micro-row {
    justify-content: center;
    gap: 10px 22px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-micro-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  line-height: 1;
}

.cta-micro-row span i,
.cta-micro-row span svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}

/* Hero Proof Points & Price Row */
.hero-proof-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 18px 0 16px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #deded4;
}

@media (max-width: 899px) {
  .hero-proof-bullets {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-proof-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof-bullets span i,
.hero-proof-bullets span svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}

.hero-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

@media (max-width: 899px) {
  .hero-price-row {
    justify-content: center;
  }
}

.hero-price-row .price-strike {
  font-size: 1.05rem;
  color: #7a7a72;
  text-decoration: line-through;
}

.hero-price-row .price-live {
  font-family: var(--font-title);
  font-size: 2.1rem;
  color: var(--color-primary);
  line-height: 1;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 38px 0 34px;
  background: radial-gradient(circle at 50% 20%, rgba(245, 200, 0, 0.06) 0%, transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 900px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow,
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 0, 0.12);
  border: 1px solid rgba(245, 200, 0, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.hero-eyebrow i {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary);
  display: inline-block;
  animation: eyebrowPulse 2s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 6vw, 3.4rem);
  line-height: 1.08;
  color: var(--color-white);
  margin-top: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
  word-break: break-word;
  animation: heroTitleEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title-line {
  display: block;
}

.hero-title-line.line-2 {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 48px;
  }
  .hero-title {
    font-size: clamp(2.1rem, 7.8vw, 2.75rem);
    line-height: 1.15;
    margin-top: 22px;
    margin-bottom: 20px;
  }
  .hero-title-line {
    display: block;
  }
  .hero-title-line.line-2 {
    margin: 6px 0;
  }
  .hero-kiss-wrap {
    font-size: 1.18em;
  }
}

@keyframes heroTitleEntrance {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bright Yellow Glowing Highlight Variation (< 3s) */
.hero-title .highlight {
  display: inline-block;
  color: var(--color-primary);
  animation: yellowGlowEntrance 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes yellowGlowEntrance {
  0% {
    opacity: 0;
    transform: scale(0.9);
    text-shadow: 0 0 0 rgba(245, 200, 0, 0);
  }
  45% {
    opacity: 1;
    transform: scale(1.06);
    text-shadow: 0 0 28px rgba(245, 200, 0, 0.95), 0 0 50px rgba(245, 200, 0, 0.75), 0 0 12px rgba(255, 255, 255, 0.8);
  }
  75% {
    transform: scale(1);
    text-shadow: 0 0 16px rgba(245, 200, 0, 0.7), 0 0 32px rgba(245, 200, 0, 0.35);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 10px rgba(245, 200, 0, 0.5);
  }
}

/* Hero Kiss, Blush & Handwritten Underline Animations */
.hero-kiss-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hero-kiss-text {
  display: inline-block;
  color: var(--color-white);
  transition: color 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.5s ease;
}

.hero-kiss-text.blushing {
  color: #ff5c8a;
  text-shadow: 0 0 24px rgba(255, 92, 138, 0.6), 0 0 50px rgba(255, 92, 138, 0.3);
}

.hero-kiss-stamp {
  position: absolute;
  top: -24px;
  left: -22px;
  right: auto;
  font-size: 2.2rem;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transform: scale(0) rotate(-15deg);
  filter: drop-shadow(0 4px 10px rgba(255, 45, 85, 0.45));
}

.hero-kiss-stamp.kissed {
  opacity: 1;
  transform: scale(1) rotate(-12deg);
  animation: kissPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, kissFloat 3s ease-in-out infinite 0.65s;
}

.hero-kiss-stamp.floating {
  opacity: 1;
  transform: scale(1) rotate(-12deg);
  animation: kissFloat 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-kiss-stamp {
    font-size: 1.85rem !important;
    top: -18px !important;
    left: 4px !important;
    right: auto !important;
  }
}

/* Appllama-style Floating Kiss Heart */
.kiss-floating-heart {
  position: absolute;
  pointer-events: none;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 25;
  filter: drop-shadow(0 4px 12px rgba(255, 45, 85, 0.6));
  animation: kissHeartRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes kissHeartRise {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.4) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -20px) scale(1.3) rotate(-8deg);
  }
  75% {
    opacity: 0.9;
    transform: translate(-50%, -46px) scale(1.1) rotate(6deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -68px) scale(0.85) rotate(-12deg);
  }
}

@keyframes kissPop {
  0% {
    opacity: 0;
    transform: scale(2.8) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: scale(0.9) rotate(-10deg);
  }
  75% {
    transform: scale(1.2) rotate(-14deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-10deg);
  }
}

@keyframes kissFloat {
  0%, 100% {
    transform: scale(1) rotate(-10deg) translateY(0);
  }
  50% {
    transform: scale(1.05) rotate(-6deg) translateY(-4px);
  }
}

.hero-underline-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .hero-underline-wrap {
    white-space: normal;
  }
}

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

.hero-handdrawn-svg {
  position: absolute;
  left: -3%;
  bottom: -8px;
  width: 106%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.hero-handdrawn-svg path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 0.85s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-handdrawn-svg.drawn path {
  stroke-dashoffset: 0;
}

/* Section 2 Subtitle & Funny Note */
.section-subheading {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-top: -8px;
  margin-bottom: 12px;
}

.spread-humor-comment {
  max-width: 680px;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.spread-devil-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.devil-avatar {
  font-size: 2.3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 14px rgba(186, 40, 217, 0.5));
  animation: devilNod 2.8s ease-in-out infinite;
  flex-shrink: 0;
  user-select: none;
}

@keyframes devilNod {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-4px) rotate(6deg) scale(1.06); }
}

.devil-speech-bubble {
  position: relative;
  background: linear-gradient(135deg, rgba(38, 18, 50, 0.94) 0%, rgba(20, 20, 28, 0.96) 100%);
  border: 1.5px solid rgba(255, 92, 138, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 92, 138, 0.16);
  border-radius: 18px;
  padding: 10px 18px;
  color: #ede4d4;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}

.devil-speech-bubble::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid rgba(255, 92, 138, 0.45);
}

.devil-speech-bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(38, 18, 50, 0.96);
}

.devil-speech-bubble .devil-quote {
  font-style: italic;
}

.glow-purple {
  color: #d980fa;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.04em;
  text-shadow: 0 0 10px rgba(217, 128, 250, 0.9), 0 0 20px rgba(186, 40, 217, 0.75), 0 0 32px rgba(186, 40, 217, 0.5);
  display: inline-block;
  animation: purpleGlowPulse 2.2s ease-in-out infinite alternate;
}

@keyframes purpleGlowPulse {
  0% {
    text-shadow: 0 0 8px rgba(217, 128, 250, 0.8), 0 0 16px rgba(186, 40, 217, 0.6);
  }
  100% {
    text-shadow: 0 0 14px rgba(217, 128, 250, 1), 0 0 26px rgba(186, 40, 217, 0.9), 0 0 38px rgba(186, 40, 217, 0.6);
  }
}

/* Strikethrough Text Variation (< 3s) */
.hero-title .strikethrough {
  position: relative;
  display: inline-block;
  color: #ffffff;
  animation: strikeTextMute 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-title .strikethrough::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 52%;
  height: 4px;
  background: #ff5240;
  box-shadow: 0 0 10px rgba(255, 82, 64, 0.7);
  border-radius: 2px;
  transform: translateY(-50%) rotate(-2deg);
  width: 0;
  animation: drawStrikeLine 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

@keyframes drawStrikeLine {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    width: calc(100% + 4px);
    opacity: 1;
  }
}

@keyframes strikeTextMute {
  0% {
    color: #ffffff;
  }
  100% {
    color: #78756d;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-title .strikethrough,
  .hero-title .strikethrough::after,
  .hero-title .highlight {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-title .strikethrough::after {
    width: calc(100% + 4px) !important;
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #cfcfc4;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* --------------------------------------------------------------------------
   7. PROPORTIONAL 120-PAGE 3D NOTEBOOK (AUTOMATIC 360° CONTINUOUS ROTATION)
   -------------------------------------------------------------------------- */
.mockup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.book-stage {
  width: 240px;
  height: 350px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 480px) {
  .book-stage {
    width: 210px;
    height: 310px;
  }
}

.book-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  animation: continuous-360 14s linear infinite;
}

@keyframes continuous-360 {
  0% { transform: rotateX(8deg) rotateY(0deg); }
  50% { transform: rotateX(12deg) rotateY(180deg); }
  100% { transform: rotateX(8deg) rotateY(360deg); }
}

.book-shadow {
  position: absolute;
  width: 180px;
  height: 240px;
  bottom: -45px;
  left: 30px;
  transform: rotateX(90deg) translateZ(-160px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

.book-face-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(6px);
  background: #000000 url('./assets/cover-front.png') no-repeat center center;
  background-size: cover;
  border-radius: 2px 8px 8px 2px;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.45);
}

.book-face-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-6px) rotateY(180deg);
  background: #000000 url('./assets/cover-back.png') no-repeat center center;
  background-size: cover;
  border-radius: 8px 2px 2px 8px;
  box-shadow: -2px 4px 16px rgba(0, 0, 0, 0.45);
}

.book-face-spine {
  position: absolute;
  top: 0;
  left: -6px;
  width: 12px;
  height: 100%;
  transform: rotateY(-90deg);
  background: #0a0a0a;
  border-left: 1px solid rgba(245, 200, 0, 0.3);
  border-right: 1px solid rgba(245, 200, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spine-label {
  font-family: var(--font-title);
  font-size: 0.55rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  transform: rotate(90deg);
  white-space: nowrap;
}

.book-face-right {
  position: absolute;
  top: 2px;
  right: -6px;
  width: 12px;
  height: calc(100% - 4px);
  transform: rotateY(90deg);
  background: repeating-linear-gradient(
    90deg,
    #fff8d6 0px,
    #fff8d6 1px,
    #dfd2a7 1.5px,
    #fff8d6 2px
  );
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4);
  border-radius: 0 2px 2px 0;
}

.book-face-top {
  position: absolute;
  top: -6px;
  left: 2px;
  width: calc(100% - 4px);
  height: 12px;
  transform: rotateX(90deg);
  background: #fff8d6;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.book-face-bottom {
  position: absolute;
  bottom: -6px;
  left: 2px;
  width: calc(100% - 4px);
  height: 12px;
  transform: rotateX(-90deg);
  background: #fff8d6;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

/* Quick Hero Spread Preview Chip */
.hero-spread-preview-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  position: relative;
  z-index: 5;
  background: #1e1e1e;
  border: 1.5px solid #363636;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.hero-spread-preview-chip:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 200, 0, 0.25);
}

@media (max-width: 640px) {
  .hero-spread-preview-chip {
    margin-top: 36px;
    padding: 8px 12px;
    gap: 10px;
  }
}

.mini-spread-thumb {
  width: 108px;
  height: 56px;
  background: #ede3d1;
  border: 1px solid #c9bda5;
  border-radius: 5px;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.mini-thumb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: #222;
  border-bottom: 0.5px solid #888;
  padding-bottom: 2px;
  line-height: 1;
}

.mini-thumb-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-thumb-tags {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mini-tag {
  background: rgba(0, 0, 0, 0.08);
  padding: 1px 3px;
  border-radius: 2px;
  border: 0.5px solid #888;
  font-size: 0.44rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.mini-thumb-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mini-rating-label {
  font-size: 0.44rem;
  font-weight: 700;
  color: #555;
  line-height: 1;
  white-space: nowrap;
}

.mini-flame {
  font-size: 0.54rem;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 1px;
}

.mini-spread-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mini-spread-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.mini-spread-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   8. The Core Problem: PHONE NOTES VS. BLANK NOTEBOOK VS. THIS TRACKER
   -------------------------------------------------------------------------- */
.problem-section {
  padding: 38px 0;
  background: #1a1a1a;
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-danger);
  display: block;
  margin-bottom: 6px;
  text-align: center;
}

.section-heading {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.1;
}

.problem-tracker-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.problem-tracker-text {
  position: relative;
  z-index: 1;
  color: inherit;
  transition: color 0.4s ease, text-shadow 0.6s ease;
}

.problem-tracker-text.glowing {
  color: var(--color-primary);
  text-shadow: 0 0 16px rgba(245, 200, 0, 0.8), 0 0 32px rgba(245, 200, 0, 0.45);
}

.problem-handdrawn-svg {
  position: absolute;
  left: -3%;
  bottom: -8px;
  width: 106%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.problem-handdrawn-svg path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-handdrawn-svg.drawn path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}

.problem-contrast-box {
  background: rgba(26, 20, 20, 0.88);
  border: 1px solid rgba(217, 86, 63, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin: 0 auto 30px;
  max-width: 580px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.issue-urgency-badge {
  position: absolute;
  top: -14px;
  left: 18px;
  background: #e02e2e;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(224, 46, 46, 0.75), 0 2px 6px rgba(0, 0, 0, 0.5);
  border: 2px solid #1a1414;
  z-index: 3;
  animation: urgencyPulse 2.2s ease-in-out infinite;
}

.issue-urgency-badge svg,
.issue-urgency-badge i {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  stroke-width: 2.6;
  flex-shrink: 0;
}

@keyframes urgencyPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(224, 46, 46, 0.55);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 20px rgba(224, 46, 46, 0.95);
  }
}

.issue-box-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.issue-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.issue-sub {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: #d8d8ce;
  line-height: 1.55;
  margin: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 920px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr 1.15fr;
    align-items: center;
  }
}

.comp-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comp-card.bad {
  background: #191616;
  border: 1px solid rgba(217, 86, 63, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comp-card.bad:hover {
  border-color: rgba(217, 86, 63, 0.45);
}

.comp-badge-bad {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(217, 86, 63, 0.14);
  color: #ff8c7c;
  border: 1px solid rgba(217, 86, 63, 0.3);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

.comp-badge-bad i {
  width: 13px;
  height: 13px;
  stroke: #ff8c7c;
}

.comp-card.good {
  background: #191811;
  border: 1.5px solid rgba(245, 200, 0, 0.55);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
  padding: 30px 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease;
}

@media (min-width: 920px) {
  .comp-card.good {
    transform: scale(1.01);
  }
}

/* Triggered Elevation & Glowing Aura on Hover or Phone Touch */
.comp-card.good:hover,
.comp-card.good:focus-within,
.comp-card.good.touch-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 36px rgba(245, 200, 0, 0.38), 0 20px 48px rgba(0, 0, 0, 0.75);
}

@media (min-width: 920px) {
  .comp-card.good:hover,
  .comp-card.good:focus-within,
  .comp-card.good.touch-active {
    transform: translateY(-6px) scale(1.05);
  }
}

@media (max-width: 919px) {
  .comp-card.good:hover,
  .comp-card.good:focus-within,
  .comp-card.good.touch-active {
    transform: translateY(-4px) scale(1.02);
  }
}

.comp-badge-winner {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #171717;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.comp-card.good:hover .comp-badge-winner,
.comp-card.good:focus-within .comp-badge-winner,
.comp-card.good.touch-active .comp-badge-winner {
  box-shadow: 0 0 16px rgba(245, 200, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%) translateY(-2px);
}

.comp-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-card.bad .comp-card-title { color: #ff8b7b; }
.comp-card.good .comp-card-title { color: var(--color-primary); font-size: 1.2rem; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.42;
}

.comp-list.bad li { color: #b5a8a6; }
.comp-list.good li { color: #fff8d6; font-size: 0.88rem; }

.comp-list li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-list.bad li i {
  stroke: #ff7a66;
}

.comp-list.good li i {
  stroke: var(--color-primary);
}

.comp-winner-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 200, 0, 0.2);
  text-align: center;
}

.comp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-primary);
  color: #171717;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  width: 100%;
  transition: transform 0.15s ease, background 0.15s ease;
}

.comp-cta-btn:hover {
  background: #ffd933;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   9. AUTHENTIC 432x648 RECTO-VERSO NOTEBOOK SPREAD
   -------------------------------------------------------------------------- */
.spread-showcase-section {
  padding: 40px 0;
  background: var(--color-dark);
}

@media (max-width: 768px) {
  .spread-showcase-section {
    padding-top: 68px;
    margin-top: 24px;
    scroll-margin-top: 85px;
  }
  .spread-showcase-section .section-heading {
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 0 10px;
  }
}

/* 3 Visual Callouts Bar - Strictly Horizontally Aligned */
.spread-callouts-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 12px auto 20px;
  max-width: 820px;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.spread-callout-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #202020;
  border: 1px solid #363636;
  color: #ecece6;
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 2.4vw, 0.82rem);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  user-select: none;
  white-space: nowrap;
  flex: 0 1 auto;
  text-align: center;
}

.spread-callout-pill i,
.spread-callout-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}

.spread-callout-pill span {
  white-space: nowrap;
}

/* Mobile Zoom Button removed */
.spread-mobile-zoom-action {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Jobs To Be Done 4-Card Grid (Features Section)
   -------------------------------------------------------------------------- */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 28px auto 36px;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (min-width: 680px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.job-card {
  background: rgba(26, 26, 26, 0.88);
  border: 1px solid #333333;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 200, 0, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(245, 200, 0, 0.14);
}

.job-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 200, 0, 0.12);
  border: 1px solid rgba(245, 200, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-icon-wrap i,
.job-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.job-card-content {
  flex: 1;
}

.job-title {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.job-desc {
  font-size: 0.88rem;
  color: #c8c8bc;
  line-height: 1.54;
  margin: 0;
}

.spread-blueprint-header {
  text-align: center;
  margin: 32px auto 20px;
  max-width: 650px;
}

.blueprint-title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3.8vw, 1.85rem);
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.job-icon-wrap .job-emoji {
  font-size: 1.45rem;
  line-height: 1;
}

#interiorBlueprint {
  scroll-margin-top: 86px;
}

.tag-hot {
  color: #ffa502;
  font-weight: 700;
}

.tag-weird {
  color: #9cb8d3;
  font-weight: 700;
}

.tag-red-flags {
  color: #ff4757;
  font-weight: 700;
}

.tag-green-flags {
  color: #2ed573;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Section 2 Interactive Highlights: Which Alex Sweep & Drawn Underline
   -------------------------------------------------------------------------- */
.which-alex-wrap {
  display: inline-block;
  color: #9cb8d3;
}

.which-alex-text {
  display: inline-block;
  color: #9cb8d3;
  background: linear-gradient(
    90deg,
    #9cb8d3 0%,
    #9cb8d3 25%,
    #ffffff 48%,
    #70d6ff 52%,
    #ffffff 56%,
    #9cb8d3 75%,
    #9cb8d3 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.35s ease;
}

.which-alex-text.sweeping {
  animation: whichAlexColorSweep 2.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  filter: drop-shadow(0 0 10px rgba(112, 214, 255, 0.55));
}

@keyframes whichAlexColorSweep {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.organized-underline-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.organized-underline-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 800;
}

.organized-handdrawn-svg {
  position: absolute;
  left: -2%;
  bottom: -6px;
  width: 104%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.organized-handdrawn-svg path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}

.organized-handdrawn-svg.drawn path {
  stroke-dashoffset: 0;
}

.lustography-text {
  color: #c084fc;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(192, 132, 252, 0.85), 0 0 24px rgba(168, 85, 247, 0.5);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Mid-Page Dating Manifesto Section (Homogeneous Editorial Layout)
   -------------------------------------------------------------------------- */
.manifesto-section {
  padding: 56px 0;
  background: #121212;
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
  position: relative;
}

.manifesto-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.manifesto-kicker {
  margin-bottom: 10px;
}

.manifesto-heading {
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.manifesto-p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  color: #c8c8bc;
  margin: 0;
  line-height: 1.6;
}

.manifesto-p-alert {
  color: #ffffff;
}

.manifesto-warning {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.manifesto-lore {
  color: #9d9d92;
  font-size: 0.96rem;
}

.manifesto-pullquote {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 2.4vw, 1.25rem);
  font-style: italic;
  color: #f5f5ee;
  line-height: 1.5;
  margin: 10px 0 0 0;
}

.manifesto-lore-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  padding-top: 20px;
  border-top: 1px solid #242424;
}

.manifesto-lore-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #a8a89c;
  font-weight: 600;
}

.manifesto-lore-dot {
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Spread Zoom Lightbox Modal */
.spread-zoom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.spread-zoom-modal-overlay[hidden] {
  display: none !important;
}

.spread-zoom-card {
  background: #1a1a1a;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  animation: zoomModalIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes zoomModalIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.spread-zoom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #2d2d2d;
}

.spread-zoom-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: #fff;
}

.spread-zoom-close {
  background: transparent;
  border: none;
  color: #bbb;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spread-zoom-close:hover {
  color: #fff;
}

.spread-zoom-body {
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.spread-zoom-preview-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.spread-zoom-page-view {
  background: #ede3d1;
  color: #111;
  padding: 18px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.zoom-page-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  background: rgba(0, 0, 0, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.zoom-page-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222;
}

.spread-zoom-footer {
  padding: 14px 20px;
  border-top: 1px solid #2d2d2d;
  text-align: center;
}

.notebook-spread-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px 8px 28px;
  scrollbar-width: thin;
}

/* Side-by-side double spread (432x648 pt aspect ratio per page) */
.notebook-double-spread {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: stretch;
  background: transparent;
  perspective: 1400px;
  position: relative;
}

/* Book Spine Gutter */
.spread-spine-gutter {
  background: linear-gradient(to right, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.25) 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.8);
  border-radius: 1px;
}

.spread-spine-gutter::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 4px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #2b2b2b 0, #2b2b2b 4px, transparent 4px, transparent 8px);
}

/* Authentic Physical Page (Warm Brownish Kraft/Cream Paper) */
.spread-page {
  background: #ede4d4;
  background: linear-gradient(145deg, #f0e8da 0%, #ede3d1 50%, #e7dcce 100%);
  color: #000000;
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  aspect-ratio: 432 / 648;
  box-sizing: border-box;
  overflow: hidden;
}

.page-recto {
  border-right: 2.5px solid #281f18;
  box-shadow: inset -12px 0 22px rgba(60, 42, 25, 0.08), 0 16px 40px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 28px 76px; /* Balanced top & bottom margins matching physical notebook */
}

.page-verso {
  border-left: 2.5px solid #281f18;
  box-shadow: inset 12px 0 22px rgba(60, 42, 25, 0.08), 0 16px 40px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 28px 76px;
}

/* Typography & Ruled Lines: CRISP SOLID BLACK (#000000) */
.bp-label {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  white-space: nowrap;
}

.bp-underline {
  flex: 1;
  border-bottom: 1.5px solid #000000;
  height: 1.15em;
  min-width: 24px;
}

.page-recto .bp-row,
.page-recto .bp-hookup-id-row,
.page-recto .bp-demographics-row,
.page-recto .bp-split-grid,
.page-recto .bp-block-meet,
.page-recto .bp-field-location,
.page-recto .bp-two-col-grid {
  margin-bottom: 0;
}

.page-recto .bp-ruled-line {
  width: 100%;
  border-bottom: 1.5px solid #000000;
  height: 17px;
}

.bp-block-meet {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-verso .bp-ruled-line {
  width: 100%;
  border-bottom: 1.5px solid #000000;
  height: 25px;
}

.bp-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.bp-inline-field {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

/* 1. Hookup ID */
.bp-hookup-id-row {
  margin-bottom: 10px;
}

/* 2. Demographics */
.bp-demographics-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.bp-field-gender {
  flex: 1.1;
}

.bp-field-age {
  flex: 1.2;
}

.bp-vibe-faces-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 6px;
}

.bp-face-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  background: rgba(0, 0, 0, 0.03);
  color: #000000;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.bp-face-chip:hover {
  transform: scale(1.18) rotate(-4deg);
  background: rgba(0, 0, 0, 0.08);
}

.bp-face-chip:active {
  transform: scale(0.92);
}

.bp-face-chip.selected {
  background: #000000;
  color: #ede4d4;
  border-color: #000000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  animation: facePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bp-face-chip i,
.bp-face-chip svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  display: block;
  transition: stroke 0.18s ease;
}

.bp-face-chip.selected i,
.bp-face-chip.selected svg {
  stroke: #ede4d4;
  stroke-width: 2.3;
}

@keyframes facePop {
  0% { transform: scale(1); }
  35% { transform: scale(0.8); }
  65% { transform: scale(1.28) rotate(-6deg); }
  100% { transform: scale(1.15) rotate(0); }
}

/* Floating Reaction Animation from Appllama */
.bp-reaction-floater {
  position: absolute;
  top: -6px;
  left: 50%;
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
  z-index: 30;
  animation: reactionFloat 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reactionFloat {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.4);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -16px) scale(1.25);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -44px) scale(0.9);
  }
}

/* 3. Details & Roles Split */
.bp-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 14px;
  margin-bottom: 10px;
}

.bp-split-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-field-date {
  position: relative;
}

.bp-date-slashes-bar {
  position: absolute;
  left: 55px;
  right: 15px;
  bottom: 1px;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.bp-slash {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
}

/* Roles Matrix (3 cols x 2 rows) */
.bp-split-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bp-roles-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 6px;
}

.bp-role-item,
.bp-never-again-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease;
}

.bp-role-item:hover,
.bp-never-again-item:hover {
  opacity: 0.8;
}

.bp-role-item.bp-label-left {
  justify-content: space-between;
}

.bp-role-item.bp-label-right {
  justify-content: flex-start;
}

.bp-role-name {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
  pointer-events: none;
}

.bp-checkbox-box {
  width: 17px;
  height: 17px;
  border: 1.8px solid #000000;
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.15s ease, border-color 0.15s ease;
}

.bp-checkbox-box:hover {
  transform: scale(1.18);
  background: rgba(0, 0, 0, 0.08);
}

.bp-checkbox-box:active {
  transform: scale(0.85);
}

.bp-checkbox-box.checked {
  background: #000000;
  border-color: #000000;
  animation: checkBounce 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bp-checkbox-box.checked::after {
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  color: #ede4d4;
  line-height: 1;
  display: block;
  animation: checkInnerPop 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes checkBounce {
  0% { transform: scale(1); }
  35% { transform: scale(0.8); }
  70% { transform: scale(1.24); }
  100% { transform: scale(1); }
}

@keyframes checkInnerPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Micro particle burst for checkboxes */
.bp-particle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000000;
  pointer-events: none;
  z-index: 25;
  animation: particleBurst 0.45s ease-out forwards;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.3);
  }
}

.bp-field-occupation {
  margin-top: 2px;
}

/* 4. Meet Counter & Never Again */
.bp-meet-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.bp-field-meet-counter {
  flex: 1;
}

.bp-never-again-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-under-meet {
  margin-bottom: 10px;
}

/* 5. Location */
.bp-field-location {
  margin-bottom: 10px;
}

/* 6, 7, 8: Two Column Attribute Blocks */
.bp-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 6px;
}

.bp-col-block {
  display: flex;
  flex-direction: column;
}

.bp-col-block .bp-label {
  margin-bottom: 0;
}

/* 9. Bottom-Right Perforated Cut Corner */
.bp-perforated-corner-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 140px;
  pointer-events: none;
}

.bp-corner-callout {
  position: absolute;
  bottom: 20px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: rotate(-10deg);
}

.bp-handwritten-note {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

.bp-arrow-svg {
  width: 24px;
  height: 18px;
  stroke: #000000;
  flex-shrink: 0;
  display: block;
}

.bp-corner-cutline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bp-dashed-diagonal-line {
  position: absolute;
  bottom: 35px;
  right: -30px;
  width: 140px;
  border-bottom: 2px dotted #000000;
  transform: rotate(-45deg);
  transform-origin: center;
}

.bp-cut-scissors {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
  z-index: 2;
}

/* PAGE 2 (VERSO) - Prompt Blocks */
.bp-prompt-block {
  margin-bottom: 18px;
}

.bp-prompt-header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 0;
}

/* Verso bottom-left diagonal cut line */
.bp-perforated-corner-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 130px;
  pointer-events: none;
}

.bp-perforated-corner-left .bp-dashed-diagonal-line {
  position: absolute;
  bottom: 42px;
  left: -35px;
  width: 150px;
  border-bottom: 2px dotted #000000;
  transform: rotate(45deg);
  transform-origin: center;
}

/* --------------------------------------------------------------------------
   Responsive Mobile 3D Page Flip Spread (No Horizontal Scrolling)
   -------------------------------------------------------------------------- */
.spread-flip-control-bar {
  display: none;
}

.spread-flip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border: 1.5px solid var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(245, 200, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  user-select: none;
  touch-action: manipulation;
}

.spread-flip-btn:active {
  transform: scale(0.96);
}

.spread-flip-btn .flip-icon {
  width: 17px;
  height: 17px;
  stroke: var(--color-primary);
  transition: transform 0.65s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.spread-flip-btn.is-flipped .flip-icon {
  transform: rotate(180deg);
}

.spread-page-badge {
  background: var(--color-primary);
  color: #111111;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .spread-showcase-section {
    overflow: hidden;
  }

  .spread-flip-control-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 16px auto 0;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
  }

  .spread-flip-btn {
    max-width: min(340px, calc(100vw - 32px));
    width: 100%;
    box-sizing: border-box;
  }

  .notebook-spread-scroll-wrap {
    padding: 8px 0 16px;
    overflow: hidden !important;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .notebook-double-spread {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: min(356px, calc(100vw - 20px)) !important;
    margin: 0 auto !important;
    height: 570px !important;
    aspect-ratio: auto !important;
    perspective: 1200px;
    grid-template-columns: none !important;
    min-width: 0 !important;
    box-sizing: border-box;
    overflow: visible;
  }

  .spread-spine-gutter {
    display: none !important;
  }

  .spread-page {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    border-radius: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.34, 1.25, 0.64, 1), box-shadow 0.65s ease;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-recto {
    padding: 16px 12px 80px 12px !important;
    justify-content: space-between;
    transform: rotateY(0deg);
    z-index: 3;
    pointer-events: auto;
    border-right: none;
    box-sizing: border-box !important;
  }

  /* Prevent any internal element from pushing out of the right edge */
  .page-recto > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .bp-demographics-row {
    gap: 5px !important;
    align-items: flex-end !important;
  }

  .bp-field-gender,
  .bp-field-age {
    min-width: 0 !important;
  }

  .bp-field-gender .bp-label,
  .bp-field-age .bp-label {
    font-size: 0.70rem !important;
  }

  .bp-field-gender .bp-underline,
  .bp-field-age .bp-underline {
    min-width: 10px !important;
  }

  .bp-vibe-faces-group {
    gap: 3px !important;
    margin-left: 2px !important;
    flex-shrink: 0 !important;
  }

  .bp-face-chip {
    width: 21px !important;
    height: 21px !important;
  }

  .bp-face-chip i,
  .bp-face-chip svg {
    width: 12px !important;
    height: 12px !important;
  }

  .bp-split-grid {
    grid-template-columns: 0.8fr 1.4fr !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .bp-split-left {
    min-width: 0 !important;
    gap: 7px !important;
  }

  .bp-split-left .bp-label {
    font-size: 0.72rem !important;
  }

  .bp-split-left .bp-inline-field {
    gap: 3px !important;
  }

  .bp-date-slashes-bar {
    left: 36px !important;
    right: 4px !important;
  }

  .bp-split-right {
    min-width: 0 !important;
    overflow: visible !important;
  }

  .bp-roles-matrix {
    display: grid !important;
    grid-template-columns: auto auto auto !important;
    gap: 3px 3px !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bp-role-item {
    gap: 2px !important;
    min-width: 0 !important;
  }

  .bp-role-name {
    font-size: 0.58rem !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }

  .bp-checkbox-box {
    width: 13px !important;
    height: 13px !important;
    border-width: 1.4px !important;
    flex-shrink: 0 !important;
  }

  .bp-checkbox-box.checked::after {
    font-size: 9px !important;
  }

  .bp-field-occupation {
    gap: 4px !important;
    margin-top: 3px !important;
  }

  .bp-field-occupation .bp-label {
    font-size: 0.70rem !important;
  }

  .bp-meet-row {
    gap: 6px !important;
  }

  .bp-field-meet-counter .bp-label {
    font-size: 0.72rem !important;
  }

  .bp-never-again-item .bp-role-name {
    font-size: 0.70rem !important;
  }

  .bp-field-location .bp-label {
    font-size: 0.72rem !important;
  }

  .bp-two-col-grid {
    gap: 8px !important;
  }

  .bp-two-col-grid .bp-label {
    font-size: 0.70rem !important;
  }

  .page-verso {
    padding: 18px 14px 72px 14px !important;
    justify-content: space-between;
    transform: rotateY(180deg);
    z-index: 2;
    pointer-events: none;
    border-left: none;
    box-sizing: border-box !important;
  }

  .notebook-double-spread.flipped .page-recto {
    transform: rotateY(-180deg);
    z-index: 2;
    pointer-events: none;
  }

  .notebook-double-spread.flipped .page-verso {
    transform: rotateY(0deg);
    z-index: 3;
    pointer-events: auto;
  }

  .bp-perforated-corner-right {
    width: 125px;
    height: 65px;
  }

  .bp-corner-callout {
    bottom: 10px;
    right: 22px;
    transform: rotate(-10deg);
    gap: 4px;
  }

  .bp-handwritten-note {
    font-size: 0.78rem;
  }

  .bp-arrow-svg {
    width: 16px;
    height: 12px;
  }

  .bp-dashed-diagonal-line {
    bottom: 20px;
    right: -25px;
    width: 95px;
  }

  .bp-cut-scissors {
    bottom: 13px;
    right: 13px;
    width: 13px;
    height: 13px;
  }

  .bp-perforated-corner-left {
    width: 65px;
    height: 65px;
  }

  .bp-perforated-corner-left .bp-dashed-diagonal-line {
    bottom: 20px;
    left: -25px;
    width: 90px;
  }

  .page-verso .bp-prompt-block {
    margin-bottom: 12px;
  }

  .bp-label {
    font-size: 0.76rem;
  }
  .bp-face-svg {
    width: 18px;
    height: 18px;
  }
  .page-recto .bp-ruled-line {
    height: 12px;
  }
  .page-verso .bp-ruled-line {
    height: 16px;
  }
}


/* --------------------------------------------------------------------------
   Burning Fire Animation for "REAL DATING LIVES" & Floating Flame Emojis
   -------------------------------------------------------------------------- */
.burning-fire-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: text;
  -webkit-user-select: text;
  touch-action: manipulation;
  outline: none;
}

.burning-fire-wrap:focus-visible {
  outline: 2px dashed #ff9100;
  outline-offset: 4px;
  border-radius: 4px;
}

.burning-fire-text {
  position: relative;
  display: inline-block;
  user-select: text;
  -webkit-user-select: text;
  background: linear-gradient(180deg, #fff3c4 0%, #ffb300 35%, #f4511e 75%, #d84315 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.45));
  animation: flameSubtleGlow 3.2s ease-in-out infinite alternate;
  transition: filter 0.25s ease;
}

.burning-fire-wrap:hover .burning-fire-text {
  filter: drop-shadow(0 0 8px rgba(255, 150, 0, 0.65));
}

.burning-fire-wrap:active .burning-fire-text,
.burning-fire-text.flared {
  filter: drop-shadow(0 0 11px rgba(255, 190, 50, 0.85));
}

@keyframes flameSubtleGlow {
  0% {
    filter: drop-shadow(0 0 4px rgba(255, 130, 0, 0.35));
  }
  100% {
    filter: drop-shadow(0 0 7px rgba(255, 150, 0, 0.55));
  }
}

/* Floating flame emoji particle on click */
.floating-flame-emoji {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 120;
  font-size: 1.65rem;
  line-height: 1;
  will-change: transform, opacity;
  animation: riseAndBurn var(--flame-duration, 1.1s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes riseAndBurn {
  0% {
    transform: translate(0, 0) scale(var(--flame-scale, 1)) rotate(0deg);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 120, 0, 0.95));
  }
  45% {
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(255, 180, 0, 1));
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--flame-dx, 0px), var(--flame-dy, -190px)) scale(calc(var(--flame-scale, 1) * 1.35)) rotate(var(--flame-rot, 20deg));
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(255, 60, 0, 0));
  }
}

/* --------------------------------------------------------------------------
   10. Social Proof / 3 Use Cases
   -------------------------------------------------------------------------- */
.use-cases-section {
  padding: 38px 0;
  background: #141414;
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 26px;
}

@media (min-width: 820px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case-card {
  background: var(--color-dark-surface);
  border-radius: var(--radius-md);
  border: 1px solid #2e2e2e;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.badge-vault {
  background: rgba(245, 200, 0, 0.15);
  color: var(--color-primary);
}

.badge-clean {
  background: rgba(255, 149, 0, 0.15);
  color: #ffaa33;
}

.badge-gift {
  background: rgba(255, 92, 138, 0.18);
  color: #ff5c8a;
}

.use-case-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.use-case-text {
  font-size: 0.88rem;
  color: #adada2;
  line-height: 1.5;
  margin-bottom: 14px;
}

.use-case-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 12px;
  background: rgba(245, 200, 0, 0.08);
  border: 1px solid rgba(245, 200, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.use-case-fact i {
  width: 15px;
  height: 15px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Discreet Shipping & Specs
   -------------------------------------------------------------------------- */
.specs-section {
  padding: 38px 0;
  background: var(--color-dark);
}

.specs-box {
  background: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .specs-box {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.specs-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.spec-chip {
  background: #141414;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #292929;
}

.spec-chip-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #82827a;
  font-weight: 700;
  display: block;
}

.spec-chip-val {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--color-cream);
  margin-top: 2px;
  font-family: var(--font-heading);
}

.discreet-shield {
  background: linear-gradient(135deg, #222015 0%, #171716 100%);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.discreet-shield i {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.discreet-shield h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.discreet-shield p {
  font-size: 0.84rem;
  color: #b0b0a4;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. Minimal FAQ Accordion (Quick & Eased Animations)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 38px 0;
  background: #141414;
}

.faq-list {
  max-width: 680px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-row {
  background: #1c1c1c;
  border: 1px solid #2b2b2b;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.18s ease,
              background-color 0.18s ease,
              box-shadow 0.18s ease;
  will-change: transform;
}

.faq-row:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 200, 0, 0.45);
  background: #212121;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.faq-row:has(details[open]) {
  border-color: rgba(245, 200, 0, 0.5);
  background: #202020;
}

.faq-row summary {
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color 0.18s ease;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row summary:active {
  transform: scale(0.995);
}

.faq-row details[open] summary {
  color: var(--color-primary);
}

.faq-row summary i {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              stroke 0.18s ease;
  color: var(--color-primary);
  width: 17px;
  height: 17px;
}

.faq-row details[open] summary i {
  transform: rotate(180deg);
}

/* Modern progressive animation support */
.faq-row details::details-content {
  opacity: 0;
  block-size: 0;
  overflow-y: clip;
  transition: content-visibility 0.22s allow-discrete,
              opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              block-size 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-row details[open]::details-content {
  opacity: 1;
  block-size: auto;
}

/* Fallback / universal keyframe reveal */
.faq-row details[open] .faq-answer {
  animation: faq-expand 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes faq-expand {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.88rem;
  color: #adada2;
  line-height: 1.48;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

/* --------------------------------------------------------------------------
   13. High-Contrast Footer CTA
   -------------------------------------------------------------------------- */
.footer-cta-section {
  padding: 40px 0;
  background: radial-gradient(circle at 50% 50%, #241f10 0%, #171717 85%);
  border-top: 2px solid var(--color-primary);
  text-align: center;
}

.footer-cta-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.footer-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.strike-price {
  font-size: 0.95rem;
  color: #7a7a72;
  text-decoration: line-through;
}

.live-price {
  font-family: var(--font-title);
  font-size: 1.85rem;
  color: var(--color-primary);
}

.deal-pill {
  background: linear-gradient(90deg, #ff5c8a 0%, #e6396e 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(255, 92, 138, 0.35);
}

.text-white {
  color: #ffffff !important;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   14. Mobile Sticky Bottom Bar
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 23, 23, 0.98);
  border-top: 1.5px solid var(--color-primary);
  padding: 10px 16px;
  padding-right: 76px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.6);
  transform: translateY(110%);
  transition: transform 0.22s ease-out;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-title {
  display: none;
}

.sticky-price {
  display: none;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: var(--color-primary);
  color: var(--color-dark);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  min-height: 44px;
}

.sticky-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   15. Minimal Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 30px 0 80px;
  background: #0d0d0d;
  border-top: 1px solid #202020;
  text-align: center;
  font-size: 0.75rem;
  color: #686860;
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 30px;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #888880;
  font-size: 0.75rem;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-cookie-btn:hover {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   16. Customer Support Chat Widget
   -------------------------------------------------------------------------- */
telegram-chat-widget {
  --tg-font: var(--font-body);
}

@media (max-width: 768px) {
  /* Dock launcher in the right space reserved by the sticky purchase bar */
  telegram-chat-widget {
    bottom: 10px !important;
    right: 14px !important;
    z-index: 120 !important;
  }
}

/* --------------------------------------------------------------------------
   17. RGPD / GDPR Cookie Notice Banner & Details Modal
   -------------------------------------------------------------------------- */
.footer-cookie-btn {
  background: none;
  border: none;
  color: #888880;
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}

.footer-cookie-btn:hover {
  color: var(--color-primary);
}

.cookie-notice-banner,
#cookie-banner,
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 480px;
  z-index: 95;
  background: rgba(22, 22, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
  padding: 14px 18px;
  animation: bannerSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes bannerSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .cookie-notice-banner,
  #cookie-banner,
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 78px;
    max-width: none;
  }
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cookie-banner-emoji {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-banner-text {
  font-size: 0.82rem;
  color: #deded4;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn-primary {
  padding: 7px 14px;
  background: var(--color-primary);
  color: var(--color-dark);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cookie-btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaeae0;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #c4c4bc;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Modal Overlay & Card */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-modal-overlay[hidden] {
  display: none;
}

.cookie-modal-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-modal-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.cookie-modal-close {
  font-size: 1.6rem;
  color: #999;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.15s ease;
}

.cookie-modal-close:hover {
  color: #fff;
}

.cookie-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  font-size: 0.86rem;
  color: #ceced6;
  line-height: 1.5;
}

.cookie-table-wrap {
  margin: 16px 0;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  text-align: left;
}

.cookie-details-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-primary);
  font-weight: 700;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-details-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
}

.cookie-details-table code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 5px;
  border-radius: 4px;
  color: #ff5c8a;
  font-size: 0.72rem;
  font-family: monospace;
  word-break: break-all;
}

.cookie-modal-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(245, 200, 0, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
  font-size: 0.8rem;
  color: #eaeae0;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   16. Accessibility, Touch Targets & Reduced Motion Compliance
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2.5px solid var(--color-primary) !important;
  outline-offset: 2px !important;
}

.cta-button,
.comp-cta-btn,
.header-cta-desktop {
  min-height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .book-3d {
    animation: none !important;
    transform: rotateX(8deg) rotateY(25deg) !important;
  }
  .hero-kiss-stamp,
  .devil-avatar,
  .burning-fire-text {
    animation: none !important;
  }
  .hero-handdrawn-svg path,
  .problem-handdrawn-svg path {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* Telegram live support chat widget responsive docking */
@media (max-width: 768px) {
  telegram-chat-widget {
    bottom: 10px !important;
    right: 14px !important;
    z-index: 120 !important;
  }
}

