/* ─── Homepage Styles ─── */

/* Urgency bar */
.urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 10px 60px;
  background: linear-gradient(90deg, var(--rose-deep), var(--violet));
  font-size: 13px; font-weight: 500; color: white;
}
.urgency-bar strong { font-weight: 700; }
.urgency-cta {
  background: white; color: var(--rose-deep);
  border: none; border-radius: 100px;
  padding: 5px 18px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  font-family: 'Outfit', sans-serif;
}
.urgency-cta:hover { transform: scale(1.05); }
.urgency-close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 18px; cursor: pointer; padding: 4px 8px;
}
.urgency-close:hover { color: white; }

/* Nav — offset for urgency bar */
nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px;
  background: rgba(8,6,8,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--cream);
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex; gap: 40px; list-style: none;
  font-size: 13px; font-weight: 400; color: var(--muted);
}
.nav-links a { color: inherit; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--rose); }
.nav-btn {
  background: var(--rose);
  color: var(--black); border: none; border-radius: 100px;
  padding: 12px 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 24px rgba(232,160,176,0.3);
}
.nav-btn:hover { transform: translateY(-2px); background: var(--rose-bright); box-shadow: 0 8px 36px rgba(232,160,176,0.45); }

/* Crown dot (replaces emoji crowns) */
.crown-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* Hero */
.hero {
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center;
  text-align: center;
  padding: 130px 32px 80px;
  position: relative; overflow: hidden;
}
.hero > *:not(.orb) { position: relative; z-index: 1; }
.orb-1 { width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(155,77,202,0.14) 0%, transparent 70%); top: -200px; left: -200px; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(232,160,176,0.1) 0%, transparent 70%); bottom: -150px; right: -100px; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(155,77,202,0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,160,176,0.08);
  border: 1px solid rgba(232,160,176,0.25);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rose-bright);
  margin-bottom: 28px;
  animation: fadeDown .7s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  animation: blink 2s ease-in-out infinite;
}

h1.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9.5vw, 132px);
  font-weight: 900; line-height: 0.93;
  color: var(--cream);
  animation: fadeDown .7s .1s ease both;
  max-width: 1050px;
}
h1.hero-h1 em { font-style: italic; color: var(--rose); }
h1.hero-h1 .violet { color: var(--rose-bright); }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300; color: var(--muted);
  max-width: 580px; line-height: 1.8;
  margin: 36px auto 56px;
  animation: fadeDown .7s .2s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeDown .7s .3s ease both;
}

.hero-stats {
  display: flex; gap: 60px; flex-wrap: wrap; justify-content: center;
  margin-top: 56px;
  animation: fadeDown .7s .4s ease both;
}
.h-stat { text-align: center; }
.h-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 700; color: var(--cream); line-height: 1;
}
.h-stat-val span { color: var(--rose); }
.h-stat-label { font-size: 12px; color: var(--muted); margin-top: 7px; letter-spacing: 0.05em; }
.h-stat-div { width: 1px; background: var(--border); align-self: stretch; }

/* Trust strip */
.trust-strip {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 60px;
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.trust-item strong { color: var(--rose); font-weight: 600; }

/* Section common */
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

/* Problem */
.problem {
  padding: 130px 60px;
  max-width: 1300px; margin: 0 auto;
}
.problem-head { max-width: 680px; margin-bottom: 72px; }
.problem-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,62px); font-weight: 700;
  color: var(--cream); line-height: 1.1; margin-bottom: 18px;
}
.problem-head h2 em { font-style: italic; color: var(--rose); }
.problem-head p { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 500px; }

.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.prob-card {
  background: var(--deep);
  padding: 52px 48px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.prob-card:hover { background: var(--card); }
.prob-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.prob-card:hover::before { transform: scaleX(1); }
.prob-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,160,176,0.08);
  border: 1px solid rgba(232,160,176,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--rose);
}
.prob-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--cream); margin-bottom: 20px;
}
.prob-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prob-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--muted); line-height: 1.65;
}
.prob-bullets li::before {
  content: '\25B6';
  color: var(--rose); font-size: 9px; margin-top: 5px; flex-shrink: 0;
}

