/* ============================================
   OhChat AI Review - Main Stylesheet
   ============================================ */

:root {
  --brand-pink: #e8497a;
  --brand-pink-light: #f472a0;
  --brand-pink-dark: #c4305e;
  --brand-plum: #2d1b35;
  --brand-plum-mid: #4a2d5a;
  --brand-rose-bg: #fdf2f6;
  --brand-blush: #fce4ec;
  --brand-gold: #f5a623;
  --text-dark: #1a1020;
  --text-mid: #4a3858;
  --text-light: #7a6888;
  --white: #ffffff;
  --border: #e8d5ec;
  --shadow-soft: 0 4px 24px rgba(45, 27, 53, 0.10);
  --shadow-card: 0 2px 16px rgba(45, 27, 53, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1100px;
  --font-main: 'Inter', 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--brand-rose-bg);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-plum);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
a  { color: var(--brand-pink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-pink-dark); text-decoration: underline; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 3.5rem 0; }
.section-alt { background: #fff; }

/* ---- 18+ STRIP ---- */
.age-strip {
  background: var(--brand-plum);
  color: #cbb6d8;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.03em;
}
.age-strip a { color: #e0c8f0; }

/* ---- TOP NAV ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(45,27,53,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-plum);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}
.site-logo span { color: var(--brand-pink); }
.site-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-plum-mid));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff; font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.nav-links a:hover { color: var(--brand-pink); text-decoration: none; }
.nav-cta {
  background: var(--brand-pink);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--brand-pink-dark) !important; transform: translateY(-1px); text-decoration: none !important; }
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--brand-plum);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--brand-plum) 0%, var(--brand-plum-mid) 60%, #6b3d7a 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0d0f8;
  margin-bottom: 1.1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-lead { font-size: 1.05rem; color: #d4bde0; line-height: 1.7; margin-bottom: 1.5rem; }
.hero-verdict {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--brand-pink-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: #e8d0f0;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--brand-pink);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(232,73,122,0.35);
}
.btn-primary:hover { background: var(--brand-pink-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,73,122,0.45); text-decoration: none; color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background .2s, transform .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); text-decoration: none; color: #fff; }
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--brand-pink-light); }
.hero-stat .lbl { font-size: 0.78rem; color: #cbb6d8; margin: 0; }
.hero-disc {
  font-size: 0.75rem;
  color: #9a7aaa;
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* ---- EVIDENCE TABLE ---- */
.evidence-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}
.evidence-table th {
  background: var(--brand-plum);
  color: var(--white);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
}
.evidence-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.evidence-table tr:last-child td { border-bottom: none; }
.evidence-table tr:nth-child(even) td { background: var(--brand-rose-bg); }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--brand-blush);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.card p  { font-size: 0.88rem; margin: 0; }

/* ---- ARTICLE CARD ---- */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.article-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-pink);
  background: var(--brand-blush);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  width: fit-content;
}
.article-card h3 { font-size: 1rem; margin: 0; }
.article-card p  { font-size: 0.86rem; color: var(--text-light); margin: 0; }
.article-card .read-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-pink);
  display: flex; align-items: center; gap: 0.3rem;
  margin-top: auto;
}

