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

:root {
  --background: #ffffff;
  --foreground: #1a2332;
  --primary: #f25c54;
  --secondary: #3b82f6;
  --muted: #f4f6f8;
  --muted-foreground: #6b7a8f;
  --border: #e5e9ed;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.header-bar {
  background-color: var(--primary);
}

.header-content {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.logo {
  height: 6rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
}

.hero-section {
  text-align: center;
  max-width: 48rem;
  margin-bottom: 3rem;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.text-gradient {
  background: linear-gradient(135deg, #e84a42 0%, #d95a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* AI Badge */
.ai-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  overflow: hidden;
}

.ai-badge-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(242, 92, 84, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 9999px;
}

.ai-badge-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s ease-in-out infinite;
  animation-delay: 3s;
}

.ai-badge-border {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.sparkle-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
  animation: pulse-scale 2s ease-in-out infinite;
}

.ai-badge-text {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Cards */
.contact-cards {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(244, 246, 248, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -4px rgba(26, 35, 50, 0.08);
}

.contact-card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(242, 92, 84, 0.4);
  box-shadow: 0 8px 30px -4px rgba(26, 35, 50, 0.12);
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(242, 92, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(242, 92, 84, 0.2);
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.contact-value {
  font-weight: 500;
  color: var(--foreground);
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Animations */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

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

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.6s; }
.delay-6 { animation-delay: 0.7s; }
.delay-7 { animation-delay: 0.9s; }

/* Responsive */
@media (min-width: 768px) {
  .header-content {
    padding: 2rem 1rem;
  }
  
  .logo {
    height: 8rem;
  }
  
  .main-content {
    padding: 5rem 1rem;
  }
  
  .headline {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    height: 9rem;
  }
  
  .headline {
    font-size: 3.75rem;
  }
}