/* VS banner */
.vs-banner {
  background: linear-gradient(135deg, rgba(192,96,122,0.1) 0%, rgba(232,160,176,0.07) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.vs-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,160,176,0.1) 0%, transparent 60%);
}
.vs-banner > * { position: relative; z-index: 1; }
.vs-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,72px); font-weight: 900;
  color: var(--cream); line-height: 1; margin-bottom: 16px;
}
.vs-banner h2 span { color: var(--rose-bright); }
.vs-banner h2 em { font-style: italic; color: var(--rose); }
.vs-banner p {
  font-size: 18px; font-weight: 300;
  color: var(--muted); margin-bottom: 48px; letter-spacing: 0.05em;
}
.vs-compare {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto;
}
.vs-col {
  flex: 1; min-width: 280px;
  background: var(--card); border-radius: 16px;
  padding: 36px 32px; text-align: left;
}
.vs-col.bad { border: 1px solid rgba(255,80,80,0.2); }
.vs-col.good { border: 1px solid rgba(232,160,176,0.35); box-shadow: 0 0 40px rgba(232,160,176,0.08); }
.vs-col-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.vs-col.bad .vs-col-label { color: #e06060; }
.vs-col.good .vs-col-label { color: var(--rose-bright); }
.vs-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.6; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--muted);
}
.vs-item:last-child { border-bottom: none; }
.vs-item .ic { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.bad-ic { color: #e06060; }
.good-ic { color: var(--green); }
.vs-col.good .vs-item { color: var(--text); }

/* ─── Product Showcase ─── */
.showcase {
  padding: 130px 60px;
  max-width: 1400px; margin: 0 auto;
}
.showcase-head { max-width: 680px; margin-bottom: 72px; }
.showcase-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,62px); font-weight: 700;
  color: var(--cream); line-height: 1.1; margin-bottom: 18px;
}
.showcase-head h2 em { font-style: italic; color: var(--rose); }
.showcase-head p { font-size: 16px; color: var(--muted); line-height: 1.8; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.showcase-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  transition: all .3s;
}
.showcase-card:hover { border-color: var(--border-light); box-shadow: 0 24px 70px rgba(0,0,0,0.4); }
.showcase-card-wide {
  grid-column: 1 / -1;
}
.sc-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.sc-label::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
}

/* Chat demo */
.sc-chat-demo {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}
.sc-chat-window {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.sc-chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.sc-chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-deep), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: white;
}
.sc-chat-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.sc-chat-status { font-size: 11px; color: var(--green); }
.sc-chat-messages { padding: 20px; }
.sc-msg { margin-bottom: 16px; }
.sc-msg-fan { display: flex; flex-direction: column; align-items: flex-start; }
.sc-msg-ai { display: flex; flex-direction: column; align-items: flex-end; }
.sc-msg-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px; line-height: 1.6;
}
.sc-msg-fan .sc-msg-bubble {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.sc-msg-ai .sc-msg-bubble {
  background: rgba(232,160,176,0.1);
  border: 1px solid rgba(232,160,176,0.2);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.sc-ai-badge {
  display: inline-block;
  background: rgba(232,160,176,0.15);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 10px; font-weight: 700;
  color: var(--rose); letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sc-msg-time {
  font-size: 10px; color: var(--muted); margin-top: 4px;
}
.sc-msg-actions {
  display: flex; gap: 8px; margin-top: 8px;
}
.sc-action-btn {
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  cursor: default; border: none;
  font-family: 'Outfit', sans-serif;
}
.sc-accept {
  background: var(--rose); color: var(--black);
}
.sc-regen {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border) !important;
}

.sc-chat-sidebar {
  display: flex; flex-direction: column; gap: 14px;
  padding: 8px 0;
}
.sc-sidebar-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 4px;
}
.sc-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text); line-height: 1.4;
}
.sc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* Chart demo */
.sc-chart-demo {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.sc-chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.sc-chart-title { font-size: 13px; font-weight: 600; color: var(--cream); }
.sc-chart-trend {
  font-size: 11px; font-weight: 600; color: var(--green);
  display: flex; align-items: center; gap: 4px;
}
.sc-chart-trend::before {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid var(--green);
}
.sc-chart-bars {
  display: flex; align-items: flex-end; gap: 12px;
  height: 160px; padding-bottom: 8px;
}
.sc-bar-group {
  flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%;
  justify-content: flex-end;
}
.sc-bar {
  width: 100%; border-radius: 6px 6px 0 0;
  background: rgba(232,160,176,0.15);
  border: 1px solid rgba(232,160,176,0.2);
  border-bottom: none;
  position: relative;
  transition: all .3s;
  min-height: 20px;
}
.sc-bar span {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: var(--cream); white-space: nowrap;
}
.sc-bar-grow { background: rgba(232,160,176,0.2); }
.sc-bar-highlight {
  background: linear-gradient(180deg, rgba(232,160,176,0.35) 0%, rgba(232,160,176,0.15) 100%);
  border-color: rgba(232,160,176,0.4);
  box-shadow: 0 0 20px rgba(232,160,176,0.15);
}
.sc-bar-label {
  font-size: 10px; color: var(--muted); margin-top: 8px;
  letter-spacing: 0.05em;
}
.sc-chart-note {
  font-size: 11px; color: var(--muted); margin-top: 16px;
  text-align: center; font-style: italic;
}

/* Stats demo */
.sc-stats-demo {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.sc-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.sc-stat {
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
}
.sc-stat-full { grid-column: 1 / -1; }
.sc-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--cream);
  line-height: 1; margin-bottom: 4px;
}
.sc-stat-green { color: var(--green); }
.sc-stat-rose { color: var(--rose); }
.sc-stat-label {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.05em;
}
.sc-stat-divider {
  height: 1px; background: var(--border);
  margin: 4px 0;
}
.sc-progress-bar {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.06);
  margin-top: 10px; overflow: hidden;
}
.sc-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
}
.sc-stat-tiny {
  font-size: 11px; color: var(--muted); margin-top: 8px;
}

