/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
/* Font loaded via <link> in layout.tsx for non-blocking rendering */

:root {
  --claw-red: #FF5A3C;
  --claw-orange: #FF7A45;
  --claw-light: #FFF2EA;
  --claw-cream: #FFF8F3;
  --claw-warm: #FFEEE4;
  --claw-dark: #1A1A1A;
  --claw-gray: #666666;
  --claw-muted: #999999;
  --claw-border: rgba(255, 90, 60, 0.12);
  --claw-card: #FFFFFF;
  --claw-card-hover: #FFF8F3;
  --bg: #FFFFFF;
  --g-orange: linear-gradient(135deg, #FF5A3C, #FF7A45);
  --g-warm: linear-gradient(135deg, #FF7A45, #FFAA6E);
  --g-light: linear-gradient(180deg, #FFF2EA, #FFFFFF);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --shadow-sm: 0 2px 8px rgba(255, 90, 60, 0.06);
  --shadow-md: 0 4px 20px rgba(255, 90, 60, 0.1);
  --shadow-lg: 0 8px 40px rgba(255, 90, 60, 0.12);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--claw-dark);
  font-family: 'Noto Sans SC', 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.gradient-text {
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accessibility: focus indicator for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--claw-orange);
  outline-offset: 2px;
}

/* Accessibility: respect reduced-motion preference */
@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;
  }
}

/* Accessibility: visually hidden but screen-reader accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only:focus-visible {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--claw-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  z-index: 10000;
}

/* ── Animations ── */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255, 90, 60, 0); }
}

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

@keyframes typing {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Entrance utilities */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Button interactions */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--g-orange);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 90, 60, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(255, 90, 60, 0.4);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--claw-orange);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--claw-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.2s ease,
              background 0.2s ease,
              border-color 0.2s ease;
}
.btn-secondary:hover {
  background: var(--claw-light);
  border-color: var(--claw-orange);
  transform: translateY(-1px);
}

/* Card interactions */
.card-interactive {
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.25s ease;
}
.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-interactive:active {
  transform: translateY(-2px);
  transition-duration: 0.1s;
}

/* Mascot float animation */
.mascot-float {
  animation: float 4s ease-in-out infinite;
}

.mascot-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.mascot-wave {
  display: inline-block;
  animation: wave 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}

/* Chat animations */
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.2; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1); }
}

@keyframes agentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero glow */
@keyframes hero-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,90,60,0.1), 0 0 60px rgba(255,122,69,0.05); }
  50% { box-shadow: 0 0 30px rgba(255,90,60,0.2), 0 0 80px rgba(255,122,69,0.1); }
}

/* Voice / chat input animations */
@keyframes voice-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@keyframes chat-voice-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes chat-wave-bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Skeleton animations */
@keyframes sk-breathe {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes sk-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes file-upload-spin {
  to { transform: rotate(360deg); }
}

/* Toast exit animation */
@keyframes toastOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* Sparkle decoration */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--claw-orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Section separator */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--g-orange);
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* Responsive */
@media (max-width: 640px) {
  .section-padding {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
}
@media (min-width: 769px) {
  .mobile-menu-btn { display: none !important; }
}

/* Welcome card responsive grid */
@media (max-width: 480px) {
  .welcome-grid { grid-template-columns: 1fr !important; }
}

/* Chip hover for chat */
.chip-hover {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease;
}
.chip-hover:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 60, 0.4) !important;
  color: var(--claw-dark) !important;
  background: var(--claw-light) !important;
}
.chip-hover:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* btn-scale for backward compat */
.btn-scale {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.15s ease,
              border-color 0.15s ease,
              color 0.15s ease;
}
.btn-scale:hover {
  transform: scale(1.03);
}
.btn-scale:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

