/* ============================================================
   HORNYCOMPANIONAI — CORE STYLESHEET
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg-base:       #070311;
  --bg-deep:       #12071f;
  --bg-card:       #1a0d2e;
  --bg-glass:      rgba(124, 58, 237, 0.08);
  --bg-glass-dark: rgba(7, 3, 17, 0.75);

  --purple-primary: #7c3aed;
  --purple-light:   #c084fc;
  --purple-glow:    rgba(124, 58, 237, 0.4);
  --pink-accent:    #ec4899;
  --pink-glow:      rgba(236, 72, 153, 0.4);
  --white:          #ffffff;
  --text-muted:     rgba(255, 255, 255, 0.55);
  --text-soft:      rgba(255, 255, 255, 0.75);
  --border-subtle:  rgba(124, 58, 237, 0.2);
  --border-glow:    rgba(124, 58, 237, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border-subtle);
  --shadow-glow: 0 0 40px var(--purple-glow), 0 0 80px rgba(124,58,237,0.15);
  --shadow-pink:  0 0 40px var(--pink-glow);

  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  --section-gap: 120px;
  --content-max: 1280px;
  --text-max:    680px;
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--purple-primary);
  color: var(--white);
}

img, video {
  display: block;
  max-width: 100%;
}

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

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--purple-primary);
  border-radius: 3px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Layout ─────────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(192, 132, 252, 0.3);
  background: rgba(124, 58, 237, 0.1);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
}

.section-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-subheading {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: var(--text-max);
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label { margin-bottom: 16px; }
.section-header .section-subheading { margin: 0 auto 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--pink-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  color: var(--white);
  box-shadow: 0 4px 20px var(--purple-glow), 0 4px 40px rgba(236,72,153,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--purple-glow), 0 8px 60px rgba(236,72,153,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(124,58,237,0.15);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-light);
  padding: 12px 20px;
}
.btn-ghost:hover { color: var(--white); }

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Image Frames ───────────────────────────────────────────── */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover img { transform: scale(1.04); }

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.15) 0%,
    transparent 50%,
    rgba(236,72,153,0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.image-frame .glow-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-frame:hover .glow-border { opacity: 0.6; }

/* ── Character Image ────────────────────────────────────────── */
.character-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a0d2e 0%, #0f0520 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.character-image .placeholder-portrait {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

/* ── Hero Preview ───────────────────────────────────────────── */
.hero-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 9/12;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #1e0b3a 0%, #12071f 60%, #070311 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glow);
}

.hero-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-preview-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 96px 24px 28px;
  background: linear-gradient(to top, rgba(7,3,17,0.96), rgba(7,3,17,0.42), transparent);
  text-align: center;
  pointer-events: none;
}

/* ── Chat Preview ───────────────────────────────────────────── */
.chat-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.chat-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(124,58,237,0.05);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-avatar img,
.chat-msg-avatar img,
.ui-profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.chat-avatar-info h4 { font-size: 14px; font-weight: 600; }
.chat-avatar-info span { font-size: 12px; color: #22c55e; }

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
}

.chat-msg.incoming { align-self: flex-start; }
.chat-msg.outgoing { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
}

.voice-profile-image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid rgba(192,132,252,0.45);
  box-shadow: 0 0 24px rgba(192,132,252,0.45);
}

.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

.incoming .chat-msg-bubble {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.2);
  border-top-left-radius: 4px;
  color: var(--text-soft);
}

.outgoing .chat-msg-bubble {
  background: linear-gradient(135deg, var(--purple-primary), rgba(124,58,237,0.8));
  color: var(--white);
  border-top-right-radius: 4px;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: fit-content;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

.chat-input-bar {
  padding: 14px 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(124,58,237,0.03);
}

.chat-input-bar input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 10px 16px;
  color: var(--white);
  font-size: 13.5px;
  outline: none;
}
.chat-input-bar input::placeholder { color: var(--text-muted); }

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.chat-send-btn:hover { transform: scale(1.08); }

/* ── Gallery Card ───────────────────────────────────────────── */
.gallery-card {
  aspect-ratio: 2/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.3);
}

.gallery-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(160deg, #1e0b3a, #0f0520);
  color: var(--text-muted);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,3,17,0.9) 0%, transparent 50%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay { opacity: 1; }

