:root {
  --primary: #c1121f;
  --secondary: #0a1d37;
  --accent-start: #fbd118;
  --accent-end: #097b3e;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --text: #1f2937;
  --text-muted: #4b5563;
  --border: #e5e7eb;
  --shadow: 0 10px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.04);
  --glass: rgba(255, 255, 255, 0.75);
}
html.scroll-smooth { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.text-gradient {
  background: linear-gradient(to right, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1.1s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background-image:
    linear-gradient(to bottom, rgba(240,249,255,0.7), rgba(255,255,255,0.9)),
    url('/assets/img/social-bg.jpg');
  background-size: cover;
  background-position: center 10%;
  background-attachment: fixed; /* subtle parallax feel on desktop */
}
.hero-content {
  text-align: center;
  max-width: 80rem;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1.25rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.35s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.12);
  border-color: var(--accent-start);
}
.social-btn i {
  font-size: 1.75rem;
}
.follower-count {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(251,209,24,0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
h2 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 1.1s ease-out forwards;
}
/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}
.card:nth-child(1) { animation-delay: 0.3s; }
.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 0.7s; }
.card:nth-child(4) { animation-delay: 0.9s; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-start);
}
.card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.card p { color: var(--text-muted); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 10px 10% 30px 10%;
    margin-top: 60px;
}
.value-item {
    text-align: center;
    padding: 40px 25px;
    background: #F7F7F7;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.35s;
}
@media (max-width: 768px) {
  .hero {background-attachment: scroll;}
  .hero h1 { font-size: 3.5rem; }
  .hero p  { font-size: 1.25rem; }
  .social-buttons { flex-direction: column; align-items: center; }
}