@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --navy: #0d1b2a;
  --navy-light: #1a2d42;
  --navy-mid: #152236;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --gold-glow: #c9a84c26;
  --cream: #f0efe9;
  --cream-dim: #f0efe9b3;
  --white: #fff;
  --glass: #ffffff0a;
  --glass-border: #c9a84c33;
  --glass-border-light: #ffffff14;
  --success: #4caf7d;
  --warning: #e8a44a;
  --danger: #e85a4a;
  --info: #4a9ee8;
  --mood-color: #e88fa0;
  --energy-color: #f0c060;
  --sleep-color: #7b9fe8;
  --stress-color: #e8784a;
  --health-color: #7bd4a0;
  --relationship-color: #d488e8;
  --purpose-color: #c9a84c;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-display: "Cinzel", serif;
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-gold: 0 0 30px #c9a84c26;
  --shadow-card: 0 4px 24px #0000004d;
  --shadow-lg: 0 8px 40px #0006;
  --transition: all .2s ease;
  --transition-slow: all .4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
  top: 0 !important;
}

.goog-te-banner-frame, .skiptranslate iframe, #goog-gt-tt, .goog-te-balloon-frame, .goog-te-gadget-icon {
  visibility: hidden !important;
  display: none !important;
}

.goog-te-gadget {
  height: 0 !important;
  font-size: 0 !important;
  overflow: hidden !important;
}

font[style*="background-color"] {
  box-shadow: none !important;
  background-color: #0000 !important;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea {
  font-family: var(--font-body);
  outline: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-mid);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}

.display-title {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .05em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .03em;
  font-size: 1.25rem;
  font-weight: 500;
}

.text-gold {
  color: var(--gold);
}

.text-cream {
  color: var(--cream);
}

.text-dim {
  color: var(--cream-dim);
}

.text-sm {
  font-size: .875rem;
}

.text-xs {
  font-size: .75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-center {
  text-align: center;
}

.page-container {
  max-width: 1200px;
  padding: 0 var(--space-xl);
  margin: 0 auto;
}

.page-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}

