/* Landing Page Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #2d2d2d;
  color: #f3f4f6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header  */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.header-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-subtitle {
  font-size: 0.6875rem;
  color: #9ca3af;
}

/* Main Content Grid */
.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #4b5563;
  background-color: rgba(55, 65, 81, 0.7);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }
}

/* Project Description  */
.project-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .project-title {
    font-size: 2.25rem;
  }
}

.project-description {
  font-size: 0.875rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .project-description {
    font-size: 1rem;
  }
}

.feature-list {
  margin-bottom: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #e5e7eb;
}

.feature-bullet {
  color: #6ee7b7;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

/* Buttons */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #6ee7b7;
  color: #000;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.primary-button:hover {
  background-color: #34d399;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #6b7280;
  color: #f3f4f6;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.secondary-button:hover {
  border-color: #6ee7b7;
  color: #a7f3d0;
}

.tech-note {
  font-size: 0.6875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #4b5563;
}

.team-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

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

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

.team-member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d1d5db;
}

.team-name {
  font-size: 0.75rem;
  color: #d1d5db;
}

.team-role {
  font-size: 0.625rem;
  color: #9ca3af;
}

/* Phone Mockup  */
.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 100%;
  max-width: 375px;
  height: 750px;
  background-color: #000;
  border-radius: 40px;
  border: 10px solid #222;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s;
  position: relative;
}

@media (min-width: 768px) {
  .phone-frame {
    transform: scale(1);
  }
}

/*  Notch */
.phone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 28px;
  background-color: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/*  Home Indicator */
.phone-frame::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  background-color: #333;
  border-radius: 100px;
  z-index: 10;
}

.phone-content {
  padding: 1.5rem;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  background-color: #212121;
  height: 100%;
}

.logo-container {
  width: 7rem;
  height: 7rem;
  background-color: #047857;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.5);
}

.logo-text {
  color: white;
  font-family: serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.demo-screens {
  width: 100%;
}

.demo-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.demo-description {
  text-align: center;
  font-size: 0.6875rem;
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.phone-button {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.phone-button-primary {
  background-color: #047857;
  color: white;
}

.phone-button-primary:hover {
  background-color: #065f46;
}

.phone-button-secondary {
  background-color: #374151;
  color: white;
}

.phone-button-secondary:hover {
  background-color: #4b5563;
}

/* Background Elements */
.background-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.bg-shape-1 {
  top: -6rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background-color: #047857;
}

.bg-shape-2 {
  bottom: -8rem;
  right: -3rem;
  width: 18rem;
  height: 18rem;
  background-color: #6ee7b7;
}

/* Parallax  */
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Color Classes */
.text-emerald-300 {
  color: #6ee7b7;
}

.text-emerald-400 {
  color: #34d399;
}

.text-emerald-500 {
  color: #10b981;
}

.text-emerald-600 {
  color: #059669;
}

.text-emerald-700 {
  color: #047857;
}

.bg-emerald-500 {
  background-color: #10b981;
}

.bg-emerald-600 {
  background-color: #059669;
}

.bg-emerald-700 {
  background-color: #047857;
}

.hover\:bg-emerald-400:hover {
  background-color: #34d399;
}

.hover\:bg-emerald-600:hover {
  background-color: #059669;
}