:root {
  --text: #f2f2f2;
  --text-dim: #bdbdbd;
  --accent: #43d4b6;
  --accent-2: #ffc769;
  --shadow-heavy: 0 24px 80px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at 25% 15%, #1b1b1b 0%, #090909 46%, #040404 100%);
}

.creator-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.creator-panel {
  width: min(100%, 54rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.3rem);
  align-items: center;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-heavy);
  padding: clamp(1rem, 2.4vw, 2rem);
}

.creator-avatar {
  width: clamp(62px, 8vw, 82px);
  height: clamp(62px, 8vw, 82px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

h1 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1;
}

p {
  margin: 0.7rem 0 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.qr-box {
  margin-top: 1rem;
  width: min(100%, 18rem);
  min-height: 12.5rem;
  display: grid;
  place-items: center;
  background: #ffffff;
  padding: 0.8rem;
}

.qr-box img,
.qr-box canvas {
  width: min(100%, 11rem);
  height: auto;
}

.primary-cta {
  margin-top: 1.1rem;
  width: fit-content;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.primary-cta:hover {
  transform: translateY(-3px);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.24);
}

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

  .creator-avatar {
    margin: 0 auto;
  }

  .qr-box {
    width: min(100%, 100%);
  }
}