/* ─── Showcase Animations ─── */

/* Model tag in chat header */
.sc-chat-model-tag {
  margin-left: auto;
  background: rgba(232,160,176,0.1);
  border: 1px solid rgba(232,160,176,0.2);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 10px; font-weight: 600;
  color: var(--rose); letter-spacing: 0.04em;
}

/* Animation visibility */
.sc-anim-msg { opacity: 0; transform: translateY(12px); transition: opacity .4s, transform .4s; }
.sc-anim-msg.sc-anim-visible { opacity: 1; transform: translateY(0); }
.sc-anim-actions { opacity: 0; transform: translateY(8px); transition: opacity .3s .2s, transform .3s .2s; }
.sc-anim-actions.sc-anim-visible { opacity: 1; transform: translateY(0); }
.sc-anim-sidebar { opacity: 0; transform: translateX(-10px); transition: opacity .4s, transform .4s; }
.sc-anim-sidebar.sc-anim-visible { opacity: 1; transform: translateX(0); }

/* Edit button */
.sc-edit-btn {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border) !important;
}

/* Thinking dots */
.sc-thinking-bubble {
  display: flex; align-items: center; gap: 12px;
  background: rgba(232,160,176,0.06) !important;
  border: 1px solid rgba(232,160,176,0.12) !important;
}
.sc-thinking-dots {
  display: flex; gap: 4px;
}
.sc-thinking-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  animation: thinkPulse 1.2s ease-in-out infinite;
}
.sc-thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.sc-thinking-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes thinkPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.1); }
}
.sc-thinking-label {
  font-size: 11px; color: var(--muted); font-style: italic;
}

/* Cursor blink */
.sc-cursor {
  animation: cursorBlink 0.6s ease-in-out infinite;
  color: var(--rose); font-weight: 300;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Model messages (outgoing, right side) */
.sc-msg-model { display: flex; flex-direction: column; align-items: flex-end; }
.sc-msg-model .sc-msg-bubble {
  background: rgba(232,160,176,0.08);
  border: 1px solid rgba(232,160,176,0.15);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}

/* History messages (faded previous conversation) */
.sc-msg-history { opacity: 0.45 !important; }
.sc-msg-history .sc-msg-bubble { font-size: 12px; }

/* Analysis bar */
.sc-analysis-bar {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(100,200,255,0.06);
  border: 1px solid rgba(100,200,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  max-width: 100%;
}
.sc-analysis-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.sc-analysis-content { flex: 1; min-width: 0; }
.sc-analysis-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(100,200,255,0.9); margin-bottom: 8px;
}
.sc-analysis-items { display: flex; flex-direction: column; gap: 5px; }
.sc-analysis-tag {
  font-size: 11px; color: var(--text); line-height: 1.4;
  display: block;
}
.sc-tag-memory { color: rgba(180,220,255,0.85); }
.sc-tag-intent { color: rgba(120,230,150,0.9); }
.sc-tag-limits { color: rgba(255,160,160,0.85); }
.sc-tag-upsell { color: rgba(255,220,100,0.9); }

/* Upsell suggestion bar */
.sc-upsell-bar {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,200,50,0.06);
  border: 1px solid rgba(255,200,50,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  max-width: 100%;
}
.sc-upsell-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.sc-upsell-content { flex: 1; min-width: 0; }
.sc-upsell-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,200,50,0.9); margin-bottom: 4px;
}
.sc-upsell-text {
  font-size: 12px; color: var(--text); line-height: 1.5;
}

