/* ============================================
   LuvlyDoll AI Concierge — Luxury Dark Theme
   Generated from Ardot Design (File #697563251312875)
   Design: 1440px canvas, proportional scaling
   ============================================ */

/* === CSS Variables === */
:root {
  /* Background palette */
  --bg-page: #050010;
  --bg-section: #08081A;
  --bg-card: #0D0D24;
  --bg-card-alt: #09091E;
  --bg-card-dark: #070410;
  --bg-image-placeholder: #060618;
  --bg-input: #0A0A1E;
  --bg-bubble: #13133A;
  --bg-chip-purple: #1A0A2E;
  --bg-chip-cyan: #0A202A;
  --bg-chip-pink: #2E0A14;
  --bg-badge: rgba(146, 51, 234, 0.15);

  /* Text palette */
  --text-heading: #FFFFFF;
  --text-body: #A8A8C2;
  --text-muted: #6B6B8A;
  --text-faint: #4B4B6A;
  --text-bubble: #D0D0E8;
  --text-accent-purple: #C084FC;
  --text-accent-cyan: #67E8F9;
  --text-accent-pink: #FDA4AF;
  --text-online: #22C55E;

  /* Brand / Primary */
  --primary: #9333EA;
  --primary-glow: rgba(147, 51, 234, 0.2);
  --primary-soft: rgba(147, 51, 234, 0.15);
  --primary-hover: #A855F7;

  /* Borders */
  --border-subtle: #0F0F1E;
  --border-divider: #1A1A3E;

  /* Typography */
  --font-heading: 'Bodoni Moda', serif;
  --font-body: 'Inter Tight', sans-serif;
  --font-emoji: 'Sarasa Gothic SC', system-ui, sans-serif;

  /* Spacing & Layout */
  --max-width: 1440px;
  --content-gutter: 120px;
  --header-height: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-round: 9999px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.ai-concierge {
  background: var(--bg-page);
}

a { color: var(--text-accent-purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }

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

/* === Site Container === */
.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.ai-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 0, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.ai-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-header__logo-mark {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.ai-header__logo-emoji {
  font-size: 24px;
  font-family: var(--font-emoji);
  line-height: 1;
}

.ai-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.ai-header__tagline {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 400;
  margin-left: 12px;
}

.ai-header__back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(147, 51, 234, 0.12);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-accent-purple);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.ai-header__back:hover {
  background: rgba(147, 51, 234, 0.2);
}

.ai-header__back-arrow {
  font-size: 14px;
  font-family: var(--font-emoji);
}

.ai-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  padding: 80px var(--content-gutter);
  min-height: 671px;
  display: flex;
  flex-direction: column;
}

/* Top radial glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -252px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(146, 51, 234, 0.2) 0%, rgba(146, 51, 234, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--bg-chip-purple);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-accent-purple);
  width: fit-content;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 72px;
  line-height: 1.1;
  color: var(--text-heading);
  margin-top: 24px;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-body);
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.6;
}

/* ============================================
   AI CHAT WIDGET
   ============================================ */
.ai-chat-widget {
  margin-top: 40px;
  width: 640px;
  max-width: 100%;
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  height: 52px;
  background: var(--bg-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  gap: 10px;
}

.chat-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.chat-avatar__dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--text-online);
  border: 1.5px solid var(--bg-card);
}

.chat-header__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.chat-header__status {
  font-size: 11px;
  color: var(--text-online);
  margin-left: 6px;
}

.chat-messages {
  padding: 24px 20px;
  min-height: 74px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 600px;
}

.chat-bubble {
  background: var(--bg-bubble);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-bubble);
  line-height: 1.6;
  flex: 1;
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-top: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.chat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.chat-chip--purple {
  background: var(--bg-chip-purple);
  color: var(--text-accent-purple);
}
.chat-chip--purple:hover { background: rgba(26, 10, 46, 0.8); }

.chat-chip--cyan {
  background: var(--bg-chip-cyan);
  color: var(--text-accent-cyan);
}
.chat-chip--cyan:hover { background: rgba(10, 32, 42, 0.8); }

