/* ═══════════════════════════════════════════════════════
   CreatorLoop — Design System v2
   Aesthetic: Creator-built, bold, visually alive
   Vibe: Bold, fun, energetic — built by creators
   ═══════════════════════════════════════════════════════ */

:root {
  /* Backgrounds — warmer dark with depth */
  --bg: #0b0b0f;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;

  /* Foreground — warm off-white */
  --fg: #f5f0e8;
  --fg-muted: #7a7870;
  --fg-dim: #3d3b38;

  /* Creator accent — electric lime/green for energy */
  --lime: #b8ff47;
  --lime-bright: #d4ff7a;
  --lime-dim: #5a7a1f;
  --lime-glow: rgba(184, 255, 71, 0.12);
  --lime-glow-strong: rgba(184, 255, 71, 0.25);

  /* Secondary accent — hot pink for creator energy */
  --pink: #ff2d6a;
  --pink-bright: #ff5588;
  --pink-dim: #991740;
  --pink-glow: rgba(255, 45, 106, 0.12);
  --pink-glow-strong: rgba(255, 45, 106, 0.25);

  /* Tertiary — warm coral/orange */
  --coral: #ff6b35;
  --coral-bright: #ff8855;
  --coral-glow: rgba(255, 107, 53, 0.12);

  /* Gradients */
  --gradient-lime: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%);
  --gradient-pink: linear-gradient(135deg, var(--pink) 0%, var(--pink-bright) 100%);
  --gradient-coral: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  --gradient-mixed: linear-gradient(90deg, var(--lime) 0%, var(--pink) 50%, var(--coral) 100%);
  --gradient-creator: linear-gradient(90deg, var(--lime) 0%, var(--pink) 100%);

  /* Charcoal / border */
  --charcoal: #16161f;
  --border: #1e1e28;
  --border-hover: #2e2e3a;

  /* Spacing & shape */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── SHARED UTILITIES ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-bright);
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid rgba(184, 255, 71, 0.25);
  border-radius: var(--radius-pill);
  background: var(--lime-glow);
  position: relative;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 2s ease infinite;
  box-shadow: 0 0 8px var(--lime);
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lime gradient text */
.lime-text {
  color: var(--lime);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.2), transparent);
}

/* Star decoration */
.star-deco {
  display: inline-block;
  color: var(--lime);
  opacity: 0.4;
  font-size: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(184, 255, 71, 0.2), 0 0 40px rgba(184, 255, 71, 0.08); }
  50% { box-shadow: 0 0 30px rgba(184, 255, 71, 0.35), 0 0 60px rgba(184, 255, 71, 0.15); }
}

@keyframes glow-pulse-pink {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 45, 106, 0.2), 0 0 40px rgba(255, 45, 106, 0.08); }
  50% { box-shadow: 0 0 30px rgba(255, 45, 106, 0.35), 0 0 60px rgba(255, 45, 106, 0.15); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes bounce-in {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.animate-slide-up { animation: slide-up 0.6s ease forwards; }
.animate-slide-up-delay-1 { animation: slide-up 0.6s ease 0.1s forwards; opacity: 0; }
.animate-slide-up-delay-2 { animation: slide-up 0.6s ease 0.2s forwards; opacity: 0; }
.animate-slide-up-delay-3 { animation: slide-up 0.6s ease 0.3s forwards; opacity: 0; }

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-coral);
  color: #0b0b0f;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover::after { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35), 0 0 50px rgba(255, 107, 53, 0.15);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--gradient-coral);
  color: #0b0b0f;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(184, 255, 71, 0.3);
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-glow);
  box-shadow: 0 0 20px rgba(184, 255, 71, 0.1);
}

.btn-ghost-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border: 1.5px solid var(--border-hover);
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost-full:hover {
  border-color: var(--lime-dim);
  color: var(--lime);
}

.btn-arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* Lime CTA variant */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--lime);
  color: #0b0b0f;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-lime:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(184, 255, 71, 0.4), 0 0 50px rgba(184, 255, 71, 0.15);
}

.btn-lime .btn-arrow { transition: transform var(--transition); }
.btn-lime:hover .btn-arrow { transform: translateX(4px); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11, 11, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Logo mark — custom SVG star burst */
.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(184, 255, 71, 0.4));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.nav-link:hover { color: var(--lime); }