/* ── Mockup Screen ──────────────────────────────────────────── */
.mockup-screen {
  background: #0a0a1a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.mockup-screen-bar {
  height: 36px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red   { background: #ff5f57; }
.mockup-dot.amber { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

/* ── Phone Mockup ───────────────────────────────────────────── */
.phone-mockup {
  width: 240px;
  height: 480px;
  background: var(--bg-card);
  border-radius: 36px;
  border: 2px solid var(--border-glow);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-glow);
  margin: 0 auto;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: var(--bg-base);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1e0b3a 0%, #12071f 100%);
  height: calc(100% - 24px);
  padding: 16px 14px;
}

/* ── Card Components ─────────────────────────────────────────── */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-primary), var(--pink-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── Trust Indicators ───────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-soft);
}

.trust-item-icon {
  color: var(--purple-light);
  font-size: 16px;
}

.trust-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.trust-stat-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Badges & Tags ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-purple {
  background: rgba(124,58,237,0.2);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.3);
}

.badge-pink {
  background: rgba(236,72,153,0.15);
  color: var(--pink-accent);
  border: 1px solid rgba(236,72,153,0.25);
}

.badge-green {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}

.tag {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: var(--text-soft);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Dividers ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0;
}

/* ── Grid Utilities ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.col-reverse { direction: rtl; }
.col-reverse > * { direction: ltr; }

/* ── Two-Col Section ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Background Accents ─────────────────────────────────────── */
.bg-glow-purple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.bg-glow-pink {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.section-gradient-top {
  background: linear-gradient(180deg, transparent 0%, var(--bg-deep) 40%, var(--bg-deep) 60%, transparent 100%);
}

/* ── Floating Elements ──────────────────────────────────────── */
.floating-card {
  position: absolute;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: var(--shadow-card);
  z-index: 10;
  animation: floatUpDown 4s ease-in-out infinite;
}

.floating-card-icon { font-size: 20px; margin-bottom: 4px; }
.floating-card-label { font-size: 11px; color: var(--text-muted); }
.floating-card-value { font-size: 15px; font-weight: 700; color: var(--white); }

/* ── Stats Grid ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.1) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open { border-color: var(--border-glow); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s ease;
}

.faq-question:hover { background: rgba(124,58,237,0.08); }

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 12px;
  color: var(--purple-light);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(124,58,237,0.03);
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  padding-top: 16px;
}

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e0b3a, #0f0520);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--white);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title { color: var(--purple-light); }

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Character Card ─────────────────────────────────────────── */
.character-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

.character-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 20px 60px rgba(124,58,237,0.25), 0 0 0 1px rgba(192,132,252,0.2);
}

.character-card-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1e0b3a 0%, #0f0520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.character-placeholder-art {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 64px;
  position: relative;
}

.character-placeholder-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.character-placeholder-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(124,58,237,0.3) 0%, transparent 70%);
}

.character-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,3,17,0.95) 0%, rgba(7,3,17,0.4) 50%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.character-card:hover .character-card-overlay { opacity: 1; }

.character-card-body { padding: 18px 18px 20px; }

.character-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.character-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.character-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

/* ── Waveform ───────────────────────────────────────────────── */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}

.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--purple-primary), var(--pink-accent));
  animation: waveAnimation 1.2s ease-in-out infinite;
}

/* ── Filters / Tabs ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: var(--white);
}

/* ── Steps ──────────────────────────────────────────────────── */
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--purple-glow);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-handle { font-size: 12px; color: var(--text-muted); }

/* ── SEO Content Blocks ─────────────────────────────────────── */
.content-section { padding: var(--section-gap) 0; }

.content-section h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-section h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 40px;
  color: var(--purple-light);
}

.content-section p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
}

.content-section ul {
  list-style: none;
  margin: 20px 0;
}

.content-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

.content-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-light);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(7,3,17,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--purple-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  font-size: 22px;
}

/* ── Utility ────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-purple { color: var(--purple-light); }
.text-pink   { color: var(--pink-accent); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.w-full { width: 100%; }
.relative { position: relative; }

.inline-link {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.inline-link:hover { color: var(--white); }

/* ── Age Gate ───────────────────────────────────────────────── */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,3,17,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(16px);
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.age-gate-icon { font-size: 52px; margin-bottom: 20px; }

.age-gate-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.age-gate-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.age-gate-buttons {
  display: flex;
  gap: 14px;
}

.age-gate-buttons .btn { flex: 1; justify-content: center; }