/* Hidden by default, JS reveals */
.sc-anim-thinking { display: none; }
.sc-anim-thinking.sc-anim-visible { display: flex; }
.sc-anim-suggestion { display: none; }
.sc-anim-suggestion.sc-anim-visible { display: flex; }
.sc-anim-analysis { display: none; }
.sc-anim-analysis.sc-anim-visible { display: flex; }
.sc-anim-upsell { display: none; }
.sc-anim-upsell.sc-anim-visible { display: flex; }

/* Bar chart grow animation */
.sc-bar-animate {
  height: 0 !important;
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--bar-delay, 0s);
}
.sc-bars-animate .sc-bar-animate {
  height: var(--bar-height) !important;
}

/* Progress bar animation */
.sc-progress-animate {
  width: 0 !important;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.sc-progress-animated {
  width: var(--target-width) !important;
}

/* Solutions */
.solutions {
  padding: 130px 60px;
  max-width: 1300px; margin: 0 auto;
}
.solutions-head { max-width: 680px; margin-bottom: 72px; }
.solutions-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,62px); font-weight: 700;
  color: var(--cream); line-height: 1.1; margin-bottom: 18px;
}
.solutions-head h2 em { font-style: italic; color: var(--rose); }
.solutions-head p { font-size: 16px; color: var(--muted); line-height: 1.8; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.sol-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: 0 24px 70px rgba(0,0,0,0.5); }
.sol-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose-deep), var(--violet));
  opacity: 0; transition: opacity .3s;
}
.sol-card:hover::after { opacity: 1; }
.sol-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 900;
  color: rgba(232,160,176,0.07); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.sol-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,160,176,0.08);
  border: 1px solid rgba(232,160,176,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--rose);
}
.sol-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--cream); margin-bottom: 14px;
}
.sol-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.sol-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sol-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.sol-bullets li::before { content: '\2726'; color: var(--rose); font-size: 8px; margin-top: 4px; flex-shrink: 0; }

/* ─── Pricing section ─── */
.pricing-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 60px;
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,160,176,0.08) 0%, transparent 65%);
}
.pricing-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,176,0.08);
  border: 1px solid rgba(232,160,176,0.25);
  border-radius: 100px; padding: 8px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose-bright); margin-bottom: 40px;
}
.pricing-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px,7vw,88px); font-weight: 900;
  color: var(--cream); line-height: 0.95; margin-bottom: 28px;
}
.pricing-h span { color: var(--rose-bright); }
.pricing-h em { font-style: italic; color: var(--rose); display: block; }
.pricing-sub {
  font-size: 18px; font-weight: 300; color: var(--muted);
  letter-spacing: 0.05em; margin-bottom: 56px; line-height: 1.6;
}

/* Pricing tiers */
.pricing-tiers {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.pricing-tier {
  flex: 1; min-width: 200px; max-width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.pricing-tier:hover { border-color: var(--border-light); transform: translateY(-4px); }
.tier-popular {
  border-color: rgba(232,160,176,0.35);
  box-shadow: 0 0 40px rgba(232,160,176,0.1);
}
.tier-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--black);
  padding: 3px 14px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.tier-range {
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--cream);
}
.tier-price small {
  font-size: 14px; font-weight: 400; color: var(--muted);
}
.tier-sub {
  font-size: 11px; color: var(--muted); margin-top: 6px;
}