.nav-cta {
  padding: 9px 22px;
  background: var(--lime);
  color: #0b0b0f;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 20px rgba(184, 255, 71, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Background gradient orbs */
.hero-orb-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 255, 71, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 8s ease infinite;
}

.hero-orb-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-slow 10s ease infinite;
}

.hero-orb-3 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  animation: float 6s ease infinite reverse;
}

/* Dot grid pattern */
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 255, 71, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

/* Decorative floating shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-1 {
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(184, 255, 71, 0.15);
  top: 18%;
  left: 12%;
  animation: float-slow 7s ease infinite;
}

.hero-deco-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(184, 255, 71, 0.1), rgba(255, 45, 106, 0.08));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  left: 8%;
  animation: float-slow 9s ease infinite reverse;
}

.hero-deco-3 {
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(255, 107, 53, 0.15);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 25%;
  right: 18%;
  animation: float 6s ease infinite 1s;
}

.hero-deco-4 {
  width: 40px;
  height: 40px;
  background: rgba(184, 255, 71, 0.15);
  border-radius: 50%;
  bottom: 35%;
  right: 22%;
  animation: float-slow 8s ease infinite 0.5s;
}

/* Star burst decorations */
.hero-star {
  position: absolute;
  color: var(--lime);
  opacity: 0.15;
  animation: float 5s ease infinite;
  pointer-events: none;
  font-size: 24px;
}

.hero-star-1 { top: 15%; left: 25%; animation-delay: 0s; }
.hero-star-2 { top: 45%; left: 5%; animation-delay: 1s; font-size: 18px; }
.hero-star-3 { top: 70%; right: 8%; animation-delay: 0.5s; }
.hero-star-4 { bottom: 25%; left: 20%; animation-delay: 1.5s; font-size: 16px; }

/* Ring decoration */
.hero-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184, 255, 71, 0.08);
  border-radius: 50%;
  top: 15%;
  right: 5%;
  animation: spin-slow 20s linear infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

/* Creatively styled badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(184, 255, 71, 0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  background: var(--lime-glow);
  animation: slide-up 0.6s ease forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--lime);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--fg);
  animation: slide-up 0.6s ease 0.1s forwards;
  opacity: 0;
}

@media (max-width: 600px) {
  .hero-title {
    font-weight: 900;
    font-size: clamp(42px, 13vw, 60px);
  }
}

.hero-title-accent {
  display: block;
  background: var(--gradient-mixed);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* Creator vibe — lime underline for emphasis */
.hero-title-underline {
  position: relative;
  display: inline;
  text-decoration: none;
}

.hero-title-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
  opacity: 0.8;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  animation: slide-up 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  animation: slide-up 0.6s ease 0.3s forwards;
  opacity: 0;
}

/* Hero demo — avatar preview card */
.hero-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: slide-up 0.6s ease 0.35s forwards;
  opacity: 0;
}

.hero-demo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: float 6s ease infinite;
}

.hero-demo-card + .hero-demo-card {
  animation-delay: 1.5s;
}

.hero-demo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 0 0 12px rgba(184, 255, 71, 0.3);
}

.hero-demo-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 2px solid rgba(184, 255, 71, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--lime);
}

.hero-demo-text {
  text-align: left;
}

.hero-demo-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.hero-demo-meta {
  font-size: 12px;
  color: var(--lime);
  opacity: 0.7;
}

.hero-demo-arrow {
  color: var(--lime);
  font-size: 18px;
  opacity: 0.4;
  animation: wiggle 3s ease infinite;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: slide-up 0.6s ease 0.4s forwards;
  opacity: 0;
}

.waitlist-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-bright);
  display: flex;
  align-items: center;
  gap: 8px;
}

.waitlist-label::before {
  content: '✦';
  font-size: 10px;
  animation: pulse-dot 2s ease infinite;
}

.waitlist-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
}

.waitlist-input {
  flex: 1;
  padding: 13px 18px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input::placeholder { color: var(--fg-dim); }
.waitlist-input:focus {
  border-color: var(--lime-dim);
  box-shadow: 0 0 0 3px rgba(184, 255, 71, 0.08);
}

.waitlist-btn { white-space: nowrap; }

.waitlist-msg { font-size: 13px; text-align: center; min-height: 18px; }

/* Hero proof pills */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: slide-up 0.6s ease 0.5s forwards;
  opacity: 0;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--fg-muted);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.proof-pill:hover {
  border-color: rgba(184, 255, 71, 0.4);
  box-shadow: 0 0 12px rgba(184, 255, 71, 0.06);
}