/* ---- VERDICT BOX ---- */
.verdict-box {
  background: linear-gradient(135deg, var(--brand-plum), var(--brand-plum-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}
.verdict-box h3 { color: var(--brand-pink-light); margin-bottom: 1rem; font-size: 1.3rem; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.verdict-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.verdict-col.pro h4 { color: #7de8a0; }
.verdict-col.con h4 { color: #f0a0a0; }
.verdict-col ul { list-style: none; }
.verdict-col ul li { font-size: 0.9rem; color: #d4bde0; padding: 0.25rem 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.verdict-col.pro ul li::before { content: '✓'; color: #7de8a0; font-weight: 700; flex-shrink: 0; }
.verdict-col.con ul li::before { content: '✗'; color: #f0a0a0; font-weight: 700; flex-shrink: 0; }

/* ---- PRICING CARDS ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-card.featured {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 4px rgba(232,73,122,0.1);
}
.pricing-card .plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 0.5rem; }
.pricing-card .promo-price { font-size: 2rem; font-weight: 800; color: var(--brand-pink); }
.pricing-card .list-price { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; margin-bottom: 0.3rem; }
.pricing-card .renewal { font-size: 0.78rem; color: var(--brand-gold); font-weight: 600; background: #fff8ec; padding: 0.2rem 0.5rem; border-radius: 4px; }
.pricing-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 1rem; font-style: italic; }

/* ---- FAQ (redesigned: Q/A markers, smooth open, accent rail) ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-pink), var(--brand-plum-mid));
  opacity: 0;
  transition: opacity .25s;
}
.faq-item:hover { border-color: rgba(232, 73, 122, 0.45); transform: translateX(2px); }
.faq-item:hover::before, .faq-item.faq-open::before { opacity: 1; }
.faq-item.faq-open {
  border-color: rgba(232, 73, 122, 0.55);
  box-shadow: 0 6px 24px rgba(232, 73, 122, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.05rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.96rem;
  font-family: var(--font-main);
  color: var(--brand-plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background .15s;
}
.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--brand-blush);
  color: var(--brand-pink);
  font-weight: 800;
  font-size: 0.82rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.faq-q:hover { background: var(--brand-rose-bg); }
.faq-q .faq-arrow {
  font-size: 0.75rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  color: var(--brand-pink);
  flex-shrink: 0;
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-blush);
  display: inline-flex; align-items: center; justify-content: center;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.faq-a > .faq-a-inner,
.faq-a::before { min-height: 0; }
.faq-a-inner {
  overflow: hidden;
  padding: 0 1.25rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.faq-a-inner::before {
  content: 'A';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(45, 27, 53, 0.08);
  color: var(--brand-plum);
  font-weight: 800;
  font-size: 0.82rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a.open .faq-a-inner { padding-bottom: 1.1rem; }
/* fallback for older markup without inner wrapper */
.faq-a:not(:has(.faq-a-inner)) { display: none; padding: 0 1.25rem 1rem; }
.faq-a:not(:has(.faq-a-inner)).open { display: block; }

/* ---- WARNING BOX ---- */
.warning-box {
  background: #fff8ec;
  border: 1px solid #f5c96e;
  border-left: 4px solid var(--brand-gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #7a5a00;
}
.warning-box strong { color: #5a3e00; }

/* ---- DISCLOSURE BOX ---- */
.disclosure-box {
  background: var(--brand-blush);
  border: 1px solid #f0c0d0;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: #7a2040;
  margin: 1.25rem 0;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--brand-pink); }
.breadcrumb .sep { color: var(--border); }

/* ---- ARTICLE LAYOUT ---- */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.article-meta .tag { background: var(--brand-blush); color: var(--brand-pink); padding: 0.25rem 0.65rem; border-radius: 50px; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.article-body h2 { margin: 2rem 0 0.75rem; padding-top: 0.5rem; border-top: 2px solid var(--brand-blush); }
.article-body h3 { margin: 1.5rem 0 0.5rem; color: var(--brand-plum-mid); }
.article-body ul, .article-body ol { margin: 0.75rem 0 1rem 1.5rem; }
.article-body li { margin-bottom: 0.35rem; color: var(--text-mid); font-size: 0.95rem; }
.article-body blockquote {
  border-left: 3px solid var(--brand-pink);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--brand-rose-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.article-sidebar h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 1rem; }
.article-sidebar ul { list-style: none; }
.article-sidebar ul li { padding: 0.35rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.article-sidebar ul li:last-child { border-bottom: none; }
.article-two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
  padding: 3.5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0.5rem auto 1.8rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  color: var(--brand-pink);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); text-decoration: none; color: var(--brand-pink-dark); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--brand-plum);
  color: #cbb6d8;
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.85rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 0.25rem 0; }
.footer-col ul a { color: #cbb6d8; font-size: 0.86rem; }
.footer-col ul a:hover { color: var(--brand-pink-light); text-decoration: none; }
.footer-col p { color: #9a7aaa; font-size: 0.83rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #7a5a88;
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.badge-pink  { background: var(--brand-blush); color: var(--brand-pink); padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; display: inline-block; margin-bottom: 0.6rem; }
.badge-plum  { background: rgba(45,27,53,0.08); color: var(--brand-plum); padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; display: inline-block; margin-bottom: 0.6rem; }

/* ---- SCORECARD ---- */
.scorecard { display: flex; flex-direction: column; gap: 0.6rem; }
.score-row { display: flex; align-items: center; gap: 0.75rem; }
.score-label { font-size: 0.88rem; color: var(--text-mid); width: 140px; flex-shrink: 0; }
.score-bar-wrap { flex: 1; background: var(--brand-blush); border-radius: 50px; height: 10px; overflow: hidden; }
.score-bar { height: 100%; background: linear-gradient(to right, var(--brand-pink), var(--brand-plum-mid)); border-radius: 50px; transition: width 1s ease; }
.score-num { font-size: 0.82rem; font-weight: 700; color: var(--brand-pink); width: 32px; text-align: right; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-two-col { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .verdict-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 99; gap: 0.75rem; }
  .nav-hamburger { display: block; }
  .site-header { position: relative; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   MEDIA COMPONENTS (images & video)
   ============================================ */

/* Hero cover video card (homepage) */
.hero-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  background: #000;
}
.hero-video-card video { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-video-card .video-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,8,25,0.92), transparent);
  color: #fff; padding: 1.4rem 1rem 0.8rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.hero-video-card .video-tag i { color: var(--brand-pink-light); margin-right: 0.35rem; }

/* Article hero figure */
.article-hero-media {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--brand-plum);
  text-align: center;
}
.article-hero-media img,
.article-hero-media video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;         /* cap tall mobile-format banners */
  margin: 0 auto;
}
.article-hero-media figcaption {
  background: var(--brand-plum);
  color: #cbb6d8;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  text-align: center;
}

/* Inline article figure */
.media-figure {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: #fff;
}
.media-figure img, .media-figure video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 440px;         /* keep inline figures a sensible size */
  margin: 0 auto;
}
.media-figure figcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.6rem 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* Image gallery grid */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin: 1.5rem 0;
}
.media-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.media-gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--brand-blush);
  position: relative;
}
.media-gallery img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 3/4;
  transition: transform .35s ease;
}
.media-gallery figure:hover img { transform: scale(1.05); }
.media-gallery figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,8,25,0.85), transparent);
  color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 1.1rem 0.55rem 0.45rem; text-align: left;
  pointer-events: none;
}

