@tailwind base;
@tailwind components;
@tailwind utilities;

/* Your custom layers or @apply rules go AFTER the 3 lines above */
/* line 1, app/assets/stylesheets/users.scss */
.form-container {
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
}

/* line 7, app/assets/stylesheets/users.scss */
#users-new {
  width: 100%;
}

/* line 10, app/assets/stylesheets/users.scss */
#users-new h1 {
  text-align: center;
}

/* line 14, app/assets/stylesheets/users.scss */
#users-new .signup-form {
  margin: 20px auto;
  max-width: 800px;
}

/* line 19, app/assets/stylesheets/users.scss */
#users-new .btn-primary {
  margin-top: 40px;
}

/* line 26, app/assets/stylesheets/users.scss */
#users-show h1 {
  font-family: 'Noto Color Emoji', sans-serif;
  font-size: 2rem;
  margin-top: 20px;
  font-weight: 900;
  text-align: center;
}

/* line 34, app/assets/stylesheets/users.scss */
#users-show .tier-info {
  font-size: 0.75rem;
  color: #d1d5db;
}

/* line 44, app/assets/stylesheets/users.scss */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f4f4f4;
}

/* line 57, app/assets/stylesheets/users.scss */
.top-bar-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* line 65, app/assets/stylesheets/users.scss */
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 73, app/assets/stylesheets/users.scss */
.top-bar-links li {
  margin: 0;
}

/* line 77, app/assets/stylesheets/users.scss */
.top-bar-links a, .top-bar-links button {
  font-size: 0.875rem;
  color: #334558;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 24px;
  transition: background-color 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
}

/* line 88, app/assets/stylesheets/users.scss */
.top-bar-links a:hover, .top-bar-links button:hover {
  background-color: #f1f1f1;
}

/* line 94, app/assets/stylesheets/users.scss */
.top-bar-signup {
  background-color: #0079DA !important;
  color: white !important;
}

/* line 98, app/assets/stylesheets/users.scss */
.top-bar-signup:hover {
  background-color: #0066b8 !important;
}

/* line 103, app/assets/stylesheets/users.scss */
.top-bar-logout {
  font-size: 0.875rem;
  color: #334558;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 24px;
}

/* line 112, app/assets/stylesheets/users.scss */
.top-bar-logout:hover {
  background-color: #f1f1f1;
}

/* line 121, app/assets/stylesheets/users.scss */
#home-index {
  min-height: 100vh;
}

/* line 129, app/assets/stylesheets/users.scss */
.cta-button {
  display: inline-block;
  background-color: #0079DA;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 48px;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

/* line 141, app/assets/stylesheets/users.scss */
.cta-button:hover {
  background-color: #0066b8;
  transform: translateY(-1px);
}

/* line 151, app/assets/stylesheets/users.scss */
.cta-section {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

/* line 159, app/assets/stylesheets/users.scss */
.cta-section .cta-section-text .cta-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0079DA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* line 168, app/assets/stylesheets/users.scss */
.cta-section .cta-section-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* line 177, app/assets/stylesheets/users.scss */
.cta-section .cta-section-text .cta-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* line 191, app/assets/stylesheets/users.scss */
.conversations-section {
  background-color: #fafafa;
  padding: 80px 24px;
}

/* line 196, app/assets/stylesheets/users.scss */
.conversations-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* line 201, app/assets/stylesheets/users.scss */
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* line 210, app/assets/stylesheets/users.scss */
.section-subheading {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 48px;
}

/* line 217, app/assets/stylesheets/users.scss */
.conversations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  /* line 217, app/assets/stylesheets/users.scss */
  .conversations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* line 227, app/assets/stylesheets/users.scss */
.conversation-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* line 235, app/assets/stylesheets/users.scss */
.conversation-header {
  margin-bottom: 16px;
}

/* line 239, app/assets/stylesheets/users.scss */
.conversation-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0079DA;
  background-color: rgba(0, 121, 218, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

/* line 249, app/assets/stylesheets/users.scss */
.conversations-cta {
  text-align: center;
  margin-top: 48px;
}

/* line 253, app/assets/stylesheets/users.scss */
.conversations-cta p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 20px;
}

/* line 264, app/assets/stylesheets/users.scss */
.social-proof-section {
  background-color: white;
  padding: 80px 24px;
}

/* line 269, app/assets/stylesheets/users.scss */
.social-proof-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* line 274, app/assets/stylesheets/users.scss */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* line 282, app/assets/stylesheets/users.scss */
.stat-item {
  text-align: center;
}

/* line 285, app/assets/stylesheets/users.scss */
.stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

/* line 293, app/assets/stylesheets/users.scss */
.stat-item .stat-label {
  display: block;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* line 301, app/assets/stylesheets/users.scss */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  /* line 301, app/assets/stylesheets/users.scss */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 311, app/assets/stylesheets/users.scss */
.testimonial-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
}

/* line 318, app/assets/stylesheets/users.scss */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* line 325, app/assets/stylesheets/users.scss */
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0079DA;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* line 339, app/assets/stylesheets/users.scss */
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1a1a;
  margin: 0;
}

/* line 346, app/assets/stylesheets/users.scss */
.testimonial-meta {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

/* line 352, app/assets/stylesheets/users.scss */
.testimonial-quote {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* line 359, app/assets/stylesheets/users.scss */
.social-proof-cta {
  text-align: center;
  margin-top: 48px;
}

/* line 363, app/assets/stylesheets/users.scss */
.social-proof-cta p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* line 369, app/assets/stylesheets/users.scss */
.social-proof-cta .cta-note {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 12px;
}

/* line 380, app/assets/stylesheets/users.scss */
#features {
  background-color: #fafafa;
  padding: 80px 24px;
}

/* line 385, app/assets/stylesheets/users.scss */
.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* line 390, app/assets/stylesheets/users.scss */
.features-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* line 399, app/assets/stylesheets/users.scss */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  /* line 399, app/assets/stylesheets/users.scss */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 409, app/assets/stylesheets/users.scss */
.feature-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

/* line 416, app/assets/stylesheets/users.scss */
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* line 423, app/assets/stylesheets/users.scss */
.feature-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* line 431, app/assets/stylesheets/users.scss */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 121, 218, 0.08);
  color: #0079DA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* line 447, app/assets/stylesheets/users.scss */
.site-footer {
  padding: 40px 40px;
  border-top: 1px solid #f0f0f0;
}

/* line 452, app/assets/stylesheets/users.scss */
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 460, app/assets/stylesheets/users.scss */
.footer-brand {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.35);
  margin: 0;
}