/* Pricing anchor card (single centered card) */
.pricing-anchor-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-anchor {
  background: var(--card);
  border: 1px solid rgba(232,160,176,0.35);
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 0 60px rgba(232,160,176,0.08);
  position: relative;
}
.anchor-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.anchor-price {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 18px;
}
.anchor-price small {
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.anchor-desc {
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
  margin: 0 0 18px;
}
.anchor-desc strong {
  color: var(--rose);
  font-weight: 600;
}
.anchor-footnote {
  font-size: 12px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .pricing-anchor { padding: 36px 28px; }
  .anchor-price { font-size: 56px; }
  .anchor-desc { font-size: 13px; }
}

.pricing-divider {
  display: flex; align-items: center; gap: 20px;
  justify-content: center; margin-bottom: 56px;
}
.pricing-divider hr { flex: 1; max-width: 80px; border: none; border-top: 1px solid var(--rose-deep); }
.pricing-divider span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.pricing-perks {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;
}
.p-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.p-perk .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(232,160,176,0.1);
  border: 1px solid rgba(232,160,176,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--rose);
}

/* How it works */
.how {
  padding: 130px 60px;
  max-width: 1300px; margin: 0 auto;
}
.how-head { max-width: 600px; margin-bottom: 80px; }
.how-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,62px); font-weight: 700;
  color: var(--cream); line-height: 1.1; margin-bottom: 18px;
}
.how-head h2 em { font-style: italic; color: var(--rose); }
.how-head p { font-size: 16px; color: var(--muted); line-height: 1.8; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: grid; grid-template-columns: 72px 1fr 380px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.step-row:last-child { border-bottom: none; }
.step-row:hover { background: rgba(155,77,202,0.03); }
.step-n-col {
  display: flex; align-items: flex-start; justify-content: center;
  padding: 52px 20px;
  border-right: 1px solid var(--border);
}
.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(232,160,176,0.1);
  border: 1px solid rgba(232,160,176,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--rose);
}
.step-body {
  padding: 52px 48px;
  border-right: 1px solid var(--border);
}
.step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--cream); margin-bottom: 14px;
}
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 420px; }
.step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px;
  background: rgba(232,160,176,0.08);
  border: 1px solid var(--border-rose);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px; font-weight: 600; color: var(--rose); letter-spacing: 0.06em;
}
.step-preview {
  padding: 44px 36px;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
}
.preview-card {
  width: 100%;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
}
.pc-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}
.pc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); animation: blink 2s infinite; }
.pc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.pc-row:last-child { border-bottom: none; }
.pc-lbl { color: var(--muted); }
.pc-val { color: var(--cream); font-weight: 500; }
.pc-val.up { color: #7dd4a0; }
.pc-val.rose { color: var(--rose); }
.pc-val.violet { color: var(--violet-bright); }

/* ─── Testimonials (now "What Creators Can Expect") ─── */
.testimonials-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 130px 60px;
}
.testi-inner { max-width: 1300px; margin: 0 auto; }
.testi-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,5vw,60px); font-weight: 700;
  color: var(--cream); margin-bottom: 16px; line-height: 1.1;
}
.testi-inner h2 em { font-style: italic; color: var(--rose); }
.testi-disclaimer {
  font-size: 13px; color: var(--muted);
  margin-bottom: 56px; font-style: italic;
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  transition: all .25s; position: relative;
}
.tcard:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(0,0,0,0.45); border-color: var(--border-rose); }
.tcard-badge {
  position: absolute; top: 24px; right: 24px;
  background: rgba(232,160,176,0.1);
  border: 1px solid rgba(232,160,176,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--rose);
}

/* New scenario-based testimonial cards */
.tcard-scenario { margin-bottom: 24px; }
.tcard-scenario-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.tcard-scenario p {
  font-size: 13px; color: var(--text); line-height: 1.7;
}
.tcard-scenario strong { color: var(--cream); }
.tcard-result {
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.04);
}
.tcard-result-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.tcard-result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 13px; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tcard-result-row:last-child { border-bottom: none; }
.tcard-result-total {
  margin-top: 4px; padding-top: 10px;
  border-top: 1px solid rgba(232,160,176,0.2);
  font-weight: 600; color: var(--cream);
}
.tcard-bad { color: #e06060; font-weight: 600; }
.tcard-good { color: var(--green); font-weight: 600; }
.tcard-save { color: var(--rose-bright); font-weight: 700; font-size: 15px; }

/* ─── CTA with email capture ─── */
.cta-section {
  padding: 130px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(232,160,176,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px,7.5vw,96px); font-weight: 900;
  color: var(--cream); line-height: 0.95; margin-bottom: 24px;
}
.cta-section h2 em { font-style: italic; color: var(--rose); display: block; }
.cta-section > p {
  font-size: 17px; color: var(--muted);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.8;
}

.cta-email-form {
  display: flex; gap: 12px;
  max-width: 520px; margin: 0 auto 12px;
  justify-content: center;
}
.cta-email-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 16px 24px;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.cta-email-input::placeholder { color: var(--muted); }
.cta-email-input:focus { border-color: var(--rose); }
.cta-email-btn {
  padding: 16px 32px;
  white-space: nowrap;
}
.cta-email-error {
  display: none;
  font-size: 13px; color: #e06060;
  margin-bottom: 16px;
}

.cta-perks {
  display: flex; gap: 30px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--muted);
  margin-top: 32px;
}
.cta-perk { display: flex; align-items: center; gap: 7px; }
.cta-perk::before { content: '\2713'; color: var(--rose); font-weight: 700; font-size: 14px; }

