.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 60% 40%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(6,182,212,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #080c14 0%, #080c14 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(37,99,235,0.3); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(6,182,212,0.2); bottom: -50px; left: 10%; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(59,130,246,0.25); top: 30%; left: 60%; animation-delay: -8s; }

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-15px,25px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before { content:''; width:6px; height:6px; background:#60a5fa; border-radius:50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-accent { display: block; }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 50%, var(--cyan) 100%);
  background-size: 200% auto;
  border: none;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary-hero::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,transparent,rgba(255,255,255,0.15),transparent);
  transform:translateX(-100%);
  transition:transform 0.5s ease;
}
.btn-primary-hero:hover { background-position: right center; transform:translateY(-3px); box-shadow:0 14px 40px rgba(37,99,235,0.55); }
.btn-primary-hero:hover::after { transform:translateX(100%); }

.btn-ghost-hero {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost-hero:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.35); color:#fff; transform:translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg,#fff,#93c5fd); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; letter-spacing: 0.5px; }

/* ─── FEATURES STRIP ─── */
.features-strip {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}
.feature-label { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.feature-sub { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* ─── COMMUNITY ─── */
.community-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.community-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.community-card.blue-accent::after { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.community-card.cyan-accent::after { background: linear-gradient(90deg, var(--cyan), #22d3ee); }
.community-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.community-card:hover::after { opacity: 1; }

.community-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.comm-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.comm-icon-blue { background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.3); }
.comm-icon-cyan { background: rgba(6,182,212,0.15); border: 1px solid rgba(6,182,212,0.25); }
.comm-title { font-size: 1.2rem; font-weight: 700; }

.post-list { display: flex; flex-direction: column; gap: 8px; }
.post-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.post-item:hover { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); transform: translateX(6px); }
.post-item-icon { font-size: 1.1rem; flex-shrink: 0; }
.post-item-text { flex: 1; }
.post-item-title { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 2px; transition: color 0.2s; }
.post-item:hover .post-item-title { color: #93c5fd; }
.post-item-meta { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.post-item-arrow { color: rgba(255,255,255,0.2); font-size: 0.8rem; transition: all 0.2s; flex-shrink: 0; }
.post-item:hover .post-item-arrow { color: #60a5fa; transform: translateX(3px); }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #60a5fa;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; color: #93c5fd; }

/* ─── ABOUT / CTA ─── */
.about-section { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.about-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.about-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(37,99,235,0.1) 0%, transparent 70%); }
.about-desc { color: rgba(255,255,255,0.5); font-size: 1.05rem; line-height: 1.9; margin: 20px 0 40px; }
.contact-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.contact-chip:hover { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.4); color: #93c5fd; }