@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQ.ttf) format('truetype');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPQ.ttf) format('truetype');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3ig.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM.ttf) format('truetype');
}
:root {
  --bg-deep: #080816;
  --bg-surface: #0e0e24;
  --bg-card: rgba(20, 20, 50, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --pink: #ff6b9d;
  --cyan: #00e5ff;
  --purple: #b44dff;
  --yellow: #ffe66d;
  --green: #69ff97;
  --text-primary: #f0f0f8;
  --text-secondary: rgba(240, 240, 248, 0.65);
  --text-muted: rgba(240, 240, 248, 0.4);
  --font-display: 'Comfortaa', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Nunito', sans-serif;
  background: #080816;
  color: #f0f0f8;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: #00e5ff;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #ff6b9d;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-mesh {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  100% {
    transform: translate(30px, -10px) scale(1.02);
  }
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.5rem;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b9d;
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing-bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.bg-mesh::before,
.bg-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float-mesh 20s ease-in-out infinite alternate;
}
.bg-mesh::before {
  width: 600px;
  height: 600px;
  background: #ff6b9d;
  top: -200px;
  right: -100px;
  animation-delay: -5s;
}
.bg-mesh::after {
  width: 500px;
  height: 500px;
  background: #b44dff;
  bottom: -150px;
  left: -100px;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float-mesh 25s ease-in-out infinite alternate;
}
.bg-orb--cyan {
  width: 400px;
  height: 400px;
  background: #00e5ff;
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}
.bg-orb--yellow {
  width: 300px;
  height: 300px;
  background: #ffe66d;
  top: 60%;
  right: 20%;
  animation-delay: -15s;
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  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;
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(8, 8, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.35rem;
  color: #f0f0f8;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b9d, #b44dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.4), 0 0 60px rgba(255, 107, 157, 0.15);
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(240, 240, 248, 0.65);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: #f0f0f8;
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  font-family: 'Comfortaa', cursive !important;
  font-size: 0.85rem !important;
  color: #080816 !important;
  background: linear-gradient(135deg, #00e5ff, #69ff97) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  color: #080816 !important;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2px;
  cursor: pointer;
}
.lang-switch .lang-btn {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240, 240, 248, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.lang-switch .lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f8;
}
.lang-switch .lang-btn:hover:not(.active) {
  color: rgba(240, 240, 248, 0.65);
}
.nav-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #f0f0f8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .nav-menu-toggle {
    display: flex;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2.5rem 6rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 2.5rem;
  gap: 0.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69ff97;
  box-shadow: 0 0 8px rgba(105, 255, 151, 0.3);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b9d, #b44dff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .cute-emoji {
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg) scale(1.1);
  }
  75% {
    transform: rotate(8deg) scale(1.1);
  }
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(240, 240, 248, 0.65);
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.floating-avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-avatar {
  position: absolute;
  font-size: 2.5rem;
  animation: float-avatar 6s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
  opacity: 0.7;
}
.floating-avatar:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.floating-avatar:nth-child(2) {
  top: 25%;
  right: 10%;
  animation-delay: -1.5s;
  font-size: 2rem;
}
.floating-avatar:nth-child(3) {
  bottom: 25%;
  left: 12%;
  animation-delay: -3s;
  font-size: 3rem;
}
.floating-avatar:nth-child(4) {
  bottom: 20%;
  right: 8%;
  animation-delay: -4.5s;
}
.floating-avatar:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: -2s;
  font-size: 1.8rem;
}
.floating-avatar:nth-child(6) {
  top: 40%;
  right: 5%;
  animation-delay: -3.5s;
  font-size: 2.2rem;
}
@keyframes float-avatar {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-25px) rotate(4deg);
  }
}
.hero-mockup {
  margin-top: 6rem;
  width: 100%;
  max-width: 800px;
  animation: fadeInUp 1s 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.mockup-window {
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(180, 77, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.4);
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot--red {
  background: #ff5f57;
}
.mockup-dot--yellow {
  background: #ffbd2e;
}
.mockup-dot--green {
  background: #28ca42;
}
.mockup-content {
  padding: 2.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mockup-chat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.mockup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mockup-avatar--user {
  background: linear-gradient(135deg, #00e5ff, #69ff97);
}
.mockup-avatar--ai {
  background: linear-gradient(135deg, #ff6b9d, #b44dff);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.4);
}
.mockup-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(240, 240, 248, 0.65);
  line-height: 1.6;
  max-width: 520px;
}
.mockup-bubble strong {
  color: #f0f0f8;
}
.mockup-bubble--ai {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(180, 77, 255, 0.08));
  border-color: rgba(255, 107, 157, 0.15);
}
.mockup-bubble--ai .tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 157, 0.15);
  color: #ff6b9d;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn .icon {
  font-size: 1.2em;
}
.btn-primary {
  background: linear-gradient(135deg, #ff6b9d, #b44dff);
  color: white;
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.4), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(255, 107, 157, 0.4), 0 12px 40px rgba(0, 0, 0, 0.4);
  color: white;
}
.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f0f8;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f0f0f8;
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}
.section {
  padding: 6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #ff6b9d;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b9d, #b44dff, #00e5ff);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 77, 255, 0.05);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.feature-icon--pink {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 107, 157, 0.05));
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}
.feature-icon--cyan {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}
.feature-icon--purple {
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.15), rgba(180, 77, 255, 0.05));
  box-shadow: 0 0 20px rgba(180, 77, 255, 0.3);
}
.feature-icon--yellow {
  background: linear-gradient(135deg, rgba(255, 230, 109, 0.15), rgba(255, 230, 109, 0.05));
  box-shadow: 0 0 20px rgba(255, 230, 109, 0.3);
}
.feature-icon--green {
  background: linear-gradient(135deg, rgba(105, 255, 151, 0.15), rgba(105, 255, 151, 0.05));
  box-shadow: 0 0 20px rgba(105, 255, 151, 0.3);
}
.feature-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}
.avatars-showcase {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}
.avatars-showcase::-webkit-scrollbar {
  display: none;
}
.avatar-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.avatar-pill:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.12);
}
.avatar-pill .emoji {
  font-size: 1.5rem;
}
.avatar-pill .name {
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
  font-size: 0.95rem;
}
.avatar-pill .desc {
  font-size: 0.8rem;
  color: rgba(240, 240, 248, 0.4);
}
.download-section {
  text-align: center;
  padding: 6rem 2.5rem;
}
.download-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(180, 77, 255, 0.08), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(255, 107, 157, 0.15);
  border-radius: 28px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.download-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.download-desc {
  color: rgba(240, 240, 248, 0.65);
  font-size: 1.05rem;
  margin-bottom: 4rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.download-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
}
.download-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer {
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: #f0f0f8;
}
.footer-copy {
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.82rem;
  width: 100%;
  margin-top: 1.5rem;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #f0f0f8;
  font-size: 0.88rem;
  z-index: 300;
  opacity: 0;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: #ff6b9d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.text-gradient {
  background: linear-gradient(135deg, #ff6b9d, #b44dff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-pink {
  text-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}
.glow-cyan {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}
.cute-emoji {
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.auth-header {
  text-align: center;
  margin-bottom: 4rem;
}
.auth-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff6b9d, #b44dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
}
.auth-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.auth-subtitle {
  color: rgba(240, 240, 248, 0.65);
  font-size: 0.92rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: 'Comfortaa', cursive;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f0f0f8;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input:focus {
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
.form-input::placeholder {
  color: rgba(240, 240, 248, 0.4);
}
.form-error {
  color: #ff6b9d;
  font-size: 0.82rem;
  margin-top: 0.25rem;
  display: none;
}
.form-error.visible {
  display: block;
}
.auth-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(240, 240, 248, 0.4);
  font-size: 0.88rem;
}
.auth-footer a {
  color: #ff6b9d;
  font-weight: 600;
}
.demo-hint {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-hint p {
  font-size: 0.8rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
}
.dashboard {
  padding-top: 80px;
  min-height: 100vh;
}
.dash-header {
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.dash-welcome {
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  font-weight: 700;
}
.dash-welcome .wave {
  display: inline-block;
  animation: wave-hand 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}
@keyframes wave-hand {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60%,
  100% {
    transform: rotate(0deg);
  }
}
.dash-stats {
  display: flex;
  gap: 1.5rem;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  gap: 0.5rem;
}
.stat-pill .stat-val {
  font-weight: 700;
  color: #00e5ff;
}
.dash-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
}
.dash-section-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(240, 240, 248, 0.65);
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.avatar-card {
  background: rgba(20, 20, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.avatar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}
.avatar-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.avatar-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.avatar-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.avatar-card-name {
  font-family: 'Comfortaa', cursive;
  font-size: 1.1rem;
  font-weight: 700;
}
.avatar-card-role {
  font-size: 0.82rem;
  color: rgba(240, 240, 248, 0.4);
}
.avatar-card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.avatar-card-stat {
  font-size: 0.82rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
}
.avatar-card-stat .val {
  color: rgba(240, 240, 248, 0.65);
  font-weight: 500;
}
.avatar-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.avatar-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
}
.avatar-tag--cyan {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
}
.avatar-tag--purple {
  background: rgba(180, 77, 255, 0.1);
  color: #b44dff;
}
.avatar-tag--yellow {
  background: rgba(255, 230, 109, 0.1);
  color: #ffe66d;
}
.avatar-tag--green {
  background: rgba(105, 255, 151, 0.1);
  color: #69ff97;
}
.context-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 560px;
  max-width: 90vw;
  background: #0e0e24;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 200;
  overflow-y: auto;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}
.context-panel.active {
  display: block;
}
.context-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  backdrop-filter: blur(4px);
}
.context-panel-overlay.active {
  display: block;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.context-header {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #0e0e24;
  z-index: 1;
}
.context-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 240, 248, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.context-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f8;
}
.context-body {
  padding: 2.5rem;
}
.context-block {
  margin-bottom: 2.5rem;
}
.context-block-title {
  font-family: 'Comfortaa', cursive;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(240, 240, 248, 0.65);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.context-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(240, 240, 248, 0.65);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.context-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.context-item .source {
  font-size: 0.75rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.25rem;
}
.context-timeline {
  position: relative;
  padding-left: 24px;
}
.context-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #ff6b9d, #b44dff, #00e5ff);
  border-radius: 2px;
  opacity: 0.3;
}
.timeline-node {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-node::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b9d;
  box-shadow: 0 0 8px rgba(255, 107, 157, 0.4);
}
.timeline-node:nth-child(2n)::before {
  background: #b44dff;
  box-shadow: 0 0 8px rgba(180, 77, 255, 0.35);
}
.timeline-node:nth-child(3n)::before {
  background: #00e5ff;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.35);
}
.timeline-date {
  font-size: 0.75rem;
  color: rgba(240, 240, 248, 0.4);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 4px;
}
.timeline-content {
  font-size: 0.88rem;
  color: rgba(240, 240, 248, 0.65);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 100px 1rem 4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .floating-avatar {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .dash-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .context-panel {
    width: 100%;
  }
  .avatar-grid {
    grid-template-columns: 1fr;
  }
  .download-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .mockup-content {
    padding: 1rem;
  }
}
