/*
Theme Name: OurDream AI
Theme URI: https://ourdream-ai.us
Author: OurDream AI
Author URI: https://ourdream-ai.us
Description: A modern, SEO-friendly review and guide theme for OurDream AI — the 18+ AI companion platform. Optimized for conversions, speed, and on-page SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ourdream-ai
Tags: one-column, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  /* Palette — deep violet-night with hot-pink signature */
  --color-bg:        #0d0b1a;
  --color-surface:   #16132b;
  --color-surface-2: #1e1a36;
  --color-border:    #2e2852;
  --color-accent:    #d963a4;   /* signature hot-pink */
  --color-accent-2:  #a855f7;   /* violet complement */
  --color-gold:      #f0b429;   /* CTA gold */
  --color-text:      #e8e4f0;
  --color-muted:     #9e98b8;
  --color-white:     #ffffff;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #1e0a3c 0%, #0d0b1a 60%, #1a0a28 100%);
  --grad-accent:  linear-gradient(135deg, #d963a4 0%, #a855f7 100%);
  --grad-cta:     linear-gradient(135deg, #f0b429 0%, #f97316 100%);
  --grad-card:    linear-gradient(160deg, #1e1a36 0%, #16132b 100%);

  /* Typography */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(217,99,164,0.08), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(217,99,164,0.25);
  --shadow-btn:  0 4px 20px rgba(240,180,41,0.35);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

h1 { font-size: clamp(2rem, 5vw, var(--text-5xl)); }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(1.2rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }

p { margin-bottom: var(--space-sm); color: var(--color-muted); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; color: var(--color-muted); }

/* =============================================
   UTILITY CLASSES
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section {
  padding: var(--space-3xl) 0;
}
.section--sm { padding: var(--space-2xl) 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(217,99,164,0.12);
  border: 1px solid rgba(217,99,164,0.25);
  padding: 0.35em 1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2em;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-cta);
  color: #1a0f00;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(240,180,41,0.5);
  color: #1a0f00;
}

.btn--secondary {
  background: var(--grad-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}
.btn--secondary:hover {
  box-shadow: 0 8px 36px rgba(217,99,164,0.45);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn--outline:hover {
  background: rgba(217,99,164,0.1);
  color: var(--color-accent);
}

.btn--lg {
  font-size: var(--text-lg);
  padding: 1em 2.5em;
}

/* Pulse animation for primary CTAs */
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-btn); }
  50%       { box-shadow: 0 0 0 8px rgba(240,180,41,0.15), var(--shadow-btn); }
}
.btn--pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(217,99,164,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(217,99,164,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(217,99,164,0.2);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}
.card__text { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: 0; }

/* =============================================
   GRID LAYOUTS
============================================= */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* =============================================
   18+ NOTICE BAR
============================================= */
.age-notice-bar {
  background: rgba(217,99,164,0.1);
  border-bottom: 1px solid rgba(217,99,164,0.2);
  text-align: center;
  padding: 0.5rem var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
}
.age-notice-bar strong { color: var(--color-accent); }

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
}
.site-logo:hover { color: var(--color-white); }
.logo-dot { color: var(--color-accent); }
.logo-custom-img { height: 36px; width: auto; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: var(--space-xs); }

.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.5em 0.9em;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 0.45em 0.7em;
  cursor: pointer;
  font-size: var(--text-lg);
  line-height: 1;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: var(--space-sm) var(--space-md); margin: 0; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: block;
  padding: 0.75em 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--color-accent); }

/* =============================================
   HERO SECTION
============================================= */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
}

/* Decorative radial blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(217,99,164,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(217,99,164,0.12);
  border: 1px solid rgba(217,99,164,0.3);
  border-radius: var(--radius-full);
  padding: 0.4em 1.2em;
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.hero-badge span { font-size: 1.1em; }

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  color: var(--color-white);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

/* =============================================
   OVERVIEW TABLE SECTION
============================================= */
.overview-section { background: var(--color-surface); }