/* Character video showcase cards */
.char-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.char-video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--brand-plum);
  position: relative;
}
.char-video-card video {
  display: block; width: 100%;
  aspect-ratio: 3/4; object-fit: cover;
}
.char-video-card .char-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,8,25,0.92), transparent);
  color: #fff; padding: 1.5rem 0.9rem 0.7rem;
}
.char-video-card .char-label strong { display: block; font-size: 0.95rem; }
.char-video-card .char-label span { font-size: 0.74rem; color: #e0b8cc; }
.char-video-card .live-dot {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: rgba(20,8,25,0.6); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 0.22rem 0.6rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.32rem;
}
.char-video-card .live-dot::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #ff4d7d; animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Side-by-side media split */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.media-split .media-figure { margin: 0; }

/* Sidebar media */
.sidebar-media {
  margin: 0 0 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.sidebar-media img, .sidebar-media video { display: block; width: 100%; height: auto; }

/* SFW media note */
.media-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin: -0.75rem 0 1.5rem;
}

@media (max-width: 900px) {
  .media-gallery { grid-template-columns: repeat(3, 1fr); }
  .char-video-grid { grid-template-columns: repeat(2, 1fr) ; }
}
@media (max-width: 640px) {
  .media-gallery, .media-gallery.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .char-video-grid { grid-template-columns: 1fr; }
  .media-split { grid-template-columns: 1fr; }
}

/* ============================================
   AUTHOR BOX (injected by JS after page content)
   ============================================ */
.author-box {
  max-width: 760px;
  margin: 2.5rem auto;
  padding: 1.6rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.author-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-plum-mid), var(--brand-pink));
  background-size: 200% 100%;
  animation: author-rail 4s linear infinite;
}
@keyframes author-rail { to { background-position: -200% 0; } }
.author-avatar {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-blush);
  box-shadow: 0 4px 16px rgba(232, 73, 122, 0.25);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-info { flex: 1; min-width: 0; }