.chat-chip--pink {
  background: var(--bg-chip-pink);
  color: var(--text-accent-pink);
}
.chat-chip--pink:hover { background: rgba(46, 10, 20, 0.8); }

.chat-input {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  height: 56px;
  background: var(--bg-card);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  gap: 12px;
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-heading);
  font-size: 13px;
  font-family: var(--font-body);
}

.chat-input input::placeholder {
  color: var(--text-muted);
}

.chat-send {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  border: none;
  color: var(--text-heading);
  font-size: 16px;
  font-family: var(--font-emoji);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.chat-send:hover { background: var(--primary-hover); }

/* ============================================
   DAILY PICKS SECTION
   ============================================ */
.daily-picks {
  padding: 80px var(--content-gutter) 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 15px;
  color: var(--text-body);
  margin-top: 8px;
  max-width: 560px;
}

.section-header {
  margin-bottom: 36px;
}

/* Product Cards Grid */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(147, 51, 234, 0.15);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 320 / 360;
  background: var(--bg-image-placeholder);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image-placeholder {
  font-size: 14px;
  color: var(--text-faint);
}

.product-card__body {
  padding: 20px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-heading);
}

.product-card__specs {
  font-size: 13px;
  color: var(--text-body);
  margin-top: 4px;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  margin-top: 8px;
}

.badge-ai { background: var(--bg-chip-purple); color: var(--text-accent-purple); }
.badge-trending { background: var(--bg-chip-cyan); color: var(--text-accent-cyan); }
.badge-new { background: var(--bg-chip-pink); color: var(--text-accent-pink); }

.rotation-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.rotation-footer__icon {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-chip-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-accent-purple);
}

/* ============================================
   WHY LUVIYDOLL SECTION
   ============================================ */
.why-section {
  padding: 80px var(--content-gutter);
  background: var(--bg-section);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card__icon {
  font-size: 32px;
  font-family: var(--font-emoji);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.ai-footer {
  padding: 60px var(--content-gutter) 32px;
  border-top: 1px solid var(--border-divider);
}

.ai-footer__top {
  display: flex;
  gap: 80px;
  margin-bottom: 32px;
}

.ai-footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-heading);
}

.ai-footer__brand-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.ai-footer__links-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ai-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-footer__links a {
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.2s;
}

.ai-footer__links a:hover { color: var(--text-heading); }

.ai-footer__bottom {
  font-size: 11px;
  color: var(--text-faint);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-page {
  position: relative;
}

.product-page__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(146, 51, 234, 0.2) 0%, rgba(146, 51, 234, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

/* Product Hero */
.product-hero {
  display: flex;
  gap: 60px;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
}

.product-gallery {
  flex-shrink: 0;
  width: 560px;
}

.product-gallery__main {
  width: 560px;
  height: 420px;
  background: var(--bg-card-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main-placeholder {
  font-size: 16px;
  color: var(--text-faint);
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  background: var(--bg-card-alt);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  justify-content: center;
}

.product-gallery__thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-dark);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border-subtle);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumb--active {
  border-color: var(--primary);
  background: rgba(147, 51, 234, 0.2);
}

/* Product Info */
.product-info {
  flex: 1;
}

.product-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-soft);
  border-radius: var(--radius-round);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-accent-purple);
  margin-bottom: 20px;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.product-model {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

.product-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 20px 0;
  border: none;
}

/* Quick Stats */
.product-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-stat__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-heading);
}

.product-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Price */
.product-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--text-heading);
}

.product-price-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--primary-soft);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-accent-purple);
}

/* Description */
.product-description {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 20px;
}

/* CTA Buttons */
.product-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--text-heading);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-bubble);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-heading);
}

/* ============================================
   PRODUCT DETAILS ACCORDION
   ============================================ */
.product-details {
  padding: 0 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.detail-section {
  background: var(--bg-card-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.detail-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.detail-section__header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.detail-section__icon {
  font-size: 14px;
  font-family: var(--font-emoji);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.detail-section__icon--purple { color: var(--text-accent-purple); }
.detail-section__icon--cyan { color: var(--text-accent-cyan); }
.detail-section__icon--pink { color: var(--text-accent-pink); }

.detail-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-heading);
}

.detail-section__arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-faint);
  transition: transform 0.3s;
}