.overview-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.overview-table th {
  background: rgba(217,99,164,0.15);
  color: var(--color-accent);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  text-align: left;
}
.overview-table td {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.overview-table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.overview-table tr:hover td { background: rgba(217,99,164,0.05); }
.badge-free {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
  padding: 0.2em 0.8em;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}
.badge-premium {
  background: rgba(217,99,164,0.15);
  color: var(--color-accent);
  border: 1px solid rgba(217,99,164,0.25);
  padding: 0.2em 0.8em;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}
.rating-stars { color: var(--color-gold); }

/* =============================================
   WHAT IS SECTION
============================================= */
.what-is { background: var(--color-bg); }

.what-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.what-is__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-surface-2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-is__image-placeholder {
  text-align: center;
  color: var(--color-muted);
}
.what-is__image-placeholder .icon { font-size: 4rem; margin-bottom: 1rem; }

.what-is__list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 var(--space-lg);
}
.what-is__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text);
  margin-bottom: 0;
}
.what-is__list li:last-child { border-bottom: none; }
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* =============================================
   START FREE / LOGIN SECTION
============================================= */
.start-free {
  background: var(--color-surface);
  text-align: center;
}

.signup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.signup-step {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
}
.signup-step::after {
  content: '→';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: var(--text-xl);
  font-weight: 700;
}
.signup-step:last-child::after { display: none; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}
.signup-step h3 { font-size: var(--text-lg); margin-bottom: 0.5em; }
.signup-step p  { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }

.login-box {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-sm) var(--space-lg);
  margin-top: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.login-box__text { color: var(--color-muted); font-size: var(--text-sm); }

/* =============================================
   FEATURES SECTION
============================================= */
.features { background: var(--color-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works { background: var(--color-surface); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-2));
  opacity: 0.3;
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 auto var(--space-sm);
  box-shadow: 0 0 20px rgba(217,99,164,0.2);
}
.how-step h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5em; }
.how-step p  { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }

