.the-app {
  background: var(--background);
  padding: 6rem 0;
}

.the-app .content {
  max-width: 1200px;
  margin: 0 auto;
}

.the-app .title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  color: var(--brown);
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: lowercase;
}

.the-app .subtitle {
  text-align: center;
  color: var(--secondary-text);
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--brown);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
              0 0 30px rgba(171, 100, 41, 0.2);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: var(--brown);
  border-radius: 0 0 15px 15px;
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-preview {
  background: var(--ivory);
  border: 2px solid var(--brown);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-category {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-prompt {
  color: var(--brown);
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.features {
  padding: 1rem;
}

.features-title {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 2rem;
  font-weight: 400;
  text-transform: lowercase;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(171, 100, 41, 0.2));
}

.feature-item strong {
  display: block;
  color: var(--brown);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-item p {
  color: var(--secondary-text);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 968px) {
  .app-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mockup {
    order: 2;
  }
  
  .features {
    order: 1;
  }
}

@media (max-width: 768px) {
  .the-app {
    padding: 4rem 0;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .features-list {
    gap: 1.5rem;
  }
}

