/* =========================================================
   STARLET COUTURE AI — MARKETING FUNNEL DESIGN SYSTEM
   ========================================================= */

:root {
  /* Default Luxury Palette */
  --starlet-bg: #f7f5f1;
  --starlet-bg-page: #f0ece7;
  --starlet-card: #ffffff;
  --starlet-card-subtle: #faf8f5;
  --starlet-text: #171717;
  --starlet-text-inverse: #ffffff;
  --starlet-muted: #77716d;
  --starlet-line: #e8e3dd;
  --starlet-line-strong: #d5cec6;
  
  --starlet-accent: #8c4b63;
  --starlet-accent-hover: #733c50;
  --starlet-accent-light: #f1e5ea;
  --starlet-accent-border: #e3cfd8;
  
  --starlet-dark: #191719;
  --starlet-green: #5f8068;
  --starlet-green-light: #e8f0ea;
  --starlet-gold: #c59b58;
  --starlet-gold-light: #fbf5eb;
  
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --starlet-radius: 20px;
  --starlet-radius-sm: 12px;
  --starlet-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --starlet-shadow-lg: 0 20px 60px rgba(140, 75, 99, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-bs-theme="dark"],
[data-theme="dark"] {
  --starlet-bg: #121113;
  --starlet-bg-page: #0a090b;
  --starlet-card: #1c1a1d;
  --starlet-card-subtle: #242126;
  --starlet-text: #f5f2ed;
  --starlet-text-inverse: #121113;
  --starlet-muted: #9e958f;
  --starlet-line: #2d292f;
  --starlet-line-strong: #403b44;
  
  --starlet-accent: #c47690;
  --starlet-accent-hover: #d68ea6;
  --starlet-accent-light: #2c1c23;
  --starlet-accent-border: #4a2d39;
  
  --starlet-dark: #f5f2ed;
  --starlet-green: #719d7d;
  --starlet-green-light: #1c2b20;
  --starlet-gold: #d4a96a;
  --starlet-gold-light: #2d2417;
  
  --starlet-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --starlet-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body {
  background-color: var(--starlet-bg);
  color: var(--starlet-text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Editorial Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.eyebrow {
  color: var(--starlet-accent);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

/* Luxury Header & Navbar */
.starlet-navbar {
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--starlet-line);
  padding: 16px 0;
  transition: var(--transition);
}

[data-bs-theme="dark"] .starlet-navbar {
  background: rgba(18, 17, 19, 0.92);
}

.starlet-brand-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--starlet-text);
}

.starlet-brand-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.starlet-brand-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--starlet-text);
}

.starlet-brand-tag {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--starlet-accent);
  font-weight: 800;
  display: block;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--starlet-muted) !important;
  transition: var(--transition);
  padding: 8px 14px !important;
}

.nav-link:hover, .nav-link.active {
  color: var(--starlet-accent) !important;
}

/* Starlet Buttons */
.btn-starlet-primary {
  background: var(--starlet-dark);
  color: var(--starlet-text-inverse);
  border: none;
  padding: 12px 24px;
  border-radius: var(--starlet-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-starlet-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: var(--starlet-text-inverse);
}

.btn-starlet-accent {
  background: var(--starlet-accent);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--starlet-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(140, 75, 99, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-starlet-accent:hover {
  background: var(--starlet-accent-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-starlet-outline {
  background: var(--starlet-card);
  color: var(--starlet-text);
  border: 1px solid var(--starlet-line);
  padding: 12px 24px;
  border-radius: var(--starlet-radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-starlet-outline:hover {
  border-color: var(--starlet-accent);
  color: var(--starlet-accent);
  background: var(--starlet-accent-light);
  transform: translateY(-2px);
}

/* Badges */
.badge-ai {
  background: var(--starlet-accent-light);
  color: var(--starlet-accent);
  border: 1px solid var(--starlet-accent-border);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.badge-gold {
  background: var(--starlet-gold-light);
  color: var(--starlet-gold);
  border: 1px solid #e0c598;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
}

/* Hero Section */
.hero-funnel {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--starlet-card);
  border: 1px solid var(--starlet-line);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--starlet-text);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-headline {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--starlet-text);
}

.hero-subhead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--starlet-muted);
  max-width: 580px;
  margin-bottom: 32px;
}

/* Hero Interactive Mockup Frame */
.mockup-phone-frame {
  background: var(--starlet-card);
  border: 1px solid var(--starlet-line);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--starlet-shadow-lg);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition);
}

.mockup-phone-frame:hover {
  transform: translateY(-4px);
}

/* Interactive Mini-Stylist Demo Widget */
.stylist-demo-card {
  background: var(--starlet-card);
  border: 1px solid var(--starlet-line);
  border-radius: var(--starlet-radius);
  padding: 24px;
  box-shadow: var(--starlet-shadow);
}

.prompt-pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.prompt-pills-row::-webkit-scrollbar {
  display: none;
}

.demo-pill {
  border: 1px solid var(--starlet-line);
  background: var(--starlet-card-subtle);
  color: var(--starlet-text);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.demo-pill.active, .demo-pill:hover {
  background: var(--starlet-accent);
  color: #ffffff;
  border-color: var(--starlet-accent);
}

.demo-outfit-result {
  background: var(--starlet-card-subtle);
  border: 1px solid var(--starlet-line);
  border-radius: var(--starlet-radius-sm);
  padding: 16px;
  animation: fadeIn 0.4s ease;
}

.demo-outfit-images {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
}

.demo-outfit-images img {
  width: 70px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--starlet-line);
}

/* Feature Cards & 3-Step Transformation */
.step-card {
  background: var(--starlet-card);
  border: 1px solid var(--starlet-line);
  border-radius: var(--starlet-radius);
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--starlet-shadow);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--starlet-accent);
}

.step-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--starlet-accent);
  margin-bottom: 12px;
  display: block;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--starlet-muted);
  line-height: 1.55;
}

/* ROI / Versatility Calculator Card */
.roi-card {
  background: var(--starlet-card);
  border: 1px solid var(--starlet-line);
  border-radius: var(--starlet-radius);
  padding: 36px;
  box-shadow: var(--starlet-shadow);
}

.custom-slider {
  accent-color: var(--starlet-accent);
  height: 8px;
}

.roi-stat-highlight {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--starlet-accent);
  line-height: 1;
}

/* Lead Capture CTA Banner */
.cta-banner {
  background: var(--starlet-dark);
  color: var(--starlet-text-inverse);
  border-radius: 28px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #ffffff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Footer */
.starlet-footer {
  background: var(--starlet-card);
  border-top: 1px solid var(--starlet-line);
  padding: 60px 0 30px;
}

.footer-link {
  color: var(--starlet-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition);
  display: block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: var(--starlet-accent);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