/* line 466, app/assets/stylesheets/users.scss */
.footer-links {
  display: flex;
  gap: 24px;
}

/* line 470, app/assets/stylesheets/users.scss */
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: color 0.15s ease;
}

/* line 476, app/assets/stylesheets/users.scss */
.footer-links a:hover {
  color: rgba(0, 0, 0, 0.6);
}

/* line 486, app/assets/stylesheets/users.scss */
.parallax-enabled [data-parallax] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* line 492, app/assets/stylesheets/users.scss */
.parallax-enabled .is-visible[data-parallax] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  /* line 498, app/assets/stylesheets/users.scss */
  [data-parallax] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* line 504, app/assets/stylesheets/users.scss */
  .cta-section-text {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* line 510, app/assets/stylesheets/users.scss */
#sessions-new {
  width: 100%;
}

/* line 513, app/assets/stylesheets/users.scss */
#sessions-new h1 {
  text-align: center;
}

/* line 517, app/assets/stylesheets/users.scss */
#sessions-new .login-form {
  margin: 20px auto;
  max-width: 800px;
}

/* line 522, app/assets/stylesheets/users.scss */
#sessions-new .btn-primary {
  margin-top: 40px;
}
/* line 3, app/assets/stylesheets/users/_settings.scss */
#users-settings h1 {
  text-align: center;
}

/* line 7, app/assets/stylesheets/users/_settings.scss */
#users-settings .tier-info {
  font-size: 0.75rem;
  color: #d1d5db;
}

/* line 12, app/assets/stylesheets/users/_settings.scss */
#users-settings .nav-container {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100vh;
  /* Full height */
}

/* line 18, app/assets/stylesheets/users/_settings.scss */
#users-settings nav {
  padding: 16px;
  /* Adjust padding as needed */
}

/* line 22, app/assets/stylesheets/users/_settings.scss */
#users-settings .nav-list {
  list-style-type: none;
  padding: 0;
}

/* line 27, app/assets/stylesheets/users/_settings.scss */
#users-settings .nav-item {
  margin-bottom: 16px;
  /* Space between items */
}

/* line 31, app/assets/stylesheets/users/_settings.scss */
#users-settings .nav-link {
  padding: 8px 12px;
  color: #4B5563;
  /* Gray color */
  text-decoration: none;
  display: block;
  /* Make the link fill the item */
}

/* line 38, app/assets/stylesheets/users/_settings.scss */
#users-settings .nav-link:hover {
  background-color: #F3F4F6;
  /* Light gray on hover */
}

/* line 44, app/assets/stylesheets/users/_settings.scss */
#users-settings .main-content .toggle:checked {
  color: #10B981;
}
@charset "UTF-8";
/* line 2, app/assets/stylesheets/users/_show.scss */
#users-show .nav-container {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100vh;
  /* Full height */
}

/* line 8, app/assets/stylesheets/users/_show.scss */
#users-show nav {
  padding: 16px;
  /* Adjust padding as needed */
}

/* line 12, app/assets/stylesheets/users/_show.scss */
#users-show .nav-list {
  list-style-type: none;
  padding: 0;
}

/* line 17, app/assets/stylesheets/users/_show.scss */
#users-show .nav-item {
  margin-bottom: 16px;
  /* Space between items */
}

/* line 21, app/assets/stylesheets/users/_show.scss */
#users-show .nav-link {
  padding: 8px 12px;
  color: #4B5563;
  /* Gray color */
  text-decoration: none;
  display: block;
  /* Make the link fill the item */
}

/* line 28, app/assets/stylesheets/users/_show.scss */
#users-show .nav-link:hover {
  background-color: #F3F4F6;
  /* Light gray on hover */
}

/* line 32, app/assets/stylesheets/users/_show.scss */
#users-show .nav-upgrade {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white !important;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

/* line 40, app/assets/stylesheets/users/_show.scss */
#users-show .nav-upgrade:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.4);
}

/* line 47, app/assets/stylesheets/users/_show.scss */
#users-show .main-content {
  flex: 1;
  /* keep the content area flexible */
  margin-left: 1.5rem;
  /* adjust the value to your taste (≈24 px) */
}

/* line 52, app/assets/stylesheets/users/_show.scss */
#users-show h1 {
  text-align: center;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