.proof-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--lime);
}

/* ─── WAVY SECTION DIVIDER ─── */
.wavy-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.wavy-divider svg {
  width: 100%;
  height: 60px;
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 32px;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.proof-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.02), transparent);
  pointer-events: none;
}

/* Star decoration on proof strip */
.proof-strip-star {
  position: absolute;
  color: var(--lime);
  opacity: 0.08;
  font-size: 80px;
  pointer-events: none;
}

.proof-strip-star-left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.proof-strip-star-right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.proof-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.proof-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 56px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

.proof-strip-div {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(184, 255, 71, 0.2), transparent);
}

/* ─── TRUST LOGOS / CREATOR SOCIAL PROOF ─── */
.trust-logos {
  padding: 48px 32px;
  position: relative;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

/* Ticker-style animation for brand names */
.trust-scroll {
  overflow: hidden;
  position: relative;
}

.trust-scroll::before,
.trust-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
}

.trust-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.trust-scroll::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.trust-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 24px;
}

.trust-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
  opacity: 0.5;
  transition: opacity var(--transition), color var(--transition);
}

.trust-brand:hover { opacity: 0.8; color: var(--lime); }

.trust-dot {
  color: var(--lime-dim);
  font-size: 20px;
  opacity: 0.3;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 32px;
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.2), transparent);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.how-step {
  background: var(--bg-elevated);
  padding: 40px 28px;
  position: relative;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-mixed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.how-step:hover::before { transform: scaleX(1); }

.how-step:hover {
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.how-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.how-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--fg-dim);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime-glow);
  border: 1px solid rgba(184, 255, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--lime);
  transition: transform var(--transition), box-shadow var(--transition);
  /* Make SVG icons look great */
  flex-shrink: 0;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(184, 255, 71, 0.2);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.how-step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 32px;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.15), transparent);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.features-left {
  position: sticky;
  top: 100px;
}

.features-left .section-title { margin-bottom: 20px; }

/* Big statement text */
.features-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.features-desc {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { border-color: rgba(184, 255, 71, 0.15); }

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--lime-glow);
  border: 1px solid rgba(184, 255, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--lime);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.feature-item:hover .feature-icon-wrap {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 16px rgba(184, 255, 71, 0.2);
}

.feature-content { flex: 1; }

.feature-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--lime-glow);
  border: 1px solid rgba(184, 255, 71, 0.2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── AVATAR PREVIEW ON LANDING ─── */
.avatar-preview-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.avatar-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184, 255, 71, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.avatar-preview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.avatar-grid-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.avatar-card-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.avatar-card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 255, 71, 0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.avatar-card-preview:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(184, 255, 71, 0.1), 0 0 0 1px rgba(184, 255, 71, 0.08);
}

.avatar-card-preview:hover::after { opacity: 1; }

.avatar-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.avatar-initial {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: rgba(240, 237, 232, 0.7);
}

.avatar-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-thumb-cta {
  background: var(--lime-glow);
  border: 1.5px dashed rgba(184, 255, 71, 0.4);
}

.avatar-plus {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
}

.avatar-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.avatar-vibe {
  font-size: 12px;
  color: var(--fg-dim);
}

.avatar-card-cta .avatar-name { color: var(--lime); }
.avatar-card-cta .avatar-vibe { color: rgba(184, 255, 71, 0.5); }