.detail-section--open .detail-section__arrow {
  transform: rotate(180deg);
}

.detail-section__body {
  padding: 0 32px 28px;
  display: none;
}

.detail-section--open .detail-section__body {
  display: block;
}

.detail-section__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Material cards within accordion */
.material-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.material-card {
  background: var(--bg-card-dark);
  border-radius: var(--radius-md);
  padding: 20px;
}

.material-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.material-card__desc {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Specs table */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.specs-column {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 40px;
}

.spec-row:nth-child(odd) {
  background: var(--bg-card-dark);
}

.spec-row__label {
  font-size: 13px;
  color: var(--text-body);
}

.spec-row__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

/* ============================================
   RETURN TO AI SECTION
   ============================================ */
.return-ai {
  padding: 80px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(146, 51, 234, 0.1) 0%, rgba(5, 0, 16, 0) 100%);
}

.return-ai__hint {
  font-size: 14px;
  color: var(--text-muted);
}

.return-ai__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--text-heading);
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.return-ai__desc {
  font-size: 15px;
  color: var(--text-body);
  margin-top: 12px;
  max-width: 720px;
  line-height: 1.6;
}

.return-ai__cta {
  margin-top: 32px;
}

.return-ai__cta .btn-primary {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============================================
   RESPONSIVE SCALING
   ============================================ */
@media (max-width: 1440px) {
  :root {
    --content-gutter: 80px;
  }
  .hero-title { font-size: 60px; }
  .section-title { font-size: 34px; }
  .product-name { font-size: 40px; }
}

@media (max-width: 1200px) {
  :root {
    --content-gutter: 40px;
  }
  .hero-title { font-size: 48px; }
  .section-title { font-size: 30px; }
  .product-name { font-size: 36px; }
  .product-hero { flex-direction: column; padding: 40px; }
  .product-gallery { width: 100%; }
  .product-gallery__main { width: 100%; height: 400px; }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .material-cards { grid-template-columns: 1fr; }
  .product-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --content-gutter: 20px;
    --header-height: 56px;
  }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 26px; }
  .product-name { font-size: 30px; }
  .ai-chat-widget { width: 100%; }
  .product-hero { gap: 30px; padding: 24px 16px; }
  .product-gallery__main { height: 280px; }
  .feature-cards { grid-template-columns: 1fr; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .product-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-details { padding: 0 16px 40px; }
  .return-ai { padding: 40px 16px; }
  .specs-grid { grid-template-columns: 1fr; }
  .ai-footer__top { flex-direction: column; gap: 32px; }
  .ai-header { padding: 0 16px; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 60px var(--content-gutter) 80px;
  min-height: 60vh;
}
.legal-page__container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page__content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-heading);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page__content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-accent-purple);
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-page__content p,
.legal-page__content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 12px;
}
.legal-page__content a {
  color: var(--text-accent-purple);
  text-decoration: underline;
}
.legal-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.legal-page__content th {
  background: var(--bg-chip-purple);
  color: var(--text-accent-purple);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
}
.legal-page__content td {
  padding: 10px 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page__content dl {
  margin: 16px 0;
}
.legal-page__content dt {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-heading);
  margin-top: 16px;
}
.legal-page__content dd {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-left: 0;
  margin-top: 6px;
  margin-bottom: 16px;
}
.legal-page__content ul,
.legal-page__content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .legal-page { padding: 40px 16px 60px; }
  .legal-page__title { font-size: 28px; margin-bottom: 24px; }
  .legal-page__content h2 { font-size: 20px; }
  .legal-page__content h3 { font-size: 16px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(147, 51, 234, 0); }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.chat-avatar__dot {
  animation: pulse-glow 2s infinite;
}

/* ============================================
   AGE GATE OVERLAY (commented out — DEV mode)
   ============================================ */
/*
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-page);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
*/

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-alt) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
