/* ==============================================
   VTuber Streaming Digital Theme
   请成为最能干的VTuber吧
   Neon Pink + Stream-Chat Cyan on Light Tech BG
   ============================================== */

:root {
  /* Core palette */
  --bg: #f0f4f8;
  --bg-alt: #e8edf3;
  --bg-card: #ffffff;
  --text: #2c2c3a;
  --text-light: #5c5c6e;
  --text-muted: #8c8ca0;

  /* Neon pink - primary accent */
  --pink: #ff2d95;
  --pink-glow: rgba(255, 45, 149, 0.25);
  --pink-light: #ffe0f0;
  --pink-dark: #d41a78;

  /* Stream-chat cyan - secondary accent */
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.2);
  --cyan-light: #d4faff;
  --cyan-dark: #00a8bb;

  /* Digital UI colors */
  --header-bg: #1a1a2e;
  --header-text: #e8e8f0;
  --footer-bg: #1a1a2e;
  --footer-text: #8c8ca0;
  --border: #dcdce6;
  --border-light: #eeeef3;

  /* Typography */
  --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Light tech background pattern - subtle grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 45, 149, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 229, 255, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(255, 45, 149, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--pink-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--pink);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--header-text);
  white-space: nowrap;
}

/* Header nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--header-text);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 45, 149, 0.15);
  border-color: rgba(255, 45, 149, 0.3);
  color: var(--pink);
}

/* Header CTA button */
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 2px 12px var(--pink-glow);
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--pink-glow) !important;
  background: linear-gradient(135deg, var(--pink-dark), var(--pink)) !important;
  color: #fff !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--header-bg);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(255, 45, 149, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(0, 229, 255, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 80% 30% at 50% 50%, rgba(255, 45, 149, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(26,26,46,0.6) 0%, transparent 40%),
    linear-gradient(180deg, rgba(26,26,46,0.4) 0%, transparent 20%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Stream interface overlay on hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,229,255,0.04) 0px, rgba(0,229,255,0.04) 1px, transparent 1px, transparent 3px);
  mask-image: linear-gradient(0deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.hero-visual {
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow:
    0 0 60px var(--pink-glow),
    0 0 120px rgba(0, 229, 255, 0.15);
  position: relative;
  z-index: 2;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--pink), var(--cyan), var(--pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Chat-like tags in hero */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  backdrop-filter: blur(4px);
}

.hero-tags .tag-pink {
  background: rgba(255, 45, 149, 0.25);
  border-color: rgba(255, 45, 149, 0.4);
}

.hero-tags .tag-cyan {
  background: rgba(0, 229, 255, 0.2);
  border-color: rgba(0, 229, 255, 0.35);
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 40px;
  border-radius: 30px;
  box-shadow: 0 4px 24px var(--pink-glow);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px var(--pink-glow);
  color: #fff;
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
}

/* ============================================
   PAGE HERO (for sub-pages)
   ============================================ */

.page-hero {
  background: var(--header-bg);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 45, 149, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.section-alt {
  background: var(--bg-alt);
}

/* Stream-chat accent line divider */
.stream-divider {
  text-align: center;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
}

.stream-divider::before,
.stream-divider::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  vertical-align: middle;
  margin: 0 12px;
}

.accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* ============================================
   INTRO / INFO CARDS
   ============================================ */

.intro-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 45, 149, 0.2);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.feature-card:hover {
  border-left-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ============================================
   CHARACTER CARDS
   ============================================ */

.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.char-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.char-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.char-header {
  background: var(--header-bg);
  padding: 20px;
  text-align: center;
  position: relative;
}

.char-header::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--pink));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.char-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 3px solid rgba(255,255,255,0.2);
}

.char-avatar.pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

.char-avatar.cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
}

.char-avatar.gold {
  background: linear-gradient(135deg, #d4a843, #b8860b);
}

.char-header h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.char-header .char-role {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.char-body {
  padding: 20px;
}

.char-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.char-details {
  list-style: none;
  padding: 0;
}

.char-details li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
}

.char-details li:last-child {
  border-bottom: none;
}

.char-details .label {
  font-weight: 600;
  color: var(--pink);
  min-width: 70px;
  flex-shrink: 0;
}

/* ============================================
   STORY BLOCKS
   ============================================ */

.story-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow);
}

.story-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.story-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.story-chapter {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* ============================================
   GUIDE STEPS
   ============================================ */

.guide-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px var(--pink-glow);
}

.guide-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.guide-step-content p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

.guide-step-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.guide-step-content ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-light);
  transition: all 0.3s;
  background: var(--bg-alt);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(255, 45, 149, 0.15);
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--pink-light), var(--cyan-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pink);
}

.gallery-caption {
  padding: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(255, 45, 149, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--pink);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--header-bg), #2a2a4a);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255, 45, 149, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 16px var(--pink-glow);
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px var(--pink-glow);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--pink);
  color: #fff;
}

/* ============================================
   TAGS
   ============================================ */

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.tag-pink {
  background: var(--pink-light);
  color: var(--pink);
}

.tag-cyan {
  background: var(--cyan-light);
  color: var(--cyan-dark);
}

.tag-gold {
  background: #fff8e8;
  color: #b8860b;
}

/* ============================================
   STATS ROW
   ============================================ */

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
  margin: 30px 0;
}

.stat-item {
  min-width: 100px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   DOWNLOAD CARD
   ============================================ */

.download-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 24px rgba(255, 45, 149, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.download-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.req-table th,
.req-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.req-table th {
  color: var(--pink);
  font-weight: 700;
  width: 40%;
}

.req-table td {
  color: var(--text-light);
}

/* ============================================
   TIP BOXES
   ============================================ */

.tip-box {
  background: var(--cyan-light);
  border-left: 4px solid var(--cyan);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
  font-size: 0.93rem;
  color: var(--cyan-dark);
  line-height: 1.7;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--cyan));
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid #fff;
  box-shadow: 0 0 8px var(--pink-glow);
}

.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: var(--pink);
}

.breadcrumbs span {
  margin: 0 6px;
}

/* ============================================
   REVIEW / BLOCKQUOTE
   ============================================ */

.review-quote {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
}

.review-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--cyan);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 12px;
  font-style: normal;
  line-height: 1;
}

.review-quote p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  padding-left: 24px;
}

.review-author {
  font-style: normal;
  font-weight: 600;
  color: var(--cyan-dark);
  margin-top: 8px;
  padding-left: 24px;
  font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================================
   UTILITY
   ============================================ */

.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.pb-0 { padding-bottom: 0; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 12px 0;
    gap: 0;
    border-bottom: 2px solid var(--pink);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    border-radius: 0;
    padding: 12px 24px;
  }

  .nav-cta {
    margin: 8px 24px;
    text-align: center;
    border-radius: 20px !important;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-visual {
    width: 200px;
    height: 200px;
    font-size: 70px;
  }

  .section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .char-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-step {
    flex-direction: column;
    gap: 12px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-visual {
    width: 160px;
    height: 160px;
    font-size: 50px;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tags span {
    font-size: 0.78rem;
    padding: 4px 12px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 16px;
  }

  .breadcrumbs {
    font-size: 0.78rem;
  }
}