/* ─── PRICING ─── */
.pricing {
  padding: 100px 32px;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.15), transparent);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pricing-card {
  position: relative;
  background: var(--bg-elevated);
  padding: 48px 36px;
  border-top: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pricing-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card-featured {
  background: var(--bg-card);
  border-top-color: var(--lime);
  z-index: 1;
  position: relative;
  animation: glow-pulse 3s ease infinite;
}

.pricing-card-featured:hover {
  transform: translateY(-6px) scale(1.02);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-creator);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: #0b0b0f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount.gradient {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-features li.dim { opacity: 0.4; }

.check { color: var(--lime); font-size: 14px; flex-shrink: 0; }
.cross { color: var(--fg-dim); font-size: 14px; flex-shrink: 0; }

/* ─── HOMEPAGE PRICING TOGGLE ─── */
.home-tab-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.home-tab-btn {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-tab-btn:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.home-tab-btn.active {
  background: var(--gradient-creator);
  color: #0b0b0f;
  border-color: var(--lime);
}

.home-yearly-badge {
  display: inline-block;
  background: var(--lime-glow);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.home-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.home-tier {
  position: relative;
  background: var(--bg-elevated);
  padding: 36px 28px;
  border-top: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.home-tier:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.home-tier:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.home-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.home-tier-featured {
  background: var(--bg-card);
  border-top-color: var(--lime);
  z-index: 1;
  position: relative;
  animation: glow-pulse 3s ease infinite;
}

.home-tier-featured:hover {
  transform: translateY(-6px) scale(1.02);
}

.home-tier-badge {
  display: inline-block;
  background: var(--gradient-creator);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: #0b0b0f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.home-tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.home-tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.home-tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.home-tier-annual {
  display: none;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.home-tier-annual.show { display: block; }

.home-tier-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.home-tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.home-tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.home-tier-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  cursor: pointer;
  width: 100%;
}

.home-cta-primary {
  background: var(--gradient-creator);
  color: #0b0b0f;
  box-shadow: 0 4px 16px rgba(184, 255, 71, 0.2);
}

.home-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 255, 71, 0.3);
}

.home-cta-secondary {
  border: 1.5px solid var(--border-hover);
  color: var(--fg);
  background: transparent;
}

.home-cta-secondary:hover {
  border-color: var(--lime-dim);
  color: var(--lime);
}

@media (max-width: 768px) {
  .home-tiers {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-tier:first-child, .home-tier:last-child {
    border-radius: var(--radius);
  }
}

/* ─── CLOSING / CTA ─── */
.closing {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(184, 255, 71, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.closing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--pink-glow);
  border: 1px solid rgba(255, 45, 106, 0.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-bright);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  padding: 18px 44px;
}

.closing-accent {
  font-size: 28px;
  color: var(--lime-dim);
  margin-top: 56px;
  opacity: 0.3;
  animation: float-slow 4s ease infinite;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 71, 0.15), transparent);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color var(--transition);
}

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

.footer-meta {
  font-size: 13px;
  color: var(--fg-dim);
}

/* Footer tagline */
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-dim);
}

.footer-tagline span {
  color: var(--lime-dim);
  font-size: 10px;
}

/* ─── AVATAR LIBRARY PAGE ─── */
.avatars-page {
  padding-top: 100px;
  min-height: 100vh;
}

.avatars-header {
  padding: 60px 32px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.avatars-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.avatars-header p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.6;
}

.avatars-filters {
  padding: 32px 32px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-body);
}

.filter-pill:hover { border-color: var(--lime-dim); color: var(--fg); }
.filter-pill.active { border-color: var(--lime); color: var(--lime); background: var(--lime-glow); }

.avatars-grid {
  padding: 40px 32px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.avatar-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.avatar-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(184, 255, 71, 0.1);
}

.avatar-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(240,237,232,0.6);
  position: relative;
  overflow: hidden;
}

.avatar-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-featured { background: var(--gradient-creator); color: #0b0b0f; }
.badge-new { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }

.avatar-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.avatar-card-style {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.avatar-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.avatar-tag {
  padding: 3px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

.avatar-card-action {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  transition: all var(--transition);
}

.avatar-card-action:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-glow);
}

/* ─── CREATE AVATAR PAGE ─── */
.create-page {
  padding-top: 100px;
  min-height: 100vh;
}

.create-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.create-header { margin-bottom: 48px; }

.create-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.create-header p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.create-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.create-step {
  flex: 1;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-dim);
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.create-step:last-child { border-right: none; }
.create-step.active { background: var(--bg-card); color: var(--lime); }
.create-step.done { color: var(--fg-muted); }

.create-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.create-step.active .create-step-num {
  background: var(--lime);
  color: #0b0b0f;
}

.create-section { margin-bottom: 40px; }

.create-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.create-section-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border-hover);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  position: relative;
}

.upload-zone:hover {
  border-color: var(--lime-dim);
  background: rgba(184, 255, 71, 0.03);
}

.upload-zone.dragover {
  border-color: var(--lime);
  background: var(--lime-glow);
}

.upload-icon {
  font-size: 36px;
  color: var(--fg-dim);
  margin-bottom: 16px;
  display: block;
}

