/* Alfred Marketing Homepage - Custom Styles */

:root {
  --color-primary: #1A2E4F;
  --color-secondary: #F0F4F8;
  --color-accent: #DBD6C6;
  --text-primary: #2C3E50;
  --text-secondary: #7B8A99;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation-delay: 0.2s;
}

.fade-in-delay-3 {
  animation-delay: 0.3s;
}

.fade-in-delay-4 {
  animation-delay: 0.4s;
}

/* iPhone mockup placeholder */
.phone-mockup {
  width: 180px;
  height: 360px;
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(26, 46, 79, 0.08);
  position: relative;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(26, 46, 79, 0.1);
  border-radius: 3px;
}

/* App Store badge placeholder */
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 79, 0.2);
}

.app-store-badge svg {
  width: 20px;
  height: 20px;
}

/* Coach card styling */
.coach-card {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease;
}

.coach-card:hover {
  transform: translateY(-4px);
}

/* Custom checkmark list */
.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