.grid-2 {
  gap: var(--space-lg);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.grid-3 {
  gap: var(--space-lg);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.grid-4 {
  gap: var(--space-md);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.card-gold {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
  background: linear-gradient(135deg, #c9a84c14, #c9a84c08);
}

.card:hover, .card-gold:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px #c9a84c66;
}

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

.btn-secondary {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: none;
}

.btn-secondary:hover {
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: var(--glass);
  color: var(--cream-dim);
  border: 1px solid var(--glass-border-light);
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.btn-lg {
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: .4rem 1rem;
  font-size: .8rem;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.form-group {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.form-label {
  color: var(--cream-dim);
  font-size: .875rem;
  font-weight: 500;
}

.form-input {
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  color: var(--cream);
  transition: var(--transition);
  background: #ffffff0d;
  padding: .75rem 1rem;
  font-size: .95rem;
}

.form-input:focus {
  border-color: var(--gold);
  background: #c9a84c0d;
  box-shadow: 0 0 0 3px #c9a84c1a;
}

.form-input::placeholder {
  color: #f0efe94d;
}

.score-circle {
  background: conic-gradient(var(--gold) calc(var(--score) * 36deg), var(--navy-light) 0deg);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: relative;
}

.score-circle:before {
  content: "";
  background: var(--navy);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  position: absolute;
}

.score-circle-inner {
  z-index: 1;
  text-align: center;
  position: relative;
}

.score-value {
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.score-label {
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .65rem;
}

.score-bar-container {
  align-items: center;
  gap: var(--space-md);
  display: flex;
}

.score-bar-track {
  border-radius: var(--radius-full);
  background: #ffffff14;
  flex: 1;
  height: 6px;
  overflow: hidden;
}

.score-bar-fill {
  border-radius: var(--radius-full);
  height: 100%;
  transition: width .8s;
}

.slider-container {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.slider-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.slider-value {
  color: var(--gold);
  text-align: right;
  min-width: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}

input[type="range"] {
  -webkit-appearance: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 6px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--gold);
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: 0 0 10px #c9a84c80;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #c9a84cb3;
}

.navbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border-light);
  height: 72px;
  padding: 0 var(--space-xl);
  background: #0d1b2af2;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-inner {
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  display: flex;
}

.navbar-logo {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .05em;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.navbar-logo span {
  color: var(--cream-dim);
  font-size: .7rem;
  font-family: var(--font-body);
  letter-spacing: .1em;
  font-weight: 300;
  display: block;
}

.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
  gap: .35rem;
  display: flex;
}

.nav-link {
  border-radius: var(--radius-md);
  white-space: nowrap;
  color: var(--gold);
  background: var(--navy-light);
  transition: var(--transition);
  border: 1px solid #c9a84c40;
  align-items: center;
  gap: .35rem;
  padding: .4rem .75rem;
  font-size: .8rem;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.nav-link:hover {
  color: var(--gold-light);
  background: var(--navy-mid);
  border-color: var(--gold);
}

.nav-link.active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 600;
}

.chat-container {
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border-light);
  flex-direction: column;
  height: calc(100vh - 160px);
  display: flex;
  overflow: hidden;
}

.chat-messages {
  padding: var(--space-xl);
  gap: var(--space-lg);
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 70%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: .95rem;
  line-height: 1.7;
  animation: .3s fadeInUp;
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--gold-dark), #a07830cc);
  color: var(--cream);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-bubble.assistant {
  background: var(--glass);
  border: 1px solid var(--glass-border-light);
  color: var(--cream);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-input-area {
  padding: var(--space-lg);
  border-top: 1px solid var(--glass-border-light);
  background: var(--navy-mid);
  gap: var(--space-md);
  display: flex;
}

.chat-input {
  background: var(--glass);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-full);
  color: var(--cream);
  resize: none;
  flex: 1;
  padding: .75rem 1.25rem;
  font-size: .95rem;
}

.chat-input:focus {
  border-color: var(--gold);
  outline: none;
}

.chat-send-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  width: 48px;
  height: 48px;
  color: var(--navy);
  transition: var(--transition);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  display: flex;
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px #c9a84c66;
}

.practice-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  cursor: default;
}

.practice-card:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.practice-icon {
  margin-bottom: var(--space-sm);
  font-size: 2rem;
  display: block;
}

.practice-category {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  font-size: .7rem;
  font-weight: 600;
}

.practice-title {
  color: var(--cream);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
}

.practice-duration {
  color: var(--cream-dim);
  margin-bottom: var(--space-md);
  font-size: .75rem;
}

.practice-description {
  color: var(--cream-dim);
  margin-bottom: var(--space-md);
  font-size: .875rem;
  line-height: 1.6;
}

.practice-dhamma {
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: var(--space-sm);
  font-size: .8rem;
  font-style: italic;
}

.quote-block {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, #c9a84c14, #c9a84c08);
  position: relative;
  overflow: hidden;
}

.quote-block:before {
  content: "\"";
  font-size: 8rem;
  font-family: var(--font-display);
  color: #c9a84c14;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 20px;
}

.quote-text {
  color: var(--cream);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  position: relative;
}

.quote-source {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
}

.badge {
  border-radius: var(--radius-full);
  align-items: center;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-flex;
}

.badge-gold {
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--glass-border);
}

.loading-spinner {
  border: 3px solid #c9a84c33;
  border-top-color: var(--gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: .8s linear infinite spin;
}

.loading-dots {
  align-items: center;
  gap: 6px;
  display: flex;
}

.loading-dot {
  background: var(--gold);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.4s infinite pulse;
}

.loading-dot:nth-child(2) {
  animation-delay: .2s;
}

.loading-dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 80%, 100% {
    opacity: .4;
    transform: scale(.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

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

  100% {
    background-position: 200%;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px #c9a84c33;
  }

  50% {
    box-shadow: 0 0 40px #c9a84c66;
  }
}

.animate-fade-in {
  animation: .5s fadeIn;
}

.animate-fade-up {
  animation: .5s fadeInUp;
}

.animate-glow {
  animation: 3s infinite glow;
}

.auth-page {
  min-height: 100vh;
  padding: var(--space-xl);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-bg-orb {
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.auth-bg-orb-1 {
  background: radial-gradient(circle, #c9a84c1f 0%, #0000 70%);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.auth-bg-orb-2 {
  background: radial-gradient(circle, #4a9ee814 0%, #0000 70%);
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

.auth-card {
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  padding: var(--space-3xl);
  z-index: 1;
  box-shadow: var(--shadow-lg);
  animation: .5s fadeInUp;
  position: relative;
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.auth-logo-title {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .08em;
  font-size: 2rem;
}

.auth-logo-subtitle {
  color: var(--cream-dim);
  letter-spacing: .15em;
  margin-top: var(--space-xs);
  font-size: .8rem;
  font-style: italic;
}

.auth-divider {
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  color: var(--cream-dim);
  font-size: .8rem;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  content: "";
  background: var(--glass-border-light);
  flex: 1;
  height: 1px;
}

.auth-link {
  color: var(--gold);
  transition: var(--transition);
  font-weight: 500;
  text-decoration: none;
}

.auth-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.error-message {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: #e85a4a;
  background: #e85a4a1a;
  border: 1px solid #e85a4a4d;
  font-size: .875rem;
}

.navbar-actions {
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
}

.navbar-user-link {
  color: var(--cream-dim);
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  padding: .4rem .6rem;
  font-size: .875rem;
  text-decoration: none;
}

.navbar-user-link:hover {
  color: var(--gold-light);
  background: var(--navy-light);
}

.navbar-user-link.active {
  color: var(--gold);
  background: var(--navy-light);
}

.navbar-burger {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  display: none;
}

.navbar-burger span {
  background: var(--gold);
  transform-origin: center;
  border-radius: 2px;
  height: 2px;
  transition: transform .25s, opacity .2s;
  display: block;
}

.navbar-burger.is-open span:first-child {
  transform: translateY(10px)rotate(45deg);
}

.navbar-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-open span:nth-child(3) {
  transform: translateY(-10px)rotate(-45deg);
}

.mobile-drawer-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 199;
  background: #0000008c;
  transition: opacity .25s;
  position: fixed;
  inset: 0;
}

.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  background: var(--navy);
  border-left: 1px solid var(--glass-border-light);
  z-index: 200;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  width: min(82vw, 320px);
  padding-top: 72px;
  transition: transform .3s;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  transform: translateX(100%);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--glass-border-light);
}

.mobile-drawer-nav {
  padding: var(--space-md);
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
}

.mobile-nav-link {
  align-items: center;
  gap: var(--space-md);
  border-radius: var(--radius-md);
  color: var(--cream);
  background: var(--glass);
  border: 1px solid var(--glass-border-light);
  min-height: 48px;
  padding: .85rem 1rem;
  font-size: .95rem;
  text-decoration: none;
  display: flex;
}

.mobile-nav-link:hover {
  background: var(--navy-light);
}

.mobile-nav-link.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.mobile-nav-icon {
  font-size: 1.15rem;
}

.mobile-drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--glass-border-light);
}

@media (max-width: 1024px) {
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 var(--space-md);
    height: 64px;
  }

  .navbar-logo {
    font-size: 1.05rem;
  }

  .navbar-logo span {
    font-size: .6rem;
  }

  .navbar-nav, .navbar-user, .navbar-signout {
    display: none;
  }

  .navbar-burger {
    display: flex;
  }

  .page-wrapper {
    padding-top: 72px;
  }

  .page-container {
    padding: 0 var(--space-md);
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .chat-bubble {
    max-width: 90%;
  }

  .chat-container {
    height: calc(100vh - 140px);
  }

  .chat-messages {
    padding: var(--space-md);
  }

  .chat-input-area {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .section-title {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: .75rem 1.25rem;
    font-size: .95rem;
  }

  input, select, textarea, .form-input {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 0 var(--space-sm);
  }

  .display-title {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }

  .auth-card {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn, .nav-link, .mobile-nav-link {
    min-height: 44px;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/