/* Base */
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #0f2f3f, #123b4f);
}

/* Center container */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid */
.hero-grid {
  width: 500px;
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto;
  column-gap: 28px;
  row-gap: 20px;
}

/* Avatar */
.hero-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
}

/* Header */
.hero-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
}

.hero-header h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 6px 0 14px;
  color: #cbd5e1;
}

.hero-body p {
  font-size: 1rem;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Body */
.hero-body {
  grid-column: 1 / -1;
}

.hero-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 22px;
}

/* Button */
.download-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