.cta-spots {
  margin-top: 28px;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.03em;
}
.cta-spots strong { color: var(--rose); font-weight: 700; }

/* ─── Mini CTA (between sections) ─── */
.mini-cta {
  background: linear-gradient(135deg, rgba(192,96,122,0.12) 0%, rgba(155,77,202,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 60px;
  position: relative; overflow: hidden;
}
.mini-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,160,176,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mini-cta-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.mini-cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--cream); margin-bottom: 8px;
}
.mini-cta-text p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-width: 480px;
}
.mini-cta .btn-main {
  flex-shrink: 0; white-space: nowrap;
}

/* Alt variant (second mini CTA) */
.mini-cta-alt {
  background: linear-gradient(135deg, rgba(155,77,202,0.08) 0%, rgba(192,96,122,0.12) 100%);
}

/* Showcase single-card layout */
.showcase-grid-single {
  grid-template-columns: 1fr;
}

/* Waitlist success message */
.cta-waitlist-success {
  margin-top: 16px;
  padding: 16px 24px;
  background: rgba(100, 200, 130, 0.12);
  border: 1px solid rgba(100, 200, 130, 0.3);
  border-radius: 12px;
  color: #8be8a0;
  font-size: 15px;
  font-weight: 500;
}

/* Waitlist form (enhanced) */
.cta-waitlist-form-wrap {
  max-width: 480px;
  margin: 0 auto 12px;
}
.cta-waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-waitlist-fields .cta-email-input {
  width: 100%;
  border-radius: 12px;
}
.cta-ig-wrap {
  position: relative;
}
.cta-ig-prefix {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
}
.cta-ig-input {
  padding-left: 38px !important;
}
.cta-select-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6880' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}
.cta-select-input option {
  background: #16121a;
  color: #f8f0e8;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .step-row { grid-template-columns: 60px 1fr; }
  .step-preview { display: none; }
  .step-body { border-right: none; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-wide { grid-column: 1; }
  .sc-chat-demo { grid-template-columns: 1fr; }
  .sc-chat-sidebar { display: none; }
}
@media (max-width: 900px) {
  .urgency-bar { padding: 10px 24px; gap: 10px; font-size: 12px; }
  .urgency-cta { font-size: 11px; padding: 4px 14px; }
  nav { padding: 16px 24px; top: 38px; }
  .nav-links { display: none; }
  .hero { padding: 160px 24px 80px; }
  .hero-stats { gap: 28px; }
  .h-stat-div { display: none; }
  .trust-strip { padding: 20px 24px; gap: 24px; }
  .problem, .solutions, .how, .testimonials-section, .cta-section, .pricing-section, .showcase { padding: 80px 24px; }
  .problem-grid, .solutions-grid, .testi-grid { grid-template-columns: 1fr; }
  .vs-compare { flex-direction: column; }
  .step-row { grid-template-columns: 1fr; }
  .step-n-col { display: none; }
  .step-body { border-right: none; padding: 36px 24px; }
  .pricing-tiers { flex-direction: column; align-items: center; }
  .pricing-tier { max-width: 100%; min-width: auto; width: 100%; }
  .cta-email-form { flex-direction: column; }
  .cta-email-btn { width: 100%; }
  .sc-stat-val { font-size: 22px; }
  .mini-cta { padding: 40px 24px; }
  .mini-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .mini-cta-text p { max-width: 100%; }
  .mini-cta .btn-main { width: 100%; }
}
