/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body.creator-body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(167, 190, 143, 0.20), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 155, 109, 0.12), transparent 26%),
    linear-gradient(180deg, #f5f3eb 0%, #e8efe2 100%);
  color: #243127;
  min-height: 100vh;
}

/* ---------- Layout ---------- */

.creator-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px;
}

.creator-main {
  display: grid;
  gap: 22px;
}

.creator-hero {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* ---------- Generic card ---------- */

.card-earth {
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(95, 122, 89, 0.14);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(82, 104, 79, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Topbar ---------- */

.creator-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.80);
  border: 1px solid rgba(95, 122, 89, 0.14);
  box-shadow: 0 16px 40px rgba(82, 104, 79, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.creator-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.creator-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.creator-brand-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6f8d68;
}

.creator-brand-title {
  font-size: 24px;
  font-weight: 800;
  color: #243127;
  line-height: 1.2;
}

/* ---------- Buttons ---------- */

.creator-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.creator-btn {
  text-decoration: none;
  color: #2d3b30;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(95, 122, 89, 0.16);
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.creator-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(90, 70, 44, 0.10);
}

.creator-btn-primary {
  background: linear-gradient(135deg, #6f9b6d, #a7be8f);
  color: #fffdf8;
  border-color: transparent;
}

/* ---------- Hero left ---------- */

.creator-hero-copy {
  padding: 34px 34px 30px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6d8a66;
  border: 1px solid rgba(111, 155, 109, 0.18);
  background: rgba(244, 249, 239, 0.90);
  margin-bottom: 18px;
}

.creator-hero-copy h1 {
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #243127;
}

.creator-lead {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  color: #607062;
  max-width: 900px;
}

/* ---------- Stat cards ---------- */

.creator-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(244, 249, 239, 0.92);
  border: 1px solid rgba(120, 94, 58, 0.10);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #748474;
  font-weight: 700;
}

.mini-card strong {
  color: #2d3b30;
  font-size: 18px;
  line-height: 1.35;
}

/* ---------- Right profile ---------- */

.creator-side {
  display: flex;
}

.creator-profile-card {
  width: 100%;
  padding: 26px;
  text-align: center;
}

.creator-photo-frame {
  width: 260px;
  height: 260px;
  margin: 0 auto 18px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef3e7;
  border: 1px solid rgba(95, 122, 89, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 12px 30px rgba(82, 104, 79, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.creator-profile-card h3 {
  margin: 0 0 8px;
  font-size: 36px;
  color: #243127;
  line-height: 1.15;
}

.creator-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #5e7460;
  line-height: 1.35;
}

.creator-meta {
  margin-top: 8px;
  color: #748474;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Bottom cards ---------- */

.creator-card {
  padding: 28px;
}

.creator-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  color: #243127;
  line-height: 1.2;
}

.creator-card p,
.creator-card li,
.creator-link {
  font-size: 18px;
  line-height: 1.6;
  color: #5a4d40;
}

.creator-list {
  margin: 0;
  padding-left: 20px;
}

.creator-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creator-link {
  text-decoration: none;
  font-weight: 700;
  color: #5d8161;
}

.creator-link:hover {
  color: #446648;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .creator-hero {
    grid-template-columns: 1fr;
  }

  .creator-stats {
    grid-template-columns: 1fr;
  }

  .creator-grid {
    grid-template-columns: 1fr;
  }

  .creator-hero-copy h1 {
    font-size: 48px;
  }
}

@media (max-width: 700px) {
  .creator-shell {
    padding: 16px;
  }

  .creator-topbar {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .creator-hero-copy {
    padding: 24px;
  }

  .creator-profile-card {
    padding: 22px;
  }

  .creator-photo-frame {
    width: 220px;
    height: 220px;
  }

  .creator-hero-copy h1 {
    font-size: 40px;
  }

  .creator-lead {
    font-size: 18px;
  }

  .creator-brand-title {
    font-size: 20px;
  }
}
