:root {
  --highlight: #ffde59;
  --text: #111;
  --background: #fff;
  --border: #eee;
  --success: #28a745;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Original header styles removed - using compact header styles above */

.nav-links a.cta-button {
  background: var(--highlight);
  color: var(--text) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(255, 222, 89, 0.08);
}

.nav-links a.cta-button:hover {
  background: #ffe980;
  box-shadow: 0 4px 16px rgba(255, 222, 89, 0.18);
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--background);
  padding: 80px 0 40px 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-heading-center {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.hero-desc-center {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero-buttons-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px auto;
  width: 100%;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-below {
  display: block;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  min-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero {
    min-height: unset;
    padding: 0 0 32px 0;
  }
  .hero-image-below {
    max-width: 90vw;
    min-width: 0;
  }
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
  position: relative;
}

.hero h1 .main-text,
.hero h1 .secondary-text {
  display: block;
  margin-bottom: 10px;
  transition: opacity 3s, transform 3s;
  position: relative;
  z-index: 2;
}

.hero h1 .secondary-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  z-index: 1;
  text-align: center;
}

.hero h1 .highlight-wrapper {
  position: relative;
  display: block;
  margin-top: 0;
  transition: opacity 3s, transform 3s;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero h1 .highlight-wrapper .main-highlight {
  position: relative;
  z-index: 2;
  transition: opacity 3s, transform 3s;
}

.hero h1 .highlight-wrapper .secondary-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 3s, transform 3s;
  z-index: 1;
  text-align: center;
}

.hero h1.toggled .main-text,
.hero h1.toggled .highlight-wrapper .main-highlight {
  opacity: 0;
  transform: translateY(-10px);
  z-index: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.hero h1.toggled .secondary-text,
.hero h1.toggled .highlight-wrapper .secondary-highlight {
  opacity: 0;
  transform: translateY(10px);
  z-index: 1;
  transition: opacity 0s, transform 0s;
}

.hero h1.toggled.show-secondary .secondary-text,
.hero h1.toggled.show-secondary .highlight-wrapper .secondary-highlight {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
  transition: opacity 3s 0.2s, transform 3s 0.2s;
}

.hero .visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .highlight {
  background: rgba(255, 222, 89, 0.7);
  color: var(--text);
  padding: 0 6px;
  border-radius: 0;
  font-weight: 900;
  display: inline-block;
  box-shadow: 0 6px 0 -2px rgba(255, 222, 89, 0.7),
    0 8px 0 -2px rgba(255, 222, 89, 0.5);
  position: relative;
  z-index: 1;
}

.hero .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 0.55em;
  background: linear-gradient(
    90deg,
    rgba(255, 222, 89, 0.6) 80%,
    rgba(255, 222, 89, 0.3) 100%
  );
  z-index: -1;
  border-radius: 2px;
  pointer-events: none;
  transform: skew(-8deg, 0deg) scaleY(1.1);
  opacity: 0.95;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  color: #333;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}

/* Old primary button styles removed - using compact button styles above */

/* Waitlist Section */
.waitlist-section {
  background: var(--background);
  padding: 120px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.waitlist-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.waitlist-section .visible {
  opacity: 1;
  transform: translateY(0);
}

.waitlist-section p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 0 28px 0;
  color: #444;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}

.waitlist-form {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
  box-sizing: border-box;
}

.waitlist-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  width: 100%;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  background: #fafafa;
  color: var(--text);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: var(--highlight);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 222, 89, 0.15);
}

.waitlist-button {
  background: var(--highlight);
  color: var(--text);
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255, 222, 89, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.waitlist-button:hover {
  background: #ffe980;
  box-shadow: 0 4px 16px rgba(255, 222, 89, 0.18);
}

.waitlist-button:active {
  background: var(--success);
  color: #fff;
}

/* Waitlist Section Grid Layout */
.waitlist-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.waitlist-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.waitlist-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
  object-fit: contain;
}

.waitlist-form-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Responsive adjustments for waitlist section */
@media (max-width: 900px) {
  .waitlist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-image-col {
    order: 1;
  }

  .waitlist-image {
    max-width: 90vw;
    margin: 0 auto;
  }

  .waitlist-form-col {
    order: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .waitlist-section {
    padding: 80px 0 60px;
  }
}

/* Footer */
footer {
  background: var(--background);
  color: var(--text);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
}

.footer-description {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #888;
  font-size: 0.95rem;
  text-align: left;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #666;
  margin-right: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal Content Styles */
.legal-content {
  padding: 120px 0 80px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.legal-header {
  margin-bottom: 40px;
}

.legal-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.legal-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text);
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-section p,
.legal-section li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
}

.legal-section strong {
  font-weight: 600;
}

.legal-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.legal-tab {
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.legal-tab.active {
  color: var(--text);
  border-bottom: 3px solid var(--highlight);
}

.legal-tab:hover:not(.active) {
  color: #333;
  border-bottom: 3px solid #eee;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Animations for fade-in on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .legal-content {
    padding: 100px 0 60px;
  }

  .legal-container {
    padding: 30px 20px;
  }

  .legal-title {
    font-size: 1.8rem;
  }

  .legal-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .legal-tab {
    text-align: left;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--border);
  }

  .legal-tab.active {
    border-left: 3px solid var(--highlight);
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon,
  .footer-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .nav-links li {
    margin-left: 10px;
  }

  .hero {
    padding: 90px 0 40px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .waitlist-section {
    padding: 60px 0 40px;
  }

  .waitlist-form {
    padding: 30px 25px;
  }

  .footer-content {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 6px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
  }

  .waitlist-grid {
    gap: 30px;
  }

  .legal-content {
    padding: 90px 0 50px;
  }

  .legal-title {
    font-size: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }
}

/* Dashboard Styles */
.dashboard-main {
  min-height: calc(100vh - 70px);
  padding-top: 85px;
  background: #fafbfc;
}

.dashboard-welcome {
  text-align: left;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.dashboard-welcome h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.dashboard-welcome p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.dashboard-section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0;
  border-bottom: none;
}

.section-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header h2 i {
  font-size: 1.1rem;
  color: #6366f1;
}

/* Compact Header */
header {
  background: var(--background);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: none;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon,
.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-weight: bold;
  color: var(--text);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 16px;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.user-email {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #6b7280;
  font-size: 0.875rem;
  padding: 6px 12px;
  background: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.user-email i {
  margin-right: 6px;
  font-size: 0.75rem;
}

.nav-link {
  color: #6b7280 !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #374151 !important;
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* Compact Buttons */
.primary-button {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.primary-button:hover {
  background: #4338ca;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.secondary-button {
  background: white;
  color: #6b7280;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
}

.secondary-button:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

/* Loading and Error States */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.loading-spinner {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #6366f1;
}

.loading-container p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.error-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.error-message {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 8px;
  border: 1px solid #fecaca;
  max-width: 400px;
}

.error-message i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 12px;
}

.error-message h2 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.125rem;
}

.error-message p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

/* Compact Project Form */
.project-form {
  margin-bottom: 24px;
}

.form-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.form-card .form-group {
  margin-bottom: 16px;
}

.form-card .form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-card .form-group input,
.form-card .form-group textarea,
.form-card .form-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
  background: white;
}

.form-card .form-group input:focus,
.form-card .form-group textarea:focus,
.form-card .form-group select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-card .form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.form-card .form-group select {
  cursor: pointer;
}

/* Compact Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h4 {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-section h4::before {
  content: "";
  width: 3px;
  height: 12px;
  background: #6366f1;
  border-radius: 1px;
}

/* Compact Checkboxes */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400;
  color: #374151;
  font-size: 0.875rem;
  gap: 8px;
}

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

.form-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Compact Projects Container */
.projects-container {
  display: grid;
  gap: 12px;
}

.projects-placeholder {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  border: 2px dashed #d1d5db;
}

.projects-placeholder i {
  font-size: 2rem;
  color: #d1d5db;
  margin-bottom: 12px;
}

.projects-placeholder p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Compact Project Cards */
.project-card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.project-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: #d1d5db;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.project-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.project-status.active {
  background: #dcfce7;
  color: #166534;
}

.project-status.completed {
  background: #dbeafe;
  color: #1e40af;
}

.project-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.edit-btn {
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 4px 6px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edit-btn:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}

.edit-btn i {
  font-size: 0.75rem;
}

.project-description {
  color: #6b7280;
  margin-bottom: 12px;
  line-height: 1.4;
  font-size: 0.875rem;
}

.project-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-meta i {
  font-size: 0.75rem;
}

/* ========================================
   COMPACT TEAM SETUP STYLES
======================================== */

.team-setup-container {
  max-width: 500px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.team-setup-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.team-setup-header {
  text-align: center;
  margin-bottom: 24px;
}

.team-setup-header h1 {
  color: #111827;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 700;
}

.team-setup-header p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.team-form {
  width: 100%;
}

.form-step {
  animation: fadeIn 0.3s ease-in-out;
}

.form-step h2 {
  color: #111827;
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.team-form .form-group {
  margin-bottom: 16px;
}

.team-form .form-group label {
  display: block;
  margin-bottom: 4px;
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
}

.team-form .form-group input,
.team-form .form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  color: #111827;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.team-form .form-group input:focus,
.team-form .form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.team-form .form-group small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400;
  color: #374151;
  font-size: 0.875rem;
  gap: 8px;
}

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

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  text-align: center;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.divider span {
  padding: 0 12px;
  color: #6b7280;
  font-size: 0.75rem;
}

.alternative-action {
  text-align: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 6px;
  border: 1px solid #f3f4f6;
}

.alternative-action p {
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 0.875rem;
}

.success-message,
.error-message {
  text-align: center;
  padding: 24px 16px;
}

.success-message i {
  font-size: 2.5rem;
  color: #10b981;
  margin-bottom: 16px;
}

.error-message i {
  font-size: 2.5rem;
  color: #ef4444;
  margin-bottom: 16px;
}

.success-message h1,
.error-message h1 {
  color: #111827;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.success-message p,
.error-message p {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.team-info-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  text-align: left;
}

.team-info-card h3 {
  color: #4f46e5;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.team-info-card p {
  margin-bottom: 6px;
  color: #374151;
  font-size: 0.875rem;
}

.team-info-card .team-id code {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  color: #4f46e5;
  font-size: 0.75rem;
}

.team-info-card .share-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.team-info-card .share-info small {
  color: #6b7280;
  font-style: italic;
  font-size: 0.75rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  .dashboard-main {
    padding-top: 70px;
  }

  .dashboard-welcome h1 {
    font-size: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-card {
    padding: 16px;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 8px;
  }

  .user-email {
    font-size: 0.75rem;
  }

  .project-meta {
    flex-direction: column;
    gap: 6px;
  }

  .team-setup-card {
    padding: 20px;
    margin: 0.5rem;
  }
}

/* ========================================
   ANIMATION KEYFRAMES
======================================== */

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

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

/* ========================================
   UTILITY CLASSES
======================================== */

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

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}

.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
