/* Verbee Landing Page - Plain CSS */

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

:root {
  --verbee-teal: #4ECDC4;
  --verbee-honey: #F5A623;
  --verbee-cream: #FAF8F5;
  --text-primary: #111827;
  --text-secondary: #6B7280;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--verbee-cream);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--verbee-cream) 0%, #F5F3F0 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='%234ECDC4' fill-opacity='1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo img {
  height: 64px;
  width: auto;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--verbee-teal);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 span {
  color: var(--verbee-teal);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pills {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--verbee-teal);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.pill svg {
  width: 16px;
  height: 16px;
  color: var(--verbee-teal);
}

.app-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #111827;
  color: white;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
}

.app-button:hover {
  background: #1f2937;
}

.app-button svg {
  width: 28px;
  height: 28px;
}

.app-button-text {
  text-align: left;
}

.app-button-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-button-store {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Value Props Section */
.value-props {
  padding: 5rem 2rem;
  background: white;
}

.value-props-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(78, 205, 196, 0.1);
  color: var(--verbee-teal);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.prop-card {
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
}

.prop-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.prop-icon svg {
  width: 24px;
  height: 24px;
  color: var(--verbee-teal);
}

.prop-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.prop-card p {
  color: var(--text-secondary);
}

/* Footer */
footer {
  background: #111827;
  color: white;
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verbee-teal);
}

.footer-tagline {
  color: #9ca3af;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-email {
  color: #9ca3af;
}

.footer-email a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-email a:hover {
  color: var(--verbee-teal);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

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

.footer-bottom {
  max-width: 800px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 2rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
}
