/* Base Styles */
:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #1e293b;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #dbeafe;
  --accent-foreground: #1e293b;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #3b82f6;
  --radius: 0.5rem;
  --success: #10b981;
  --warning: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

.page-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.large-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
  flex: 0 0 auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.icon {
  display: inline-block;
}

.icon-blue {
  color: var(--primary);
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-desktop .nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
  color: var(--primary);
}

.nav-desktop .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.btn-nav {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  transition: transform 0.3s ease;
}

.mobile-menu-btn.open .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

.mobile-menu-btn.open .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-link-mobile {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

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

.btn-secondary:hover {
  background-color: var(--secondary);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--accent) 100%);
  padding: 5rem 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--background) 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.hero-description,
.page-hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
}

.page-hero-description {
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.phone-showcase {
  background: linear-gradient(135deg, var(--accent) 0%, #bfdbfe 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.phone-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.phone-subtitle {
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* Waitlist Card */
.waitlist-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.waitlist-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features {
  padding: 5rem 0;
}

.features-detailed {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
}

.two-column-layout {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.content-column {
  max-width: 600px;
}

.stats-column {
  background: var(--accent);
  border-radius: 1rem;
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.team-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.avatar-initials {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--primary);
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.values-content {
  max-width: 1000px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.value-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.value-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Join Us Section */
.join-us-section {
  padding: 5rem 0;
  text-align: center;
}

.join-us-content {
  max-width: 600px;
  margin: 0 auto;
}

.join-us-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--secondary);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Sections */
.contact-methods {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.contact-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
}

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

/* Contact Form */
.contact-form-section {
  padding: 5rem 0;
}

.contact-form-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.form-card,
.info-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-title,
.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--foreground);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-value {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.info-link {
  color: var(--primary);
  text-decoration: none;
}

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

.cta-card {
  background: var(--accent);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.cta-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.cta-card-description {
  color: #1e40af;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-section .btn-secondary {
  background-color: var(--background);
  color: var(--foreground);
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
}

.cta-section .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Form Elements */
.input,
.textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input:disabled,
.textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.textarea {
  min-height: 120px;
  font-family: inherit;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: #e2e8f0;
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  max-width: 400px;
}

.footer-phone {
  margin-top: 1rem;
}

.phone-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #93c5fd;
}

.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-column-title {
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: #64748b;
}

/* Loading States */
.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn:disabled .btn-text {
  display: none;
}

.btn:disabled .btn-loading {
  display: flex;
}

.spinner {
  width: 1rem;
  height: 1rem;
  animation: spin 1s linear infinite;
}

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

/* Toast Notifications */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.hidden {
  display: none;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--destructive);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons,
  .cta-buttons,
  .join-us-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .two-column-layout {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .page-hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 4rem;
  }

  .page-hero-title {
    font-size: 5rem;
  }
}

/* Focus Styles for Accessibility */
.btn:focus-visible,
.input:focus-visible,
.textarea:focus-visible,
.nav-link:focus-visible,
.contact-link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section {
    display: none;
  }

  .page-container {
    min-height: auto;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* Footer */
.footer-nav a[href*="team"] {
  display: none;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.pricing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.feature-check {
  color: var(--success);
  flex-shrink: 0;
}

.pricing-note {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.pricing-note p {
  color: var(--foreground);
  line-height: 1.6;
  margin: 0;
}

/* Authentication Styles */
.auth-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--background) 100%);
  padding: 3rem 0;
  text-align: center;
}

.auth-content {
  max-width: 600px;
  margin: 0 auto;
}

.auth-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.auth-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.auth-form-section {
  padding: 4rem 0;
}

.auth-form-container {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.auth-form-card,
.auth-info-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.auth-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.auth-form-subtitle {
  color: var(--muted-foreground);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-help {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
}

.checkmark {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.125rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-response {
  margin-top: 1rem;
}

.auth-message {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.auth-message-success {
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.auth-message-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.auth-message-icon {
  flex-shrink: 0;
}

.auth-message-content p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

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

.auth-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.auth-info-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.auth-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.auth-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  color: var(--success);
  flex-shrink: 0;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-greeting {
  font-weight: 500;
  color: var(--foreground);
}

/* Dashboard Styles */
.dashboard-section {
  padding: 4rem 0;
}

.dashboard-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.dashboard-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.dashboard-icon {
  color: var(--primary);
}

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

.account-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  color: var(--foreground);
}

.info-value {
  color: var(--muted-foreground);
}

.status-verified {
  color: var(--success);
  font-weight: 500;
}

.status-unverified {
  color: var(--warning);
  font-weight: 500;
}

.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dashboard-action-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.dashboard-welcome {
  grid-column: 1 / -1;
}

.welcome-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.welcome-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.welcome-steps li {
  padding: 0.5rem 0;
  color: var(--foreground);
}

.welcome-cta {
  margin-top: 1.5rem;
}

/* Responsive Design for Auth Pages */
@media (min-width: 768px) {
  .auth-form-container {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-welcome {
    grid-column: 1 / -1;
  }
}

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

  .dashboard-welcome {
    grid-column: 2 / -1;
  }
}
