/* ===================================================
   SORIZ SHARED CSS — Used by all Tailwind-powered pages
   Custom properties, animations, and effects that
   Tailwind CDN can't handle natively.
   =================================================== */

/* --- Font Faces --- */
@font-face {
  font-family: 'GT Walsheim Pro';
  src: local('GT Walsheim Pro Regular'), local('GTWalsheimPro-Regular');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GT Walsheim Pro';
  src: local('GT Walsheim Pro Medium'), local('GTWalsheimPro-Medium');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GT Walsheim Pro';
  src: local('GT Walsheim Pro Bold'), local('GTWalsheimPro-Bold');
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

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

/* --- Gradient Text Utility --- */
.gradient-text {
  background: radial-gradient(ellipse at center, rgba(255,255,255,1) 30%, rgba(255,255,255,0.35) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #da3691, #9b2fca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, #ff6b9d, #da3691, #9b2fca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-subtle {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glass Effect --- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-strong {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Gradient Border Cards --- */
.gradient-border {
  position: relative;
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(218, 54, 145, 0.3), rgba(155, 47, 202, 0.2), rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.35s ease;
  opacity: 0.5;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* --- Accent Glow --- */
.glow-pink {
  box-shadow: 0 0 60px rgba(218, 54, 145, 0.15), 0 0 120px rgba(218, 54, 145, 0.05);
}

.glow-pink-strong {
  box-shadow: 0 0 40px rgba(218, 54, 145, 0.3), 0 0 80px rgba(218, 54, 145, 0.1);
}

/* --- Button Styles --- */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da3691, #9b2fca);
  color: #fff;
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 24px rgba(218, 54, 145, 0.4);
}

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

.btn-accent-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 28px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(218, 54, 145, 0.5);
  box-shadow: 0 4px 20px rgba(218, 54, 145, 0.15);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
  border: none;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* --- Safe Area (iOS notch / dynamic island) --- */
:root {
  --safe-top: 0px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-bottom-color 0.35s ease;
  border-bottom: 1px solid transparent;
  background: #000;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-pill {
  display: flex;
  align-items: center;
  background: rgba(1, 3, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25.6px;
  padding: 0 8px;
  height: 47px;
}

.nav-pill a {
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  padding: 13px 12px;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease;
}

.nav-pill a.active {
  font-weight: 500;
}

.nav-pill a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: #da3691;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-pill a:hover::after,
.nav-pill a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  padding: 20px 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav a:hover { color: #da3691; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1200px) {
  .nav-pill { display: none !important; }
  .header-login { display: none !important; }
  .hamburger { display: flex !important; }
}

@media (max-width: 767px) {
  :root {
    --safe-top: env(safe-area-inset-top, 0px);
  }
  /* iOS fallback when safe-area env var reports 0 on mobile Safari. */
  @supports (-webkit-touch-callout: none) {
    :root {
      --safe-top: max(env(safe-area-inset-top, 0px), 20px);
    }
  }
  .site-header { padding: calc(10px + var(--safe-top)) 16px 10px; }
  /* Increase header CTA tap target to 44px on mobile */
  .site-header a[class*="rounded-pill"] { min-height: 44px; padding-left: 16px; padding-right: 16px; font-size: 14px; }
  /* Increase footer social icon tap targets on mobile */
  footer a[class*="w-10"][class*="h-10"] { min-width: 44px; min-height: 44px; }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.revealed > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.stagger-children.revealed > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.stagger-children.revealed > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.stagger-children.revealed > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.stagger-children.revealed > *:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.stagger-children.revealed > *:nth-child(12) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED MOTION SYSTEM
   Premium, restrained animations using transform + opacity only.
   All respect prefers-reduced-motion.
═══════════════════════════════════════════════════════════════ */

/* --- Reveal variants --- */
.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.revealed { opacity: 1; filter: blur(0); transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade.revealed { opacity: 1; }

.reveal-up-slow {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up-slow.revealed { opacity: 1; transform: translateY(0); }

/* --- Hero word-by-word reveal --- */
.hero-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: heroWordIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Inherit gradient text styling from parent (e.g. .gradient-text-pink) */
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  color: inherit;
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --- Body fade-in on page load --- */
@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: pageEnter 0.5s ease both; }

/* --- Header slide-down on load --- */
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.site-header { animation: headerSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }

/* --- Gradient text shimmer (for headlines) --- */
@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.shimmer-text {
  background: linear-gradient(90deg, #ececfb 0%, #da3691 25%, #9b2fca 50%, #da3691 75%, #ececfb 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShimmer 6s linear infinite;
}

/* --- Button shimmer overlay (auto-applies to .btn-accent) --- */
.btn-accent {
  position: relative;
  overflow: hidden;
}
.btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
  animation: btnShimmerLoop 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.6s;
}
.btn-accent:hover::after {
  animation-duration: 1.6s;
}
@keyframes btnShimmerLoop {
  0%   { left: -100%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}

/* --- Magnetic button transform (subtle) --- */
.btn-accent {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, filter 0.35s ease;
}
.btn-accent:hover {
  filter: brightness(1.08);
}

/* --- Floating ambient orbs (background atmosphere) --- */
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-25px, 40px) scale(0.97); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, 35px) scale(1.08); }
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ambient-orb.orb-1 { animation: orbDrift1 18s ease-in-out infinite; }
.ambient-orb.orb-2 { animation: orbDrift2 22s ease-in-out infinite; }

/* --- Floating hover utility for cards --- */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(218,54,145,0.12);
}

/* --- Pulsing glow accent (for live indicators, CTAs) --- */
@keyframes accentPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(218,54,145,0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(218,54,145,0); }
}
.pulse-glow { animation: accentPulse 2.5s ease-out infinite; }

/* --- Subtle floating motion (use sparingly on hero accents) --- */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-gentle { animation: floatGentle 6s ease-in-out infinite; }

/* --- Counter animation styles --- */
[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- Image breathing for companion avatars --- */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
.breathe { animation: breathe 5s ease-in-out infinite; }

/* --- Underline draw on link hover --- */
.underline-draw {
  position: relative;
  display: inline-block;
}
.underline-draw::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.underline-draw:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

/* --- Card hover image zoom (use on cards with internal img) --- */
.card-zoom { overflow: hidden; }
.card-zoom img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-zoom:hover img { transform: scale(1.08); }

/* --- Smooth scroll site-wide (with reduced-motion override below) --- */
html { scroll-behavior: smooth; }

/* --- Section divider gradient line that sweeps in --- */
.divider-sweep {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.divider-sweep::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(218,54,145,0.4), transparent);
  transform: translateX(-100%);
  animation: dividerSweep 3s ease-in-out infinite;
}
@keyframes dividerSweep {
  to { transform: translateX(100%); }
}

/* --- Tilt on hover (for premium card feel) --- */
.tilt-hover {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.tilt-hover:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(2deg) translateY(-4px);
}

/* --- Scroll progress bar at top of page --- */
.scroll-progress {
  position: fixed;
  top: var(--safe-top);
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #da3691, #9b2fca);
  z-index: 100;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(218,54,145,0.5);
}

/* --- Reduced motion accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-words .word { opacity: 1; transform: none; filter: none; }
  body { animation: none; opacity: 1; }
  .site-header { animation: none; }
  .ambient-orb, .float-gentle, .breathe, .pulse-glow,
  .scroll-progress, .shimmer-text { animation: none !important; }
  .shimmer-text { background: #ececfb; -webkit-text-fill-color: #ececfb; }
}

/* --- Grain/Noise Overlay --- */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: rgba(218, 54, 145, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(218, 54, 145, 0.5);
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(218, 54, 145, 0.2); }
  50% { box-shadow: 0 0 40px rgba(218, 54, 145, 0.4); }
}

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

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

/* --- Number counter animation --- */
.count-up {
  animation: countUp 0.6s ease forwards;
}

/* --- Shimmer effect for loading/accent --- */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(218, 54, 145, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

/* ===================================================
   COMPANION LANDING PAGE — Conversion-optimized components
   =================================================== */

/* --- Social Proof Pill (hero) --- */
.social-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -8px;
  display: block;
}
.avatar-stack span:first-child { margin-left: 0; }

/* --- Hero Mini Chat Teaser --- */
.hero-chat-teaser {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 16px 20px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-chat-teaser .teaser-user {
  background: rgba(255,255,255,0.06);
  border-radius: 14px 14px 4px 14px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  align-self: flex-end;
  max-width: 85%;
}
.hero-chat-teaser .teaser-companion {
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  max-width: 90%;
}

/* --- Chat Showcase Animations --- */
@keyframes messageSlideIn {
  0% { opacity: 0; transform: translateY(16px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-message {
  opacity: 0;
  animation: messageSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.chat-message:nth-child(1) { animation-delay: 0.3s; }
.chat-message:nth-child(2) { animation-delay: 1.2s; }
.chat-message:nth-child(3) { animation-delay: 2.4s; }
.chat-message:nth-child(4) { animation-delay: 3.5s; }
.chat-message:nth-child(5) { animation-delay: 4.5s; }
.chat-message:nth-child(6) { animation-delay: 5.4s; }

/* --- Typing Indicator --- */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 14px 14px 14px 4px;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: typingDot 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* --- Fake Chat Input Bar --- */
.chat-fake-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.2s ease;
}
.chat-fake-input:hover {
  background: rgba(255,255,255,0.02);
}
.chat-fake-input span {
  flex: 1;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}
.chat-fake-input .send-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.chat-fake-input:hover .send-icon {
  transform: scale(1.1);
}

/* --- Personality Moment Cards --- */
.personality-moment {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.personality-moment:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.personality-moment .moment-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.personality-moment .moment-title {
  font-family: 'GT Walsheim Pro', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.personality-moment .moment-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* --- Ask Me About Pills --- */
.ask-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.ask-pill:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* --- Testimonial Card --- */
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
}
.testimonial-card .testi-quote {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card .testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.testimonial-card .testi-author strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* --- Activity Ticker --- */
.activity-ticker {
  overflow: hidden;
  position: relative;
  height: 32px;
}
.activity-ticker::before,
.activity-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.activity-ticker::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.activity-ticker::after { right: 0; background: linear-gradient(-90deg, #000, transparent); }

.activity-ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.activity-ticker-track span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* --- Sticky CTA Bar --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 20px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}
/* Compensate footer space so content never hides behind the fixed bar */
body:has(.sticky-cta-bar) footer { padding-bottom: 96px; }
.sticky-cta-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-bar .sticky-companion {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.sticky-cta-bar .sticky-companion img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.sticky-cta-bar .sticky-btn {
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-cta-bar .sticky-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Mobile: full width button */
@media (max-width: 640px) {
  .sticky-cta-bar-inner {
    flex-direction: row;
  }
  .sticky-cta-bar .sticky-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