/* =============================================
   PRICING SECTION
============================================= */
.pricing { background: var(--color-bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35em 1.2em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price__amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.price__currency { font-size: var(--text-2xl); vertical-align: top; padding-top: 0.4em; }
.price__per {
  font-size: var(--text-sm);
  color: var(--color-muted);
  display: block;
  margin-top: 0.3em;
  margin-bottom: var(--space-md);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: var(--text-sm);
  color: var(--color-text);
  margin: 0;
}
.pricing-features li:last-child { border-bottom: none; }
.feat-yes { color: #4ade80; }
.feat-no  { color: var(--color-muted); text-decoration: line-through; }

/* =============================================
   SAFETY SECTION
============================================= */
.safety { background: var(--color-surface); }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* =============================================
   PROS / CONS
============================================= */
.pros-cons { background: var(--color-bg); }

.pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 840px;
  margin: 0 auto;
}
.pros-box, .cons-box {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
.pros-box { border-top: 3px solid #4ade80; }
.cons-box { border-top: 3px solid #f87171; }
.pros-box h3 { color: #4ade80; font-size: var(--text-xl); margin-bottom: var(--space-md); }
.cons-box h3 { color: #f87171; font-size: var(--text-xl); margin-bottom: var(--space-md); }
.pros-list, .cons-list { list-style: none; padding: 0; margin: 0; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text);
  font-size: var(--text-sm);
  margin: 0;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pro-icon { color: #4ade80; flex-shrink: 0; }
.con-icon { color: #f87171; flex-shrink: 0; }

/* =============================================
   COMPARISON TABLE
============================================= */
.comparison { background: var(--color-surface); }

.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-width: 640px;
}
.comparison-table th {
  background: rgba(217,99,164,0.12);
  color: var(--color-accent);
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  text-align: center;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.comparison-table td:first-child { text-align: left; color: var(--color-text); font-weight: 600; }
.comparison-table tr.highlight-row td { background: rgba(217,99,164,0.07); }
.comparison-table .check  { color: #4ade80; font-size: 1.1em; }
.comparison-table .cross  { color: #f87171; }
.comparison-table .partial { color: var(--color-gold); }

/* =============================================
   ALTERNATIVES SECTION
============================================= */
.alternatives { background: var(--color-bg); }

.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.alt-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.alt-card:hover { border-color: rgba(217,99,164,0.35); transform: translateY(-3px); }
.alt-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: 0.5em;
}
.alt-card__desc { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: 0; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials { background: var(--color-surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-lg);
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-white);
  display: block;
}
.testimonial-card__role { font-size: var(--text-xs); color: var(--color-muted); }
.stars { color: var(--color-gold); font-size: var(--text-sm); margin-bottom: 0.5em; }

/* =============================================
   FAQ SECTION
============================================= */
.faq { background: var(--color-bg); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  background: var(--color-surface-2);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question.is-open { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s, border-color 0.2s;
  color: var(--color-muted);
}
.faq-question.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.8;
}
.faq-answer.is-open { display: block; }

/* =============================================
   FINAL CTA SECTION
============================================= */
.final-cta {
  background: linear-gradient(135deg, #1e0a3c 0%, #2a0d50 50%, #1a0a28 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(217,99,164,0.18) 0%, transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2rem, 4vw, var(--text-4xl)); margin-bottom: var(--space-sm); }
.final-cta p  { font-size: var(--text-lg); color: var(--color-muted); max-width: 600px; margin: 0 auto var(--space-xl); }
.final-cta-btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-note {
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #0a0816;
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}
.footer-brand__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.footer-brand__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-col h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5em; }
.footer-col a { font-size: var(--text-sm); color: var(--color-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: var(--color-muted); margin: 0; }
.footer-age-badge {
  background: rgba(217,99,164,0.12);
  border: 1px solid rgba(217,99,164,0.25);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.35em 1em;
  border-radius: var(--radius-full);
}

.footer-disclosure {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================
   POPUP OVERLAY
============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: var(--space-md);
}
.popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: linear-gradient(145deg, #1e1234, #2d1055);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.88);
  transition: transform 0.3s;
  box-shadow: 0 8px 60px rgba(217,99,164,0.3);
}
.popup-overlay.is-active .popup-box { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--color-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.popup-close:hover { color: var(--color-white); background: rgba(255,255,255,0.15); }

.popup-emoji { font-size: 3.5rem; margin-bottom: var(--space-sm); display: block; }
.popup-box h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}
.popup-box p { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--space-lg); }
.popup-box .btn { width: 100%; justify-content: center; }
.popup-skip {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-muted);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}
.popup-skip:hover { color: var(--color-text); }

/* =============================================
   STICKY BANNER
============================================= */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #1e0a3c, #2d1055);
  border-top: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: 0.75rem var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s;
}
.sticky-banner.is-visible { transform: translateY(0); }
.sticky-banner__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}
.sticky-banner__close {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25em;
  margin-left: auto;
}

/* =============================================
   STANDARD WP PAGE / BLOG TEMPLATES
============================================= */
.page-content-wrap {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}
.post-entry {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  transition: border-color 0.2s;
}
.post-entry:hover { border-color: rgba(217,99,164,0.35); }
.post-entry__body { padding: var(--space-lg); }
.post-entry__meta { font-size: var(--text-xs); color: var(--color-muted); margin-bottom: 0.5em; }
.post-entry__title a { color: var(--color-white); font-size: var(--text-xl); }
.post-entry__title a:hover { color: var(--color-accent); }
.post-entry__excerpt { font-size: var(--text-sm); color: var(--color-muted); margin: 0.75em 0; }

.entry-header { margin-bottom: var(--space-lg); }
.entry-header .entry-title { color: var(--color-white); }
.entry-content { color: var(--color-text); line-height: 1.8; }
.entry-content p  { margin-bottom: var(--space-sm); }
.entry-content h2, .entry-content h3 { margin-top: var(--space-lg); margin-bottom: var(--space-xs); }
.entry-content a  { color: var(--color-accent); }

/* 404 */
.not-found-wrap { text-align: center; padding: var(--space-3xl) 0; }
.not-found-wrap .code-404 {
  font-size: 8rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .how-step::after { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl:  2rem;
  }
  .main-nav  { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: var(--space-2xl) 0; }
  .hero-stats { gap: var(--space-lg); }
  .hero-stat__number { font-size: var(--text-2xl); }

  .what-is__grid { grid-template-columns: 1fr; }
  .what-is__image-wrap { order: -1; }

  .signup-steps { grid-template-columns: 1fr; }
  .signup-step::after { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }

  .pros-cons__grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-banner { flex-wrap: wrap; }
  .sticky-banner__text { text-align: center; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn--lg { font-size: var(--text-base); padding: 0.9em 1.8em; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .alt-grid { grid-template-columns: 1fr; }
}

/* =============================================
   REDUCED MOTION
============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   LOGO FAVICON
============================================= */
.logo-favicon {
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* =============================================
   POPUP WITH IMAGE
============================================= */
.popup-box--image { padding: 0; overflow: hidden; max-width: 500px; }
.popup-reward-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.popup-box--image h2,
.popup-box--image p,
.popup-box--image .btn,
.popup-box--image .popup-skip {
  margin-left: var(--space-xl);
  margin-right: var(--space-xl);
}
.popup-box--image h2  { margin-top: var(--space-md); font-size: var(--text-xl); }
.popup-box--image p   { margin-top: var(--space-xs); }
.popup-box--image .btn { display: block; width: calc(100% - var(--space-xl) * 2); margin-bottom: var(--space-xs); }
.popup-box--image .popup-skip { margin-bottom: var(--space-md); }
.popup-box--image .popup-close { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(0,0,0,0.5); }

/* =============================================
   HERO — two-column with video bg
============================================= */
.hero { padding: 0; min-height: 90vh; display: flex; align-items: center; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { text-align: left; }
.hero-ctas    { justify-content: flex-start; display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.hero-stats   { justify-content: flex-start; }

.hero-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(217,99,164,0.3), 0 2px 8px rgba(0,0,0,0.5);
  border: 1px solid rgba(217,99,164,0.25);
}
.hero-img { width: 100%; height: auto; display: block; }

/* =============================================
   COMPANIONS GRID
============================================= */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.companion-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.companion-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.companion-card__link { display: block; text-decoration: none; }
.companion-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.companion-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.companion-card:hover .companion-card__img-wrap img { transform: scale(1.06); }
.companion-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,26,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity 0.3s;
}
.companion-card:hover .companion-card__overlay { opacity: 1; }
.companion-card__cta {
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  background: var(--grad-accent);
  padding: 0.4em 1em;
  border-radius: var(--radius-full);
}
.companion-card__info {
  padding: var(--space-sm) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.companion-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-white);
}
.companion-card__type { font-size: var(--text-xs); color: var(--color-muted); }
.companion-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: 0.25em;
}
.companion-rating { color: var(--color-gold); font-weight: 600; }

/* =============================================
   MODELS GRID
============================================= */
.models-section { background: var(--color-surface); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.model-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s;
}
.model-card:hover { border-color: var(--color-accent); transform: translateY(-5px); }
.model-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s;
}
.model-card:hover img { transform: scale(1.04); }
.model-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,11,26,0.95) 0%, transparent 100%);
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.model-card__label strong { color: var(--color-white); font-family: var(--font-display); font-size: var(--text-base); }
.model-card__label span   { color: var(--color-muted); font-size: var(--text-xs); }

/* =============================================
   FEATURE ROWS (alternating image + text)
============================================= */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}
.feature-row:last-of-type { border-bottom: none; margin-bottom: 0; }
.feature-row--reverse .feature-row__img { order: 2; }
.feature-row--reverse .feature-row__content { order: 1; }
.feature-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.feature-row__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.feature-row__content h3 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin: var(--space-xs) 0 var(--space-sm);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 var(--space-lg);
}
.feature-list li {
  color: var(--color-text);
  font-size: var(--text-sm);
  padding: 0.4em 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: 0;
}
.feature-list li:last-child { border-bottom: none; }

/* =============================================
   COMPANIONS SECTION BG
============================================= */
.companions-section { background: var(--color-surface); }

/* =============================================
   RESPONSIVE — new sections
============================================= */
@media (max-width: 1024px) {
  .companions-grid { grid-template-columns: repeat(3, 1fr); }
  .models-grid     { grid-template-columns: repeat(2, 1fr); }
  .feature-row     { grid-template-columns: 1fr; gap: var(--space-lg); }
  .feature-row--reverse .feature-row__img     { order: 0; }
  .feature-row--reverse .feature-row__content { order: 0; }
  .feature-row__img img { height: 340px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: var(--space-2xl) var(--space-md); }
  .hero-content { text-align: center; }
  .hero-ctas    { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-image-wrap { display: none; }
  .companions-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .companions-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .models-grid     { grid-template-columns: 1fr 1fr; }
}