.author-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-pink);
  margin: 0 0 0.25rem;
}
.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-plum);
  margin: 0 0 0.2rem;
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
}
.author-name .author-verified {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1e9e5a;
  background: rgba(30, 158, 90, 0.10);
  border: 1px solid rgba(30, 158, 90, 0.25);
  padding: 0.12rem 0.5rem;
  border-radius: 50px;
}
.author-role { font-size: 0.8rem; color: var(--text-light); margin: 0 0 0.55rem; }
.author-bio { font-size: 0.87rem; color: var(--text-mid); margin: 0 0 0.6rem; line-height: 1.6; }
.author-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.76rem; color: var(--text-light);
  margin: 0;
}
.author-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.author-meta i { color: var(--brand-pink); }
@media (max-width: 560px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-name, .author-meta { justify-content: center; }
}

/* ============================================
   PREMIUM ANIMATIONS (reactbits-inspired)
   ============================================ */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* Gradient shimmer for accent words */
.accent {
  background: linear-gradient(90deg, #ff4081, #ff6b9d, #c86bff, #ff4081);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accent-shimmer 6s linear infinite;
}
@keyframes accent-shimmer { to { background-position: -300% 0; } }

/* Button shine sweep — BUTTONS ONLY (never nav/text links) */
.btn-primary, .btn-white {
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
}
.btn-primary::after, .btn-white::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-white:hover::after { left: 130%; }
/* nav CTA: no sweep pseudo-element at all */
.nav-cta::after, .nav-cta::before { content: none !important; }

/* Card lift + glow on hover (upgrades existing cards) */
.card:hover, .article-card:hover, .pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card { transition: border-color .25s, box-shadow .25s, transform .25s; }
.media-gallery figure { transition: transform .3s, box-shadow .3s; }
.media-gallery figure:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(232, 73, 122, 0.22); }
.char-video-card { transition: transform .3s, box-shadow .3s; }
.char-video-card:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 16px 44px rgba(232, 73, 122, 0.28); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .accent { animation: none; }
  .author-box::before { animation: none; }
  .btn-primary::after, .btn-white::after { display: none; }
}

/* ============================================
   INTEREST POPUP (injected by JS on all pages)
   Dark card + pink border, per reference design
   ============================================ */
.interest-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 5, 12, 0.78);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.interest-overlay.visible { opacity: 1; }
.interest-modal {
  background: #15111e;
  border: 2px solid #ff4081;
  border-radius: 14px;
  box-shadow: 0 0 0 4px rgba(255, 64, 129, 0.15), 0 24px 80px rgba(0, 0, 0, 0.7);
  max-width: 560px; width: 100%;
  padding: 2rem 2rem 1.6rem;
  text-align: center;
  position: relative;
  transform: translateY(14px) scale(0.97);
  transition: transform .3s ease;
}
.interest-overlay.visible .interest-modal { transform: translateY(0) scale(1); }
.interest-close {
  position: absolute; top: 0.6rem; right: 0.75rem;
  background: none; border: none; cursor: pointer;
  color: #8d7fa8; font-size: 1.25rem; line-height: 1;
  padding: 0.35rem;
  transition: color .2s;
}
.interest-close:hover { color: #fff; }
.interest-title {
  color: #fff; font-size: 1.45rem; font-weight: 800;
  margin: 0 0 0.35rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.interest-title .heart { color: #ff4081; }
.interest-title .accent { color: #ff4081; }
.interest-sub { color: #b3a5c9; font-size: 0.95rem; margin: 0 0 1.4rem; }
.interest-options {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.interest-option {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  background: #1c1626;
}
.interest-option img {
  display: block; width: 100%;
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.interest-option .opt-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10, 6, 14, 0.95), transparent);
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 1.4rem 0.5rem 0.55rem;
  pointer-events: none;
}
.interest-option:hover {
  transform: translateY(-3px);
  border-color: #ff4081;
  box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
  text-decoration: none;
}
.interest-note {
  color: #6e6284; font-size: 0.72rem;
  margin: 1.2rem 0 0;
}
.interest-note a { color: #ff6b9d; }
@media (max-width: 480px) {
  .interest-modal { padding: 1.5rem 1.1rem 1.2rem; }
  .interest-options { gap: 0.6rem; }
  .interest-title { font-size: 1.2rem; }
}