.upload-zone h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.upload-zone p {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-preview {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.upload-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.field-input, .field-select, .field-textarea {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--lime-dim);
  box-shadow: 0 0 0 3px rgba(184, 255, 71, 0.08);
}

.field-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

.field-select {
  -webkit-appearance: none;
  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='%237a7870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* Tone selector */
.tone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tone-option { position: relative; }

.tone-option input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.tone-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.tone-label:hover { border-color: var(--lime-dim); }
.tone-option input:checked + .tone-label { border-color: var(--lime); background: var(--lime-glow); }

.tone-emoji { font-size: 20px; }
.tone-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.tone-desc { font-size: 12px; color: var(--fg-dim); }

/* Pre-made pick */
.premade-section {
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  text-align: center;
}

.premade-section a {
  font-size: 14px;
  color: var(--lime-dim);
  transition: color var(--transition);
}

.premade-section a:hover { color: var(--lime); }

/* Submit */
.create-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.create-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-creator);
  color: #0b0b0f;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}

.create-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 255, 71, 0.3);
}

.create-submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .avatars-grid { grid-template-columns: repeat(3, 1fr); }
  .avatar-grid-preview { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step:first-child { border-radius: var(--radius) 0 0 0; }
  .how-step:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .how-step:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .how-step:last-child { border-radius: 0 0 var(--radius) 0; }
}

@media (max-width: 900px) {
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-left { position: static; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card:first-child, .pricing-card:last-child { border-radius: var(--radius); }
  .proof-strip-item { padding: 0 32px; }
  .hero-ring { display: none; }
  .hero-deco-1, .hero-deco-2 { display: none; }
  .hero-star-1, .hero-star-4 { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 57px; left: 0; right: 0; background: rgba(11,11,15,0.97); padding: 24px 32px; border-bottom: 1px solid var(--border); gap: 20px; z-index: 99; }
  .nav-hamburger { display: flex; }
  .nav-cta { margin-left: auto; }
  .avatars-grid { grid-template-columns: repeat(2, 1fr); }
  .avatar-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-step, .how-step:first-child, .how-step:nth-child(2), .how-step:nth-child(3), .how-step:last-child { border-radius: var(--radius); }
  .proof-strip-inner { gap: 0; flex-direction: column; }
  .proof-strip-item { padding: 20px 0; width: 100%; }
  .proof-strip-div { width: 100%; height: 1px; }
  .tone-grid { grid-template-columns: 1fr 1fr; }
  .create-steps { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .waitlist-fields { flex-direction: column; max-width: 100%; }
  .waitlist-btn { width: 100%; justify-content: center; }
  .hero-demo { flex-direction: column; gap: 8px; }
  .hero-demo-arrow { display: none; }
  .how, .features, .proof-strip, .pricing, .closing { padding: 60px 20px; }
  .avatars-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 24px 20px 60px; }
  .avatar-grid-preview { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .create-inner { padding: 40px 20px 60px; }
  .tone-grid { grid-template-columns: 1fr; }
  .trust-brands { gap: 8px; }
  .trust-dot { display: none; }
  .hero-deco-3, .hero-deco-4, .hero-star-2, .hero-star-3 { display: none; }
  .proof-strip { padding: 32px 20px; }
  .proof-num { font-size: 30px; }
}

/* ═══════════════════════════════════════════════
   DEMO REEL SECTION
   ═══════════════════════════════════════════════ */
.demo-reel {
  padding: 100px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.demo-reel-inner { max-width: var(--max-width); margin: 0 auto; }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.demo-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.demo-video-wrap { position: relative; }
.demo-video-placeholder {
  position: relative;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.demo-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.demo-card:hover .demo-play-btn {
  background: rgba(184,255,71,0.2);
  transform: scale(1.08);
}

.demo-avatar-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 10px 4px 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  z-index: 3;
}
.demo-avatar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.demo-platform-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 3;
  text-transform: uppercase;
}
.demo-badge-tiktok { background: rgba(0,0,0,0.5); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.demo-badge-reels { background: rgba(255,45,106,0.2); color: var(--pink-bright); border: 1px solid var(--pink-dim); }
.demo-badge-youtube { background: rgba(255,107,53,0.2); color: var(--coral-bright); border: 1px solid rgba(255,107,53,0.3); }

.demo-preview-text {
  position: absolute;
  bottom: 50px;
  left: 12px;
  right: 12px;
  z-index: 3;
}
.demo-hook {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.demo-card-meta { padding: 16px; }
.demo-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.demo-category { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); }
.demo-length { font-size: 11px; color: var(--fg-muted); }
.demo-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.demo-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 12px; }
.demo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.demo-tag {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

.demo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.demo-cta-text { font-size: 15px; color: var(--fg-muted); max-width: 400px; }

.demo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.demo-cta-text { font-size: 15px; color: var(--fg-muted); max-width: 400px; }

.demo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.demo-cta-text { font-size: 15px; color: var(--fg-muted); max-width: 400px; }

/* ─── Demo Card: Enhanced Video + Generation Preview ────────────────────────── */

/* Wrappers */
.demo-video-wrap { position: relative; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.demo-bg-layer   { position: absolute; inset: 0; z-index: 0; }
.demo-video-container { position: absolute; inset: 0; z-index: 1; }

/* Video element */
.demo-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.demo-video-el.is-playing { opacity: 1; }

/* ── Generation preview overlay ─────────────────────────────────────────────── */
.demo-gen-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10,10,20,0.72);
  backdrop-filter: blur(4px);
  transition: opacity 0.4s ease;
  padding: 16px 12px;
}
.demo-gen-overlay.fade-out { opacity: 0; }

/* Progress bar */
.gen-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 4px;
}
.gen-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), #7ae83a);
  border-radius: 100px;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--lime);
}

