:root {
  --bg-top: #f4f6fb;
  --bg-mid: #fbf8f4;
  --bg-bottom: #edf1fb;
  --text: #171a21;
  --muted: #596273;
  --subtle: #707b8a;
  --card: rgba(255, 255, 255, 0.9);
  --card-border: rgba(20, 28, 40, 0.08);
  --shadow: 0 12px 40px rgba(22, 34, 56, 0.08), 0 2px 8px rgba(22, 34, 56, 0.04);
  --radius-lg: 28px;
  --radius-sm: 16px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --accent: #8d4eb0;
  --accent-soft: rgba(141, 78, 176, 0.12);
  --link: #1f62ea;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.creator-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(ellipse 120% 72% at 50% -14%, rgba(255, 255, 255, 0.98), transparent 58%),
    linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.15rem, 4vw, 1.75rem) clamp(1.25rem, 5vw, 2rem) 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--subtle);
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.22rem 0.4rem;
  border-radius: 7px;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.site-nav__sep {
  color: rgba(0, 0, 0, 0.12);
  user-select: none;
  font-weight: 400;
}

.page-hero {
  text-align: center;
  padding: clamp(1.75rem, 5vw, 2.75rem) 0 clamp(0.25rem, 2vw, 0.75rem);
}

.page-hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--subtle);
}

.page-hero__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 28, 40, 0.06);
  color: var(--accent);
  font-size: 28px;
}

.page-hero__title {
  margin: 0.85rem 0 0;
  font-size: clamp(2.1rem, 5.5vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.page-hero__intro {
  margin: 1.05rem auto 0;
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 5vw, 2rem) clamp(3rem, 7vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 4vw, 2.4rem);
}

.group-section__title {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--subtle);
}

.group-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  backdrop-filter: blur(12px);
}

.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.chip {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 28, 40, 0.08);
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  box-shadow: 0 10px 26px rgba(22, 34, 56, 0.05);
  color: #2b3340;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.blueprint-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(150deg, rgba(34, 104, 255, 0.1), rgba(141, 78, 176, 0.08), rgba(31, 135, 66, 0.05));
  border: 1px solid rgba(20, 28, 40, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blueprint-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(20, 28, 40, 0.14);
  box-shadow: 0 18px 44px rgba(22, 34, 56, 0.1), 0 6px 14px rgba(22, 34, 56, 0.06);
}

.blueprint-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 28, 40, 0.06);
}

.blueprint-card__text {
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #2b3340;
}

.blueprint-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #2268ff;
}

.page-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem) clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
}

.page-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.page-footer a {
  color: var(--muted);
  font-weight: 700;
}

.page-footer a:hover {
  color: var(--accent);
}

@media (max-width: 620px) {
  .chip-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-card {
    grid-template-columns: auto 1fr;
  }

  .blueprint-card__badge {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
