/* [project]/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  color: #f9fafb;
  background: radial-gradient(circle at top, #111827 0, #0a0a0f 55% 100%);
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, SF Pro Text, Segoe UI, sans-serif;
}

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

button {
  font: inherit;
}

:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

.ps-root {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
}

.ps-card {
  background: radial-gradient(circle at 0 0, #0a0a0f 0 40%, #0a0a0f 100%);
  border: 1px solid #94a3b859;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 960px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #0f172acc, 0 0 0 1px #0f172ae6;
}

.ps-card:before {
  content: "";
  opacity: .1;
  pointer-events: none;
  background: radial-gradient(circle at top, #facc15, #0000 60%);
  position: absolute;
  inset: -40%;
}

.ps-card-inner {
  z-index: 1;
  position: relative;
}

.ps-header-row {
  z-index: 1;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  position: relative;
}

.ps-logo {
  color: #0a0a0f;
  background: radial-gradient(circle at 20% 20%, #facc15, #eab308 45%, #ca8a04 100%);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  box-shadow: 0 0 0 2px #0f172ae6, 0 8px 18px #000000a6;
}

.ps-logo span {
  letter-spacing: .02em;
}

.ps-header-text {
  flex: 1;
}

.ps-app-title {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #facc15;
  font-size: 1.4rem;
  font-weight: 700;
}

.ps-subtitle {
  color: #9ca3af;
  margin-top: .25rem;
  font-size: .9rem;
}

.ps-main-grid {
  z-index: 1;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  display: grid;
  position: relative;
}

@media (max-width: 768px) {
  .ps-card {
    padding: 1.25rem;
  }

  .ps-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ps-header-row {
    align-items: flex-start;
  }
}

.ps-column {
  background: radial-gradient(circle at 0 0, #0a0a0f 0 60%, #0a0a0f 100%);
  border: 1px solid #94a3b84d;
  border-radius: .9rem;
  padding: 1rem 1.1rem;
}

.ps-section-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9ca3af;
  margin-bottom: .4rem;
  font-size: .8rem;
  font-weight: 600;
}

.ps-section-title-row {
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .4rem;
  display: flex;
}

.ps-section-title {
  color: #facc15;
  font-size: 1rem;
  font-weight: 600;
}

.ps-section-caption {
  color: #9ca3af;
  font-size: .8rem;
}

.ps-pill-row {
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
  margin-bottom: .75rem;
  display: flex;
}

.ps-pill {
  color: #e5e7eb;
  background: #0f172acc;
  border: 1px solid #94a3b880;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .72rem;
}

.ps-pill-active {
  color: #0a0a0f;
  background: radial-gradient(circle at top, #facc15 0, #eab308 40%, #92400e 100%);
  border-color: #facc15;
  font-weight: 600;
}

.ps-badge {
  color: #bbf7d0;
  background: #22c55e29;
  border-radius: 999px;
  align-items: center;
  gap: .25rem;
  padding: .2rem .5rem;
  font-size: .72rem;
  font-weight: 500;
  display: inline-flex;
}

.ps-list {
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
  list-style: none;
  display: flex;
}

.ps-list-item {
  background: #0f172acc;
  border: 1px solid #374151cc;
  border-radius: .6rem;
  padding: .55rem .65rem;
}

.ps-list-title {
  color: #e5e7eb;
  font-size: .9rem;
  font-weight: 500;
}

.ps-list-meta {
  color: #9ca3af;
  margin-top: .15rem;
  font-size: .78rem;
}

.ps-footer-row {
  z-index: 1;
  color: #9ca3af;
  border-top: 1px solid #374151e6;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: .75rem;
  font-size: .8rem;
  display: flex;
  position: relative;
}

.ps-footer-left, .ps-footer-right {
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.ps-link {
  color: #facc15;
  cursor: pointer;
  font-size: .8rem;
  text-decoration: none;
}

.ps-link:hover {
  text-decoration: underline;
}

.ps-btn-row {
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .75rem;
  display: flex;
}

.ps-btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  padding: .45rem .9rem;
  font-size: .85rem;
  display: inline-flex;
}

.ps-btn-primary {
  color: #0a0a0f;
  background: radial-gradient(circle at 20% 0, #facc15, #eab308 35%, #ca8a04 100%);
  font-weight: 600;
  transition: transform .12s, box-shadow .12s, filter .12s;
  box-shadow: 0 0 0 1px #0f172ae6, 0 10px 20px #000000b3;
}

.ps-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px #0f172ae6, 0 14px 24px #000c;
}

.ps-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 0 1px #0f172ae6, 0 6px 12px #000000b3;
}

.ps-btn-secondary {
  color: #e5e7eb;
  background: #0f172ae6;
  border: 1px solid #94a3b8b3;
  font-weight: 500;
  transition: background .12s, border-color .12s, transform .12s;
}

.ps-btn-secondary:hover {
  background: #1f2937f2;
  border-color: #d1d5dbcc;
  transform: translateY(-1px);
}

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

.ps-form {
  flex-direction: column;
  gap: .9rem;
  margin-top: .5rem;
  display: flex;
}

.ps-field {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.ps-label {
  color: #e5e7eb;
  font-size: .8rem;
  font-weight: 500;
}

.ps-label span {
  color: #9ca3af;
  font-weight: 400;
}

.ps-input, .ps-select, .ps-textarea {
  color: #e5e7eb;
  background: #0f172af2;
  border: 1px solid #374151e6;
  border-radius: .6rem;
  outline: none;
  width: 100%;
  padding: .5rem .7rem;
  font-size: .85rem;
  transition: border-color .12s, box-shadow .12s, background .12s;
}

.ps-input:focus, .ps-select:focus, .ps-textarea:focus {
  background: #0f172a;
  border-color: #facc15;
  box-shadow: 0 0 0 1px #facc1559;
}

.ps-select {
  appearance: none;
}

.ps-hint {
  color: #9ca3af;
  font-size: .75rem;
}

.ps-lesson-meta {
  color: #9ca3af;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  display: flex;
}

.ps-lesson-body {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.ps-article {
  color: #e5e7eb;
  background: #0f172af2;
  border: 1px solid #374151e6;
  border-radius: .7rem;
  padding: .75rem .85rem;
  font-size: .9rem;
  line-height: 1.5;
}

.ps-article-heading {
  color: #facc15;
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 600;
}

.ps-questions {
  flex-direction: column;
  gap: .7rem;
  display: flex;
}

.ps-question-block {
  background: #0f172ae6;
  border: 1px solid #374151e6;
  border-radius: .7rem;
  padding: .6rem .7rem;
}

.ps-question-text {
  color: #e5e7eb;
  margin-bottom: .4rem;
  font-size: .85rem;
}

.ps-textarea {
  resize: vertical;
  min-height: 70px;
}

.ps-options-row {
  flex-wrap: wrap;
  gap: .4rem;
  display: flex;
}

.ps-option-chip {
  cursor: pointer;
  color: #e5e7eb;
  background: #0f172af2;
  border: 1px solid #374151e6;
  border-radius: 999px;
  padding: .3rem .6rem;
  font-size: .8rem;
  transition: background .12s, border-color .12s, color .12s;
}

.ps-option-chip-selected {
  background: #facc1526;
  border-color: #facc15;
}

.ps-status-chip {
  border-radius: 999px;
  align-items: center;
  gap: .25rem;
  padding: .18rem .45rem;
  font-size: .7rem;
  display: inline-flex;
}

.ps-status-chip-ok {
  color: #bbf7d0;
  background: #22c55e29;
}

.ps-status-chip-warn {
  color: #facc15;
  background: #facc1526;
}

.ps-muted {
  color: #9ca3af;
}

.ps-small {
  font-size: .78rem;
}

.ps-spacer-sm {
  margin-top: .4rem;
}

.ps-spacer-md {
  margin-top: .75rem;
}

.ps-spacer-lg {
  margin-top: 1.25rem;
}

.agent-container {
  background: #0a0a0f;
  flex-direction: column;
  max-width: 800px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
}

.agent-header {
  border-bottom: 1px solid #37415180;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.agent-header-content {
  text-align: left;
}

.agent-name {
  color: #f9fafb;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.agent-tagline {
  color: #9ca3af;
  margin: .15rem 0 0;
  font-size: .85rem;
}

.agent-new-chat-btn {
  color: #e5e7eb;
  cursor: pointer;
  background: #37415180;
  border: 1px solid #4b556399;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  transition: background .15s, border-color .15s;
}

.agent-new-chat-btn:hover {
  background: #4b556399;
  border-color: #6b7280b3;
}

.agent-loading {
  color: #9ca3af;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.agent-messages {
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  padding: 1.5rem;
  display: flex;
  overflow-y: auto;
}

.agent-message {
  max-width: 85%;
  display: flex;
}

.agent-message-user {
  align-self: flex-end;
}

.agent-message-assistant {
  align-self: flex-start;
}

.agent-message-content {
  white-space: pre-wrap;
  word-wrap: break-word;
  border-radius: 1rem;
  padding: .75rem 1rem;
  font-size: .95rem;
  line-height: 1.5;
}

.agent-message-user .agent-message-content {
  color: #fff;
  background: #2563eb;
  border-bottom-right-radius: .25rem;
}

.agent-message-assistant .agent-message-content {
  color: #e5e7eb;
  background: #37415199;
  border-bottom-left-radius: .25rem;
}

.agent-typing {
  gap: .3rem;
  padding: 1rem 1.25rem;
  display: flex;
}

.agent-typing span {
  background: #9ca3af;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.4s ease-in-out infinite agent-bounce;
}

.agent-typing span:nth-child(2) {
  animation-delay: .2s;
}

.agent-typing span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes agent-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-4px);
  }
}

.agent-input-container {
  background: #0a0a0f;
  border-top: 1px solid #37415180;
  gap: .75rem;
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
}

.agent-input {
  color: #e5e7eb;
  resize: none;
  background: #0f172af2;
  border: 1px solid #374151e6;
  border-radius: .75rem;
  outline: none;
  flex: 1;
  max-height: 150px;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .15s;
}

.agent-input:focus {
  border-color: #3b82f6;
}

.agent-input::placeholder {
  color: #6b7280;
}

.agent-input:disabled {
  opacity: .6;
}

.agent-send-btn {
  cursor: pointer;
  color: #fff;
  border: none;
  border-radius: .75rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: opacity .15s, transform .1s;
  display: flex;
}

.agent-send-btn:hover:not(:disabled) {
  opacity: .9;
  transform: scale(1.02);
}

.agent-send-btn:active:not(:disabled) {
  transform: scale(.98);
}

.agent-send-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .agent-messages {
    padding: 1rem;
  }

  .agent-message {
    max-width: 90%;
  }

  .agent-input-container {
    padding: .75rem 1rem 1rem;
  }
}

.landing-container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem 1.5rem;
}

.landing-hero {
  text-align: center;
  padding: 3rem 1rem 4rem;
}

.hero-logo {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.hero-logo .logo-icon {
  font-size: 2.5rem;
}

.hero-logo .logo-text {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-title {
  color: #f9fafb;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-cta {
  color: #0a0a0f;
  cursor: pointer;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 10px 30px #facc154d;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px #facc1566;
}

.hero-cta:active {
  transform: translateY(0);
}

.cta-arrow {
  font-size: 1.25rem;
  transition: transform .2s;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-note {
  color: #6b7280;
  margin-top: 1rem;
  font-size: .9rem;
}

.features-section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  color: #f9fafb;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.feature-card {
  background: #0f172acc;
  border: 1px solid #37415199;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover {
  border-color: #facc1566;
  transform: translateY(-4px);
}

.feature-card.highlight {
  background: linear-gradient(135deg, #facc150d, #0f172acc);
  border-color: #facc1580;
}

.feature-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.feature-card h3 {
  color: #facc15;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card > p {
  color: #9ca3af;
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.6;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: #e5e7eb;
  padding: .35rem 0 .35rem 1.25rem;
  font-size: .85rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.how-section {
  border-top: 1px solid #37415166;
  padding: 3rem 0;
}

.steps-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  display: flex;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 1.5rem 1rem;
}

.step-number {
  color: #0a0a0f;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.step h3 {
  color: #f9fafb;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.step p {
  color: #9ca3af;
  font-size: .9rem;
  line-height: 1.5;
}

.step-arrow {
  color: #4b5563;
  align-self: center;
  padding-top: 1rem;
  font-size: 1.5rem;
}

.cta-section {
  text-align: center;
  background: #0f172a99;
  border: 1px solid #37415166;
  border-radius: 1.5rem;
  margin-top: 2rem;
  padding: 3rem 1rem;
}

.cta-section h2 {
  color: #f9fafb;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.cta-section p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.landing-footer {
  text-align: center;
  border-top: 1px solid #37415166;
  margin-top: 3rem;
  padding: 2rem 1rem;
}

.landing-footer p {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.footer-links {
  justify-content: center;
  gap: 2rem;
  display: flex;
}

.footer-links a {
  color: #facc15;
  font-size: .9rem;
  transition: opacity .2s;
}

.footer-links a:hover {
  opacity: .8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    padding: 0;
    transform: rotate(90deg);
  }

  .step {
    max-width: 100%;
  }
}

.ps-form-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: grid;
}

@media (max-width: 600px) {
  .ps-form-grid {
    grid-template-columns: 1fr;
  }
}

.ps-field-label {
  color: #e5e7eb;
  margin-bottom: .35rem;
  font-size: .85rem;
  font-weight: 500;
  display: block;
}

.ps-form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.ps-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #facc15;
  margin-bottom: .25rem;
  font-size: .8rem;
  font-weight: 600;
}

.ps-title {
  color: #f9fafb;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.ps-footer-note {
  text-align: center;
  color: #9ca3af;
  margin-top: 1.5rem;
  font-size: .85rem;
}

.ps-link-button {
  color: #facc15;
  cursor: pointer;
  font-size: inherit;
  background: none;
  border: none;
}

.ps-link-button:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/