/* Avatar zone */
.gen-avatar-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: genAvatarIn 0.5s ease-out forwards;
}
@keyframes genAvatarIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.gen-avatar-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  animation: genRingPulse 1.2s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes genRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.08); opacity: 0.6; }
}

.gen-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 0 0 16px rgba(184,255,71,0.3);
  position: relative;
  z-index: 1;
}
.gen-avatar-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Steps list */
.gen-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 160px;
}
.gen-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-8px);
}
.gen-step-item.is-active {
  color: #fff;
  background: rgba(184,255,71,0.08);
  border: 1px solid rgba(184,255,71,0.2);
  opacity: 1;
  transform: translateX(0);
}
.gen-step-icon { font-size: 12px; width: 16px; text-align: center; }
.gen-step-label { flex: 1; }
.gen-step-check {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.gen-step-check--done {
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
}

/* Output flash */
.gen-output-flash {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: genOutputIn 0.4s ease-out forwards;
}
.gen-output-flash.visible { display: flex; }
@keyframes genOutputIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.gen-output-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.gen-output-flash span {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Click-to-play overlay ───────────────────────────────────────────────────── */
.demo-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(10,10,20,0.45);
  cursor: pointer;
}

.demo-avatar-hero {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.demo-play-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,255,71,0.15);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 20px rgba(184,255,71,0.25);
}
.demo-card:hover .demo-play-ring {
  transform: scale(1.1);
  background: rgba(184,255,71,0.25);
}
.demo-play-ring-inner {
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Play state overlays ─────────────────────────────────────────────────────── */
.demo-play-state {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

/* ── Avatar chip (play state) ───────────────────────────────────────────────── */
.demo-avatar-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 10px 4px 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  z-index: 7;
}
.demo-avatar-chip-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hook text in play state */
.demo-preview-text {
  position: absolute;
  bottom: 44px;
  left: 10px;
  right: 10px;
  z-index: 7;
}
.demo-hook {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Platform badge in play state */
.demo-platform-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 7;
  text-transform: uppercase;
}

/* Attribution */
.demo-attribution {
  font-size: 10px;
  color: var(--fg-subtle);
  margin-top: 8px;
}
.demo-attribution a { color: var(--fg-muted); text-decoration: underline; }

/* ─── Demo CTA row ──────────────────────────────────────────────────────────── */
.demo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.demo-cta-text { font-size: 15px; color: var(--fg-muted); max-width: 400px; }

/* ═══════════════════════════════════════════════
   ANIMATED COUNTERS SECTION
   ═══════════════════════════════════════════════ */
.counters-section {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,255,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.counters-inner { max-width: var(--max-width); margin: 0 auto; }
.counters-header { text-align: center; margin-bottom: 64px; }
.counters-title { font-size: clamp(32px, 5vw, 52px); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.counter-item {
  background: var(--bg-card);
  padding: 48px 32px;
  text-align: center;
  position: relative;
}
.counter-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime-glow);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.counter-item:hover::after { opacity: 1; }

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.counter-suffix { font-size: 0.7em; color: var(--lime-dim); }
.counter-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.counter-sub { font-size: 12px; color: var(--fg-muted); }

/* ═══════════════════════════════════════════════
   COMPETITIVE COMPARISON TABLE
   ═══════════════════════════════════════════════ */
.compare-section {
  padding: 100px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.compare-inner { max-width: var(--max-width); margin: 0 auto; }

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table thead tr {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.compare-th, .compare-th-feature {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.compare-th-feature { text-align: left; color: var(--fg-muted); width: 220px; }
.compare-th-us {
  background: rgba(184,255,71,0.06);
  color: var(--lime);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.compare-th-inner { display: flex; align-items: center; justify-content: center; gap: 6px; }

.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-row-alt { background: rgba(255,255,255,0.02); }

.compare-feature {
  padding: 14px 20px;
  color: var(--fg);
  font-weight: 500;
}
.compare-val {
  padding: 14px 20px;
  text-align: center;
  white-space: nowrap;
}
.compare-val-us {
  background: rgba(184,255,71,0.04);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.compare-win { color: var(--lime); font-weight: 700; }
.compare-mid { color: var(--fg-muted); font-weight: 500; }
.compare-bad { color: #ff6b6b; font-weight: 500; }
.compare-note { font-size: 11px; color: var(--fg-muted); }

.compare-callout {
  border-radius: var(--radius);
  background: rgba(184,255,71,0.06);
  border: 1px solid rgba(184,255,71,0.18);
  padding: 24px 28px;
}
.compare-callout-inner { display: flex; align-items: flex-start; gap: 16px; }
.compare-callout-emoji { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.compare-callout p { font-size: 15px; color: var(--fg); line-height: 1.65; }
.compare-callout strong { color: var(--lime); }

/* ═══════════════════════════════════════════════
   INTEGRATIONS ROADMAP
   ═══════════════════════════════════════════════ */
.integrations-section {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.integrations-inner { max-width: var(--max-width); margin: 0 auto; }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.integration-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.integration-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.integration-logo-wrap { flex-shrink: 0; }
.integration-logo { width: 40px; height: 40px; border-radius: 10px; }

.integration-info { flex: 1; min-width: 0; }
.integration-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.integration-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.integration-eta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--pink-bright);
  text-transform: uppercase;
  background: rgba(255,45,106,0.1);
  border: 1px solid rgba(255,45,106,0.2);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 100px;
}

.integrations-api-callout {
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.integrations-api-link {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184,255,71,0.3);
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.integrations-api-link:hover { color: var(--lime-bright); }

/* ═══════════════════════════════════════════════
   USE CASES PAGE
   ═══════════════════════════════════════════════ */
.page-hero {
  padding: 120px 40px 80px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.page-hero-desc {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.use-case-section {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.use-case-alt { background: var(--bg-elevated); }
.use-case-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.use-case-inner-flip { direction: rtl; }
.use-case-inner-flip > * { direction: ltr; }

.use-case-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.use-case-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.use-case-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.use-case-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.use-case-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.use-case-list {
  list-style: none;
  margin-bottom: 32px;
}
.use-case-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.use-case-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
  font-size: 13px;
}

.use-case-stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.use-case-stat { }
.use-case-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}
.use-case-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.use-case-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.use-case-mock {
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(255,255,255,0.06);
}
.use-case-mock-phone {
  aspect-ratio: 9/16;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.use-case-mock-screen {
  width: 100%;
  height: 100%;
  position: relative;
}
.use-case-mock-avatar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.use-case-mock-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.use-case-mock-text {
  font-size: 11px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.use-case-mock-cta-bar {
  background: var(--lime);
  color: #0b0b0f;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.03em;
}
.use-case-mock-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   BLOG LISTING
   ═══════════════════════════════════════════════ */
.blog-listing {
  padding: 60px 40px 100px;
  background: var(--bg);
}
.blog-listing-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card { background: var(--bg-card); }
.blog-card-link {
  display: block;
  padding: 36px 40px;
  transition: background var(--transition);
}
.blog-card-link:hover { background: var(--bg-card-hover); }

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(184,255,71,0.1);
  border: 1px solid rgba(184,255,71,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-card-read { font-size: 12px; color: var(--fg-muted); }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--fg);
}
.blog-card-link:hover .blog-card-title { color: var(--lime); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 640px;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-date { font-size: 12px; color: var(--fg-muted); }
.blog-card-arrow { font-size: 13px; color: var(--lime); font-weight: 600; opacity: 0; transition: opacity var(--transition); }
.blog-card-link:hover .blog-card-arrow { opacity: 1; }

/* ═══════════════════════════════════════════════
   BLOG POST PAGE
   ═══════════════════════════════════════════════ */
.blog-article { max-width: 100%; }

.blog-article-header {
  padding: 100px 40px 60px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.blog-article-header-inner { max-width: 720px; margin: 0 auto; }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.blog-back-link:hover { color: var(--lime); }
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.blog-article-dot { color: var(--fg-dim); }
.blog-article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.blog-article-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.blog-article-body {
  padding: 60px 40px;
  background: var(--bg);
}
.blog-article-content {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.blog-article-content h2:first-child { margin-top: 0; }
.blog-article-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin: 28px 0 10px;
}
.blog-article-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.blog-article-content ul {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.blog-article-content ul li {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
}
.blog-article-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.blog-article-content strong { color: var(--fg); font-weight: 700; }

.blog-article-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}
.blog-article-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.blog-article-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.blog-article-cta p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.blog-more-posts h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.blog-more-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.blog-more-link:last-child { border-bottom: none; }
.blog-more-link:hover { color: var(--lime); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .use-case-inner { grid-template-columns: 1fr; gap: 48px; }
  .use-case-inner-flip { direction: ltr; }
  .use-case-visual { order: -1; }
  .blog-article-footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .demo-reel, .counters-section, .compare-section, .integrations-section, .use-case-section, .blog-listing, .page-hero { padding: 60px 20px; }
  .demo-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 12px; }
  .compare-th, .compare-feature, .compare-val { padding: 10px 12px; }
  .integrations-grid { grid-template-columns: 1fr; }
  .blog-article-header { padding: 80px 20px 40px; }
  .blog-article-body { padding: 40px 20px; }
  .blog-article-footer { padding: 40px 20px; }
  .blog-listing { padding: 40px 20px 60px; }
  .blog-card-link { padding: 24px 20px; }
  .demo-cta-row { flex-direction: column; text-align: center; }
  .use-case-stat-row { gap: 20px; }
  .use-case-mock { max-width: 220px; }
}

@media (max-width: 600px) {
  .counters-grid { grid-template-columns: 1fr; }
  .compare-callout-inner { flex-direction: column; gap: 8px; }
  .page-hero { padding: 100px 20px 60px; }
}

/* ═══════════════════════════════════════════════
   CHAT WIDGET — AI Receptionist
   ═══════════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Floating bubble */
.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(184, 255, 71, 0.35), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  flex-shrink: 0;
}
.chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(184, 255, 71, 0.5), 0 2px 12px rgba(0,0,0,0.4);
}
.chat-bubble:active { transform: scale(0.97); }
.chat-bubble-icon { flex-shrink: 0; }

/* Notification badge */
.chat-bubble-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  animation: chat-badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes chat-badge-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* Panel */
.chat-panel {
  width: 340px;
  max-height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chat-panel-in 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}
@keyframes chat-panel-in {
  0% { opacity: 0; transform: scale(0.88) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Panel header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 1px solid var(--lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-header-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  font-family: var(--font-display);
}
.chat-header-status {
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.chat-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.chat-close-btn:hover { color: var(--fg); background: var(--border); }

/* Messages container */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Message bubbles */
.chat-msg {
  display: flex;
  max-width: 88%;
}
.chat-msg--user { align-self: flex-end; justify-content: flex-end; }
.chat-msg--assistant { align-self: flex-start; }
.chat-msg-bubble {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}
.chat-msg--user .chat-msg-bubble {
  background: var(--lime);
  color: var(--bg);
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.chat-msg--assistant .chat-msg-bubble {
  background: var(--bg-elevated);
  color: var(--fg);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.chat-typing {
  padding: 8px 14px 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.typing-dot {
  width: 7px;
  height: 7px;
  background: var(--fg-muted);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Input row */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 14px;
  outline: none;
  transition: border-color var(--transition);
}
.chat-input::placeholder { color: var(--fg-muted); }
.chat-input:focus { border-color: var(--lime-dim); }
.chat-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.chat-send-btn:hover { transform: scale(1.08); }
.chat-send-btn:active { transform: scale(0.95); }
.chat-send-btn:disabled { opacity: 0.5; cursor: default; transform: none; }

/* Mobile responsiveness */
@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); max-height: 480px; }
}
